Initialize Tizen 2.3
[external/openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.80 2008/07/02 02:24:18 djm Exp $
2
3 # This is the sshd server system-wide configuration file.  See
4 # sshd_config(5) for more information.
5
6 # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
7
8 # The strategy used for options in the default sshd_config shipped with
9 # OpenSSH is to specify options with their default value where
10 # possible, but leave them commented.  Uncommented options change a
11 # default value.
12
13 #Port 22
14 #AddressFamily any
15 #ListenAddress 0.0.0.0
16 #ListenAddress ::
17
18 # Disable legacy (protocol version 1) support in the server for new
19 # installations. In future the default will change to require explicit
20 # activation of protocol 1
21 Protocol 2
22
23 # HostKey for protocol version 1
24 #HostKey /etc/ssh/ssh_host_key
25 # HostKeys for protocol version 2
26 #HostKey /etc/ssh/ssh_host_rsa_key
27 #HostKey /etc/ssh/ssh_host_dsa_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 # See /usr/share/doc/openssh-server/README.Debian.gz.
42 #PermitRootLogin yes
43 #StrictModes yes
44 #MaxAuthTries 6
45 #MaxSessions 10
46
47 #RSAAuthentication yes
48 #PubkeyAuthentication yes
49 #AuthorizedKeysFile     .ssh/authorized_keys
50
51 # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
52 #RhostsRSAAuthentication no
53 # similar for protocol version 2
54 #HostbasedAuthentication no
55 # Change to yes if you don't trust ~/.ssh/known_hosts for
56 # RhostsRSAAuthentication and HostbasedAuthentication
57 #IgnoreUserKnownHosts no
58 # Don't read the user's ~/.rhosts and ~/.shosts files
59 #IgnoreRhosts yes
60
61 # To disable tunneled clear text passwords, change to no here!
62 #PasswordAuthentication yes
63 #PermitEmptyPasswords no
64
65 # Change to no to disable s/key passwords
66 #ChallengeResponseAuthentication yes
67
68 # Kerberos options
69 #KerberosAuthentication no
70 #KerberosOrLocalPasswd yes
71 #KerberosTicketCleanup yes
72 #KerberosGetAFSToken no
73
74 # GSSAPI options
75 #GSSAPIAuthentication no
76 #GSSAPICleanupCredentials yes
77 #GSSAPIStrictAcceptorCheck yes
78 #GSSAPIKeyExchange no
79
80 # Set this to 'yes' to enable PAM authentication, account processing, 
81 # and session processing. If this is enabled, PAM authentication will 
82 # be allowed through the ChallengeResponseAuthentication and
83 # PasswordAuthentication.  Depending on your PAM configuration,
84 # PAM authentication via ChallengeResponseAuthentication may bypass
85 # the setting of "PermitRootLogin without-password".
86 # If you just want the PAM account and session checks to run without
87 # PAM authentication, then enable this but set PasswordAuthentication
88 # and ChallengeResponseAuthentication to 'no'.
89 #UsePAM no
90
91 #AllowAgentForwarding yes
92 #AllowTcpForwarding yes
93 #GatewayPorts no
94 #X11Forwarding no
95 #X11DisplayOffset 10
96 #X11UseLocalhost yes
97 #PrintMotd yes
98 #PrintLastLog yes
99 #TCPKeepAlive yes
100 #UseLogin no
101 #UsePrivilegeSeparation yes
102 #PermitUserEnvironment no
103 #Compression delayed
104 #ClientAliveInterval 0
105 #ClientAliveCountMax 3
106 #UseDNS yes
107 #PidFile /var/run/sshd.pid
108 #MaxStartups 10
109 #PermitTunnel no
110 #ChrootDirectory none
111
112 # no default banner path
113 #Banner none
114
115 # override default of no subsystems
116 Subsystem       sftp    /usr/libexec/sftp-server
117
118 # Example of overriding settings on a per-user basis
119 #Match User anoncvs
120 #       X11Forwarding no
121 #       AllowTcpForwarding no
122 #       ForceCommand cvs server