1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-10-31 15:12:12 +00:00
Files
bat/tests/syntax-tests/highlighted/SSHD Config/sshd_config
2020-11-01 09:38:03 +01:00

2.2 KiB
Vendored

# 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