22
0
Fork 0

Ajout ### SSH Unable to negotiate

This commit is contained in:
jdubois 2020-01-06 11:25:57 +01:00
parent 48b6bd80cc
commit 09afca1b95
1 changed files with 14 additions and 0 deletions

View File

@ -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"
~~~