From 8740bd5ed417bbfc26fb57f35aa6bd74f737e4a5 Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sun, 19 Feb 2017 17:51:55 +0100 Subject: [PATCH] Request PD even if no interfaces are set to track6 (Bug #4544) See https://redmine.pfsense.org/issues/4544#note-4 (cherry picked from commit b0837cebf9836c4cdd5873b3e463f1afb8403811) --- src/etc/inc/interfaces.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc index b1d4de48a6..bf83858087 100644 --- a/src/etc/inc/interfaces.inc +++ b/src/etc/inc/interfaces.inc @@ -3965,7 +3965,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"; }