]> git.proxmox.com Git - mirror_iproute2.git/commit
man8/bridge.8: document the "permanent" flag for "bridge fdb add"
authorVladimir Oltean <vladimir.oltean@nxp.com>
Thu, 11 Feb 2021 10:44:57 +0000 (12:44 +0200)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 22 Feb 2021 19:19:38 +0000 (11:19 -0800)
commit1261459c64fbb5c3ceba3c0ec64e34a825af2fed
treefe09121c2bb1905aad2fac86944c1d2a3298ccc4
parent675e2df632d0c8ad1bf936506e2090cdc83b2f7e
man8/bridge.8: document the "permanent" flag for "bridge fdb add"

The bridge program parses "local" and "permanent" in just the same way,
so it makes sense to tell that to users:

fdb_modify:
} else if (matches(*argv, "local") == 0 ||
   matches(*argv, "permanent") == 0) {
req.ndm.ndm_state |= NUD_PERMANENT;

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