feat: add password clause to ssh config
This commit is contained in:
parent
a805a13934
commit
1b6aa4229d
1 changed files with 8 additions and 0 deletions
8
skel/etc/ssh/sshd_config.d/password_authentication.conf
Normal file
8
skel/etc/ssh/sshd_config.d/password_authentication.conf
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Disable password authentication by default
|
||||
PasswordAuthentication no
|
||||
ChallengeResponseAuthentication no
|
||||
|
||||
# Only allow password authentication for internal networks
|
||||
Match Address 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
|
||||
PasswordAuthentication yes
|
||||
ChallengeResponseAuthentication yes
|
Loading…
Reference in a new issue