Device: BR2 (latest firmware) Setup: SpeedFusion tunnel to FusionHub on Azure
Overview: Here is what we are trying to do. I have 10 BR2s out in the wild connected to a Remote FusionHub in Azure. Each of these create a speedfusion tunnel to my Azure private network. Currently have 2 machines in Azure, the fusionhub and an Ubuntu VM running a DHCP server. We want any clients who connect to any of the BR2s to get an ip address from the DHCP server in Azure and be able to send and receive traffic to other daemons on that Ubuntu DHCP server via DHCP relay on the BR2.
Im testing with a single device right now. I have a BR2 connected to a FusionHub running on Azure via SpeedFusion. I have a VLAN interface (VLAN 10, 192.168.68.1/22) on the BR2 called “Conference WiFi” with DHCP Relay enabled pointing to a DHCP server (10.3.0.5) running on an Ubuntu VM in Azure on the same VNet as FusionHub.
What’s Working:
- SpeedFusion tunnel is up and routing correctly
- BR2 can ping
10.3.0.5through the tunnel - DHCP relay is forwarding DISCOVER packets from clients to the DHCP server
- DHCP server is receiving the DISCOVER and sending back an OFFER to
192.168.68.1:67(the relay agent) - Confirmed via tcpdump on the DHCP server — offers are being sent with broadcast flag set
What’s Not Working: The BR2 relay agent receives the DHCP OFFER from the server but does not forward it back to the client on VLAN 10. The client never receives the offer and keeps sending DISCOVER packets indefinitely.
Confirmed via tcpdump on DHCP server:
10.3.0.4.67 > 10.3.0.5.67: BOOTP/DHCP, Request from [client-mac] via 192.168.68.1 (DISCOVER)
10.3.0.5.67 > 192.168.68.1.67: BOOTP/DHCP, Reply [Broadcast] Your-IP 192.168.68.10 (OFFER)
The offer arrives at the relay (192.168.68.1) but the client never sees it. Confirmed via tcpdump on the client — no OFFER packets arrive.
Things I’ve Tried:
- DHCP Option 82 enabled and disabled
always-broadcast onin ISC DHCP server config- Inter-VLAN routing enabled on the VLAN interface
- IP Forwarding mode on FusionHub
- Verified correct static routes on FusionHub for return path
Question: Is DHCP relay on a VLAN interface supported on the BR2? Is there a known issue with relay responses not being forwarded back to clients on VLAN interfaces? Is there a workaround?