-
Notifications
You must be signed in to change notification settings - Fork 106
Description
The readme claims a mode which relies just on IPv6 Router Advertisements (RA). I am not able to find that mode. However, I need that because I am using my OpenWrt device not as router but as simple Wi-Fi access point. And my upstream router has no DHCPv6 server, even not a stateless one. I know, this tool is called from its shell script /package/network/ipv6/odhcp6c/files/dhcpv6.sh normally. And that script is started with options from /etc/config/network. Anyway, three teared down examples called directly from the command line, to eased debugging with Wireshark:
odhcp6c br-lan
creates continuously a DHCPv6 solicit,
because the state is is DHCPV6_UNKNOWN (-N is try).
odhcp6c -N none br-lan
creates continuously a DHCPv6 information-request,
because the state is DHCPV6_STATELESS.
odhcp6c -N none -P 64 br-lan
creates continuously a DHCPv6 solicit,
because the state is DHCPV6_UNKNOWN.
I went through the blame history and it looks like this never worked. Yes, IPv6 still works. However, I do not like to pollute my network with DHCPv6 messages; especially because in the RA, the m(anaged) and o(ther) bits are off.