I'm running net/isc-dhcp44-server on my FreeBSD router host, providing DHCP service to four VLANs. igb0 is the main network that most devices connect to, while igb0.128, igb0.192 and igb0.193 are my lab VLANs. I was specifying
I now want to have a play with the net/kea DHCP server, but without causing disruption on the main network. To that end, I am trying to limit isc-dhcpd to providing service only on that network by changing the
However,
dhcpd_ifaces="igb0 igb0.128 igb0.192 igb0.193"
in /etc/rc.conf.local and all was fine.I now want to have a play with the net/kea DHCP server, but without causing disruption on the main network. To that end, I am trying to limit isc-dhcpd to providing service only on that network by changing the
dhcpd_ifaces=
to just "igb0"
, so that I can run Kea on the other VLAN interfaces. ps
confirms that dhcpd is now running with just the igb0 interface at the end of the list of arguments, and when I start the service it outputs:
Code:
Listening on BPF/igb0/00:30:18:03:0f:28/10.0.0.0/24
Sending on BPF/igb0/00:30:18:03:0f:28/10.0.0.0/24
However,
sockstat
indicates that dhcpd is still binding to *:67 and blocking me from running Kea DHCP on the other VLAN interfaces. Anyone know why this is and how to resolve it?