Changes between Version 51 and Version 52 of cypress/SshUsage


Ignore:
Timestamp:
01/31/23 17:16:26 (15 months ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/SshUsage

    v51 v52  
    190190[[Image(https://docs.google.com/drawings/d/e/2PACX-1vSlffILDUxxzh_QpD4M7P5-bY_tCkYNjA9xIYWuUUqz_HBBczQ18o5AWA9OZ5_w5Q0bwQJbdgmUCuMJ/pub?w=594&h=209, center)]]
    191191
     192> If you encounter the error below:
     193{{{
     194$ssh userid@cypress.tulane.edu
     195Error 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{{{
     199Host cypress.tulane.edu
     200        HostName cypress.tulane.edu
     201        HostKeyAlgorithms=+ssh-rsa,ssh-dss
     202        PubkeyAcceptedKeyTypes=+ssh-rsa
     203}}}
     204
    192205[[cypress/ssh_public-key_authentication | ssh Public-key Authentication]]
    193206