Greetings. I look forward to use net/isc-dhcp44-server to answer to DHCP relays. It is a bit unusual configuration, where relay runs on the same machine (because it does a bit more than just relaying DHCP packets), therefore have to address the DHCP server by an IP address, using sockets. The default port build binds using BPF and cannot answer to such kind of requests. In order to do so, the port have to be configured with
So far I've added
Thanks in advance!
--enable-use-sockets
. However there is no toggle to do so in the port's Makefile.So far I've added
CONFIGURE_ARGS+=--enable-use-sockets
to the Makefile and that suits me fine. But, in the long term, I suspect this is not the right thing to do. Can anyone suggest what is the proper way for me to move forward? I prefer to avoid modifying files in the /usr/ports tree. I can copy /usr/ports/net/isc-dhcp44-server out of /usr/ports tree and do local modifications on Makefile. The drawback is I will detach from port updates. Do I have other options?Thanks in advance!