Device: RB750Gr3 on RouterOS 6.41.3
Problem: DHCP clients are not receiving IPs from the default or native VLAN (VLAN ID 1). I tested both a default VLAN port on the router and a native VLAN port on a VLAN-aware switch attached to the trunk. Neither worked. DHCP works on all other ports.
Context: a simple home VLAN setup with an Internet WAN (ether1), a management port (ether2), a trunk to the rest of the network (ether5) connecting to a VLAN-aware switch. The four VLANs are “Default” (all Ethernet LAN clients), “SegregatedWiF” (WiFi with only Internet access), “SiteLAN” (LAN only access, no Internet), “Management” (management VLAN for routers and switches).
Initial setup: supplied default script from RouterOS upgrade. I deleted the single bridge containing only Ethernet ports.
VLAN plan:
VLAN Ports
2 3 4 5
1 X U U U
SegregatedWiFi 5 X X X T
SiteLAN 6 X T T T
Management 7 U X X T
PVID 7 1 1 1
X = uninvolved/empty
U = untagged
T = tagged
VLAN and DHCP configuration:
/interface bridge
add name=bridge-vlan vlan-filtering=yes
/interface vlan
add interface=bridge-vlan name=Default vlan-id=1
add interface=bridge-vlan name=SegregatedWiFi vlan-id=5
add interface=bridge-vlan name=SiteLAN vlan-id=6
add interface=bridge-vlan name=Management vlan-id=7
/interface bridge port
add bridge=bridge-vlan interface=ether5
add bridge=bridge-vlan interface=ether4
add bridge=bridge-vlan interface=ether3
add bridge=bridge-vlan interface=ether2 pvid=7
/interface bridge vlan
add bridge=bridge-vlan tagged=bridge-vlan untagged=ether5,ether4,ether3 vlan-ids=1
add bridge=bridge-vlan tagged=bridge-vlan,ether5 vlan-ids=5
add bridge=bridge-vlan tagged=bridge-vlan,ether5,ether4,ether3 vlan-ids=6
add bridge=bridge-vlan tagged=bridge-vlan,ether5 untagged=ether2 vlan-ids=7
/ip address
add address=192.168.88.1/24 comment=defconf interface=Default network=192.168.88.0
add address=192.168.5.1/24 interface=SegregatedWiFi network=192.168.5.0
add address=192.168.6.1/24 interface=SiteLAN network=192.168.6.0
add address=192.168.7.1/24 interface=Management network=192.168.7.0
/ip dhcp-server
add address-pool=Default disabled=no interface=Default lease-time=1d name=Default
add address-pool=SegregatedWifi disabled=no interface=SegregatedWiFi lease-time=1d name=SegregatedWiFi
add address-pool=SiteLan disabled=no interface=SiteLAN lease-time=1d name=SiteLAN
add address-pool=Management disabled=no interface=Management lease-time=1d name=Management
/ip dhcp-server network
add address=192.168.88.0/24 comment=defconf dns-server=192.168.88.1 gateway=192.168.88.1
add address=192.168.5.0/24 dns-server=192.168.5.1 gateway=192.168.5.1
add address=192.168.6.0/24 dns-server=192.168.6.1 gateway=192.168.6.1
add address=192.168.7.0/24 dns-server=192.168.7.1 gateway=192.168.7.1
Network analysis: on changing ports, Wireshark on the client device shows only DHCP Request and DHCP Discover from the client, but no DHCP NAK, Offer or ACK events from the router.
Status: no part of the entire router configuration is marked invalid. The rest of the tested configuration works as expected to date. Image below from Winbox interface of the current status:

I tried to keep it as clear and concise as possible. Can anyone help, please?