summaryrefslogtreecommitdiffstats
path: root/tests/syntax-tests/source/SSHD Config/sshd_config
diff options
context:
space:
mode:
Diffstat (limited to 'tests/syntax-tests/source/SSHD Config/sshd_config')
-rw-r--r--tests/syntax-tests/source/SSHD Config/sshd_config36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/syntax-tests/source/SSHD Config/sshd_config b/tests/syntax-tests/source/SSHD Config/sshd_config
new file mode 100644
index 00000000..77be3b9f
--- /dev/null
+++ b/tests/syntax-tests/source/SSHD Config/sshd_config
@@ -0,0 +1,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