DebianConfigs/config/etc/ssh/sshd_config

42 lines
925 B
Plaintext
Raw Normal View History

2018-08-26 04:26:11 -06:00
#######
### OpenSSH Configuration
#######
### Connection settings
Port 222
#ListenAddress your.private.ipv4.address
#ListenAddress [your:private:ipv6:address:use:square:brackets]
2018-08-26 04:26:11 -06:00
TCPKeepAlive no
ClientAliveInterval 60
ClientAliveCountMax 30
Protocol 2
2018-08-26 04:26:11 -06:00
### Authentication settings
#HostKey /etc/ssh/ed25519.key
#HostKey /etc/ssh/RSA4096.key
#PasswordAuthentication no
PasswordAuthentication yes
2018-08-26 04:26:11 -06:00
PermitEmptyPasswords no
ChallengeResponseAuthentication no
UsePAM yes
AuthorizedKeysFile .ssh/authorized_keys
### Login settings
LoginGraceTime 1M
MaxAuthTries 3
MaxSessions 5
#PermitRootLogin no
PermitRootLogin yes
2019-03-29 13:58:57 -06:00
# note: 'AllowUsers' overrides 'PermitRootLogin' so list root here
# if you want root to have access!
AllowUsers root username username2
2018-08-26 04:26:11 -06:00
### Program settings
#Banner /etc/ssh/banner
2018-08-26 04:26:11 -06:00
LogLevel VERBOSE
X11Forwarding yes
PrintMotd no
PrintLastLog yes
2018-08-26 04:26:11 -06:00
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server