I created a bridge in my Debian 10 router like this
# brctl addbr br0
after that I add network interface on my bridge # brctl addif br0 eno1
brctl show
bridge name bridge id STP enabled interfaces
br0 8000.0030bdb2810d no eno1
My /etc/network/interfaces
look like this
# The loopback network interface
auto lo
iface lo inet loopback
# Set up interfaces manually, avoiding conflicts with, e.g., network manager
iface eno1 inet manual
# Bridge setup
auto br0
iface br0 inet dhcp
bridge_ports eno1
Everything works well, but If I reboot my router, brctl show
returns empty result.
In my syslog
I have this strange line :
bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if youd nedd this
is that normal ?
PS : I disabled ipv6 in sysctl.conf
with this line net.ipv6.conf.all.disable_ipv6 = 1
What I need to do to have my bridge when my router reboot?