Solution for SSH login problems into Meteobridge PRO
Posted: Mon Nov 22, 2021 11:12 am
With update to newest Mac OS or Ubuntu the SSH client on those systems does no longer support the key exchange methods the SSH daemon on the Meteobridge PRO does provide as default. This can be easily fixed by adding the following line to the ssh config file on your Ubuntu or Mac OS system:
If you don't want to allow use of these older key exchange method in general you can also specify it as a command line parameter just when connecting to the Meteobridge via ssh, like:
Code: Select all
KexAlgorithms +"diffie-hellman-group1-sha1"
Code: Select all
ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 root@<ip-of-my-meteobridge>