lidl-gateway-freedom
lidl-gateway-freedom copied to clipboard
firmware_upgrade.sh
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
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
in my case I needed:
ssh -p${SSH_PORT} -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa root@${GATEWAY_HOST}