]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
bridge: vlan: Add support for setting a VLANs MSTI
authorTobias Waldekranz <tobias@waldekranz.com>
Mon, 24 Jun 2024 13:00:34 +0000 (15:00 +0200)
committerDavid Ahern <dsahern@kernel.org>
Mon, 8 Jul 2024 03:33:53 +0000 (03:33 +0000)
Allow the user to associate one or more VLANs with a multiple spanning
tree instance (MSTI), when MST is enabled on the bridge.

Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com>
Reviewed-by: Hangbin Liu <liuhangbin@gmail.com>
Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: David Ahern <dsahern@kernel.org>
bridge/vlan.c
man/man8/bridge.8

index 0a7e6c45b2be2e900f2a435f91864ed6c8e07144..34d7f76756f061620c53863077acb21eaeb3c659 100644 (file)
@@ -56,6 +56,7 @@ static void usage(void)
                "                      [ mcast_querier_interval QUERIER_INTERVAL ]\n"
                "                      [ mcast_query_interval QUERY_INTERVAL ]\n"
                "                      [ mcast_query_response_interval QUERY_RESPONSE_INTERVAL ]\n"
+               "                      [ msti MSTI ]\n"
                "       bridge vlan global { show } [ dev DEV ] [ vid VLAN_ID ]\n");
        exit(-1);
 }
@@ -406,6 +407,7 @@ static int vlan_global_option_set(int argc, char **argv)
        short vid = -1;
        __u64 val64;
        __u32 val32;
+       __u16 val16;
        __u8 val8;
 
        afspec = addattr_nest(&req.n, sizeof(req),
@@ -536,6 +538,12 @@ static int vlan_global_option_set(int argc, char **argv)
                        addattr64(&req.n, 1024,
                                  BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_INTVL,
                                  val64);
+               } else if (strcmp(*argv, "msti") == 0) {
+                       NEXT_ARG();
+                       if (get_u16(&val16, *argv, 0))
+                               invarg("invalid msti", *argv);
+                       addattr16(&req.n, 1024,
+                                BRIDGE_VLANDB_GOPTS_MSTI, val16);
                } else {
                        if (strcmp(*argv, "help") == 0)
                                NEXT_ARG();
@@ -945,6 +953,11 @@ static void print_vlan_global_opts(struct rtattr *a, int ifindex)
                             "mcast_query_response_interval %llu ",
                             rta_getattr_u64(vattr));
        }
+       if (vtb[BRIDGE_VLANDB_GOPTS_MSTI]) {
+               vattr = vtb[BRIDGE_VLANDB_GOPTS_MSTI];
+               print_uint(PRINT_ANY, "msti", "msti %u ",
+                          rta_getattr_u16(vattr));
+       }
        print_nl();
        if (vtb[BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS]) {
                vattr = RTA_DATA(vtb[BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS]);
index bb02bd27d65b90bee9ceb72a5ef0912a22596262..b469980123579abadb232baee1ad16ea861bce74 100644 (file)
@@ -266,7 +266,9 @@ bridge \- show / manipulate bridge addresses and devices
 .B mcast_query_interval
 .IR QUERY_INTERVAL " ] [ "
 .B mcast_query_response_interval
-.IR QUERY_RESPONSE_INTERVAL " ]"
+.IR QUERY_RESPONSE_INTERVAL " ] [ "
+.B msti
+.IR MSTI " ]"
 
 .ti -8
 .BR "bridge vlan global" " [ " show " ] [ "
@@ -1493,6 +1495,11 @@ startup phase.
 set the Max Response Time/Maximum Response Delay for IGMP/MLD
 queries sent by the bridge.
 
+.TP
+.BI msti " MSTI "
+associate the VLAN with the specified multiple spanning tree instance
+(MSTI).
+
 .SS bridge vlan global show - list global vlan options.
 
 This command displays the global VLAN options for each VLAN entry.