ssh_config 1.4 KB

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