Commit 21e16991 authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

(legacy) refactor services_dhcpv6.php, work in progress

(cherry picked from commit ba433af8)
parent 0b685561
<?php <?php
/* /*
Copyright (C) 2014-2015 Deciso B.V. Copyright (C) 2014-2016 Deciso B.V.
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>. Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
Copyright (C) 2010 Seth Mos <seth.mos@dds.nl>. Copyright (C) 2010 Seth Mos <seth.mos@dds.nl>.
All rights reserved. All rights reserved.
...@@ -36,146 +36,153 @@ require_once("pfsense-utils.inc"); ...@@ -36,146 +36,153 @@ require_once("pfsense-utils.inc");
require_once("interfaces.inc"); require_once("interfaces.inc");
require_once("services.inc"); require_once("services.inc");
$if = $_GET['if'];
if ($_POST['if'])
$if = $_POST['if'];
if (!$_GET['if']) { /**
* restart dhcp service
*/
function reconfigure_dhcpd()
{
killbypid("{$g['dhcpd_chroot_path']}/var/run/dhcpdv6.pid");
/* dnsmasq_configure calls dhcpd_configure */
/* no need to restart dhcpd twice */
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) {
$retvaldns = services_dnsmasq_configure();
if ($retvaldns == 0) {
clear_subsystem_dirty('hosts');
clear_subsystem_dirty('staticmaps');
}
} elseif (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic'])) {
$retvaldns = services_unbound_configure();
if ($retvaldns == 0) {
clear_subsystem_dirty('unbound');
}
} else {
$retvaldhcp = services_dhcpd_configure();
if ($retvaldhcp == 0) {
clear_subsystem_dirty('staticmaps');
}
}
}
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
// handle identifiers and action
if (!empty($_GET['if']) && !empty($config['interfaces'][$_GET['if']])) {
$if = $_GET['if'];
} else {
$savemsg = gettext( $savemsg = gettext(
"The DHCPv6 Server can only be enabled on interfaces configured with static " . "The DHCPv6 Server can only be enabled on interfaces configured with static " .
"IP addresses. Only interfaces configured with a static IP will be shown." "IP addresses. Only interfaces configured with a static IP will be shown."
); );
} foreach ($config['interfaces'] as $if_id => $intf) {
if (!empty($intf['enable']) && is_ipaddrv6($intf['ipaddrv6']) && !is_linklocal($oc['ipaddrv6'])) {
$iflist = get_configured_interface_with_descr(); $if = $if_id;
$iflist = array_merge($iflist, get_configured_pppoe_server_interfaces());
/* set the starting interface */
if (!$if || !isset($iflist[$if])) {
foreach ($iflist as $ifent => $ifname) {
$oc = $config['interfaces'][$ifent];
if ((!empty($config['dhcpdv6'][$ifent]) && !isset($config['dhcpdv6'][$ifent]['enable']) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))) ||
(empty($config['dhcpdv6'][$ifent]) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))))
continue;
$if = $ifent;
break; break;
} }
} }
}
$pconfig = array();
if (is_array($config['dhcpdv6'][$if])){ if (!empty($config['dhcpdv6'][$if]['range'])) {
/* DHCPv6 */
if (is_array($config['dhcpdv6'][$if]['range'])) {
$pconfig['range_from'] = $config['dhcpdv6'][$if]['range']['from']; $pconfig['range_from'] = $config['dhcpdv6'][$if]['range']['from'];
$pconfig['range_to'] = $config['dhcpdv6'][$if]['range']['to']; $pconfig['range_to'] = $config['dhcpdv6'][$if]['range']['to'];
} }
if (is_array($config['dhcpdv6'][$if]['prefixrange'])) { if (!empty($config['dhcpdv6'][$if]['prefixrange'])) {
$pconfig['prefixrange_from'] = $config['dhcpdv6'][$if]['prefixrange']['from']; $pconfig['prefixrange_from'] = $config['dhcpdv6'][$if]['prefixrange']['from'];
$pconfig['prefixrange_to'] = $config['dhcpdv6'][$if]['prefixrange']['to']; $pconfig['prefixrange_to'] = $config['dhcpdv6'][$if]['prefixrange']['to'];
$pconfig['prefixrange_length'] = $config['dhcpdv6'][$if]['prefixrange']['prefixlength']; $pconfig['prefixrange_length'] = $config['dhcpdv6'][$if]['prefixrange']['prefixlength'];
} }
$pconfig['deftime'] = $config['dhcpdv6'][$if]['defaultleasetime']; $config_copy_fieldsnames = array('defaultleasetime', 'maxleasetime', 'domain', 'domainsearchlist', 'ddnsdomain',
$pconfig['maxtime'] = $config['dhcpdv6'][$if]['maxleasetime']; 'ddnsdomainprimary', 'ddnsdomainkeyname', 'ddnsdomainkey', 'ldap', 'bootfile_url', 'netmask',
$pconfig['domain'] = $config['dhcpdv6'][$if]['domain']; 'numberoptions', 'dhcpv6leaseinlocaltime', 'staticmap');
$pconfig['domainsearchlist'] = $config['dhcpdv6'][$if]['domainsearchlist']; foreach ($config_copy_fieldsnames as $fieldname) {
list($pconfig['wins1'],$pconfig['wins2']) = $config['dhcpdv6'][$if]['winsserver']; if (isset($config['dhcpdv6'][$if][$fieldname])) {
list($pconfig['dns1'],$pconfig['dns2']) = $config['dhcpdv6'][$if]['dnsserver']; $pconfig[$fieldname] = $config['dhcpdv6'][$if][$fieldname];
} else {
$pconfig[$fieldname] = null;
}
}
// handle booleans
$pconfig['enable'] = isset($config['dhcpdv6'][$if]['enable']); $pconfig['enable'] = isset($config['dhcpdv6'][$if]['enable']);
$pconfig['ddnsdomain'] = $config['dhcpdv6'][$if]['ddnsdomain'];
$pconfig['ddnsdomainprimary'] = $config['dhcpdv6'][$if]['ddnsdomainprimary'];
$pconfig['ddnsdomainkeyname'] = $config['dhcpdv6'][$if]['ddnsdomainkeyname'];
$pconfig['ddnsdomainkey'] = $config['dhcpdv6'][$if]['ddnsdomainkey'];
$pconfig['ddnsupdate'] = isset($config['dhcpdv6'][$if]['ddnsupdate']); $pconfig['ddnsupdate'] = isset($config['dhcpdv6'][$if]['ddnsupdate']);
list($pconfig['ntp1'],$pconfig['ntp2']) = $config['dhcpdv6'][$if]['ntpserver'];
$pconfig['tftp'] = $config['dhcpdv6'][$if]['tftp'];
$pconfig['ldap'] = $config['dhcpdv6'][$if]['ldap'];
$pconfig['netboot'] = isset($config['dhcpdv6'][$if]['netboot']); $pconfig['netboot'] = isset($config['dhcpdv6'][$if]['netboot']);
$pconfig['bootfile_url'] = $config['dhcpdv6'][$if]['bootfile_url'];
$pconfig['netmask'] = $config['dhcpdv6'][$if]['netmask'];
$pconfig['numberoptions'] = $config['dhcpdv6'][$if]['numberoptions'];
$pconfig['dhcpv6leaseinlocaltime'] = $config['dhcpdv6'][$if]['dhcpv6leaseinlocaltime'];
if (!is_array($config['dhcpdv6'][$if]['staticmap']))
$config['dhcpdv6'][$if]['staticmap'] = array();
$a_maps = &$config['dhcpdv6'][$if]['staticmap'];
}
$ifcfgip = get_interface_ipv6($if); // handle arrays
$ifcfgsn = get_interface_subnetv6($if); $pconfig['staticmap'] = empty($pconfig['staticmap']) ? array() : $pconfig['staticmap'];
$pconfig['numberoptions'] = empty($pconfig['numberoptions']) ? array() : $pconfig['numberoptions'];
/* set the enabled flag which will tell us if DHCP relay is enabled $pconfig['dns1'] = !empty($config['dhcpdv6'][$if]['dnsserver'][0]) ? $config['dhcpdv6'][$if]['dnsserver'][0] : "";
* on any interface. We will use this to disable DHCP server since $pconfig['dns2'] = !empty($config['dhcpdv6'][$if]['dnsserver'][1]) ? $config['dhcpdv6'][$if]['dnsserver'][1] : "";
* the two are not compatible with each other. $pconfig['ntp1'] = !empty($config['dhcpdv6'][$if]['ntpserver'][0]) ? $config['dhcpdv6'][$if]['ntpserver'][0] : "";
*/ $pconfig['ntp2'] = !empty($config['dhcpdv6'][$if]['ntpserver'][1]) ? $config['dhcpdv6'][$if]['ntpserver'][1] : "";
$dhcrelay_enabled = false; } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
$dhcrelaycfg = $config['dhcrelay6']; // handle identifiers and actions
if (!empty($_POST['if']) && !empty($config['interfaces'][$_POST['if']])) {
if(is_array($dhcrelaycfg)) { $if = $_POST['if'];
foreach ($dhcrelaycfg as $dhcrelayif => $dhcrelayifconf) {
if (isset($dhcrelayifconf['enable']) && isset($iflist[$dhcrelayif]) &&
(!link_interface_to_bridge($dhcrelayif)))
$dhcrelay_enabled = true;
} }
} if (!empty($_POST['act'])) {
$act = $_POST['act'];
if ($_POST) {
unset($input_errors);
if ($_POST['apply'] != 'Apply changes') {
$old_dhcpdv6_enable = ($pconfig['enable'] == true);
$new_dhcpdv6_enable = ($_POST['enable'] ? true : false);
$dhcpdv6_enable_changed = ($old_dhcpdv6_enable != $new_dhcpdv6_enable);
$pconfig = $_POST;
} else { } else {
$dhcpdv6_enable_changed = false; $act = null;
}
$pconfig = $_POST;
$input_errors = array();
if (isset($pconfig['submit'])) {
// transform Additional BOOTP/DHCP Options
$pconfig['numberoptions'] = array();
if (isset($pconfig['numberoptions_number'])) {
$pconfig['numberoptions']['item'] = array();
foreach ($pconfig['numberoptions_number'] as $opt_seq => $opt_number) {
if (!empty($opt_number)) {
$pconfig['numberoptions']['item'][] = array('number' => $opt_number,
'type' => $pconfig['numberoptions_type'][$opt_seq],
'value' => $pconfig['numberoptions_value'][$opt_seq]
);
} }
$numberoptions = array();
for($x=0; $x<99; $x++) {
if(isset($_POST["number{$x}"]) && ctype_digit($_POST["number{$x}"])) {
$numbervalue = array();
$numbervalue['number'] = htmlspecialchars($_POST["number{$x}"]);
$numbervalue['value'] = htmlspecialchars($_POST["value{$x}"]);
$numberoptions['item'][] = $numbervalue;
} }
} }
// Reload the new pconfig variable that the forum uses.
$pconfig['numberoptions'] = $numberoptions;
/* input validation */ /* input validation */
if ($_POST['enable']) {
$reqdfields = explode(" ", "range_from range_to"); $reqdfields = explode(" ", "range_from range_to");
$reqdfieldsn = array(gettext("Range begin"),gettext("Range end")); $reqdfieldsn = array(gettext("Range begin"),gettext("Range end"));
do_input_validation($pconfig, $reqdfields, $reqdfieldsn, $input_errors);
do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors); if (!empty($pconfig['prefixrange_from']) && !is_ipaddrv6($pconfig['prefixrange_from'])) {
if (($_POST['prefixrange_from'] && !is_ipaddrv6($_POST['prefixrange_from'])))
$input_errors[] = gettext("A valid range must be specified."); $input_errors[] = gettext("A valid range must be specified.");
if (($_POST['prefixrange_to'] && !is_ipaddrv6($_POST['prefixrange_to']))) }
if (!empty($pconfig['prefixrange_to']) && !is_ipaddrv6($pconfig['prefixrange_to'])) {
$input_errors[] = gettext("A valid prefix range must be specified."); $input_errors[] = gettext("A valid prefix range must be specified.");
if (($_POST['range_from'] && !is_ipaddrv6($_POST['range_from']))) }
if (!empty($pconfig['range_from']) && !is_ipaddrv6($pconfig['range_from'])) {
$input_errors[] = gettext("A valid range must be specified."); $input_errors[] = gettext("A valid range must be specified.");
if (($_POST['range_to'] && !is_ipaddrv6($_POST['range_to']))) }
if (!empty($pconfig['range_to']) && !is_ipaddrv6($pconfig['range_to'])) {
$input_errors[] = gettext("A valid range must be specified."); $input_errors[] = gettext("A valid range must be specified.");
if (($_POST['gateway'] && !is_ipaddrv6($_POST['gateway']))) }
if (!empty($pconfig['gateway']) && !is_ipaddrv6($pconfig['gateway'])) {
$input_errors[] = gettext("A valid IPv6 address must be specified for the gateway."); $input_errors[] = gettext("A valid IPv6 address must be specified for the gateway.");
if (($_POST['dns1'] && !is_ipaddrv6($_POST['dns1'])) || ($_POST['dns2'] && !is_ipaddrv6($_POST['dns2']))) }
if ((!empty($pconfig['dns1']) && !is_ipaddrv6($pconfig['dns1'])) || (!empty($pconfig['dns2']) && !is_ipaddrv6($pconfig['dns2']))) {
$input_errors[] = gettext("A valid IPv6 address must be specified for the primary/secondary DNS servers."); $input_errors[] = gettext("A valid IPv6 address must be specified for the primary/secondary DNS servers.");
}
if ($_POST['deftime'] && (!is_numeric($_POST['deftime']) || ($_POST['deftime'] < 60))) if (!empty($pconfig['defaultleasetime']) && (!is_numeric($pconfig['defaultleasetime']) || ($pconfig['defaultleasetime'] < 60))) {
$input_errors[] = gettext("The default lease time must be at least 60 seconds."); $input_errors[] = gettext("The default lease time must be at least 60 seconds.");
if ($_POST['maxtime'] && (!is_numeric($_POST['maxtime']) || ($_POST['maxtime'] < 60) || ($_POST['maxtime'] <= $_POST['deftime']))) }
if (!empty($pconfig['maxleasetime']) && (!is_numeric($pconfig['maxleasetime']) || ($pconfig['maxleasetime'] < 60) || ($pconfig['maxleasetime'] <= $_POST['defaultleasetime']))) {
$input_errors[] = gettext("The maximum lease time must be at least 60 seconds and higher than the default lease time."); $input_errors[] = gettext("The maximum lease time must be at least 60 seconds and higher than the default lease time.");
if (($_POST['ddnsdomain'] && !is_domain($_POST['ddnsdomain']))) }
if (!empty($pconfig['ddnsdomain']) && !is_domain($pconfig['ddnsdomain'])) {
$input_errors[] = gettext("A valid domain name must be specified for the dynamic DNS registration."); $input_errors[] = gettext("A valid domain name must be specified for the dynamic DNS registration.");
if (($_POST['ddnsdomain'] && !is_ipaddrv4($_POST['ddnsdomainprimary']))) }
if (!empty($pconfig['ddnsdomain']) && !is_ipaddrv4($pconfig['ddnsdomainprimary'])) {
$input_errors[] = gettext("A valid primary domain name server IPv4 address must be specified for the dynamic domain name."); $input_errors[] = gettext("A valid primary domain name server IPv4 address must be specified for the dynamic domain name.");
if (($_POST['ddnsdomainkey'] && !$_POST['ddnsdomainkeyname']) || }
($_POST['ddnsdomainkeyname'] && !$_POST['ddnsdomainkey'])) if ((!empty($pconfig['ddnsdomainkey']) && empty($pconfig['ddnsdomainkeyname'])) ||
(!empty($pconfig['ddnsdomainkeyname']) && empty($pconfig['ddnsdomainkey']))) {
$input_errors[] = gettext("You must specify both a valid domain key and key name."); $input_errors[] = gettext("You must specify both a valid domain key and key name.");
if ($_POST['domainsearchlist']) { }
$domain_array=preg_split("/[ ;]+/",$_POST['domainsearchlist']); if (!empty($pconfig['domainsearchlist'])) {
$domain_array=preg_split("/[ ;]+/",$pconfig['domainsearchlist']);
foreach ($domain_array as $curdomain) { foreach ($domain_array as $curdomain) {
if (!is_domain($curdomain)) { if (!is_domain($curdomain)) {
$input_errors[] = gettext("A valid domain search list must be specified."); $input_errors[] = gettext("A valid domain search list must be specified.");
...@@ -184,639 +191,589 @@ if ($_POST) { ...@@ -184,639 +191,589 @@ if ($_POST) {
} }
} }
if (($_POST['ntp1'] && !is_ipaddrv6($_POST['ntp1'])) || ($_POST['ntp2'] && !is_ipaddrv6($_POST['ntp2']))) if ((!empty($pconfig['ntp1']) && !is_ipaddrv6($pconfig['ntp1'])) || (!empty($pconfig['ntp2']) && !is_ipaddrv6($pconfig['ntp2']))) {
$input_errors[] = gettext("A valid IPv6 address must be specified for the primary/secondary NTP servers."); $input_errors[] = gettext("A valid IPv6 address must be specified for the primary/secondary NTP servers.");
if (($_POST['domain'] && !is_domain($_POST['domain']))) }
if (!empty($pconfig['domain']) && !is_domain($pconfig['domain'])) {
$input_errors[] = gettext("A valid domain name must be specified for the DNS domain."); $input_errors[] = gettext("A valid domain name must be specified for the DNS domain.");
if ($_POST['tftp'] && !is_ipaddr($_POST['tftp']) && !is_domain($_POST['tftp']) && !is_URL($_POST['tftp'])) }
$input_errors[] = gettext("A valid IPv6 address or hostname must be specified for the TFTP server."); if (!empty($pconfig['bootfile_url']) && !is_URL($pconfig['bootfile_url'])) {
if (($_POST['bootfile_url'] && !is_URL($_POST['bootfile_url'])))
$input_errors[] = gettext("A valid URL must be specified for the network bootfile."); $input_errors[] = gettext("A valid URL must be specified for the network bootfile.");
}
// Disallow a range that includes the virtualip // Disallow a range that includes the virtualip
if (is_array($config['virtualip']['vip'])) { if (!empty($config['virtualip']['vip'])) {
foreach($config['virtualip']['vip'] as $vip) { foreach($config['virtualip']['vip'] as $vip) {
if($vip['interface'] == $if) if($vip['interface'] == $if) {
if($vip['subnetv6'] && is_inrange_v6($vip['subnetv6'], $_POST['range_from'], $_POST['range_to'])) if (!empty($vip['subnetv6']) && is_inrange_v6($vip['subnetv6'], $pconfig['range_from'], $pconfig['range_to'])) {
$input_errors[] = sprintf(gettext("The subnet range cannot overlap with virtual IPv6 address %s."),$vip['subnetv6']); $input_errors[] = sprintf(gettext("The subnet range cannot overlap with virtual IPv6 address %s."),$vip['subnetv6']);
} }
} }
}
}
$noip = false; if (count($input_errors) == 0) {
if(is_array($a_maps))
foreach ($a_maps as $map)
if (empty($map['ipaddrv6']))
$noip = true;
if (!$input_errors) {
/* make sure the range lies within the current subnet */ /* make sure the range lies within the current subnet */
$ifcfgip = get_interface_ipv6($if);
$ifcfgsn = get_interface_subnetv6($if);
$subnet_start = gen_subnetv6($ifcfgip, $ifcfgsn); $subnet_start = gen_subnetv6($ifcfgip, $ifcfgsn);
$subnet_end = gen_subnetv6_max($ifcfgip, $ifcfgsn); $subnet_end = gen_subnetv6_max($ifcfgip, $ifcfgsn);
if (is_ipaddrv6($ifcfgip)) { if (is_ipaddrv6($ifcfgip)) {
if ((! is_inrange_v6($_POST['range_from'], $subnet_start, $subnet_end)) || if ((!is_inrange_v6($pconfig['range_from'], $subnet_start, $subnet_end)) ||
(! is_inrange_v6($_POST['range_to'], $subnet_start, $subnet_end))) { (!is_inrange_v6($pconfig['range_to'], $subnet_start, $subnet_end))) {
$input_errors[] = gettext("The specified range lies outside of the current subnet."); $input_errors[] = gettext("The specified range lies outside of the current subnet.");
} }
} }
/* "from" cannot be higher than "to" */ /* "from" cannot be higher than "to" */
if (inet_pton($_POST['range_from']) > inet_pton($_POST['range_to'])) if (inet_pton($pconfig['range_from']) > inet_pton($pconfig['range_to'])) {
$input_errors[] = gettext("The range is invalid (first element higher than second element)."); $input_errors[] = gettext("The range is invalid (first element higher than second element).");
}
/* make sure that the DHCP Relay isn't enabled on this interface */ /* make sure that the DHCP Relay isn't enabled on this interface */
if (isset($config['dhcrelay'][$if]['enable'])) if (isset($config['dhcrelay'][$if]['enable'])) {
$input_errors[] = sprintf(gettext("You must disable the DHCP relay on the %s interface before enabling the DHCP server."),$iflist[$if]); $input_errors[] = sprintf(gettext("You must disable the DHCP relay on the %s interface before enabling the DHCP server."),
!empty($config['interfaces'][$if]['descr']) ? htmlspecialchars($config['interfaces'][$if]['descr']) : strtoupper($if));
}
/* Verify static mappings do not overlap: /* Verify static mappings do not overlap:
- available DHCP range - available DHCP range
- prefix delegation range (FIXME: still need to be completed) */ - prefix delegation range (FIXME: still need to be completed) */
$dynsubnet_start = inet_pton($_POST['range_from']); $dynsubnet_start = inet_pton($pconfig['range_from']);
$dynsubnet_end = inet_pton($_POST['range_to']); $dynsubnet_end = inet_pton($pconfig['range_to']);
if (!empty($config['dhcpdv6'][$if]['staticmap'])) {
if(is_array($a_maps)) { foreach ($config['dhcpdv6'][$if]['staticmap'] as $map) {
foreach ($a_maps as $map) { if (!empty($map['ipaddrv6']) && inet_pton($map['ipaddrv6']) > $dynsubnet_start && inet_pton($map['ipaddrv6']) < $dynsubnet_end) {
if (empty($map['ipaddrv6']))
continue;
if ((inet_pton($map['ipaddrv6']) > $dynsubnet_start) &&
(inet_pton($map['ipaddrv6']) < $dynsubnet_end)) {
$input_errors[] = sprintf(gettext("The DHCP range cannot overlap any static DHCP mappings.")); $input_errors[] = sprintf(gettext("The DHCP range cannot overlap any static DHCP mappings."));
break; break;
} }
} }
} }
} }
}
if (!$input_errors && $_POST['apply'] != 'Apply changes') { if (count($input_errors) == 0) {
if (!is_array($config['dhcpdv6'][$if])) $dhcpdconf = array();
if (empty($config['dhcpdv6']) || !is_array($config['dhcpdv6'])) {
$config['dhcpdv6'] = array();
}
if (empty($config['dhcpdv6'][$if]) || !is_array($config['dhcpdv6'][$if])) {
$config['dhcpdv6'][$if] = array(); $config['dhcpdv6'][$if] = array();
if (!is_array($config['dhcpdv6'][$if]['range'])) }
$config['dhcpdv6'][$if]['range'] = array();
if (!is_array($config['dhcpdv6'][$if]['prefixrange']))
$config['dhcpdv6'][$if]['prefixrange'] = array();
$config['dhcpdv6'][$if]['range']['from'] = $_POST['range_from'];
$config['dhcpdv6'][$if]['range']['to'] = $_POST['range_to'];
$config['dhcpdv6'][$if]['prefixrange']['from'] = $_POST['prefixrange_from'];
$config['dhcpdv6'][$if]['prefixrange']['to'] = $_POST['prefixrange_to'];
$config['dhcpdv6'][$if]['prefixrange']['prefixlength'] = $_POST['prefixrange_length'];
$config['dhcpdv6'][$if]['defaultleasetime'] = $_POST['deftime'];
$config['dhcpdv6'][$if]['maxleasetime'] = $_POST['maxtime'];
$config['dhcpdv6'][$if]['netmask'] = $_POST['netmask'];
unset($config['dhcpdv6'][$if]['winsserver']);
unset($config['dhcpdv6'][$if]['dnsserver']);
if ($_POST['dns1'])
$config['dhcpdv6'][$if]['dnsserver'][] = $_POST['dns1'];
if ($_POST['dns2'])
$config['dhcpdv6'][$if]['dnsserver'][] = $_POST['dns2'];
$config['dhcpdv6'][$if]['domain'] = $_POST['domain'];
$config['dhcpdv6'][$if]['domainsearchlist'] = $_POST['domainsearchlist'];
$config['dhcpdv6'][$if]['enable'] = ($_POST['enable']) ? true : false;
$config['dhcpdv6'][$if]['ddnsdomain'] = $_POST['ddnsdomain'];
$config['dhcpdv6'][$if]['ddnsdomainprimary'] = $_POST['ddnsdomainprimary'];
$config['dhcpdv6'][$if]['ddnsdomainkeyname'] = $_POST['ddnsdomainkeyname'];
$config['dhcpdv6'][$if]['ddnsdomainkey'] = $_POST['ddnsdomainkey'];
$config['dhcpdv6'][$if]['ddnsupdate'] = ($_POST['ddnsupdate']) ? true : false;
unset($config['dhcpdv6'][$if]['ntpserver']);
if ($_POST['ntp1'])
$config['dhcpdv6'][$if]['ntpserver'][] = $_POST['ntp1'];
if ($_POST['ntp2'])
$config['dhcpdv6'][$if]['ntpserver'][] = $_POST['ntp2'];
$config['dhcpdv6'][$if]['tftp'] = $_POST['tftp'];
$config['dhcpdv6'][$if]['ldap'] = $_POST['ldap'];
$config['dhcpdv6'][$if]['netboot'] = ($_POST['netboot']) ? true : false;
$config['dhcpdv6'][$if]['bootfile_url'] = $_POST['bootfile_url'];
$config['dhcpdv6'][$if]['dhcpv6leaseinlocaltime'] = $_POST['dhcpv6leaseinlocaltime'];
// Handle the custom options rowhelper
if(isset($config['dhcpdv6'][$if]['numberoptions']['item']))
unset($config['dhcpdv6'][$if]['numberoptions']['item']);
$config['dhcpdv6'][$if]['numberoptions'] = $numberoptions;
write_config(); // simple 1-on-1 copy
$config_copy_fieldsnames = array('defaultleasetime', 'maxleasetime', 'netmask', 'domain', 'domainsearchlist',
'ddnsdomain', 'ddnsdomainprimary', 'ddnsdomainkeyname', 'ddnsdomainkey', 'ldap', 'bootfile_url',
'dhcpv6leaseinlocaltime');
foreach ($config_copy_fieldsnames as $fieldname) {
if (!empty($pconfig[$fieldname])) {
$dhcpdconf[$fieldname] = $pconfig[$fieldname];
}
} }
if (!$input_errors || $_POST['apply'] == 'Apply changes') { $dhcpdv6_enable_changed = !empty($pconfig['enable']) != !empty($config['dhcpdv6'][$if]['enable']);
/* Stop DHCPv6 so we can cleanup leases */
killbypid("{$g['dhcpd_chroot_path']}/var/run/dhcpdv6.pid"); // boolean types
// dhcp_clean_leases(); $dhcpdconf['netboot'] = !empty($pconfig['netboot']);
/* dnsmasq_configure calls dhcpd_configure */ $dhcpdconf['enable'] = !empty($pconfig['enable']);
/* no need to restart dhcpd twice */ $dhcpdconf['ddnsupdate'] = !empty($pconfig['ddnsupdate']);
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) {
$retvaldns = services_dnsmasq_configure(); // array types
if ($retvaldns == 0) { $dhcpdconf['range'] = array();
clear_subsystem_dirty('hosts'); $dhcpdconf['range']['from'] = $pconfig['range_from'];
clear_subsystem_dirty('staticmaps'); $dhcpdconf['range']['to'] = $pconfig['range_to'];
$dhcpdconf['prefixrange'] = array();
$dhcpdconf['prefixrange']['from'] = $pconfig['prefixrange_from'];
$dhcpdconf['prefixrange']['to'] = $pconfig['prefixrange_to'];
$dhcpdconf['prefixrange']['prefixlength'] = $pconfig['prefixrange_length'];
$dhcpdconf['dnsserver'] = array();
if (!empty($pconfig['dns1'])) {
$dhcpdconf['dnsserver'][] = $pconfig['dns1'];
} }
} else if (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic'])) { if (!empty($pconfig['dns2'])) {
$retvaldns = services_unbound_configure(); $dhcpdconf['dnsserver'][] = $pconfig['dns2'];
if ($retvaldns == 0)
clear_subsystem_dirty('unbound');
} else {
$retvaldhcp = services_dhcpd_configure();
if ($retvaldhcp == 0)
clear_subsystem_dirty('staticmaps');
} }
if ($dhcpdv6_enable_changed) $dhcpdconf['ntpserver'] = [];
$retvalfc = filter_configure(); if (!empty($pconfig['ntp1'])) {
if($retvaldhcp == 1 || $retvaldns == 1 || $retvalfc == 1) $dhcpdconf['ntpserver'][] = $pconfig['ntp1'];
$retval = 1; }
$savemsg = get_std_save_message(); if (!empty($pconfig['ntp2'])) {
$dhcpdconf['ntpserver'][] = $pconfig['ntp2'];
}
$dhcpdconf['numberoptions'] = $pconfig['numberoptions'];
// copy structures back in
foreach (array('staticmap') as $fieldname) {
if (!empty($config['dhcpdv6'][$if][$fieldname])) {
$dhcpdconf[$fieldname] = $config['dhcpdv6'][$if][$fieldname];
}
}
// router advertisement data lives in the same spot, copy
foreach (array_keys($config['dhcpdv6'][$if]) as $fieldname) {
if (substr($fieldname,0 ,2) == 'ra') {
$dhcpdconf[$fieldname] = $config['dhcpdv6'][$if][$fieldname];
}
}
$config['dhcpdv6'][$if] = $dhcpdconf;
write_config();
reconfigure_dhcpd();
if ($dhcpdv6_enable_changed) {
filter_configure();
} }
}
if ($_GET['act'] == "del") { header("Location: services_dhcpv6.php?if={$if}");
if ($a_maps[$_GET['id']]) { exit;
unset($a_maps[$_GET['id']]); }
} elseif (isset($pconfig['apply'])) {
reconfigure_dhcpd();
header("Location: services_dhcpv6.php?if={$if}");
exit;
} elseif ($act == "del") {
if (!empty($config['dhcpdv6'][$if]['staticmap'][$_POST['id']])) {
unset($config['dhcpdv6'][$if]['staticmap'][$_POST['id']]);
write_config(); write_config();
if(isset($config['dhcpdv6'][$if]['enable'])) { if (isset($config['dhcpdv6'][$if]['enable'])) {
mark_subsystem_dirty('staticmapsv6'); mark_subsystem_dirty('staticmapsv6');
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstaticv6'])) if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) {
mark_subsystem_dirty('hosts'); mark_subsystem_dirty('hosts');
} }
header("Location: services_dhcpv6.php?if={$if}"); }
}
exit; exit;
} }
} }
$service_hook = 'dhcpd'; $service_hook = 'dhcpd';
legacy_html_escape_form_data($pconfig);
include("head.inc"); include("head.inc");
?> ?>
<body> <body>
<script type="text/javascript" src="/javascript/row_helper.js">
</script>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ $( document ).ready(function() {
rowname[0] = "number"; /**
rowtype[0] = "textbox"; * Additional BOOTP/DHCP Options extenable table
rowsize[0] = "10"; */
rowname[1] = "value"; function removeRow() {
rowtype[1] = "textbox"; if ( $('#numberoptions_table > tbody > tr').length == 1 ) {
rowsize[1] = "55"; $('#numberoptions_table > tbody > tr:last > td > input').each(function(){
//]]> $(this).val("");
});
} else {
$(this).parent().parent().remove();
}
}
// add new detail record
$("#addNew").click(function(){
// copy last row and reset values
$('#numberoptions_table > tbody').append('<tr>'+$('#numberoptions_table > tbody > tr:last').html()+'</tr>');
$('#numberoptions_table > tbody > tr:last > td > input').each(function(){
$(this).val("");
});
$(".act-removerow").click(removeRow);
});
$(".act-removerow").click(removeRow);
// delete static action
$(".act_delete_static").click(function(event){
event.preventDefault();
var id = $(this).data("id");
var intf = $(this).data("if");
// delete single
BootstrapDialog.show({
type:BootstrapDialog.TYPE_DANGER,
title: "<?= gettext("DHCP");?>",
message: "<?=gettext("Do you really want to delete this mapping?");?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
dialogRef.close();
}}, {
label: "<?= gettext("Yes");?>",
action: function(dialogRef) {
$.post(window.location, {act: 'del', id:id, if:intf}, function(data) {
location.reload();
});
}
}]
});
});
});
</script> </script>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[
function enable_change(enable_over) {
var endis;
endis = !(document.iform.enable.checked || enable_over);
document.iform.range_from.disabled = endis;
document.iform.range_to.disabled = endis;
document.iform.prefixrange_from.disabled = endis;
document.iform.prefixrange_to.disabled = endis;
document.iform.prefixrange_length.disabled = endis;
document.iform.dns1.disabled = endis;
document.iform.dns2.disabled = endis;
document.iform.deftime.disabled = endis;
document.iform.maxtime.disabled = endis;
//document.iform.gateway.disabled = endis;
document.iform.dhcpv6leaseinlocaltime.disabled = endis;
document.iform.domain.disabled = endis;
document.iform.domainsearchlist.disabled = endis;
document.iform.ddnsdomain.disabled = endis;
document.iform.ddnsdomainprimary.disabled = endis;
document.iform.ddnsdomainkeyname.disabled = endis;
document.iform.ddnsdomainkey.disabled = endis;
document.iform.ddnsupdate.disabled = endis;
document.iform.ntp1.disabled = endis;
document.iform.ntp2.disabled = endis;
//document.iform.tftp.disabled = endis;
document.iform.ldap.disabled = endis;
document.iform.netboot.disabled = endis;
document.iform.bootfile_url.disabled = endis;
}
function show_shownumbervalue() { function show_shownumbervalue() {
document.getElementById("shownumbervaluebox").innerHTML=''; $("#shownumbervaluebox").hide();
aodiv = document.getElementById('shownumbervalue'); $("#shownumbervalue").show();
aodiv.style.display = "block";
} }
function show_ddns_config() { function show_ddns_config() {
document.getElementById("showddnsbox").innerHTML=''; $("#showddnsbox").hide();
aodiv = document.getElementById('showddns'); $("#showddns").show();
aodiv.style.display = "block";
} }
function show_ntp_config() { function show_ntp_config() {
document.getElementById("showntpbox").innerHTML=''; $("#showntpbox").hide();
aodiv = document.getElementById('showntp'); $("#showntp").show();
aodiv.style.display = "block";
} }
/*
function show_tftp_config() {
document.getElementById("showtftpbox").innerHTML='';
aodiv = document.getElementById('showtftp');
aodiv.style.display = "block";
}
*/
function show_ldap_config() { function show_ldap_config() {
document.getElementById("showldapbox").innerHTML=''; $("#showldapbox").hide();
aodiv = document.getElementById('showldap'); $("#showldap").show();
aodiv.style.display = "block";
} }
function show_netboot_config() { function show_netboot_config() {
document.getElementById("shownetbootbox").innerHTML=''; $("#shownetbootbox").hide();
aodiv = document.getElementById('shownetboot'); $("#shownetboot").show();
aodiv.style.display = "block";
} }
//]]>
</script> </script>
<?php include("fbegin.inc"); ?> <?php include("fbegin.inc"); ?>
<section class="page-content-main"> <section class="page-content-main">
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?> <?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
<?php if (isset($savemsg)) print_info_box($savemsg); ?> <?php if (isset($savemsg)) print_info_box($savemsg); ?>
<?php if (is_subsystem_dirty('staticmaps')): ?><p> <?php if (is_subsystem_dirty('staticmaps')): ?><p>
<?php print_info_box_apply(gettext("The static mapping configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?><br /> <?php print_info_box_apply(gettext("The static mapping configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?><br />
<?php endif; ?> <?php endif; ?>
<section class="col-xs-12"> <section class="col-xs-12">
<?php <?php
/* active tabs */ /* active tabs */
$tab_array = array(); $tab_array_main = array();
$tabscounter = 0; foreach ($config['interfaces'] as $if_id => $intf) {
$i = 0; if (!empty($intf['enable']) && is_ipaddrv6($intf['ipaddrv6'])) {
foreach ($iflist as $ifent => $ifname) { $ifname = !empty($intf['descr']) ? htmlspecialchars($intf['descr']) : strtoupper($if_id);
$oc = $config['interfaces'][$ifent]; if ($if_id == $if) {
if ((!isset($config['dhcpdv6'][$ifent]['enable']) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))) || $tab_array_main[] = array($ifname, true, "services_dhcpv6.php?if={$if_id}");
(empty($config['dhcpdv6'][$ifent]) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6']))))) } else {
continue; $tab_array_main[] = array($ifname, false, "services_dhcpv6.php?if={$if_id}");
if ($ifent == $if) }
$active = true; }
else
$active = false;
$tab_array[] = array($ifname, $active, "services_dhcpv6.php?if={$ifent}");
$tabscounter++;
}
/* tack on PPPoE or PPtP servers here */
/* pppoe server */
if (isset($config['pppoes']['pppoe'])) {
foreach($config['pppoes']['pppoe'] as $pppoe) {
if ($pppoe['mode'] == "server") {
$ifent = "poes". $pppoe['pppoeid'];
$ifname = strtoupper($ifent);
if ($ifent == $if)
$active = true;
else
$active = false;
$tab_array[] = array($ifname, $active, "services_dhcpv6.php?if={$ifent}");
$tabscounter++;
}
}
}
if ($tabscounter == 0) {
echo "</section>";
echo "</div>";
echo "</div>";
echo "</section>";
include("foot.inc");
exit;
} }
display_top_tabs($tab_array);
?>
<?php
$tab_array = array(); $tab_array = array();
$tab_array[] = array(gettext("DHCPv6 Server"), true, "services_dhcpv6.php?if={$if}"); $tab_array[] = array(gettext("DHCPv6 Server"), true, "services_dhcpv6.php?if={$if}");
$tab_array[] = array(gettext("Router Advertisements"), false, "services_router_advertisements.php?if={$if}"); $tab_array[] = array(gettext("Router Advertisements"), false, "services_router_advertisements.php?if={$if}");
display_top_tabs($tab_array_main);
display_top_tabs($tab_array); display_top_tabs($tab_array);
?> ?>
<div class="tab-content content-box col-xs-12"> <div class="tab-content content-box col-xs-12">
<form method="post" name="iform" id="iform">
<form action="services_dhcpv6.php" method="post" name="iform" id="iform"> <?php if (!empty($config['dhcrelay6']['enabled'])): ?>
<?php if ($dhcrelay_enabled): ?>
<p><?= gettext('DHCP Relay is currently enabled. Cannot enable the DHCP Server service while the DHCP Relay is enabled on any interface.') ?></p> <p><?= gettext('DHCP Relay is currently enabled. Cannot enable the DHCP Server service while the DHCP Relay is enabled on any interface.') ?></p>
<?php elseif (count($tab_array_main) == 0):?>
<?php print_info_box(("No interfaces found with a static IPv6 address.")); ?>
<?php else: ?> <?php else: ?>
<!--<ul class="nav nav-pills" role="tablist"><?php foreach ($tab_array as $tab): ?>
<li role="presentation" <?php if ($tab[1]):?>class="active"<?php endif; ?>><a href="<?=$tab[2];?>"><?=$tab[0];?></a></li>
<?php endforeach; ?></ul><br />-->
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-sort"> <table class="table table-striped">
<tr> <tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("DHCPv6 Server");?></td> <td width="22%"><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable");?></td>
<td width="78%" class="vtable"> <td width="78%">
<input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\""; ?> onclick="enable_change(false);" /> <input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\""; ?> />
<strong><?php printf(gettext("Enable DHCPv6 server on " . <strong><?php printf(gettext("Enable DHCPv6 server on " . "%s " ."interface"),!empty($config['interfaces'][$if]['descr']) ? htmlspecialchars($config['interfaces'][$if]['descr']) : strtoupper($if));?></strong>
"%s " . </td>
"interface"),htmlspecialchars($iflist[$if]));?></strong></td>
</tr> </tr>
<?php
/* the PPPoE Server could well have no IPv6 address and operate fine with just link-local, just hide these */
if(is_ipaddrv6($ifcfgip)) {
?>
<tr> <tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Subnet");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Subnet");?></td>
<td width="78%" class="vtable"> <td>
<?=gen_subnetv6($ifcfgip, $ifcfgsn);?> <?=gen_subnetv6($config['interfaces'][$if]['ipaddrv6'], $config['interfaces'][$if]['subnetv6']);?>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Subnet mask");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Subnet mask");?></td>
<td width="78%" class="vtable"> <td>
<?=$ifcfgsn;?> bits <?=htmlspecialchars($config['interfaces'][$if]['subnetv6']);?> <?=gettext("bits");?>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Available range");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Available range");?></td>
<td width="78%" class="vtable"> <td>
<?php <?php
$range_from = gen_subnetv6($ifcfgip, $ifcfgsn); $range_from = gen_subnetv6($config['interfaces'][$if]['ipaddrv6'], $config['interfaces'][$if]['subnetv6']);
$range_from++; $range_from++;
echo $range_from; $range_to = gen_subnetv6_max($config['interfaces'][$if]['ipaddrv6'], $config['interfaces'][$if]['subnetv6']);?>
<?=$range_from;?> - <?=$range_to;?>
?>
-
<?php
$range_to = gen_subnetv6_max($ifcfgip, $ifcfgsn);
echo $range_to;
?>
</td> </td>
</tr> </tr>
<?php } ?>
<?php if($is_olsr_enabled): ?>
<tr> <tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Subnet Mask");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Range");?></td>
<td width="78%" class="vtable"> <td>
<select name="netmask" class="formselect" id="netmask"> <table class="table table-condensed">
<?php <thead>
for ($i = 128; $i > 0; $i--) { <tr>
if($i <> 127) { <th><?=gettext("from");?></th>
echo "<option value=\"{$i}\" "; <th><?=gettext("to");?></th>
if ($i == $pconfig['netmask']) echo "selected";
echo ">" . $i . "</option>";
}
}
?>
</select>
</td>
</tr> </tr>
<?php endif; ?> </thead>
<tbody>
<tr> <tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Range");?></td> <td><input name="range_from" type="text" id="range_from" value="<?=$pconfig['range_from'];?>" /></td>
<td width="78%" class="vtable"> <td><input name="range_to" type="text" id="range_to" value="<?=$pconfig['range_to'];?>" /> </td>
<input name="range_from" type="text" class="formfld unknown" id="range_from" size="28" value="<?=htmlspecialchars($pconfig['range_from']);?>" /> </tr>
&nbsp;<?=gettext("to"); ?>&nbsp; <input name="range_to" type="text" class="formfld unknown" id="range_to" size="28" value="<?=htmlspecialchars($pconfig['range_to']);?>" /> </tbody>
</table>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Prefix Delegation Range");?></td> <td><a id="help_for_prefixrange" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Prefix Delegation Range");?></td>
<td width="78%" class="vtable"> <td>
<input name="prefixrange_from" type="text" class="formfld unknown" id="prefixrange_from" size="28" value="<?=htmlspecialchars($pconfig['prefixrange_from']);?>" /> <table class="table table-condensed">
&nbsp;<?=gettext("to"); ?>&nbsp; <input name="prefixrange_to" type="text" class="formfld unknown" id="prefixrange_to" size="28" value="<?=htmlspecialchars($pconfig['prefixrange_to']);?>" /> <thead>
&nbsp;<br /><?=gettext("Prefix Delegation Size"); ?>:&nbsp; <select name="prefixrange_length" class="formselect" id="prefixrange_length"> <tr>
<option value="48" <?php if($pconfig['prefixrange_length'] == 48) echo "selected=\"selected\""; ?>>48</option> <th><?=gettext("from");?></th>
<option value="52" <?php if($pconfig['prefixrange_length'] == 52) echo "selected=\"selected\""; ?>>52</option> <th><?=gettext("to");?></th>
<option value="56" <?php if($pconfig['prefixrange_length'] == 56) echo "selected=\"selected\""; ?>>56</option> </tr>
<option value="60" <?php if($pconfig['prefixrange_length'] == 60) echo "selected=\"selected\""; ?>>60</option> </thead>
<option value="62" <?php if($pconfig['prefixrange_length'] == 62) echo "selected=\"selected\""; ?>>62</option> <tbody>
<option value="63" <?php if($pconfig['prefixrange_length'] == 63) echo "selected=\"selected\""; ?>>63</option> <tr>
<option value="64" <?php if($pconfig['prefixrange_length'] == 64) echo "selected=\"selected\""; ?>>64</option> <td><input name="prefixrange_from" type="text" id="range_from" value="<?=$pconfig['prefixrange_from'];?>" /></td>
</select> <br /> <td><input name="prefixrange_to" type="text" id="range_to" value="<?=$pconfig['prefixrange_to'];?>" /> </td>
<?php echo gettext("You can define a Prefix range here for DHCP Prefix Delegation. This allows for </tr>
<tr>
<td>
<strong><?=gettext("Prefix Delegation Size"); ?>:</strong>
<select name="prefixrange_length" class="formselect" id="prefixrange_length">
<option value="48" <?=$pconfig['prefixrange_length'] == 48 ? "selected=\"selected\"" : ""; ?>>48</option>
<option value="52" <?=$pconfig['prefixrange_length'] == 52 ? "selected=\"selected\"" : ""; ?>>52</option>
<option value="56" <?=$pconfig['prefixrange_length'] == 56 ? "selected=\"selected\"" : ""; ?>>56</option>
<option value="60" <?=$pconfig['prefixrange_length'] == 60 ? "selected=\"selected\"" : ""; ?>>60</option>
<option value="62" <?=$pconfig['prefixrange_length'] == 62 ? "selected=\"selected\"" : ""; ?>>62</option>
<option value="63" <?=$pconfig['prefixrange_length'] == 63 ? "selected=\"selected\"" : ""; ?>>63</option>
<option value="64" <?=$pconfig['prefixrange_length'] == 64 ? "selected=\"selected\"" : ""; ?>>64</option>
</select>
</td>
<td></td>
</tbody>
</table>
<div class="hidden" for="help_for_prefixrange">
<?= gettext("You can define a Prefix range here for DHCP Prefix Delegation. This allows for
assigning networks to subrouters. The start and end of the range must end on boundaries of the prefix delegation size."); ?> assigning networks to subrouters. The start and end of the range must end on boundaries of the prefix delegation size."); ?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers");?></td> <td><a id="help_for_dns" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DNS servers");?></td>
<td width="78%" class="vtable"> <td>
<input name="dns1" type="text" class="formfld unknown" id="dns1" size="28" value="<?=htmlspecialchars($pconfig['dns1']);?>" /><br /> <input name="dns1" type="text" id="dns1" value="<?=$pconfig['dns1'];?>" /><br />
<input name="dns2" type="text" class="formfld unknown" id="dns2" size="28" value="<?=htmlspecialchars($pconfig['dns2']);?>" /><br /> <input name="dns2" type="text" id="dns2" value="<?=$pconfig['dns2'];?>" />
<div class="hidden" for="help_for_dns">
<?=gettext("NOTE: leave blank to use the system default DNS servers - this interface's IP if DNS forwarder is enabled, otherwise the servers configured on the General page.");?> <?=gettext("NOTE: leave blank to use the system default DNS servers - this interface's IP if DNS forwarder is enabled, otherwise the servers configured on the General page.");?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Domain name");?></td> <td><a id="help_for_domain" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain name");?></td>
<td width="78%" class="vtable"> <td>
<input name="domain" type="text" class="formfld unknown" id="domain" size="28" value="<?=htmlspecialchars($pconfig['domain']);?>" /><br /> <input name="domain" type="text" id="domain" value="<?=$pconfig['domain'];?>" /><br />
<div class="hidden" for="help_for_domain">
<?=gettext("The default is to use the domain name of this system as the default domain name provided by DHCP. You may specify an alternate domain name here.");?> <?=gettext("The default is to use the domain name of this system as the default domain name provided by DHCP. You may specify an alternate domain name here.");?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Domain search list");?></td> <td><a id="help_for_domainsearchlist" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain search list");?></td>
<td width="78%" class="vtable"> <td>
<input name="domainsearchlist" type="text" class="formfld unknown" id="domainsearchlist" size="28" value="<?=htmlspecialchars($pconfig['domainsearchlist']);?>" /><br /> <input name="domainsearchlist" type="text" id="domainsearchlist" value="<?=$pconfig['domainsearchlist'];?>" /><br />
<div class="hidden" for="help_for_domainsearchlist">
<?=gettext("The DHCP server can optionally provide a domain search list. Use the semicolon character as separator");?> <?=gettext("The DHCP server can optionally provide a domain search list. Use the semicolon character as separator");?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Default lease time");?></td> <td><a id="help_for_defaultleasetime" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Default lease time");?> (<?=gettext("seconds");?>)</td>
<td width="78%" class="vtable"> <td>
<input name="deftime" type="text" class="formfld unknown" id="deftime" size="10" value="<?=htmlspecialchars($pconfig['deftime']);?>" /> <input name="defaultleasetime" type="text" value="<?=$pconfig['defaultleasetime'];?>" />
<?=gettext("seconds");?><br /> <div class="hidden" for="help_for_defaultleasetime">
<?=gettext("This is used for clients that do not ask for a specific " . <?=gettext("This is used for clients that do not ask for a specific " ."expiration time."); ?><br />
"expiration time."); ?><br />
<?=gettext("The default is 7200 seconds.");?> <?=gettext("The default is 7200 seconds.");?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Maximum lease time");?></td> <td><a id="help_for_maxleasetime" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Maximum lease time");?> (<?=gettext("seconds");?>)</td>
<td width="78%" class="vtable"> <td>
<input name="maxtime" type="text" class="formfld unknown" id="maxtime" size="10" value="<?=htmlspecialchars($pconfig['maxtime']);?>" /> <input name="maxleasetime" type="text" id="maxleasetime" size="10" value="<?=$pconfig['maxleasetime'];?>" />
<?=gettext("seconds");?><br /> <div class="hidden" for="help_for_maxleasetime">
<?=gettext("This is the maximum lease time for clients that ask". <?=gettext("This is the maximum lease time for clients that ask"." for a specific expiration time."); ?><br />
" for a specific expiration time."); ?><br />
<?=gettext("The default is 86400 seconds.");?> <?=gettext("The default is 86400 seconds.");?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Time format change"); ?></td> <td><a id="help_for_dhcpv6leaseinlocaltime" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Time format change"); ?></td>
<td width="78%" class="vtable">
<table class="table table-striped" summary="time format change">
<tr>
<td>
<input name="dhcpv6leaseinlocaltime" type="checkbox" id="dhcpv6leaseinlocaltime" value="yes" <?php if ($pconfig['dhcpv6leaseinlocaltime']) echo "checked=\"checked\""; ?> />
</td>
<td> <td>
<input name="dhcpv6leaseinlocaltime" type="checkbox" id="dhcpv6leaseinlocaltime" value="yes" <?=!empty($pconfig['dhcpv6leaseinlocaltime']) ? "checked=\"checked\"" : ""; ?> />
<strong> <strong>
<?=gettext("Change DHCPv6 display lease time from UTC to local time."); ?> <?=gettext("Change DHCPv6 display lease time from UTC to local time."); ?>
</strong> </strong>
<div class="hidden" for="help_for_dhcpv6leaseinlocaltime">
<strong><?=gettext("Note:");?></strong> <?=gettext("By default DHCPv6 leases are displayed in UTC time. By checking this box DHCPv6 lease time will be displayed in local time and set to time zone selected. This will be used for all DHCPv6 interfaces lease time."); ?>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td>&nbsp;</td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Dynamic DNS");?></td>
<td> <td>
<span class="red"><strong><?=gettext("Note:");?></strong></span> <?=gettext("By default DHCPv6 leases are displayed in UTC time. By checking this
box DHCPv6 lease time will be displayed in local time and set to time zone selected. This will be used for all DHCPv6 interfaces lease time."); ?>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Dynamic DNS");?></td>
<td width="78%" class="vtable">
<div id="showddnsbox"> <div id="showddnsbox">
<input type="button" onclick="show_ddns_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show Dynamic DNS");?> <input type="button" onclick="show_ddns_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show Dynamic DNS");?>
</div> </div>
<div id="showddns" style="display:none"> <div id="showddns" style="display:none">
<input style="vertical-align:middle" type="checkbox" value="yes" name="ddnsupdate" id="ddnsupdate" <?php if($pconfig['ddnsupdate']) echo " checked=\"checked\""; ?> />&nbsp; <input style="vertical-align:middle" type="checkbox" value="yes" name="ddnsupdate" id="ddnsupdate" <?php if($pconfig['ddnsupdate']) echo " checked=\"checked\""; ?> />&nbsp;
<b><?=gettext("Enable registration of DHCP client names in DNS.");?></b><br /> <b><?=gettext("Enable registration of DHCP client names in DNS.");?></b><br />
<p>
<input name="ddnsdomain" type="text" class="formfld unknown" id="ddnsdomain" size="28" value="<?=htmlspecialchars($pconfig['ddnsdomain']);?>" /><br />
<?=gettext("Note: Leave blank to disable dynamic DNS registration.");?><br /> <?=gettext("Note: Leave blank to disable dynamic DNS registration.");?><br />
<?=gettext("Enter the dynamic DNS domain which will be used to register client names in the DNS server.");?> <?=gettext("Enter the dynamic DNS domain which will be used to register client names in the DNS server.");?>
<input name="ddnsdomainprimary" type="text" class="formfld unknown" id="ddnsdomainprimary" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainprimary']);?>" /><br /> <input name="ddnsdomain" type="text" id="ddnsdomain" value="<?=$pconfig['ddnsdomain'];?>" />
<?=gettext("Enter the primary domain name server IP address for the dynamic domain name.");?><br /> <?=gettext("Enter the primary domain name server IP address for the dynamic domain name.");?><br />
<input name="ddnsdomainkeyname" type="text" class="formfld unknown" id="ddnsdomainkeyname" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainkeyname']);?>" /><br /> <input name="ddnsdomainprimary" type="text" id="ddnsdomainprimary" size="20" value="<?=$pconfig['ddnsdomainprimary'];?>" />
<?=gettext("Enter the dynamic DNS domain key name which will be used to register client names in the DNS server.");?> <?=gettext("Enter the dynamic DNS domain key name which will be used to register client names in the DNS server.");?>
<input name="ddnsdomainkey" type="text" class="formfld unknown" id="ddnsdomainkey" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainkey']);?>" /><br /> <input name="ddnsdomainkeyname" type="text" id="ddnsdomainkeyname" size="20" value="<?=$pconfig['ddnsdomainkeyname'];?>" />
<?=gettext("Enter the dynamic DNS domain key secret which will be used to register client names in the DNS server.");?> <?=gettext("Enter the dynamic DNS domain key secret which will be used to register client names in the DNS server.");?>
</p> <input name="ddnsdomainkey" type="text" id="ddnsdomainkey" size="20" value="<?=$pconfig['ddnsdomainkey'];?>" />
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("NTP servers");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("NTP servers");?></td>
<td width="78%" class="vtable"> <td>
<div id="showntpbox"> <div id="showntpbox">
<input type="button" onclick="show_ntp_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show NTP configuration");?> <input type="button" onclick="show_ntp_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show NTP configuration");?>
</div> </div>
<div id="showntp" style="display:none"> <div id="showntp" style="display:none">
<input name="ntp1" type="text" class="formfld unknown" id="ntp1" size="28" value="<?=htmlspecialchars($pconfig['ntp1']);?>" /><br /> <input name="ntp1" type="text" id="ntp1" value="<?=$pconfig['ntp1'];?>" /><br />
<input name="ntp2" type="text" class="formfld unknown" id="ntp2" size="28" value="<?=htmlspecialchars($pconfig['ntp2']);?>" /> <input name="ntp2" type="text" id="ntp2" value="<?=$pconfig['ntp2'];?>" />
</div> </div>
</td> </td>
</tr> </tr>
<!-- ISC dhcpd does not support tftp for ipv6 yet. See redmine #2016
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("TFTP server");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("LDAP URI");?></td>
<td width="78%" class="vtable"> <td>
<div id="showtftpbox">
<input type="button" onclick="show_tftp_config()" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show TFTP configuration");?>
</div>
<div id="showtftp" style="display:none">
<input name="tftp" type="text" class="formfld unknown" id="tftp" size="50" value="<?=htmlspecialchars($pconfig['tftp']);?>" /><br />
<?=gettext("Leave blank to disable. Enter a full hostname or IP for the TFTP server.");?>
</div>
</td>
</tr>
-->
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("LDAP URI");?></td>
<td width="78%" class="vtable">
<div id="showldapbox"> <div id="showldapbox">
<input type="button" onclick="show_ldap_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show LDAP configuration");?> <input type="button" onclick="show_ldap_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show LDAP configuration");?>
</div> </div>
<div id="showldap" style="display:none"> <div id="showldap" style="display:none">
<input name="ldap" type="text" class="formfld unknown" id="ldap" size="80" value="<?=htmlspecialchars($pconfig['ldap']);?>" /><br /> <input name="ldap" type="text" value="<?=$pconfig['ldap'];?>" />
<?=gettext("Leave blank to disable. Enter a full URI for the LDAP server in the form ldap://ldap.example.com/dc=example,dc=com");?> <?=gettext("Leave blank to disable. Enter a full URI for the LDAP server in the form ldap://ldap.example.com/dc=example,dc=com");?>
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Enable network booting");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable network booting");?></td>
<td width="78%" class="vtable"> <td>
<div id="shownetbootbox"> <div id="shownetbootbox">
<input type="button" onclick="show_netboot_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show Network booting");?> <input type="button" onclick="show_netboot_config()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show Network booting");?>
</div> </div>
<div id="shownetboot" style="display:none"> <div id="shownetboot" style="display:none">
<input style="vertical-align:middle" type="checkbox" value="yes" name="netboot" id="netboot" <?php if($pconfig['netboot']) echo " checked=\"checked\""; ?> />&nbsp; <input style="vertical-align:middle" type="checkbox" value="yes" name="netboot" id="netboot" <?=!empty($pconfig['netboot']) ? " checked=\"checked\"" : ""; ?> />
<b><?=gettext("Enables network booting.");?></b> <b><?=gettext("Enables network booting.");?></b>
<br/> <br/>
<?=gettext("Enter the Bootfile URL");?> <?=gettext("Enter the Bootfile URL");?>
<input name="bootfile_url" type="text" class="formfld unknown" id="bootfile_url" size="28" value="<?=htmlspecialchars($pconfig['bootfile_url']);?>" /> <input name="bootfile_url" type="text" id="bootfile_url" value="<?=$pconfig['bootfile_url'];?>" />
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Additional BOOTP/DHCP Options");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Additional BOOTP/DHCP Options");?></td>
<td width="78%" class="vtable"> <td>
<div id="shownumbervaluebox"> <div id="shownumbervaluebox">
<input type="button" onclick="show_shownumbervalue()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show Additional BOOTP/DHCP Options");?> <input type="button" onclick="show_shownumbervalue()" value="<?=gettext("Advanced");?>" class="btn btn-xs btn-default"/> - <?=gettext("Show Additional BOOTP/DHCP Options");?>
</div> </div>
<div id="shownumbervalue" style="display:none"> <div id="shownumbervalue" style="display:none">
<table class="table table-striped" id="maintable" summary="bootp-dhcp options"> <table class="table table-striped table-condensed" id="numberoptions_table">
<tbody> <thead>
<tr> <tr>
<td colspan="3"> <th></th>
<div style="padding:5px; margin-top: 16px; margin-bottom: 16px; border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;" id="itemhelp"> <th id="detailsHeading1"><?=gettext("Number"); ?></th>
<?=gettext("Enter the DHCP option number and the value for each item you would like to include in the DHCP lease information. For a list of available options please visit this"); ?> <a href="http://www.iana.org/assignments/bootp-dhcp-parameters/" target="_blank"><?=gettext("URL"); ?></a> <th id="detailsHeading3"><?=gettext("Type"); ?></th>
</div> <th id="updatefreqHeader" ><?=gettext("Value");?></th>
</td>
</tr>
<tr>
<td><div id="onecolumn"><?=gettext("Number");?></div></td>
<td><div id="twocolumn"><?=gettext("Value");?></div></td>
</tr> </tr>
<?php $counter = 0; ?> </thead>
<?php <tbody>
if($pconfig['numberoptions']) <?php
foreach($pconfig['numberoptions']['item'] as $item): if (empty($pconfig['numberoptions']['item'])) {
?> $numberoptions = array();
<?php $numberoptions[] = array('number' => null, 'value' => null, 'type' => null);
$number = $item['number']; } else {
$value = $item['value']; $numberoptions = $pconfig['numberoptions']['item'];
?> }
foreach($numberoptions as $item):?>
<tr> <tr>
<td> <td>
<input autocomplete="off" name="number<?php echo $counter; ?>" type="text" class="formfld" id="number<?php echo $counter; ?>" size="10" value="<?=htmlspecialchars($number);?>" /> <div style="cursor:pointer;" class="act-removerow btn btn-default btn-xs" alt="remove"><span class="glyphicon glyphicon-minus"></span></div>
</td> </td>
<td> <td>
<input autocomplete="off" name="value<?php echo $counter; ?>" type="text" class="formfld" id="value<?php echo $counter; ?>" size="55" value="<?=htmlspecialchars($value);?>" /> <input name="numberoptions_number[]" type="text" value="<?=$item['number'];?>" />
</td> </td>
<td> <td>
<butto onclick="removeRow(this); return false;" value="<?=gettext("Delete");?>" ><span class="fa fa-trash"></span></button> <select name="numberoptions_type[]">
<option value="text" <?=$item['type'] == "text" ? "selected=\"selected\"" : "";?>>
<?=gettext('Text');?>
</option>
<option value="string" <?=$item['type'] == "string" ? "selected=\"selected\"" : "";?>>
<?=gettext('String');?>
</option>
<option value="boolean" <?=$item['type'] == "boolean" ? "selected=\"selected\"" : "";?>>
<?=gettext('Boolean');?>
</option>
<option value="unsigned integer 8" <?=$item['type'] == "unsigned integer 8" ? "selected=\"selected\"" : "";?>>
<?=gettext('Unsigned 8-bit integer');?>
</option>
<option value="unsigned integer 16" <?=$item['type'] == "unsigned integer 16" ? "selected=\"selected\"" : "";?>>
<?=gettext('Unsigned 16-bit integer');?>
</option>
<option value="unsigned integer 32" <?=$item['type'] == "unsigned integer 32" ? "selected=\"selected\"" : "";?>>
<?=gettext('Unsigned 32-bit integer');?>
</option>
<option value="signed integer 8" <?=$item['type'] == "signed integer 8" ? "selected=\"selected\"" : "";?>>
<?=gettext('Signed 8-bit integer');?>
</option>
<option value="signed integer 16" <?=$item['type'] == "signed integer 16" ? "selected=\"selected\"" : "";?>>
<?=gettext('Signed 16-bit integer');?>
</option>
<option value="signed integer 32" <?=$item['type'] == "signed integer 32" ? "selected=\"selected\"" : "";?>>
<?=gettext('Signed 32-bit integer');?>
</option>
<option value="ip-address" <?=$item['type'] == "ip-address" ? "selected=\"selected\"" : "";?>>
<?=gettext('IP address or host');?>
</option>
</select>
</td> </td>
<td> <input name="numberoptions_value[]" type="text" value="<?=$item['value'];?>" /> </td>
</tr> </tr>
<?php $counter++; ?> <?php
<?php endforeach; ?> endforeach;?>
</tbody> </tbody>
<tfoot>
<tr>
<td colspan="4">
<div id="addNew" style="cursor:pointer;" class="btn btn-default btn-xs" alt="add"><span class="glyphicon glyphicon-plus"></span></div>
</td>
</tr>
</tfoot>
</table> </table>
<a onclick="javascript:addRowTo('maintable', 'formfldalias'); return false;" href="#" alt="" title="<?=gettext("add another entry");?>"> <div class="hidden" for="help_for_numberoptions">
<span class="glyphicon glyphicon-plus" ></span> <?=gettext("Enter the DHCP option number and the value for each item you would like to include in the DHCP lease information. For a list of available options please visit this"); ?> <a href="http://www.iana.org/assignments/bootp-dhcp-parameters/" target="_blank"><?=gettext("URL"); ?></a>
</a> </div>
<script type="text/javascript">
//<![CDATA[
field_counter_js = 2;
rows = 1;
totalrows = <?php echo $counter; ?>;
loaded = <?php echo $counter; ?>;
//]]>
</script>
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top">&nbsp;</td> <td>&nbsp;</td>
<td width="78%"> <td>
<input name="if" type="hidden" value="<?=$if;?>" /> <input name="if" type="hidden" value="<?=$if;?>" />
<input name="Submit" type="submit" class="formbtn btn btn-primary" value="<?=gettext("Save");?>" onclick="enable_change(true)" /> <input name="submit" type="submit" class="formbtn btn btn-primary" value="<?=gettext("Save");?>"/>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top">&nbsp;</td> <td>&nbsp;</td>
<td width="78%"> <p><span class="vexpl"><span class="red"><strong><?=gettext("Note:");?><br /> <td> <p><span class="vexpl"><span class="text-danger"><strong><?=gettext("Note:");?><br />
</strong></span><?=gettext("The DNS servers entered in"); ?> <a href="system_general.php"><?=gettext("System: " . </strong></span><?=gettext("The DNS servers entered in"); ?> <a href="system_general.php"><?=gettext("System: " .
"General setup"); ?></a> <?=gettext("(or the"); ?> <a href="services_dnsmasq.php"><?=gettext("DNS " . "General setup"); ?></a> <?=gettext("(or the"); ?> <a href="services_dnsmasq.php"><?=gettext("DNS " .
"forwarder"); ?></a>, <?=gettext("if enabled)"); ?> </span><span class="vexpl"><?=gettext("will " . "forwarder"); ?></a>, <?=gettext("if enabled)"); ?> </span><span class="vexpl"><?=gettext("will " .
"be assigned to clients by the DHCP server."); ?><br /> "be assigned to clients by the DHCP server."); ?><br />
<br />
<?=gettext("The DHCP lease table can be viewed on the"); ?> <a href="status_dhcpv6_leases.php"><?=gettext("Status: " . <?=gettext("The DHCP lease table can be viewed on the"); ?> <a href="status_dhcpv6_leases.php"><?=gettext("Status: " .
"DHCPv6 leases"); ?></a> <?=gettext("page."); ?><br /> "DHCPv6 leases"); ?></a> <?=gettext("page."); ?><br />
</span></p> </span></p>
...@@ -824,78 +781,52 @@ include("head.inc"); ...@@ -824,78 +781,52 @@ include("head.inc");
</tr> </tr>
</table> </table>
</div> </div>
</form>
</div>
</section>
<section class="col-xs-12">
<div class="tab-content content-box col-xs-12">
<div class="table-responsive"> <div class="table-responsive">
<table class="tabcont table table-striped" width="100%" border="0" cellpadding="0" cellspacing="0" summary="static mappings"> <table class="tabcont table table-striped" width="100%" border="0" cellpadding="0" cellspacing="0" summary="static mappings">
<tr> <tr>
<td colspan="4" valign="top" class="listtopic"><?=gettext("DHCPv6 Static Mappings for this interface.");?></td> <td colspan="4" class="listtopic"><?=gettext("DHCPv6 Static Mappings for this interface.");?></td>
<td>&nbsp;</td> <td>&nbsp;</td>
</tr> </tr>
<tr> <tr>
<td width="25%" class="listhdrr"><?=gettext("DUID");?></td> <td><?=gettext("DUID");?></td>
<td width="15%" class="listhdrr"><?=gettext("IPv6 address");?></td> <td><?=gettext("IPv6 address");?></td>
<td width="20%" class="listhdrr"><?=gettext("Hostname");?></td> <td><?=gettext("Hostname");?></td>
<td width="30%" class="listhdr"><?=gettext("Description");?></td> <td><?=gettext("Description");?></td>
<td width="10%" class="list"> <td>
<table border="0" cellspacing="0" cellpadding="1" summary="add"> <a href="services_dhcpv6_edit.php?if=<?=$if;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a>
<tr>
<td valign="middle" width="17"></td>
<td valign="middle"><a href="services_dhcpv6_edit.php?if=<?=$if;?>" alt="add"><span class="glyphicon glyphicon-plus" ></span></a></td>
</tr>
</table>
</td>
</tr>
<?php if(is_array($a_maps)): ?>
<?php $i = 0; foreach ($a_maps as $mapent): ?>
<?php if($mapent['duid'] <> "" or $mapent['ipaddrv6'] <> ""): ?>
<tr>
<td class="listlr" ondblclick="document.location='services_dhcpv6_edit.php?if=<?=$if;?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['duid']);?>
</td>
<td class="listr" ondblclick="document.location='services_dhcpv6_edit.php?if=<?=$if;?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['ipaddrv6']);?>&nbsp;
</td>
<td class="listr" ondblclick="document.location='services_dhcpv6_edit.php?if=<?=$if;?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['hostname']);?>&nbsp;
</td>
<td class="listbg" ondblclick="document.location='services_dhcpv6_edit.php?if=<?=$if;?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['descr']);?>&nbsp;
</td>
<td valign="middle" class="list nowrap">
<table border="0" cellspacing="0" cellpadding="1" summary="icons">
<tr>
<td valign="middle"><a href="services_dhcpv6_edit.php?if=<?=$if;?>&amp;id=<?=$i;?>" alt="edit"><span class="glyphicon glyphicon-pencil"></span></a></td>
<td valign="middle"><a href="services_dhcpv6.php?if=<?=$if;?>&amp;act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this mapping?");?>')" alt="delete"><span class="fa fa-trash"></span></a></td>
</tr>
</table>
</td> </td>
</tr> </tr>
<?php endif; ?> <?php
<?php $i++; endforeach; ?> if(!empty($config['dhcpdv6'][$if]['staticmap'])):
<?php endif; ?> $i = 0;
<tr> foreach ($config['dhcpdv6'][$if]['staticmap'] as $mapent): ?>
<td class="list" colspan="4"></td>
<td class="list">
<table border="0" cellspacing="0" cellpadding="1" summary="add">
<tr> <tr>
<td valign="middle" width="17"></td> <td><?=htmlspecialchars($mapent['duid']);?></td>
<td valign="middle"><a href="services_dhcpv6_edit.php?if=<?=$if;?>" alt="add"><span class="glyphicon glyphicon-plus" ></span></a></td> <td><?=htmlspecialchars($mapent['ipaddrv6']);?></td>
</tr> <td><?=htmlspecialchars($mapent['hostname']);?></td>
</table> <td><?=htmlspecialchars($mapent['descr']);?></td>
<td>
<a href="services_dhcpv6_edit.php?if=<?=$if;?>&amp;id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
<button type="button" data-if="<?=$if;?>" data-id="<?=$i;?>" class="act_delete_static btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button>
</td> </td>
</tr> </tr>
<?php
$i++;
endforeach;
endif; ?>
</table> </table>
</div> </div>
<?php endif; ?> <?php
</form> endif; ?>
</div> </div>
</section> </section>
</div> </div>
</div> </div>
</section> </section>
<script type="text/javascript">
//<![CDATA[
enable_change(false);
//]]>
</script>
<?php include("foot.inc"); ?> <?php include("foot.inc"); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment