" [ vlan VID ] [ vni VNI ] [ self ] [ master ] [ dynamic ]\n"
" bridge fdb flush dev DEV [ brport DEV ] [ vlan VID ]\n"
" [ self ] [ master ] [ [no]permanent | [no]static | [no]dynamic ]\n"
- " [ [no]added_by_user ] [ [no]extern_learn ] [ [no]sticky ]\n");
+ " [ [no]added_by_user ] [ [no]extern_learn ] [ [no]sticky ]\n"
+ " [ [no]offloaded ]\n");
exit(-1);
}
} else if (strcmp(*argv, "nosticky") == 0) {
ndm_flags &= ~NTF_STICKY;
ndm_flags_mask |= NTF_STICKY;
+ } else if (strcmp(*argv, "offloaded") == 0) {
+ ndm_flags |= NTF_OFFLOADED;
+ ndm_flags_mask |= NTF_OFFLOADED;
+ } else if (strcmp(*argv, "nooffloaded") == 0) {
+ ndm_flags &= ~NTF_OFFLOADED;
+ ndm_flags_mask |= NTF_OFFLOADED;
} else if (strcmp(*argv, "brport") == 0) {
if (port)
duparg2("brport", *argv);
.BR self " ] [ " master " ] [ "
.BR [no]permanent " | " [no]static " | " [no]dynamic " ] [ "
.BR [no]added_by_user " ] [ " [no]extern_learn " ] [ "
-.BR [no]sticky " ]"
+.BR [no]sticky " ] [ " [no]offloaded " ]"
.ti -8
.BR "bridge mdb" " { " add " | " del " } "
.B [no]sticky
if specified then only entries with sticky flag will be deleted or respectively
if "no" is prepended then only entries without sticky flag will be deleted.
+
+.TP
+.B [no]offloaded
+if specified then only entries with offloaded flag will be deleted or respectively
+if "no" is prepended then only entries without offloaded flag will be deleted.
.sp
.SH bridge mdb - multicast group database management