ssh_config 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ##
  2. ## ssh_config -- OpenSSH Client Configuration
  3. ##
  4. Host localhost
  5. Compression no
  6. ForwardX11 yes
  7. KeepAlive yes
  8. # Global Default Settings
  9. # (keep this section last here, because
  10. # the rule is "first matching is used")
  11. Host *
  12. BatchMode no
  13. CheckHostIP yes
  14. Protocol 1,2
  15. HostKeyAlgorithms ssh-rsa,ssh-dss
  16. PreferredAuthentications hostbased,publickey,keyboard-interactive,password
  17. Cipher 3des
  18. Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
  19. MACs hmac-sha1,hmac-md5,hmac-ripemd160,hmac-sha1-96,hmac-md5-96
  20. Compression yes
  21. CompressionLevel 4
  22. ConnectionAttempts 2
  23. PubkeyAuthentication yes
  24. DSAAuthentication yes
  25. RSAAuthentication yes
  26. ChallengeResponseAuthentication yes
  27. PasswordAuthentication yes
  28. NumberOfPasswordPrompts 2
  29. RhostsAuthentication no
  30. RhostsRSAAuthentication no
  31. StrictHostKeyChecking no
  32. UsePrivilegedPort no
  33. EscapeChar ~
  34. ForwardAgent yes
  35. ForwardX11 no
  36. GatewayPorts no
  37. KeepAlive no
  38. LogLevel INFO