I have a cerbo gx connected to a router over ethernet and want to allow devices connected to the wireless AP on the cerbo to access the internet.
I attempted to create a bridge intending to add each of the eth0 and wifi0 network devices to it, e.g as root on cerbo:
ip link add br0 type bridge ip link set wifi0 master br0 ip link set eth0 master br0 ip link set br0 up
But adding the bridge in the first step raises an error:
Error: Unknown device type
The bridge type is listed in the help page and this same command works on most linux systems that I am familiar with
ip link help
.. so I might guess that this is some particularity with the way that ip link is compiled for Venus OS. I thought it might be customised to support CAN/ve.bus etc.
My other thought is to check if selinux might be blocking.
Does anybody have advice or cautions about going in this direction?