Displaying 2 results from an estimated 2 matches for "br999".
Did you mean:
r999
2007 Apr 18
1
[Bridge] Performance problem with linux bridge ... compare kernel 2.6.13.4 to 2.6.15.1
...p
#To bond0
/sbin/ifconfig eth0 down
/sbin/ifconfig eth2 down
#To bond1
/sbin/ifconfig eth1 down
/sbin/ifconfig eth3 down
modprobe bonding max_bonds=2
ifconfig bond0 0.0.0.0 up
ifenslave-2.6 bond0 eth0 eth2
ifconfig bond1 0.0.0.0 up
ifenslave-2.6 bond1 eth1 eth3
/usr/local/sbin/brctl addbr br999
/sbin/vconfig add bond0 999
/sbin/vconfig add bond1 999
/sbin/ifconfig bond0.999 up
/sbin/ifconfig bond1.999 up
/usr/local/sbin/brctl addif br999 bond0.999
/usr/local/sbin/brctl addif br999 bond1.999
/sbin/ifconfig br999 up
Host has 102 vlans (bridges)
On each vlan interface is traffic manageme...
2024 Jul 16
4
[Bug 1761] New: nft_fib checks only the main route table when iif is a slave of a master vrf interface
...kernel
Assignee: pablo at netfilter.org
Reporter: tsv1991 at gmail.com
Root case:
I want to do the NOTRACK in the PREROUTING chain for traffic that has a "daddr"
route pointing to a specific oif.
What I do:
"nft add rule inet notracks PREROUTING fib daddr oif br999 counter notrack"
The issue:
nftables always checks only main routing table, though the iif for traffic is
slave for master vrf interface also oif always will be slave for master vrf
interface.
Details:
We have VRF vrf1 and interfaces br100 and br999 as slaves of interface vrf1.
Interface b...