Possible bug in Untangle v11
I've been up way too many hours to make this formal, but here goes nothing.
Code:
# Interface 2 (eth1) DHCP
dhcp-range=interface:eth1,10.0.1.50,10.0.1.250,3600
dhcp-option=tag:eth1,3,10.0.1.1 # gateway
dhcp-option=tag:eth1,1,255.255.255.0 # netmask
dhcp-option=tag:eth1,6,10.0.0.11 # dns
dhcp-option=tag:eth1,6,10.0.0.11,10.0.1.1 # custom dhcp option
Historically dnsmasq would take the last line of a given configuration and run with it. In this server's case it was only going with the first one.
dhcp-option=tag:eth1,6,10.0.0.11 # dns < this is what the clients are getting
Not dhcp-option=tag:eth1,6,10.0.0.11,10.0.1.1 # custom dhcp option
Bit of a problem, I'm working around it now obviously, but bit of a problem. I'm going to see if I can duplicate this in a lab tomorrow.