diff --git a/roles/fabric/templates/switch.intf.j2 b/roles/fabric/templates/switch.intf.j2 index eaf638a..6c66377 100644 --- a/roles/fabric/templates/switch.intf.j2 +++ b/roles/fabric/templates/switch.intf.j2 @@ -44,6 +44,9 @@ iface {{ iface.name }} bridge-access {{ iface.untagged_vlan.vid }} {% elif iface.mode.value == 'tagged' and iface.tagged_vlans %} bridge-vids {{ iface.tagged_vlans | map(attribute='vid') | sort | join(' ') }} +{% if iface.untagged_vlan %} + bridge-pvid {{ iface.untagged_vlan.vid }} +{% endif %} {% endif %} {% endif %}