diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-03 22:07:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-03 22:07:12 +0100 |
commit | 22a15d828e1d0052d6690860367ba294d2481a04 (patch) | |
tree | 9716120b7d0424fb4bcd8fc6acc66418fe6df767 /data/templates/ipsec/swanctl/peer.j2 | |
parent | 088dcfd35af200294dcb186cf5529226bfbb46b7 (diff) | |
parent | 4edc0611ec0ab39147c136d769a9e8a0f50847e6 (diff) | |
download | vyos-1x-22a15d828e1d0052d6690860367ba294d2481a04.tar.gz vyos-1x-22a15d828e1d0052d6690860367ba294d2481a04.zip |
Merge pull request #2934 from vyos/mergify/bp/sagitta/pr-2932
ipsec: T5998: add replay-windows setting (backport #2932)
Diffstat (limited to 'data/templates/ipsec/swanctl/peer.j2')
-rw-r--r-- | data/templates/ipsec/swanctl/peer.j2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/ipsec/swanctl/peer.j2 b/data/templates/ipsec/swanctl/peer.j2 index c5841fb91..58f0199fa 100644 --- a/data/templates/ipsec/swanctl/peer.j2 +++ b/data/templates/ipsec/swanctl/peer.j2 @@ -86,6 +86,9 @@ dpd_action = {{ ike.dead_peer_detection.action }} {% endif %} close_action = {{ ike.close_action }} +{% if peer_conf.replay_window is vyos_defined %} + replay_window = {{ peer_conf.replay_window }} +{% endif %} } {% elif peer_conf.tunnel is vyos_defined %} {% for tunnel_id, tunnel_conf in peer_conf.tunnel.items() if tunnel_conf.disable is not defined %} @@ -136,6 +139,9 @@ dpd_action = {{ ike.dead_peer_detection.action }} {% endif %} close_action = {{ ike.close_action }} +{% if peer_conf.replay_window is vyos_defined %} + replay_window = {{ peer_conf.replay_window }} +{% endif %} {% if peer_conf.vti.bind is vyos_defined %} {# The key defaults to 0 and will match any policies which similarly do not have a lookup key configuration. #} {# Thus we simply shift the key by one to also support a vti0 interface #} |