Is it possible to use dnsmasq to serve DHCP on an interface with no IP Address?
Using the following command line: dnsmasq --port=0 --interface=br1.249 --dhcp-range=10.249.0.0,static --dhcp-host=52:54:00:51:cf:a4,10.249.0.1 --conf-file= --no-daemon if there is no IP on br1.249, I get dnsmasq-dhcp: DHCP packet received on br1.249 which has no address If there is an IP, the DHCP assigned the address as expected. I would like to avoid an IP on that interface - is it possible? Thanks. Michael