Hello,
I'm trying to bridge eth0 with eth1 in my custom board based on imx8mpevk. I can add eth0 but when I try to add eth1 (connected to my external switch) I give this message in dmesg:
~$ sudo brctl addif br1 eth1
[ 5297.714895] imx-dwmac 30bf0000.ethernet eth1: Adding VLAN in promisc mode not supported
[ 5297.737609] imx-dwmac 30bf0000.ethernet eth1: failed to initialize vlan filtering on this port
[ 5297.746948] imx-dwmac 30bf0000.ethernet eth1: Adding VLAN in promisc mode not supported
[ 5297.769982] imx-dwmac 30bf0000.ethernet eth1: failed to initialize vlan filtering on this port
can't add eth1 to bridge br1: Operation not permitted
The kernel used is:
5.10.35-lts-5.10.y+gef3f2cfc6010
Individually I can change eth1 to promisc mode, but the operation is not permitted again
Can anyone help me or explain why I can't add eth1 to the bridge?
In kernel I have the modules included
CONFIG_BRIDGE=y
CONFIG_BRIDGE_NETFILTER=y
CONFIG_VLAN_8021Q=y
Thank you