ipv6 dhcp client man pages

Looking for ipv6 dhcp client options and config man pages, similar to those for ipv4 dhclient, but cannot find them in the online documentation. Would appreciate direction to good options and config documentation for ipv6 dhcp client.

Thanks
 
The built in dhclient(8) does not support IPv6.

I had to install the ISC port and since it didn't have its own rc.d script, I had to create my own dhclient.ipv6 that used the -6 option for the interface.

This basically just runs:
Code:
/usr/local/sbin/dhclient -6 em0
 
Back
Top