" bridge fdb get [ to ] LLADDR [ br BRDEV ] { brport | dev } DEV\n"
" [ vlan VID ] [ vni VNI ] [ self ] [ master ] [ dynamic ]\n"
" bridge fdb flush dev DEV [ brport DEV ] [ vlan VID ]\n"
- " [ self ] [ master ] [ [no]permanent ]\n");
+ " [ self ] [ master ] [ [no]permanent | [no]static ]\n");
exit(-1);
}
} else if (strcmp(*argv, "nopermanent") == 0) {
ndm_state &= ~NUD_PERMANENT;
ndm_state_mask |= NUD_PERMANENT;
+ } else if (strcmp(*argv, "static") == 0) {
+ ndm_state |= NUD_NOARP;
+ ndm_state_mask |= NUD_NOARP | NUD_PERMANENT;
+ } else if (strcmp(*argv, "nostatic") == 0) {
+ ndm_state &= ~NUD_NOARP;
+ ndm_state_mask |= NUD_NOARP;
} else if (strcmp(*argv, "brport") == 0) {
if (port)
duparg2("brport", *argv);
.B vlan
.IR VID " ] [ "
.BR self " ] [ " master " ] [ "
-.BR [no]permanent " ]"
+.BR [no]permanent " | " [no]static " ]"
.ti -8
.BR "bridge mdb" " { " add " | " del " } "
.B [no]permanent
if specified then only permanent entries will be deleted or respectively if "no"
is prepended then only non-permanent entries will be deleted.
+
+.TP
+.B [no]static
+if specified then only static entries will be deleted or respectively if "no"
+is prepended then only non-static entries will be deleted.
.sp
.SH bridge mdb - multicast group database management