Guest User

Untitled

a guest
Aug 11th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. $ cat /etc/ssh/sshd_config
  2. # $OpenBSD: sshd_config,v 1.84 2011/05/23 03:30:07 djm Exp $
  3.  
  4. # This is the sshd server system-wide configuration file. See
  5. # sshd_config(5) for more information.
  6.  
  7. # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
  8.  
  9. # The strategy used for options in the default sshd_config shipped with
  10. # OpenSSH is to specify options with their default value where
  11. # possible, but leave them commented. Uncommented options override the
  12. # default value.
  13. #Port 2222
  14. Port 22
  15. #AddressFamily any
  16. ListenAddress 0.0.0.0
  17. #ListenAddress ::
  18.  
  19. # The default requires explicit activation of protocol 1
  20. Protocol 2,1
  21.  
  22. # HostKey for protocol version 1
  23. #HostKey /etc/ssh/ssh_host_key
  24. # HostKeys for protocol version 2
  25. #HostKey /etc/ssh/ssh_host_rsa_key
  26. #HostKey /etc/ssh/ssh_host_dsa_key
  27. #HostKey /etc/ssh/ssh_host_ecdsa_key
  28.  
  29. # Lifetime and size of ephemeral version 1 server key
  30. #KeyRegenerationInterval 1h
  31. #ServerKeyBits 1024
  32.  
  33. # Logging
  34. # obsoletes QuietMode and FascistLogging
  35. #SyslogFacility AUTH
  36. #LogLevel INFO
  37.  
  38. # Authentication:
  39.  
  40. #LoginGraceTime 2m
  41. LoginGraceTime 120
  42. #PermitRootLogin yes
  43. PermitRootLogin no
  44. #StrictModes yes
  45. MaxAuthTries 2
  46. #MaxAuthTries 6
  47. #MaxSessions 10
  48.  
  49. #RSAAuthentication yes
  50. #PubkeyAuthentication yes
  51.  
  52. # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
  53. # but this is overridden so installations will only check .ssh/authorized_keys
  54. #AuthorizedKeysFile .ssh/authorized_keys
  55.  
  56. # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
  57. #RhostsRSAAuthentication no
  58. # similar for protocol version 2
  59. #HostbasedAuthentication no
  60. # Change to yes if you don't trust ~/.ssh/known_hosts for
  61. # RhostsRSAAuthentication and HostbasedAuthentication
  62. #IgnoreUserKnownHosts no
  63. # Don't read the user's ~/.rhosts and ~/.shosts files
  64. #IgnoreRhosts yes
  65.  
  66. # To disable tunneled clear text passwords, change to no here!
  67. #PasswordAuthentication yes
  68. #PermitEmptyPasswords no
  69.  
  70. # Change to no to disable s/key passwords
  71. #ChallengeResponseAuthentication no
  72.  
  73. # Kerberos options
  74. #KerberosAuthentication no
  75. #KerberosOrLocalPasswd yes
  76. #KerberosTicketCleanup yes
  77. #KerberosGetAFSToken no
  78.  
  79. # GSSAPI options
  80. #GSSAPIAuthentication no
  81. #GSSAPICleanupCredentials yes
  82.  
  83. # Set this to 'yes' to enable PAM authentication, account processing,
  84. # and session processing. If this is enabled, PAM authentication will
  85. # be allowed through the ChallengeResponseAuthentication and
  86. # PasswordAuthentication. Depending on your PAM configuration,
  87. # PAM authentication via ChallengeResponseAuthentication may bypass
  88. # the setting of "PermitRootLogin without-password".
  89. # If you just want the PAM account and session checks to run without
  90. # PAM authentication, then enable this but set PasswordAuthentication
  91. # and ChallengeResponseAuthentication to 'no'.
  92. #UsePAM yes
  93.  
  94. AllowAgentForwarding yes
  95. AllowTcpForwarding yes
  96. #GatewayPorts no
  97. #X11Forwarding no
  98. X11Forwarding yes
  99. X11DisplayOffset 10
  100. X11UseLocalhost yes
  101. #PrintMotd yes
  102. #PrintLastLog yes
  103. #TCPKeepAlive yes
  104. #UseLogin no
  105. #UsePrivilegeSeparation yes
  106. #PermitUserEnvironment no
  107. #Compression delayed
  108. #ClientAliveInterval 0
  109. #ClientAliveCountMax 3
  110. #UseDNS yes
  111. #PidFile /run/sshd.pid
  112. #MaxStartups 10
  113. #PermitTunnel no
  114. #ChrootDirectory none
  115.  
  116. # no default banner path
  117. Banner none
  118. #Banner /etc/issue
  119. # override default of no subsystems
  120. Subsystem sftp /usr/lib/ssh/sftp-server
  121.  
  122. # Example of overriding settings on a per-user basis
  123. #Match User anoncvs
  124. # X11Forwarding no
  125. # AllowTcpForwarding no
  126. # ForceCommand cvs server
  127. AllowUsers ginobvhc
Advertisement
Add Comment
Please, Sign In to add comment