27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
|
# Supported HostKey algorithms by order of preference.
|
||
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
||
|
HostKey /etc/ssh/ssh_host_rsa_key
|
||
|
HostKey /etc/ssh/ssh_host_ecdsa_key
|
||
|
|
||
|
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256
|
||
|
|
||
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
||
|
|
||
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
|
||
|
|
||
|
# Password based logins are disabled - only public key based logins are allowed.
|
||
|
AuthenticationMethods publickey
|
||
|
|
||
|
# LogLevel VERBOSE logs user's key fingerprint on login. Needed to have a clear audit track of which key was using to log in.
|
||
|
LogLevel VERBOSE
|
||
|
|
||
|
# Log sftp level file access (read/write/etc.) that would not be easily logged otherwise.
|
||
|
Subsystem sftp /usr/lib/openssh/sftp-server -f AUTHPRIV -l INFO
|
||
|
|
||
|
# Some of the Debian specific options sans X11 Forwarding
|
||
|
# X11 Forwarding is turned off because we don't run X11 on servers
|
||
|
ChallengeResponseAuthentication no
|
||
|
PrintMotd no
|
||
|
AcceptEnv LANG LC_*
|
||
|
UsePAM yes
|