If I put
AllowUsers
in my sshd_config file with nothing following it would the behavior be to allow everyone to SSH into the computer, or to deny everyone?
É tão difícil tentar?
echo "AllowUsers" > /etc/ssh/sshd_config
systemctl restart sshd
systemctl status sshd # no error
ssh user@localhost # succeed
Então, sim, você pode colocar a opção AllowUsers
sem argumento e ela se comportará como se não houvesse nenhuma opção (todos os usuários serão permitidos, se você não especificar DenyUsers
ou qualquer AllowUsers
antes) .