cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
578
Views
10
Helpful
2
Replies

FreeBSD 12 as Backup Device for CUCM DRS

Sergey 1907
Level 1
Level 1

Hello All

Does anyone work? If so, please share how you did it)).

1 Accepted Solution

Accepted Solutions

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

View solution in original post

2 Replies 2

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

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