Ubuntu Server 16.04 with OpenSSH 7.2 package
I need to dump / upload my phone system backup files to a SFTP server so I setup this Linux machine to receive the files.
When I try and send the files I get this error message:
An error occurred while trying to connect to the sftp server xxx.xxx.xxx.45
My phone system log files show it as this error:
An error occurred while trying to connect to xxx.xxx.xxx.45 with s8800:Algorithm negotiation fail
My SSH log files show the error as this:
Oct 26 16:50:31 localhost sshd[2024]: fatal: Unable to negotiate with xxx.xxx.xxx.56 port 55751: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1,diffie-hellman-group-exchange-sha1 [preauth]
I did some research and I found I needed to add this to my ssh_config file:
KexAlgorithms +diffie-hellman-group1-sha1
Which hasn't made any difference.
Does anyone have any suggestions?
I need to dump / upload my phone system backup files to a SFTP server so I setup this Linux machine to receive the files.
When I try and send the files I get this error message:
An error occurred while trying to connect to the sftp server xxx.xxx.xxx.45
My phone system log files show it as this error:
An error occurred while trying to connect to xxx.xxx.xxx.45 with s8800:Algorithm negotiation fail
My SSH log files show the error as this:
Oct 26 16:50:31 localhost sshd[2024]: fatal: Unable to negotiate with xxx.xxx.xxx.56 port 55751: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1,diffie-hellman-group-exchange-sha1 [preauth]
I did some research and I found I needed to add this to my ssh_config file:
KexAlgorithms +diffie-hellman-group1-sha1
Which hasn't made any difference.
Does anyone have any suggestions?