]> andersk Git - openssh.git/blob - sshd_config
20030622
[openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.61 2003/06/20 05:48:21 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 #Protocol 2,1
15 #ListenAddress 0.0.0.0
16 #ListenAddress ::
17
18 # HostKey for protocol version 1
19 #HostKey /etc/ssh/ssh_host_key
20 # HostKeys for protocol version 2
21 #HostKey /etc/ssh/ssh_host_rsa_key
22 #HostKey /etc/ssh/ssh_host_dsa_key
23
24 # Lifetime and size of ephemeral version 1 server key
25 #KeyRegenerationInterval 1h
26 #ServerKeyBits 768
27
28 # Logging
29 #obsoletes QuietMode and FascistLogging
30 #SyslogFacility AUTH
31 #LogLevel INFO
32
33 # Authentication:
34
35 #LoginGraceTime 2m
36 #PermitRootLogin yes
37 #StrictModes yes
38
39 #RSAAuthentication yes
40 #PubkeyAuthentication yes
41 #AuthorizedKeysFile     .ssh/authorized_keys
42
43 # rhosts authentication should not be used
44 #RhostsAuthentication no
45 # Don't read the user's ~/.rhosts and ~/.shosts files
46 #IgnoreRhosts yes
47 # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
48 #RhostsRSAAuthentication no
49 # similar for protocol version 2
50 #HostbasedAuthentication no
51 # Change to yes if you don't trust ~/.ssh/known_hosts for
52 # RhostsRSAAuthentication and HostbasedAuthentication
53 #IgnoreUserKnownHosts no
54
55 # To disable tunneled clear text passwords, change to no here!
56 #PasswordAuthentication yes
57 #PermitEmptyPasswords no
58
59 # Change to no to disable s/key passwords
60 #ChallengeResponseAuthentication yes
61
62 # Kerberos options
63 #KerberosAuthentication no
64 #KerberosOrLocalPasswd yes
65 #KerberosTicketCleanup yes
66
67 #AFSTokenPassing no
68
69 # Kerberos TGT Passing only works with the AFS kaserver
70 #KerberosTgtPassing no
71
72 # Set this to 'yes' to enable PAM authentication (via challenge-response)
73 # and session processing. Depending on your PAM configuration, this may
74 # bypass the setting of 'PasswordAuthentication'
75 #UsePAM yes
76
77 #AllowTcpForwarding yes
78 #GatewayPorts no
79 #X11Forwarding no
80 #X11DisplayOffset 10
81 #X11UseLocalhost yes
82 #PrintMotd yes
83 #PrintLastLog yes
84 #KeepAlive yes
85 #UseLogin no
86 #UsePrivilegeSeparation yes
87 #PermitUserEnvironment no
88 #Compression yes
89 #ClientAliveInterval 0
90 #ClientAliveCountMax 3
91 #UseDNS yes
92 #PidFile /var/run/sshd.pid
93 #MaxStartups 10
94
95 # no default banner path
96 #Banner /some/path
97
98 # override default of no subsystems
99 Subsystem       sftp    /usr/libexec/sftp-server
This page took 2.757194 seconds and 5 git commands to generate.