Hello,
My setup: 5009 router – GS724T – Audience
I have two VLANs: 10 (wired clients) and 11 (wifi clients)
Port setup on 5009: onde bridge, with ether2, ether3 ports. VLANs on bridge: VLAN10 (tagged ether2, bridge), VLAN11 (tagged ether3, bridge)
Port setup on Audience: one bridge, ether1 and wifi1. VLANs on bridge: VLAN11 (tagged ether1, bridge; untagged wifi1)
5009 link to gs724t uses VLAN trunking, and all ports where clients are connected have PVID 10.
I also have two DHCP servers, one bound to VLAN10, and one bound to VLAN11.
Link between 5009 and Audience is also using VLAN trunking.
First DHCP server works fine: whenever a client request comes in, it is allocated IP from dhcp-wired pool.
Second DHCP server does not work: I can see packets coming in on VLAN11, but that’s all.
I tried DHCP client on VLAN11 on Audience - no allocation, but packets are seen on 5009 VLAN11 interface
I tried DHCP from wifi clients - same, packets showing up on 5009 VLAN11, but no replies.
If I configure IP statically on Audience’s VLAN11 or Wifi clients everything works fine, traffic is routed, and I can reach outside networks.
I’ve enabled IGMP and DHCP snooping on both bridges, made no difference.
Firewall only has default rules, and I’m not seeing anything dropped there either (apart from occasional invalid frame drop, but I it doesn’t seem to correlate with DHCP requests)
Relevant config:
/interface vlan
add interface=bridge name=vlan10 vlan-id=10
add interface=bridge name=vlan11 vlan-id=11
/ip pool
add name=wired-clients ranges=10.4.10.50-10.4.10.250
add name=wifi-clients ranges=10.4.11.50-10.4.11.250
/ip dhcp-server
add address-pool=dhcp disabled=yes interface=bridge name=defconf
add address-pool=wired-clients interface=vlan10 name=wired-clients
add address-pool=wifi-clients interface=vlan11 name=wifi-clients
/interface bridge port
add bridge=bridge frame-types=admit-only-vlan-tagged interface=ether2
add bridge=bridge frame-types=admit-only-vlan-tagged interface=ether3
/interface bridge vlan
add bridge=bridge tagged=ether2,bridge vlan-ids=10
add bridge=bridge tagged=ether3,bridge vlan-ids=11
/ip address
add address=10.4.10.1/24 interface=vlan10 network=10.4.10.0
add address=10.4.11.1/24 interface=vlan11 network=10.4.11.0
/ip dhcp-server network
add address=10.4.10.0/24 dns-server=1.1.1.1 gateway=10.4.10.1 netmask=24
add address=10.4.11.0/24 dns-server=1.1.1.1 gateway=10.4.11.1 netmask=24
Any ideas?? I’m so confused…
