Skip to content

Commit

Permalink
fix: layer2 interface creation (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesholland-uk committed Feb 15, 2023
1 parent 689d9c3 commit 424c74c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions panos/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,8 @@ def set_virtual_router(
Zone: The zone for this interface after the operation completes
"""
# Don't add HA or aggregate-group interfaces to virtual router.
if getattr(self, "mode", "") in ("ha", "aggregate-group"):
# Don't add HA, layer 2 or aggregate-group interfaces to virtual router.
if getattr(self, "mode", "") in ("ha", "aggregate-group", "layer2"):
return False

return self._set_reference(
Expand Down

0 comments on commit 424c74c

Please sign in to comment.