New to Mikrotik and I am trying to mock up a DHCP scenario on an RB750Gr3 (6.46.6), starting from a default configuration. My intention in this mock-up is for Eth1 to be the WAN port (not currently connected), Eth2 to be a routed LAN port (not in a bridge) and Eth3, Eth4 and Eth5 to be in a bridge with VLAN 101 on Eth3 and VLAN 102 on Eth4 and Eth5.
When I plug a client device into Eth2, I get a 192.168.88.x IP leased, as expected. However, I do not get leases on the VLAN 101 or 102 ports. VLAN 101 is to use a private subnet and VLAN 102 is to use a public subnet (call it 11.11.11.xxx). I am sure it is something simple preventing this, but I am not seeing it.
Relevant configuration:
/interface bridge
add admin-mac=nn:nn:nn:nn:nn:nn auto-mac=no comment=defconf name=bridge
/interface vlan
add interface=bridge name=vlan101 vlan-id=101
add interface=bridge name=vlan102 vlan-id=102
/interface bridge port
add bridge=bridge comment=defconf interface=ether3 pvid=101
add bridge=bridge comment=defconf interface=ether4 pvid=102
add bridge=bridge comment=defconf interface=ether5 pvid=102
/interface bridge vlan
add bridge=bridge untagged=ether3 vlan-ids=101
add bridge=bridge untagged=ether4,ether5 vlan-ids=102
/ip address
add address=192.168.88.1/24 comment=defconf interface=ether2 network=192.168.88.0
add address=11.11.11.193/26 interface=vlan102 network=11.11.11.192
add address=172.16.2.1/24 interface=vlan101 network=172.16.2.0
/ip pool
add name=defconf ranges=192.168.88.10-192.168.88.254
add name=VLAN102_pool ranges=11.11.11.250-11.11.11.254
add name=VLAN101_pool ranges=172.16.2.10-172.16.2.254
/ip dhcp-server
add address-pool=defconf disabled=no interface=ether2 lease-time=30m name=defconf_DHCP
add address-pool=VLAN102_pool bootp-support=none disabled=no interface=vlan102 lease-time=30m name=VLAN102_DHCP
add address-pool=VLAN101_pool bootp-support=none disabled=no interface=vlan101 lease-time=30m name=VLAN101_DHCP
/ip dhcp-client
add comment=defconf disabled=no interface=ether1
/ip dhcp-server network
add address=172.16.2.0/24 dns-server=8.8.8.8,8.8.4.4 gateway=172.16.2.1 netmask=24
add address=11.11.11.192/26 dns-server=8.8.8.8,8.8.4.4 gateway=11.11.11.193 netmask=26
add address=192.168.88.0/24 comment=defconf dns-server=8.8.8.8,8.8.4.4 gateway=192.168.88.1 netmask=24
Thanks for any help.