AllowUsers sem nada seguindo no arquivo sshd_config?

0

Não tenho como testar isso e não consigo encontrar a resposta online. Se eu colocasse AllowUsers no meu arquivo sshd_config sem nada seguindo, o comportamento seria permitir que todos usassem o SSH no computador ou negar a todos?

Exemplo:

// all of sshd_conf file...

AllowUsers
    
por AlwaysQuestioning 04.11.2015 / 05:42

1 resposta

0

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) .

    
por 04.11.2015 / 08:16