summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2014-11-28 22:58:17 -0600
committerChris Buechler <cmb@pfsense.org>2014-11-28 22:58:17 -0600
commit978b8f508b9b08bdbfe7465ea5bdf4ab6fb9ed7b (patch)
tree93689e0c1d460c70a3468645f79dc78774d9463a /etc
parentc5cd9b7503ba439f215a454d45516f13a79d3746 (diff)
downloadpfsense-978b8f508b9b08bdbfe7465ea5bdf4ab6fb9ed7b.zip
pfsense-978b8f508b9b08bdbfe7465ea5bdf4ab6fb9ed7b.tar.gz
fix syntax on prefix6 for DHCPv6 PD
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/services.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/services.inc b/etc/inc/services.inc
index 4d67445..1902bbb 100644
--- a/etc/inc/services.inc
+++ b/etc/inc/services.inc
@@ -1188,7 +1188,7 @@ $dnscfgv6
EOD;
if (is_ipaddrv6($dhcpv6ifconf['prefixrange']['from']) && is_ipaddrv6($dhcpv6ifconf['prefixrange']['to'])) {
- $dhcpdv6conf .= " prefix6 {$dhcpv6ifconf['prefixrange']['from']} {$dhcpv6ifconf['prefixrange']['to']}/{$dhcpv6ifconf['prefixrange']['prefixlength']};\n";
+ $dhcpdv6conf .= " prefix6 {$dhcpv6ifconf['prefixrange']['from']} {$dhcpv6ifconf['prefixrange']['to']} /{$dhcpv6ifconf['prefixrange']['prefixlength']};\n";
}
if (is_ipaddrv6($dhcpv6ifconf['dns6ip'])) {
$dhcpdv6conf .= " option dhcp6.name-servers {$dhcpv6ifconf['dns6ip']};\n";
OpenPOWER on IntegriCloud