
3 changed files with 50 additions and 4 deletions
@ -0,0 +1,32 @@ |
|||
# The strategy used for options in the default sshd_config shipped with |
|||
# OpenSSH is to specify options with their default value where |
|||
# possible, but leave them commented. Uncommented options override the |
|||
# default value. |
|||
|
|||
# Listening: |
|||
#Port 22 |
|||
#AddressFamily any |
|||
#ListenAddress 0.0.0.0 |
|||
#ListenAddress :: |
|||
|
|||
# Host Keys: |
|||
HostKey /etc/ssh/keys/ssh_host_rsa_key |
|||
HostKey /etc/ssh/keys/ssh_host_ecdsa_key |
|||
HostKey /etc/ssh/keys/ssh_host_ed25519_key |
|||
|
|||
# Authentication: |
|||
PermitRootLogin no |
|||
PubkeyAuthentication yes |
|||
PasswordAuthentication no |
|||
PermitEmptyPasswords no |
|||
ChallengeResponseAuthentication no |
|||
|
|||
# Settings: |
|||
X11Forwarding no |
|||
PrintMotd no |
|||
|
|||
# Allow client to pass locale environment variables |
|||
AcceptEnv LANG LC_* |
|||
|
|||
# override default of no subsystems |
|||
Subsystem sftp /usr/lib/openssh/sftp-server |
Loading…
Reference in new issue