Re: [OpenWrt-Devel] [BB-rc3] Disabling DHCPv6 also disables IPv6 SLAAC

2014-08-23 Thread Steven Barth
disabled is the same as omitting the dhcpv6 option. none is not valid in this context and causes havoc it seems ;)___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [BB-rc3] Disabling DHCPv6 also disables IPv6 SLAAC

2014-08-22 Thread Baptiste Jonglez
Hi, The default behaviour of BB is to hand out statically assigned IPv6 addresses through DHCPv6. To disable this behaviour and only keep SLAAC through RA, I disabled dhcpv6 in /etc/config/dhcp: config dhcp 'lan' option interface 'lan' option start '70' option limit '64'

Re: [OpenWrt-Devel] [BB-rc3] Disabling DHCPv6 also disables IPv6 SLAAC

2014-08-22 Thread Steven Barth
Please try with: option dhcpv6 disabled instead of none Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [BB-rc3] Disabling DHCPv6 also disables IPv6 SLAAC

2014-08-22 Thread Baptiste Jonglez
On Fri, Aug 22, 2014 at 07:59:27PM +0200, Steven Barth wrote: Please try with: option dhcpv6 disabled instead of none That worked, thanks! What is the default value, then? Is it none or disabled? What is the difference? Cheers, Steven ___

Re: [OpenWrt-Devel] [BB-rc3] Disabling DHCPv6 also disables IPv6 SLAAC

2014-08-22 Thread Bastian Bittorf
* Baptiste Jonglez bjong...@illyse.org [22.08.2014 22:34]: What is the default value, then? Is it none or disabled? What is the difference? internally it's a bool/switch, which can have: 0|off|false|no|disabled or 1|on|true|yes|enabled adding 'none' is possible, but... bye, bastian

Re: [OpenWrt-Devel] [BB-rc3] Disabling DHCPv6 also disables IPv6 SLAAC

2014-08-22 Thread Baptiste Jonglez
On Fri, Aug 22, 2014 at 10:38:24PM +0200, Bastian Bittorf wrote: * Baptiste Jonglez bjong...@illyse.org [22.08.2014 22:34]: What is the default value, then? Is it none or disabled? What is the difference? internally it's a bool/switch, which can have: 0|off|false|no|disabled or