Hi,
- I am trying to setup VLANs on dumbAP for private network and guest network.
- My access point does not have a switch. It contains only one physical interface (eth0).
- AP connects to a linux box which acts as a router and a dhcp server using dnmasq.
- I am using batman-adv for meshing.
So far I have this: (network config below)
-
br-lan
is receiving an ip address via dhcp - clients connected to wireless (wlan_primary or wlan_guests) are not receiving ip address.
- I can see the vlan tagged packets (vlan.20) on the linux router's vlan interface (eth0.20)
- dhcp server (dnsmasq) sees the dhcp requests and it replies with an ip address but I don't see these packets on the AP nor are the clients getting an ip address.
Any advice?
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
config interface 'lan'
option type 'bridge'
option proto 'dhcp'
option mtu '1500'
list ifname 'bat0'
list ifname 'eth0'
config interface 'batadv_dummy_if'
option proto 'batadv'
option ifname 'dummy0'
option mesh 'bat0'
option mtu '1532'
config interface 'wlan0_mesh_if'
option auto '1'
option proto 'batadv'
option mesh 'bat0'
option mtu '1532'
config interface 'wlan_primary'
option type 'bridge'
option ifname 'eth0.20'
config interface 'wlan_guest'
option type 'bridge'
option ifname 'eth0.30'
Thanks!