Changes between Version 51 and Version 52 of cypress/SshUsage
- Timestamp:
- 01/31/23 17:16:26 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/SshUsage
v51 v52 190 190 [[Image(https://docs.google.com/drawings/d/e/2PACX-1vSlffILDUxxzh_QpD4M7P5-bY_tCkYNjA9xIYWuUUqz_HBBczQ18o5AWA9OZ5_w5Q0bwQJbdgmUCuMJ/pub?w=594&h=209, center)]] 191 191 192 > If you encounter the error below: 193 {{{ 194 $ssh userid@cypress.tulane.edu 195 Error msg: Unable to negotiate with xx.xx.xx.xx port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss 196 }}} 197 > Add the following lines to ~/.ssh/config on your local computer. 198 {{{ 199 Host cypress.tulane.edu 200 HostName cypress.tulane.edu 201 HostKeyAlgorithms=+ssh-rsa,ssh-dss 202 PubkeyAcceptedKeyTypes=+ssh-rsa 203 }}} 204 192 205 [[cypress/ssh_public-key_authentication | ssh Public-key Authentication]] 193 206