2023-08-11 11:36:08 -04:00
|
|
|
# Include drop-in configurations
|
|
|
|
Include /etc/ssh/sshd_config.d/*.conf
|
2021-07-28 08:18:33 -04:00
|
|
|
|
|
|
|
# This is the sshd server system-wide configuration file. See
|
|
|
|
# sshd_config(5) for more information.
|
|
|
|
|
|
|
|
# This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/bin
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
#Port 22
|
|
|
|
#AddressFamily any
|
|
|
|
#ListenAddress 0.0.0.0
|
|
|
|
#ListenAddress ::
|
|
|
|
|
2023-08-14 23:31:22 -04:00
|
|
|
IPQoS af21 af11
|
|
|
|
|
2021-07-28 08:18:33 -04:00
|
|
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
|
|
|
HostKeyAlgorithms ssh-ed25519
|
2022-07-22 19:55:59 -04:00
|
|
|
KexAlgorithms sntrup761x25519-sha512@openssh.com
|
2021-07-28 08:18:33 -04:00
|
|
|
PubkeyAcceptedKeyTypes ssh-ed25519
|
2023-07-22 16:32:52 -04:00
|
|
|
Ciphers aes256-gcm@openssh.com
|
2021-08-23 09:23:16 -04:00
|
|
|
MACs -*
|
2021-07-28 08:18:33 -04:00
|
|
|
|
|
|
|
# Ciphers and keying
|
|
|
|
#RekeyLimit default none
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
#SyslogFacility AUTH
|
|
|
|
#LogLevel INFO
|
|
|
|
|
|
|
|
# Authentication:
|
|
|
|
|
2021-09-06 01:37:16 -04:00
|
|
|
LoginGraceTime 15s
|
2021-07-28 08:18:33 -04:00
|
|
|
#PermitRootLogin prohibit-password
|
|
|
|
#StrictModes yes
|
2022-07-22 20:00:52 -04:00
|
|
|
MaxAuthTries 1
|
2021-07-28 08:18:33 -04:00
|
|
|
#MaxSessions 10
|
|
|
|
|
2021-11-27 20:31:30 -05:00
|
|
|
AllowUsers {{ssh_users}}
|
|
|
|
|
2021-07-28 08:18:33 -04:00
|
|
|
#PubkeyAuthentication yes
|
|
|
|
|
|
|
|
# The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
|
|
|
|
# but this is overridden so installations will only check .ssh/authorized_keys
|
|
|
|
AuthorizedKeysFile .ssh/authorized_keys
|
|
|
|
|
|
|
|
#AuthorizedPrincipalsFile none
|
|
|
|
|
|
|
|
#AuthorizedKeysCommand none
|
|
|
|
#AuthorizedKeysCommandUser nobody
|
|
|
|
|
|
|
|
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
|
|
|
|
#HostbasedAuthentication no
|
|
|
|
# Change to yes if you don't trust ~/.ssh/known_hosts for
|
|
|
|
# HostbasedAuthentication
|
|
|
|
#IgnoreUserKnownHosts no
|
|
|
|
# Don't read the user's ~/.rhosts and ~/.shosts files
|
|
|
|
#IgnoreRhosts yes
|
|
|
|
|
|
|
|
# To disable tunneled clear text passwords, change to no here!
|
|
|
|
PasswordAuthentication no
|
|
|
|
#PermitEmptyPasswords no
|
|
|
|
|
|
|
|
# Change to no to disable s/key passwords
|
2021-08-23 02:37:28 -04:00
|
|
|
KbdInteractiveAuthentication no
|
2021-07-28 08:18:33 -04:00
|
|
|
|
|
|
|
# Kerberos options
|
|
|
|
#KerberosAuthentication no
|
|
|
|
#KerberosOrLocalPasswd yes
|
|
|
|
#KerberosTicketCleanup yes
|
|
|
|
#KerberosGetAFSToken no
|
|
|
|
|
|
|
|
# GSSAPI options
|
|
|
|
#GSSAPIAuthentication no
|
|
|
|
#GSSAPICleanupCredentials yes
|
|
|
|
|
|
|
|
# Set this to 'yes' to enable PAM authentication, account processing,
|
|
|
|
# and session processing. If this is enabled, PAM authentication will
|
2021-08-23 02:37:28 -04:00
|
|
|
# be allowed through the KbdInteractiveAuthentication and
|
2021-07-28 08:18:33 -04:00
|
|
|
# PasswordAuthentication. Depending on your PAM configuration,
|
2021-08-23 02:37:28 -04:00
|
|
|
# PAM authentication via KbdInteractiveAuthentication may bypass
|
2023-02-02 13:48:35 -05:00
|
|
|
# the setting of "PermitRootLogin prohibit-password".
|
2021-07-28 08:18:33 -04:00
|
|
|
# If you just want the PAM account and session checks to run without
|
|
|
|
# PAM authentication, then enable this but set PasswordAuthentication
|
2021-08-23 02:37:28 -04:00
|
|
|
# and KbdInteractiveAuthentication to 'no'.
|
2021-07-28 08:18:33 -04:00
|
|
|
UsePAM yes
|
|
|
|
|
2022-07-11 19:57:42 -04:00
|
|
|
AllowAgentForwarding no
|
2021-07-28 08:18:33 -04:00
|
|
|
#AllowTcpForwarding yes
|
|
|
|
#GatewayPorts no
|
|
|
|
#X11Forwarding no
|
|
|
|
#X11DisplayOffset 10
|
|
|
|
#X11UseLocalhost yes
|
|
|
|
#PermitTTY yes
|
2023-02-02 13:48:35 -05:00
|
|
|
PrintMotd no
|
2021-07-28 08:18:33 -04:00
|
|
|
#PrintLastLog yes
|
2023-02-10 11:19:56 -05:00
|
|
|
TCPKeepAlive no
|
2021-07-28 08:18:33 -04:00
|
|
|
#PermitUserEnvironment no
|
|
|
|
#Compression delayed
|
2023-02-10 11:19:56 -05:00
|
|
|
ClientAliveInterval 60
|
|
|
|
ClientAliveCountMax 10
|
2021-07-28 08:18:33 -04:00
|
|
|
#UseDNS no
|
|
|
|
#PidFile /run/sshd.pid
|
2021-09-06 02:42:22 -04:00
|
|
|
MaxStartups 4096
|
2021-07-28 08:18:33 -04:00
|
|
|
#PermitTunnel no
|
|
|
|
#ChrootDirectory none
|
|
|
|
#VersionAddendum none
|
|
|
|
|
|
|
|
# no default banner path
|
|
|
|
#Banner none
|
|
|
|
|
|
|
|
# override default of no subsystems
|
2023-02-02 13:48:35 -05:00
|
|
|
Subsystem sftp /usr/lib/ssh/sftp-server
|
2021-07-28 08:18:33 -04:00
|
|
|
|
|
|
|
# Example of overriding settings on a per-user basis
|
|
|
|
#Match User anoncvs
|
|
|
|
# X11Forwarding no
|
|
|
|
# AllowTcpForwarding no
|
|
|
|
# PermitTTY no
|
|
|
|
# ForceCommand cvs server
|