diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-11 15:58:18 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-11 15:58:18 +0200 |
commit | 5deb12c509bea6e353c3b4c3174f040895646cf8 (patch) | |
tree | 0405621fdec0de0430bdf3bbe5b37b9aa9709701 /data/templates/ssh/sshd_config.tmpl | |
parent | c2c91c4a7c74c851236a40759fa56521f39cd2cc (diff) | |
download | vyos-1x-5deb12c509bea6e353c3b4c3174f040895646cf8.tar.gz vyos-1x-5deb12c509bea6e353c3b4c3174f040895646cf8.zip |
ssh: T2321: add VRF support
Diffstat (limited to 'data/templates/ssh/sshd_config.tmpl')
-rw-r--r-- | data/templates/ssh/sshd_config.tmpl | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/data/templates/ssh/sshd_config.tmpl b/data/templates/ssh/sshd_config.tmpl index 949a8558f..08fe56655 100644 --- a/data/templates/ssh/sshd_config.tmpl +++ b/data/templates/ssh/sshd_config.tmpl @@ -28,15 +28,11 @@ UsePAM yes # address maps back to the very same IP address. UseDNS {{ host_validation }} -# Specifies the port number that sshd listens on. The default is 22. +# Specifies the port number that sshd listens on. The default is 22. # Multiple options of this type are permitted. -{% if mport|length != 0 %} -{% for p in mport %} +{% for p in port %} Port {{ p }} {% endfor %} -{% else %} -Port {{ port }} -{% endif %} # Gives the verbosity level that is used when logging messages from sshd LogLevel {{ log_level }} |