Advertisement
Guest User

Untitled

a guest
Dec 20th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. root@fileserver:~/.ssh# cat /etc/ssh/sshd_config | grep -v ^#
  2.  
  3. Port 22
  4. Protocol 2
  5. HostKey /etc/ssh/ssh_host_rsa_key
  6. HostKey /etc/ssh/ssh_host_dsa_key
  7. UsePrivilegeSeparation yes
  8.  
  9. KeyRegenerationInterval 3600
  10. ServerKeyBits 768
  11.  
  12. SyslogFacility AUTH
  13. LogLevel INFO
  14.  
  15. LoginGraceTime 120
  16. PermitRootLogin yes
  17. StrictModes yes
  18.  
  19. RSAAuthentication yes
  20. PubkeyAuthentication yes
  21. AuthorizedKeysFile .ssh/authorized_keys
  22.  
  23. IgnoreRhosts yes
  24. RhostsRSAAuthentication no
  25. HostbasedAuthentication no
  26.  
  27. PermitEmptyPasswords no
  28.  
  29. ChallengeResponseAuthentication no
  30.  
  31.  
  32.  
  33.  
  34. X11Forwarding yes
  35. X11DisplayOffset 10
  36. PrintMotd no
  37. PrintLastLog yes
  38. TCPKeepAlive yes
  39. UseLogin no
  40.  
  41.  
  42. AcceptEnv LANG LC_*
  43.  
  44. Subsystem sftp /usr/lib/openssh/sftp-server
  45.  
  46. UsePAM yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement