diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-21 20:03:13 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-21 20:03:13 +0200 |
commit | 9cf0514668b1461d3b74076b99c9edabafa10418 (patch) | |
tree | 1debbad631e620ebcce4bb842ed0ce743f9c4342 /src/conf_mode | |
parent | 06e3d57867d2da4118ea0328fb3cf9074081f444 (diff) | |
download | vyos-1x-9cf0514668b1461d3b74076b99c9edabafa10418.tar.gz vyos-1x-9cf0514668b1461d3b74076b99c9edabafa10418.zip |
T634: remove 'service ssh allow-root'
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/ssh.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/conf_mode/ssh.py b/src/conf_mode/ssh.py index b681acea3..2a5cba99a 100755 --- a/src/conf_mode/ssh.py +++ b/src/conf_mode/ssh.py @@ -79,7 +79,7 @@ Port {{ port }} LogLevel {{ log_level }} # Specifies whether root can log in using ssh -PermitRootLogin {{ allow_root }} +PermitRootLogin no # Specifies whether password authentication is allowed PasswordAuthentication {{ password_authentication }} @@ -164,7 +164,6 @@ ClientAliveInterval {{ client_keepalive }} default_config_data = { 'port' : '22', 'log_level': 'INFO', - 'allow_root': 'no', 'password_authentication': 'yes', 'host_validation': 'yes' } @@ -193,9 +192,6 @@ def get_config(): deny_groups = conf.return_values('access-control deny group') ssh['deny_groups'] = deny_groups - if conf.exists('allow-root'): - ssh['allow-root'] = 'yes' - if conf.exists('ciphers'): ciphers = conf.return_values('ciphers') ssh['ciphers'] = ciphers |