meta data for this page
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| sw:ssh:issues [2022/02/15 07:44] – created niziak | sw:ssh:issues [2023/07/14 15:29] (current) – niziak | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Issues ====== | ====== Issues ====== | ||
| + | |||
| + | ===== debug1: expecting SSH2_MSG_KEX_ECDH_REPLY ===== | ||
| + | |||
| + | SSH hangs on '' | ||
| + | |||
| + | Not catched root issue yet. Internet says it is related to packet size. So some workaround sometimes works: | ||
| + | - reducing MTU in interface | ||
| + | - limiting Kex list (reduce packet size during exchange) | ||
| + | - specifing cipher for connection | ||
| + | |||
| + | |||
| + | <code bash>ip li set mtu 1400 dev wlan0</ | ||
| + | |||
| + | <code bash>ssh -c aes256-gcm@openssh.com host</ | ||
| + | |||
| + | <code bash> | ||
| + | ssh -o KexAlgorithms=ecdh-sha2-nistp521 username@systemname | ||
| + | </ | ||
| + | |||
| + | <file config ~/ | ||
| + | KexAlgorithms ecdh-sha2-nistp521 | ||
| + | </ | ||
| + | |||
| + | Source: | ||
| + | * [[https:// | ||
| + | ]] | ||
| + | * [[https:// | ||
| ===== X11 forwarding request failed on channel 0 ===== | ===== X11 forwarding request failed on channel 0 ===== | ||