Actions
Bug #2022
closedrtadvd not configured properly
Start date:
11/22/2011
Due date:
% Done:
100%
Estimated time:
0.10 h
Plus Target Version:
Release Notes:
Affected Version:
2.1-IPv6
Affected Architecture:
Description
(Hopefully I got it right this time)
It appears that the conditional in line 95 in services_rtadvd_configure() in /etc/inc/services.inc needs to be updated:
if($dhcpv6ifconf['mode'] != "enabled")
continue;
should be:
if($dhcpv6ifconf['mode'] == "disabled")
continue;
Or else every single entry is skipped since mode can only be {disabled, router, unmanaged, managed, assist}. Was puzzled why ipv6 stopped working after the gitsync.
Actions