summaryrefslogtreecommitdiff
path: root/sshd_config
diff options
context:
space:
mode:
Diffstat (limited to 'sshd_config')
-rw-r--r--sshd_config50
1 files changed, 50 insertions, 0 deletions
diff --git a/sshd_config b/sshd_config
new file mode 100644
index 000000000..614cf706b
--- /dev/null
+++ b/sshd_config
@@ -0,0 +1,50 @@
1# This is ssh server systemwide configuration file.
2
3Port 22
4ListenAddress 0.0.0.0
5#ListenAddress ::
6HostKey /etc/ssh_host_key
7ServerKeyBits 768
8LoginGraceTime 600
9KeyRegenerationInterval 3600
10PermitRootLogin yes
11#
12# Don't read ~/.rhosts and ~/.shosts files
13IgnoreRhosts yes
14# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
15#IgnoreUserKnownHosts yes
16StrictModes yes
17X11Forwarding no
18X11DisplayOffset 10
19PrintMotd yes
20KeepAlive yes
21
22# Logging
23SyslogFacility AUTH
24LogLevel INFO
25#obsoletes QuietMode and FascistLogging
26
27RhostsAuthentication no
28#
29# For this to work you will also need host keys in /etc/ssh_known_hosts
30RhostsRSAAuthentication no
31#
32RSAAuthentication yes
33
34# To disable tunneled clear text passwords, change to no here!
35PasswordAuthentication yes
36PermitEmptyPasswords no
37# Uncomment to disable s/key passwords
38#SkeyAuthentication no
39
40# To change Kerberos options
41#KerberosAuthentication no
42#KerberosOrLocalPasswd yes
43#AFSTokenPassing no
44#KerberosTicketCleanup no
45
46# Kerberos TGT Passing does only work with the AFS kaserver
47#KerberosTgtPassing yes
48
49CheckMail no
50UseLogin no