]> git.proxmox.com Git - mirror_iproute2.git/commit
man8/bridge.8: document that "local" is default for "bridge fdb add"
authorVladimir Oltean <vladimir.oltean@nxp.com>
Thu, 11 Feb 2021 10:44:58 +0000 (12:44 +0200)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 22 Feb 2021 19:19:38 +0000 (11:19 -0800)
commitae3cb3d34d0bc6adab8eb67d905c6973a5285a1d
treeace6ab0dc24b7f235e6591b273bd1ca08d3e4166
parent1261459c64fbb5c3ceba3c0ec64e34a825af2fed
man8/bridge.8: document that "local" is default for "bridge fdb add"

The bridge does this:

fdb_modify:
/* Assume permanent */
if (!(req.ndm.ndm_state&(NUD_PERMANENT|NUD_REACHABLE)))
req.ndm.ndm_state |= NUD_PERMANENT;

So let's make the user aware of the fact that if they don't want local
entries, they need to specify some other flag like "static".

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
man/man8/bridge.8