From 86095bd437caf45c95d98d6185b28121cd7f439e Mon Sep 17 00:00:00 2001 From: Daniel Ankers Date: Mon, 22 Jan 2024 13:24:04 +0000 Subject: [PATCH] Fix TAGGED_ALL not working --- juniper-macros.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/juniper-macros.j2 b/juniper-macros.j2 index 5c2df57..a8d6d96 100644 --- a/juniper-macros.j2 +++ b/juniper-macros.j2 @@ -130,6 +130,11 @@ chassis { vlan { members [ {% for vlan in interface['tagged_vlans'] %}{{ vlan['vid'] }} {% endfor %}]; } +{% elif interface['mode']=='TAGGED_ALL' %} + interface-mode trunk; + vlan { + members [ all ]; + } {% endif %} storm-control default; }