
6 Aug
2023
6 Aug
'23
9:32 p.m.
| You can often ssh from newer systems to older systems by telling ssh | that it's allowed to use older options. | | For example, to connect from ubuntu 22 to centos 5, my .ssh/config file has | | Host centos5.example.com | KexAlgorithms +diffie-hellman-group1-sha1 | # ubuntu 22+ needs | HostkeyAlgorithms +ssh-rsa | PubkeyAcceptedKeyTypes +ssh-rsa | | and I left myself a reference to: | https://www.openssh.com/legacy.html | | Hope someone finds that helpful - cheers Yup. Worked. Thanks. So many things need research, so little time for it.