Bob.Dig
Regular Contributor
@grifo It hasn't worked out.
I had hoped I could just change the virtual NIC driver and do one change in the real NIC, like it is described here, but had no success. Now I probably have to install the realtek vlan software to get this going, although it might not support having no vlan...
Code:
#!/bin/sh
robocfg vlan 201 ports "4t 5t"
vconfig add eth0 201
ifconfig vlan201 up
robocfg vlan 199 ports "0t 4t"
vconfig add eth0 199
ifconfig vlan199 up
brctl addbr br1
brctl delif br0 wl0.1
brctl addif br1 vlan201
brctl addif br1 wl0.1
ifconfig br1 up
nvram set lan_ifnames="vlan1 eth1 eth2"
nvram set lan_ifname="br0"
nvram set lan1_ifnames="vlan201 wl0.1"
nvram set lan1_ifname="br1"
nvram commit
killall eapd
eapd
Last edited: