This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computing:ssh [2019/03/25 04:35] – oemb1905 | computing:ssh [2026/09/11 17:39] (current) – oemb1905 | ||
|---|---|---|---|
| Line 51: | Line 51: | ||
| PrintMotd yes | PrintMotd yes | ||
| ChallengeResponseAuthentication no | ChallengeResponseAuthentication no | ||
| + | UsePAM yes | ||
| | | ||
| Then, always restart the service | Then, always restart the service | ||
| Line 56: | Line 57: | ||
| sudo systemctl restart sshd.service | sudo systemctl restart sshd.service | ||
| | | ||
| + | Debian 14 changes to ssh. The kex packets are so large they may not traverse on vpn connections, | ||
| + | KexAlgorithms curve25519-sha256, | ||
| + | | ||
| + | On the box reaching out or from which you are connecting, open '' | ||
| + | |||
| + | KexAlgorithms curve25519-sha256 | ||
| + | IPQoS none | ||
| + | |||
| + | If you have not yet noticed, nor made any changes and need to connect quickly, use the following: | ||
| + | |||
| + | ssh -o KexAlgorithms=curve25519-sha256 -o IPQoS=none root@10.13.13.20 | ||
| + | Then, if you use git across a vpn, you will now need to accept those environment variables. So on the git server' | ||
| - | --- // | + | AcceptEnv LANG LC_* GIT_PROTOCOL |
| + | --- // | ||