diff --git a/SwitchCisco.md b/SwitchCisco.md index ad03d1d9..b74a3a5d 100644 --- a/SwitchCisco.md +++ b/SwitchCisco.md @@ -1152,3 +1152,17 @@ de les relier avec des câbles Cisco FlexStack. Astuce : un switch stackable (S Series) est parfois moins cher qu'un non-stackable… et il peut pourtant très bien être utilisé tout seul ! +### SSH Unable to negotiate + +Lorsque ce type de message est reçu quand on tente de se ssh à un switch : + +~~~ +$ ssh root@192.0.2.1 +Unable to negotiate with 192.0.2.1 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 +~~~ + +Il faut se connecter en précisant que l'on veut utiliser l'offre proposée diffie-hellman-group1-sha1 : + +~~~ +$ ssh root@192.0.2.1 -o "KexAlgorithms diffie-hellman-group1-sha1" +~~~ \ No newline at end of file