Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, aggregate-group, and layer2 interfaces to virtual router.
if getattr(self, "mode", "") in ("ha", "aggregate-group", "layer2"):
return False

return self._set_reference(
Expand Down