summaryrefslogtreecommitdiffstats
path: root/tests/syntax-tests/source/SSHD Config/sshd_config
blob: 77be3b9f16ae080343893889f4cb41b194a21669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This test sshd config file is intended for syntax testing
# purposes only.
#
# Definitely do not use this in production for sshd.

Port 22

# Here's a directive commented out:
#ListenAddress 0.0.0.0

ListenAddress 127.0.0.1

HostKey /etc/ssh/ssh_host_rsa_key
IgnoreRhosts yes
PrintMotd yes
X11Forwarding no
AllowAgentForwarding no
PermitRootLogin forced-commands-only
SyslogFacility AUTH

LogLevel VERBOSE

AuthorizedKeysFile /etc/ssh/authorized-keys/%u

PasswordAuthentication yes
PermitEmptyPasswords no
AllowUsers alice

# pass locale information
AcceptEnv LANG LC_*

Banner /etc/sshd_banner

AllowTcpForwarding yes
PermitTunnel no
PermitTTY yes