https://wiki.gentoo.org/wiki/Network_bridge#OpenRC
I am using it for a few libvirt/Qemu VMs that I want directly exposed to the LAN. I do also have virbr0 for a few VMs on their own private VLAN.
RKHunter has noticed that br0 is in promiscuous mode so I disabled it with this command:
Code: Select all
ip link set br0 promisc offAre there any drawbacks to disabling promiscuous mode on br0 and if not, how do I disable it on startup? Do I put a line in /etc/conf.d/net and if so, what would that setting/line look like?
This is what my /etc/conf.d/net currently looks like:
Code: Select all
config_enp8s0="null"
bridge_br0="enp8s0"
config_br0="192.168.1.2 netmask 255.255.255.0"
routes_br0="default via 192.168.1.1"
bridge_forward_delay_br0=0
bridge_hello_time_br0=1000Kellerkalt

