01-07-2016 04:01 AM - edited 03-19-2019 10:33 AM
Hi,
I'm following the guide: http://cdesigner.eu/content/14-cucm-8-free-sftp-solution-backup-ubuntu-1004-server
To install the ubuntu 15 as OpenSSH SFTP backup, but it got the fail on it
Error: Unableto access SFTP server. Please ensure the username and password are correct.
I followed all steps as same:
1) Create group for sftp access (optional) for further platform hardening - sudo groupadd sftpuser
2) Create user account for backup sudo adduser cucm_8 sftpuser and make password during user creation dialog
3) Change ownership of home directory sudo chown root.root /home/cucm_8
4) Alter permission for read and write to home directory of backup user sudo chmod 777 /home/cucm_8
5) Install open-ssh server sudo apt-get install openssh-server
6) Test connectivity to sftp account from FileZilla client (or your preferred supporting secure mode) - transfer and delete file!!!
01-07-2016 10:12 AM
System version: 10.5.2.10000-5
01-07-2016 10:59 AM
Hi.
Please on your linux server give chmod -R 777 home/cucmbackup/
Try again and let me know
Thanks
Carlo
01-07-2016 08:29 PM
was 777 already... but same error
01-07-2016 10:11 PM
Hi,
now I think we have an issue in cipher algorithm configured on linux server and the one supported by CUCM.
Please refer to the following post and check your sshd config.
https://supportforums.cisco.com/discussion/12407216/cucm-backup-openssh
Also try again the command we previously suggested to transfer files from CUCM through cli and check auth logs on linux server.
Please let let us know
Regards
Carlo
01-07-2016 09:51 AM
Unfortunately, I changed the Linux server as the same subnet of CUCM and it got the same error. Is it the wrong settings on Linux SFTP server?
01-07-2016 05:55 AM
try command
file list tftp *
or to be more specific
file list tftp Ringlist.xml
for downloading file
file get tftp Ringlist.xml
regds,
aman
01-20-2017 04:24 AM
01-20-2017 05:52 AM
See my original reply above. The latest synology software has an updated ssh that would cause this problem. You may need to contact synology on how to change the key exchange algorithms if you can't just ssh into it and edit the file.
01-20-2017 06:59 AM
my synology version is DSM 6.0.2-8451 Update 2
how do i check this thing you are mentioning?
10-04-2016 12:02 PM
Not sure if you ever figured this out but I had the same problem after updating linux. OpenSSH removed a bunch of insecure ciphers which are still used by a good bit of Cisco stuff. With CCUM 10.0 I had to turn those ciphers back on. In my testing the below works.
Edit /etc/ssh/sshd_config and add:
Ciphers +aes128-cbc
KexAlgorithms +diffie-hellman-group1-sha1
11-11-2016 12:39 PM
Edit /etc/ssh/sshd_config and add:
Ciphers +aes128-cbc
KexAlgorithms +diffie-hellman-group1-sha1
Same scenario, this was the fix for me.
Thanks!
01-19-2018 06:25 AM
02-03-2021 04:08 PM
Gracias Mark Fisher.
Esto funcionó para mi.
Tengo un CUCM 11.5 y un SFTP SERVER basado el linux Ubuntu 20.04.
Logré configurar el backup device y un schelude colletion hacia el servidor SFTP.
11-14-2017 10:46 PM
02-11-2021 12:42 PM
That could break SSH connections that are dependent on other ciphers. Here is the config snippet I use in sshd_config to allow a server to be an SFTP server for DRS.
KexAlgorithms +diffie-hellman-group1-sha1 KexAlgorithms +diffie-hellman-group-exchange-sha1 Ciphers +aes128-cbc Ciphers +3des-cbc
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide