Solution for SSH login problems into Meteobridge PRO

This section covers the Meteobridge PRO, PRO2, NANO SD, Raspberry Pi and VM platforms exclusively

Moderator: Mattk

Post Reply
User avatar
admin
Platinum Boarder
Platinum Boarder
Posts: 7854
Joined: Mon Oct 01, 2007 10:51 pm

Solution for SSH login problems into Meteobridge PRO

Post by admin »

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:

Code: Select all

KexAlgorithms +"diffie-hellman-group1-sha1"
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

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 root@<ip-of-my-meteobridge>
Post Reply