いつぞやか,MacやWindowsからSSHでFWX120へ接続する際に,エラーが出るようになり接続できなくなってしまった
1 | Unable to negotiate with 192.168.x.x port 22: no matching key exchange method found. Their offer: diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 |
こんな感じ。
で,色々なサイトで確認したのですが,ようやく接続できたconfigがこれ
.ssh/config
1 2 3 | Host 192.168.x.x KexAlgorithms +diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 HostKeyAlgorithms +ssh-rsa |