Displaying 5 results from an estimated 5 matches for "linkinfo".
Did you mean:
finkinfo
2023 Oct 18
3
[Bridge] [PATCH iproute2-next v5] iplink: bridge: Add support for bridge FDB learning limits
...ort reading back the current number of learned FDB entries in
the bridge by this count. The returned value's name is:
- fdb_n_learned: A 32-bit unsigned integer specifying the current number
of learned FDB entries.
Example:
# ip -d -j -p link show br0
[ {
...
"linkinfo": {
"info_kind": "bridge",
"info_data": {
...
"fdb_n_learned": 2,
"fdb_max_learned": 0,
...
}
},
...
} ]
# ip link set br0 type bridge fdb_max_learned 1024
# ip -...
2023 Jun 19
1
[Bridge] [PATCH iproute2-next 1/1] iplink: bridge: Add support for bridge FDB learning limits
...current number of learned FDB entries in
the bridge by this count. The returned value's name is:
- fdb_cur_learned_entries: A 32-bit unsigned integer specifying the
current number of learned FDB entries.
Example:
# ip -d -j -p link show br0
[ {
...
"linkinfo": {
"info_kind": "bridge",
"info_data": {
...
"fdb_cur_learned_entries": 2,
"fdb_max_learned_entries": 0,
...
}
},
...
} ]
# ip link set br0 type bridge fdb_max_le...
2023 Sep 05
1
[Bridge] [PATCH iproute2-next v3] iplink: bridge: Add support for bridge FDB learning limits
...the current number of learned FDB entries in
the bridge by this count. The returned value's name is:
- fdb_n_learned_entries: A 32-bit unsigned integer specifying the
current number of learned FDB entries.
Example:
# ip -d -j -p link show br0
[ {
...
"linkinfo": {
"info_kind": "bridge",
"info_data": {
...
"fdb_n_learned_entries": 2,
"fdb_max_learned_entries": 0,
...
}
},
...
} ]
# ip link set br0 type bridge fdb_max_lear...
2001 May 20
1
Win98 IE5 on WINE 20009090
...L32.DLL MSHTML.DLL RPCRT4.DLL VERSION.DLL shell.dll
COMMCTRL.DLL MSMOUSE.VXD SERIAL.VXD VNETBIOS.VXD shell32.dll
EXPLORER.EXE MSVCRT.DLL SHDOCVW.DLL WEBCHECK.DLL shlwapi.dll
GDI32.DLL MSWSOCK.DLL SHELL.DLL WININET.DLL
KERNEL32.DLL MYDOCS.DLL SHELL32.DLL WS2HELP.DLL
LINKINFO.DLL NTDLL.DLL SHLWAPI.DLL WS2_32.DLL
[root@roadwarrior IE5-OLD]#
Anyone?
Tweeks
2023 Jun 19
4
[Bridge] [PATCH net-next v2 0/3, iproute2-next 0/1] bridge: Add a limit on learned FDB entries
Introduce a limit on the amount of learned FDB entries on a bridge,
configured by netlink with a build time default on bridge creation in
the kernel config.
For backwards compatibility the kernel config default is disabling the
limit (0).
Without any limit a malicious actor may OOM a kernel by spamming packets
with changing MAC addresses on their bridge port, so allow the bridge
creator to limit