diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-11 07:18:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 07:18:11 +0100 |
commit | 403faebaba8f1cfcdd0212057e63ca21301d38b7 (patch) | |
tree | 27a532cba89913c2559c446a0aef02e56b67bc3b /data/templates | |
parent | 01c8330ca446e9bc9dde6a59357a06ee6ed2b86c (diff) | |
parent | 230ac0a202acd7ae9ad9bccb9e777ee5a0e0b7b7 (diff) | |
download | vyos-1x-403faebaba8f1cfcdd0212057e63ca21301d38b7.tar.gz vyos-1x-403faebaba8f1cfcdd0212057e63ca21301d38b7.zip |
Merge pull request #1214 from sever-sever/T3686
openvpn: T3686: Fix for check local-address in script and tmpl
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/openvpn/server.conf.tmpl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/data/templates/openvpn/server.conf.tmpl b/data/templates/openvpn/server.conf.tmpl index 7a0470d0e..fb7ad9e16 100644 --- a/data/templates/openvpn/server.conf.tmpl +++ b/data/templates/openvpn/server.conf.tmpl @@ -141,11 +141,13 @@ ping {{ keep_alive.interval }} ping-restart {{ keep_alive.failure_count }} {% if device_type == 'tap' %} -{% for laddr, laddr_conf in local_address.items() if laddr | is_ipv4 %} -{% if laddr_conf is defined and laddr_conf.subnet_mask is defined and laddr_conf.subnet_mask is not none %} +{% if local_address is defined and local_address is not none %} +{% for laddr, laddr_conf in local_address.items() if laddr | is_ipv4 %} +{% if laddr_conf is defined and laddr_conf.subnet_mask is defined and laddr_conf.subnet_mask is not none %} ifconfig {{ laddr }} {{ laddr_conf.subnet_mask }} -{% endif %} -{% endfor %} +{% endif %} +{% endfor %} +{% endif %} {% else %} {% for laddr in local_address if laddr | is_ipv4 %} {% for raddr in remote_address if raddr | is_ipv4 %} |