Blocking rogue DHCP server on OSX

1

Our LAN has two DHCP servers, one giving 10.x.x.x addresses and one giving 192.168.x.x addresses. The network guys refuse to fix the obvious misconfiguration, and in Linux I have successfully resolved the problem by adding the following line to /etc/dhcp/dhclient.conf, which ignores any DHCP offers from the rogue DHCP server:

reject 192.168.100.1;

How can I ignore the rogue DHCP server in OSX?

Jonas Berlin

Posted 2019-10-18T08:24:58.640

Reputation: 111

1The real problem here seems to be your network guys. – Mr Ethernet – 2019-10-18T09:13:04.360

Can't you block 192.168.100.* in the firewall? – harrymc – 2019-10-18T10:34:16.767

@MrEthernet Totally agree but need to do some work here also :) – Jonas Berlin – 2019-10-18T11:02:53.567

No answers