lidl-gateway-freedom icon indicating copy to clipboard operation
lidl-gateway-freedom copied to clipboard

firmware_upgrade.sh

Open sekt1953 opened this issue 3 years ago • 2 comments

I get this message:

Unable to negotiate with 192.168.0.231 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss

sekt1953 avatar Oct 30 '22 13:10 sekt1953

i have found a solution, the problem was in the firmware_upgrade.sh file

The SSH connection should look like this:

ssh -p${SSH_PORT} -oHostKeyAlgorithms=+ssh-dss root@${GATEWAY_HOST}

There are 3 lines that must be corrected

sekt1953 avatar Oct 30 '22 14:10 sekt1953

in my case I needed:

ssh -p${SSH_PORT} -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa root@${GATEWAY_HOST}

derhagen avatar Jan 29 '23 21:01 derhagen