meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| sw:ssh:issues [2023/07/14 15:22] – niziak | sw:ssh:issues [2023/07/14 15:29] (current) – niziak | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| ===== debug1: expecting SSH2_MSG_KEX_ECDH_REPLY ===== | ===== debug1: expecting SSH2_MSG_KEX_ECDH_REPLY ===== | ||
| - | SSH hangs on '' | + | SSH hangs on '' |
| Not catched root issue yet. Internet says it is related to packet size. So some workaround sometimes works: | Not catched root issue yet. Internet says it is related to packet size. So some workaround sometimes works: | ||
| - reducing MTU in interface | - reducing MTU in interface | ||
| - limiting Kex list (reduce packet size during exchange) | - limiting Kex list (reduce packet size during exchange) | ||
| + | - specifing cipher for connection | ||
| - | <code bash | + | |
| + | <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 | ssh -o KexAlgorithms=ecdh-sha2-nistp521 username@systemname | ||
| </ | </ | ||
| Line 16: | Line 22: | ||
| KexAlgorithms ecdh-sha2-nistp521 | KexAlgorithms ecdh-sha2-nistp521 | ||
| </ | </ | ||
| + | |||
| + | Source: | ||
| + | * [[https:// | ||
| + | ]] | ||
| + | * [[https:// | ||
| ===== X11 forwarding request failed on channel 0 ===== | ===== X11 forwarding request failed on channel 0 ===== | ||