Skip to content

Commit

Permalink
fix: Anti-replay specified twice (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Richardson authored and shinmog committed May 6, 2021
1 parent 1de69f8 commit aa30205
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions panos/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -4028,7 +4028,6 @@ class IpsecTunnel(VersionedPanObject):
Args:
name: IPSec tunnel name
tunnel_interface: apply IPSec VPN tunnels to tunnel interface
anti_replay (bool): enable anti-replay check on this tunnel
ipv6 (bool): (7.0+) use IPv6 for the IPSec tunnel
type: auto-key (default), manual-key, or global-protect-satellite
ak_ike_gateway (string/list): IKE gateway name
Expand Down Expand Up @@ -4102,9 +4101,6 @@ def _setup(self):
params = []

params.append(VersionedParamPath("tunnel_interface", path="tunnel-interface"))
params.append(
VersionedParamPath("anti_replay", path="anti-replay", vartype="yesno")
)
params.append(VersionedParamPath("ipv6", exclude=True))
params[-1].add_profile("7.0.0", vartype="yesno", path="ipv6")
params.append(
Expand Down

0 comments on commit aa30205

Please sign in to comment.