mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-10 01:10:22 +01:00
firewall: create "dynamic" sets for nft rules for slb-bonding
A workaround for a nftables issue ([1]). I don't know why that matters. [1] https://bugzilla.redhat.com/show_bug.cgi?id=2177667 Fixes:e9268e3924('firewall: add mlag firewall utils for multi chassis link aggregation (MLAG) for bonding-slb') https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1614 (cherry picked from commitd3b5496362)
This commit is contained in:
parent
987f98197b
commit
0d9d753523
1 changed files with 2 additions and 2 deletions
|
|
@ -889,12 +889,12 @@ nm_firewall_nft_stdio_mlag(gboolean up,
|
|||
*/
|
||||
_append(&strbuf,
|
||||
"add set netdev %s macset-tagged {"
|
||||
" typeof ether saddr . vlan id; flags timeout; "
|
||||
" typeof ether saddr . vlan id; flags dynamic,timeout; "
|
||||
"}",
|
||||
table_name);
|
||||
_append(&strbuf,
|
||||
"add set netdev %s macset-untagged {"
|
||||
" typeof ether saddr; flags timeout;"
|
||||
" typeof ether saddr; flags dynamic,timeout; "
|
||||
"}",
|
||||
table_name);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue