diff options
author | Lucas Christian <lucas@lucasec.com> | 2024-02-08 22:04:16 -0800 |
---|---|---|
committer | Lucas Christian <lucas@lucasec.com> | 2024-03-10 11:40:23 -0700 |
commit | cd8ef21f280f726955f537132e3fab2bcb3c286f (patch) | |
tree | 41c8a313e08b35ea58c292ea519fb72e1ddc5281 /data/templates/ipsec/swanctl/peer.j2 | |
parent | f7834324d3d9edd7e161e7f2f3868452997c9c81 (diff) | |
download | vyos-1x-cd8ef21f280f726955f537132e3fab2bcb3c286f.tar.gz vyos-1x-cd8ef21f280f726955f537132e3fab2bcb3c286f.zip |
T5872: fix ipsec dhclient exit hook
Diffstat (limited to 'data/templates/ipsec/swanctl/peer.j2')
-rw-r--r-- | data/templates/ipsec/swanctl/peer.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/ipsec/swanctl/peer.j2 b/data/templates/ipsec/swanctl/peer.j2 index 58f0199fa..f38691884 100644 --- a/data/templates/ipsec/swanctl/peer.j2 +++ b/data/templates/ipsec/swanctl/peer.j2 @@ -8,7 +8,7 @@ {% if peer_conf.virtual_address is vyos_defined %} vips = {{ peer_conf.virtual_address | join(', ') }} {% endif %} - local_addrs = {{ peer_conf.local_address if peer_conf.local_address != 'any' else '%any' }} # dhcp:{{ peer_conf.dhcp_interface if 'dhcp_interface' in peer_conf else 'no' }} + local_addrs = {{ peer_conf.local_address if peer_conf.local_address != 'any' else '%any' }} # dhcp:{{ peer_conf.dhcp_interface if 'dhcp_interface' in peer_conf else 'no' }} reset:{{ name }} remote_addrs = {{ peer_conf.remote_address | join(",") if peer_conf.remote_address is vyos_defined and 'any' not in peer_conf.remote_address else '%any' }} {% if peer_conf.authentication.mode is vyos_defined('x509') %} send_cert = always |