Mac OSX server command equivalent for dhclient

dhclientdhcpmac-osxnetworking

Is there an MacOS command that makes a dhcp request, and renews the old lease, drops it for a new one, or usefully reports errors or lack of response from a dhcp server?

This would both help fix networking on the machine after problems on the network without rebooting and would also be useful to diagnose wider networking problems from a mac.

I can not find any command equivalent of dhclient though obviously some component must be serving this purpose. The question is, is that component exposed to a command line interface?

I am biased to the command line for these features and may have overlooked settings panels or tools that might solve it using a gui interface.

I believe this question is at the heart of this other question: Is there an equivalent command for 'init.d/networking restart' in OS X

Best Answer

To renew the lease:

sudo ipconfig set <interface> DHCP

Usually interface is en0 or en1.

To see all the gory details, run sudo ipconfig setverbose 1 before you run the above, then tail /var/log/system.log. After you're done, remember to run sudo ipconfig setverbose 0 to turn it off again.