From b0837cebf9836c4cdd5873b3e463f1afb8403811 Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sun, 19 Feb 2017 17:51:55 +0100 Subject: Request PD even if no interfaces are set to track6 (Bug #4544) See https://redmine.pfsense.org/issues/4544#note-4 --- src/etc/inc/interfaces.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/etc/inc/interfaces.inc') diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc index 74a8a33..a95122e 100644 --- a/src/etc/inc/interfaces.inc +++ b/src/etc/inc/interfaces.inc @@ -3971,7 +3971,7 @@ function interface_dhcpv6_configure($interface = "wan", $wancfg) { if (!isset($wancfg['dhcp6prefixonly'])) { $dhcp6cconf .= "\tsend ia-na 0;\t# request stateful address\n"; } - if (is_numeric($wancfg['dhcp6-ia-pd-len']) && !empty($trackiflist)) { + if (is_numeric($wancfg['dhcp6-ia-pd-len'])) { $dhcp6cconf .= "\tsend ia-pd 0;\t# request prefix delegation\n"; } -- cgit v1.1