03-30-2021 12:48 AM
03-30-2021 01:34 AM
Add this to the end of sshd_config and restart the SSH service.
KexAlgorithms +diffie-hellman-group1-sha1 KexAlgorithms +diffie-hellman-group-exchange-sha1 Ciphers +aes128-cbc Ciphers +3des-cbc
03-30-2021 01:34 AM
Add this to the end of sshd_config and restart the SSH service.
KexAlgorithms +diffie-hellman-group1-sha1 KexAlgorithms +diffie-hellman-group-exchange-sha1 Ciphers +aes128-cbc Ciphers +3des-cbc
03-30-2021 02:07 AM
Hi Elliot
Thanks for the help, I had to resolve PasswordAuthentication yes in sshd_config. You must create a user that has the ability to connect using just a password. Even though CUCM allows the use of SFTP, it does not permit connection using an SSH key
root@uc-ecc-3:~ # vi /etc/ssh/sshd_config
Port 22
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication yes
GSSAPIAuthentication yes
GSSAPICleanupCredentials yes
UsePAM yes
X11Forwarding yes
Subsystem sftp /usr/libexec/sftp-server
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