Commit 36bd3115 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) refactor services_dhcp.php, work in progress

parent 1fd55b12
<?php
/*
Copyright (C) 2014-2015 Deciso B.V.
Copyright (C) 2014-2016 Deciso B.V.
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
......@@ -42,14 +42,18 @@ require_once("interfaces.inc");
function dhcp_clean_leases() {
global $g, $config;
$leasesfile = "{$g['dhcpd_chroot_path']}/var/db/dhcpd.leases";
if (!file_exists($leasesfile))
if (!file_exists($leasesfile)) {
return;
}
/* Build list of static MACs */
$staticmacs = array();
foreach($config['interfaces'] as $ifname => $ifarr)
if (is_array($config['dhcpd'][$ifname]['staticmap']))
foreach($config['dhcpd'][$ifname]['staticmap'] as $static)
foreach($config['interfaces'] as $ifname => $ifarr) {
if (is_array($config['dhcpd'][$ifname]['staticmap'])) {
foreach($config['dhcpd'][$ifname]['staticmap'] as $static) {
$staticmacs[] = $static['mac'];
}
}
}
/* Read existing leases */
$leases_contents = explode("\n", file_get_contents($leasesfile));
$newleases_contents = array();
......@@ -61,14 +65,16 @@ function dhcp_clean_leases() {
$thismac = "";
/* Read to the end of the lease declaration */
do {
if (substr($leases_contents[$i], 0, 20) == " hardware ethernet ")
if (substr($leases_contents[$i], 0, 20) == " hardware ethernet ") {
$thismac = substr($leases_contents[$i], 20, 17);
}
$templease[] = $leases_contents[$i];
$i++;
} while ($leases_contents[$i-1] != "}");
/* Check for a matching MAC address and if not present, keep it. */
if (! in_array($thismac, $staticmacs))
if (! in_array($thismac, $staticmacs)) {
$newleases_contents = array_merge($newleases_contents, $templease);
}
} else {
/* It's a line we want to keep, copy it over. */
$newleases_contents[] = $leases_contents[$i];
......@@ -81,175 +87,197 @@ function dhcp_clean_leases() {
fclose($fd);
}
$if = $_GET['if'];
if (!empty($_POST['if']))
$if = $_POST['if'];
if (!$_GET['if'])
$savemsg = gettext("The DHCP Server can only be enabled on interfaces configured with static IP addresses") . ".<br/><br/>" . gettext("Only interfaces configured with a static IP will be shown") . ".";
$iflist = get_configured_interface_with_descr();
function validate_partial_mac_list($maclist) {
$macs = explode(',', $maclist);
// Loop through and look for invalid MACs.
foreach ($macs as $mac) {
if (!is_macaddr($mac, true)) {
return false;
}
}
return true;
}
/* set the starting interface */
if (!$if || !isset($iflist[$if])) {
foreach ($iflist as $ifent => $ifname) {
$oc = $config['interfaces'][$ifent];
if ((is_array($config['dhcpd'][$ifent]) && !isset($config['dhcpd'][$ifent]['enable']) && (!is_ipaddrv4($oc['ipaddr']))) ||
(!is_array($config['dhcpd'][$ifent]) && (!is_ipaddrv4($oc['ipaddr']))))
continue;
$if = $ifent;
break;
/**
* restart dhcp service
*/
function reconfigure_dhcpd()
{
/* Stop DHCP so we can cleanup leases */
killbyname("dhcpd");
dhcp_clean_leases();
system_hosts_generate();
/* dnsmasq_configure calls dhcpd_configure */
/* no need to restart dhcpd twice */
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) {
services_dnsmasq_configure();
clear_subsystem_dirty('hosts');
} elseif (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic'])) {
services_unbound_configure();
clear_subsystem_dirty('unbound');
} else {
services_dhcpd_configure();
}
clear_subsystem_dirty('staticmaps');
}
$act = $_GET['act'];
if (!empty($_POST['act']))
$act = $_POST['act'];
$a_pools = array();
$config_copy_fieldsnames = array('enable', 'staticarp', 'failover_peerip', 'dhcpleaseinlocaltime','descr',
'defaultleasetime', 'maxleasetime', 'gateway', 'domain', 'domainsearchlist', 'denyunknown', 'ddnsdomain',
'ddnsdomainprimary', 'ddnsdomainkeyname', 'ddnsdomainkey', 'ddnsupdate', 'mac_allow', 'mac_deny', 'tftp', 'ldap',
'netboot', 'nextserver', 'filename', 'filename32', 'filename64', 'rootpath', 'netmask', 'numberoptions');
if (is_array($config['dhcpd'][$if])){
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
// handle identifiers and action
if (!empty($_GET['if']) && !empty($config['interfaces'][$_GET['if']])) {
$if = $_GET['if'];
if (isset($_GET['pool']) && !empty($config['dhcpd'][$_GET['if']]['pool'][$_GET['pool']])) {
$pool = $_GET['pool'];
if (is_numeric($_POST['pool']))
$pool = $_POST['pool'];
// If we have a pool but no interface name, that's not valid. Redirect away.
if (is_numeric($pool) && empty($if)) {
header("Location: services_dhcp.php");
exit;
}
} else {
$savemsg = gettext("The DHCP Server can only be enabled on interfaces configured with static IP addresses") . ".<br/><br/>" . gettext("Only interfaces configured with a static IP will be shown") . ".";
}
if (!is_array($config['dhcpd'][$if]['pool']))
if (empty($config['dhcpd'][$if])) {
$config['dhcpd'][$if] = array();
}
if (empty($config['dhcpd'][$if]['pool'])) {
$config['dhcpd'][$if]['pool'] = array();
}
$a_pools = &$config['dhcpd'][$if]['pool'];
if (is_numeric($pool) && $a_pools[$pool])
if (!empty($_GET['act'])) {
$act = $_GET['act'];
} else {
$act = null;
}
/* If no interface is provided, choose first one from interfaces */
if (!isset($if)) {
foreach ($config['interfaces'] as $if_id => $intf) {
if (!empty($intf['enable']) && is_ipaddrv4($intf['ipaddr'])) {
$if = $if_id;
break;
}
}
}
// point to source of data (pool or main dhcp section)
if (isset($pool)) {
$dhcpdconf = &$a_pools[$pool];
elseif ($act == "newpool")
} elseif ($act == "newpool") {
$dhcpdconf = array();
else
} else {
$dhcpdconf = &$config['dhcpd'][$if];
}
if (is_array($dhcpdconf)) {
// Global Options
if (!is_numeric($pool) && !($act == "newpool")) {
$pconfig['enable'] = isset($dhcpdconf['enable']);
$pconfig['staticarp'] = isset($dhcpdconf['staticarp']);
// No reason to specify this per-pool, per the dhcpd.conf man page it needs to be in every
// pool and should be specified in every pool both nodes share, so we'll treat it as global
$pconfig['failover_peerip'] = $dhcpdconf['failover_peerip'];
$pconfig['dhcpleaseinlocaltime'] = $dhcpdconf['dhcpleaseinlocaltime'];
if (!is_array($dhcpdconf['staticmap']))
$dhcpdconf['staticmap'] = array();
$a_maps = &$dhcpdconf['staticmap'];
}
$pconfig = array();
// simple 1-on-1 copy
foreach ($config_copy_fieldsnames as $fieldname) {
if (isset($dhcpdconf[$fieldname])) {
$pconfig[$fieldname] = $dhcpdconf[$fieldname];
} else {
// Options that exist only in pools
$pconfig['descr'] = $dhcpdconf['descr'];
$pconfig[$fieldname] = null;
}
}
// array conversions
$pconfig['numberoptions'] = !empty($pconfig['numberoptions']) ? $pconfig['numberoptions'] : array();
// list items
$pconfig['range_from'] = !empty($dhcpdconf['range']['from']) ? $dhcpdconf['range']['from'] : "";
$pconfig['range_to'] = !empty($dhcpdconf['range']['to']) ? $dhcpdconf['range']['to'] : "";
$pconfig['wins1'] = !empty($dhcpdconf['winsserver'][0]) ? $dhcpdconf['winsserver'][0] : "";
$pconfig['wins2'] = !empty($dhcpdconf['winsserver'][1]) ? $dhcpdconf['winsserver'][1] : "";
$pconfig['dns1'] = !empty($dhcpdconf['dnsserver'][0]) ? $dhcpdconf['winsserver'][0] : "";
$pconfig['dns2'] = !empty($dhcpdconf['dnsserver'][1]) ? $dhcpdconf['dnsserver'][1] : "";
$pconfig['ntp1'] = !empty($dhcpdconf['ntpserver'][0]) ? $dhcpdconf['winsserver'][0] : "";
$pconfig['ntp2'] = !empty($dhcpdconf['ntpserver'][1]) ? $dhcpdconf['ntpserver'][1] : "";
} elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
// handle identifiers and actions
if (!empty($_POST['if']) && !empty($config['interfaces'][$_POST['if']])) {
$if = $_POST['if'];
if (isset($_POST['pool']) && !empty($config['dhcpd'][$_POST['if']]['pool'][$_POST['pool']])) {
$pool = $_POST['pool'];
}
}
if (empty($config['dhcpd'][$if])) {
$config['dhcpd'][$if] = array();
}
if (empty($config['dhcpd'][$if]['pool'])) {
$config['dhcpd'][$if]['pool'] = array();
}
$a_pools = &$config['dhcpd'][$if]['pool'];
// Options that can be global or per-pool.
if (is_array($dhcpdconf['range'])) {
$pconfig['range_from'] = $dhcpdconf['range']['from'];
$pconfig['range_to'] = $dhcpdconf['range']['to'];
}
$pconfig['deftime'] = $dhcpdconf['defaultleasetime'];
$pconfig['maxtime'] = $dhcpdconf['maxleasetime'];
$pconfig['gateway'] = $dhcpdconf['gateway'];
$pconfig['domain'] = $dhcpdconf['domain'];
$pconfig['domainsearchlist'] = $dhcpdconf['domainsearchlist'];
list($pconfig['wins1'],$pconfig['wins2']) = $dhcpdconf['winsserver'];
list($pconfig['dns1'],$pconfig['dns2']) = $dhcpdconf['dnsserver'];
$pconfig['denyunknown'] = isset($dhcpdconf['denyunknown']);
$pconfig['ddnsdomain'] = $dhcpdconf['ddnsdomain'];
$pconfig['ddnsdomainprimary'] = $dhcpdconf['ddnsdomainprimary'];
$pconfig['ddnsdomainkeyname'] = $dhcpdconf['ddnsdomainkeyname'];
$pconfig['ddnsdomainkey'] = $dhcpdconf['ddnsdomainkey'];
$pconfig['ddnsupdate'] = isset($dhcpdconf['ddnsupdate']);
$pconfig['mac_allow'] = $dhcpdconf['mac_allow'];
$pconfig['mac_deny'] = $dhcpdconf['mac_deny'];
list($pconfig['ntp1'],$pconfig['ntp2']) = $dhcpdconf['ntpserver'];
$pconfig['tftp'] = $dhcpdconf['tftp'];
$pconfig['ldap'] = $dhcpdconf['ldap'];
$pconfig['netboot'] = isset($dhcpdconf['netboot']);
$pconfig['nextserver'] = $dhcpdconf['nextserver'];
$pconfig['filename'] = $dhcpdconf['filename'];
$pconfig['filename32'] = $dhcpdconf['filename32'];
$pconfig['filename64'] = $dhcpdconf['filename64'];
$pconfig['rootpath'] = $dhcpdconf['rootpath'];
$pconfig['netmask'] = $dhcpdconf['netmask'];
$pconfig['numberoptions'] = $dhcpdconf['numberoptions'];
}
$ifcfgip = $config['interfaces'][$if]['ipaddr'];
$ifcfgsn = $config['interfaces'][$if]['subnet'];
function validate_partial_mac_list($maclist) {
$macs = explode(',', $maclist);
// Loop through and look for invalid MACs.
foreach ($macs as $mac)
if (!is_macaddr($mac, true))
return false;
return true;
}
if (isset($_POST['submit'])) {
unset($input_errors);
if (!empty($_POST['act'])) {
$act = $_POST['act'];
} else {
$act = null;
}
$pconfig = $_POST;
$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['type'] = htmlspecialchars($_POST["itemtype{$x}"]);
$numbervalue['value'] = str_replace('&quot;', '"', htmlspecialchars($_POST["value{$x}"]));
$numberoptions['item'][] = $numbervalue;
$input_errors = array();
if (isset($_POST['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) {
$pconfig['numberoptions']['item'][] = array('number' => $opt_number,
'type' => $pconfig['numberoptions_type'][$opt_seq],
'value' => $pconfig['numberoptions_value'][$opt_seq]
);
}
}
// Reload the new pconfig variable that the forum uses.
$pconfig['numberoptions'] = $numberoptions;
/* input validation */
if ($_POST['enable'] || is_numeric($pool) || $act == "newpool") {
$reqdfields = explode(" ", "range_from range_to");
$reqdfieldsn = array(gettext("Range begin"),gettext("Range end"));
do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
do_input_validation($pconfig, $reqdfields, $reqdfieldsn, $input_errors);
if (($_POST['range_from'] && !is_ipaddrv4($_POST['range_from'])))
if (!is_ipaddrv4($pconfig['range_from'])) {
$input_errors[] = gettext("A valid range must be specified.");
if (($_POST['range_to'] && !is_ipaddrv4($_POST['range_to'])))
}
if (!is_ipaddrv4($pconfig['range_to'])) {
$input_errors[] = gettext("A valid range must be specified.");
if (($_POST['gateway'] && $_POST['gateway'] != "none" && !is_ipaddrv4($_POST['gateway'])))
}
if (!empty($pconfig['gateway']) && $pconfig['gateway'] != "none" && !is_ipaddrv4($pconfig['gateway'])) {
$input_errors[] = gettext("A valid IP address must be specified for the gateway.");
if (($_POST['wins1'] && !is_ipaddrv4($_POST['wins1'])) || ($_POST['wins2'] && !is_ipaddrv4($_POST['wins2'])))
}
if ((!empty($pconfig['wins1']) && !is_ipaddrv4($pconfig['wins1'])) || (!empty($pconfig['wins2']) && !is_ipaddrv4($pconfig['wins2']))) {
$input_errors[] = gettext("A valid IP address must be specified for the primary/secondary WINS servers.");
$parent_ip = get_interface_ip($_POST['if']);
if (is_ipaddrv4($parent_ip) && $_POST['gateway'] && $_POST['gateway'] != "none") {
$parent_sn = get_interface_subnet($_POST['if']);
if(!ip_in_subnet($_POST['gateway'], gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn) && !ip_in_interface_alias_subnet($_POST['if'], $_POST['gateway']))
$input_errors[] = sprintf(gettext("The gateway address %s does not lie within the chosen interface's subnet."), $_POST['gateway']);
}
if (($_POST['dns1'] && !is_ipaddrv4($_POST['dns1'])) || ($_POST['dns2'] && !is_ipaddrv4($_POST['dns2'])))
$parent_ip = get_interface_ip($pconfig['if']);
if (is_ipaddrv4($parent_ip) && $pconfig['gateway'] && $pconfig['gateway'] != "none") {
$parent_sn = get_interface_subnet($pconfig['if']);
if(!ip_in_subnet($pconfig['gateway'], gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn) && !ip_in_interface_alias_subnet($pconfig['if'], $pconfig['gateway'])) {
$input_errors[] = sprintf(gettext("The gateway address %s does not lie within the chosen interface's subnet."), $pconfig['gateway']);
}
}
if ((!empty($pconfig['dns1']) && !is_ipaddrv4($pconfig['dns1'])) || (!empty($pconfig['dns2']) && !is_ipaddrv4($pconfig['dns2']))) {
$input_errors[] = gettext("A valid IP 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.");
}
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'] <= $pconfig['defaultleasetime']))) {
$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.");
if (($_POST['ddnsdomain'] && !is_ipaddrv4($_POST['ddnsdomainprimary'])))
}
if ((!empty($pconfig['ddnsdomain']) && !is_ipaddrv4($pconfig['ddnsdomainprimary']))) {
$input_errors[] = gettext("A valid primary domain name server IP 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.");
if ($_POST['domainsearchlist']) {
$domain_array=preg_split("/[ ;]+/",$_POST['domainsearchlist']);
}
if (!empty($pconfig['domainsearchlist'])) {
$domain_array=preg_split("/[ ;]+/",$pconfig['domainsearchlist']);
foreach ($domain_array as $curdomain) {
if (!is_domain($curdomain)) {
$input_errors[] = gettext("A valid domain search list must be specified.");
......@@ -259,109 +287,130 @@ if (isset($_POST['submit'])) {
}
// Validate MACs
if (!empty($_POST['mac_allow']) && !validate_partial_mac_list($_POST['mac_allow']))
if (!empty($pconfig['mac_allow']) && !validate_partial_mac_list($pconfig['mac_allow'])) {
$input_errors[] = gettext("If you specify a mac allow list, it must contain only valid partial MAC addresses.");
if (!empty($_POST['mac_deny']) && !validate_partial_mac_list($_POST['mac_deny']))
}
if (!empty($pconfig['mac_deny']) && !validate_partial_mac_list($pconfig['mac_deny'])) {
$input_errors[] = gettext("If you specify a mac deny list, it must contain only valid partial MAC addresses.");
}
if (($_POST['ntp1'] && !is_ipaddrv4($_POST['ntp1'])) || ($_POST['ntp2'] && !is_ipaddrv4($_POST['ntp2'])))
if ((!empty($pconfig['ntp1']) && !is_ipaddrv4($pconfig['ntp1'])) || (!empty($pconfig['ntp2']) && !is_ipaddrv4($pconfig['ntp2']))) {
$input_errors[] = gettext("A valid IP 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.");
if ($_POST['tftp'] && !is_ipaddrv4($_POST['tftp']) && !is_domain($_POST['tftp']) && !is_URL($_POST['tftp']))
}
if (!empty($pconfig['tftp']) && !is_ipaddrv4($pconfig['tftp']) && !is_domain($pconfig['tftp']) && !is_URL($pconfig['tftp'])) {
$input_errors[] = gettext("A valid IP address or hostname must be specified for the TFTP server.");
if (($_POST['nextserver'] && !is_ipaddrv4($_POST['nextserver'])))
}
if (!empty($pconfig['nextserver']) && !is_ipaddrv4($pconfig['nextserver'])) {
$input_errors[] = gettext("A valid IP address must be specified for the network boot server.");
}
if(gen_subnet($ifcfgip, $ifcfgsn) == $_POST['range_from'])
if (gen_subnet($config['interfaces'][$if]['ipaddr'], $config['interfaces'][$if]['subnet']) == $pconfig['range_from']) {
$input_errors[] = gettext("You cannot use the network address in the starting subnet range.");
if(gen_subnet_max($ifcfgip, $ifcfgsn) == $_POST['range_to'])
}
if (gen_subnet_max($config['interfaces'][$if]['ipaddr'], $config['interfaces'][$if]['subnet']) == $pconfig['range_to']) {
$input_errors[] = gettext("You cannot use the broadcast address in the ending subnet range.");
}
// Disallow a range that includes the virtualip
if (isset($config['virtualip']['vip'])) {
foreach($config['virtualip']['vip'] as $vip) {
if($vip['interface'] == $if)
if($vip['subnet'] && is_inrange_v4($vip['subnet'], $_POST['range_from'], $_POST['range_to']))
if ($vip['interface'] == $if) {
if ($vip['subnet'] && is_inrange_v4($vip['subnet'], $pconfig['range_from'], $pconfig['range_to'])) {
$input_errors[] = sprintf(gettext("The subnet range cannot overlap with virtual IP address %s."),$vip['subnet']);
}
}
}
}
if (!empty($config['dhcpd'][$if]['staticmap'])) {
$a_maps = &$config['dhcpd'][$if]['staticmap'];
} else {
$a_maps = array();
}
$noip = false;
if(is_array($a_maps))
foreach ($a_maps as $map)
if (empty($map['ipaddr']))
foreach ($a_maps as $map) {
if (empty($map['ipaddr'])) {
$noip = true;
if ($_POST['staticarp'] && $noip)
}
}
if (!empty($pconfig['staticarp']) && $noip) {
$input_errors[] = gettext("Cannot enable static ARP when you have static map entries without IP addresses. Ensure all static maps have IP addresses and try again.");
}
if(is_array($pconfig['numberoptions']['item'])) {
foreach ($pconfig['numberoptions']['item'] as $numberoption) {
if ( $numberoption['type'] == 'text' && strstr($numberoption['value'], '"') )
if ($numberoption['type'] == 'text' && strstr($numberoption['value'], '"')) {
$input_errors[] = gettext("Text type cannot include quotation marks.");
else if ( $numberoption['type'] == 'string' && !preg_match('/^"[^"]*"$/', $numberoption['value']) && !preg_match('/^[0-9a-f]{2}(?:\:[0-9a-f]{2})*$/i', $numberoption['value']) )
} elseif ($numberoption['type'] == 'string' && !preg_match('/^"[^"]*"$/', $numberoption['value']) && !preg_match('/^[0-9a-f]{2}(?:\:[0-9a-f]{2})*$/i', $numberoption['value'])) {
$input_errors[] = gettext("String type must be enclosed in quotes like \"this\" or must be a series of octets specified in hexadecimal, separated by colons, like 01:23:45:67:89:ab:cd:ef");
else if ( $numberoption['type'] == 'boolean' && $numberoption['value'] != 'true' && $numberoption['value'] != 'false' && $numberoption['value'] != 'on' && $numberoption['value'] != 'off' )
} elseif ($numberoption['type'] == 'boolean' && $numberoption['value'] != 'true' && $numberoption['value'] != 'false' && $numberoption['value'] != 'on' && $numberoption['value'] != 'off') {
$input_errors[] = gettext("Boolean type must be true, false, on, or off.");
else if ( $numberoption['type'] == 'unsigned integer 8' && (!is_numeric($numberoption['value']) || $numberoption['value'] < 0 || $numberoption['value'] > 255) )
} elseif ($numberoption['type'] == 'unsigned integer 8' && (!is_numeric($numberoption['value']) || $numberoption['value'] < 0 || $numberoption['value'] > 255)) {
$input_errors[] = gettext("Unsigned 8-bit integer type must be a number in the range 0 to 255.");
else if ( $numberoption['type'] == 'unsigned integer 16' && (!is_numeric($numberoption['value']) || $numberoption['value'] < 0 || $numberoption['value'] > 65535) )
} elseif ($numberoption['type'] == 'unsigned integer 16' && (!is_numeric($numberoption['value']) || $numberoption['value'] < 0 || $numberoption['value'] > 65535)) {
$input_errors[] = gettext("Unsigned 16-bit integer type must be a number in the range 0 to 65535.");
else if ( $numberoption['type'] == 'unsigned integer 32' && (!is_numeric($numberoption['value']) || $numberoption['value'] < 0 || $numberoption['value'] > 4294967295) )
} elseif ($numberoption['type'] == 'unsigned integer 32' && (!is_numeric($numberoption['value']) || $numberoption['value'] < 0 || $numberoption['value'] > 4294967295) ) {
$input_errors[] = gettext("Unsigned 32-bit integer type must be a number in the range 0 to 4294967295.");
else if ( $numberoption['type'] == 'signed integer 8' && (!is_numeric($numberoption['value']) || $numberoption['value'] < -128 || $numberoption['value'] > 127) )
} elseif ($numberoption['type'] == 'signed integer 8' && (!is_numeric($numberoption['value']) || $numberoption['value'] < -128 || $numberoption['value'] > 127)) {
$input_errors[] = gettext("Signed 8-bit integer type must be a number in the range -128 to 127.");
else if ( $numberoption['type'] == 'signed integer 16' && (!is_numeric($numberoption['value']) || $numberoption['value'] < -32768 || $numberoption['value'] > 32767) )
} elseif ($numberoption['type'] == 'signed integer 16' && (!is_numeric($numberoption['value']) || $numberoption['value'] < -32768 || $numberoption['value'] > 32767)) {
$input_errors[] = gettext("Signed 16-bit integer type must be a number in the range -32768 to 32767.");
else if ( $numberoption['type'] == 'signed integer 32' && (!is_numeric($numberoption['value']) || $numberoption['value'] < -2147483648 || $numberoption['value'] > 2147483647) )
} elseif ($numberoption['type'] == 'signed integer 32' && (!is_numeric($numberoption['value']) || $numberoption['value'] < -2147483648 || $numberoption['value'] > 2147483647)) {
$input_errors[] = gettext("Signed 32-bit integer type must be a number in the range -2147483648 to 2147483647.");
else if ( $numberoption['type'] == 'ip-address' && !is_ipaddrv4($numberoption['value']) && !is_hostname($numberoption['value']) )
} elseif ($numberoption['type'] == 'ip-address' && !is_ipaddrv4($numberoption['value']) && !is_hostname($numberoption['value'])) {
$input_errors[] = gettext("IP address or host type must be an IP address or host name.");
}
}
}
if (!$input_errors) {
if (count($input_errors) == 0) {
/* make sure the range lies within the current subnet */
$subnet_start = ip2ulong(long2ip32(ip2long($ifcfgip) & gen_subnet_mask_long($ifcfgsn)));
$subnet_end = ip2ulong(long2ip32(ip2long($ifcfgip) | (~gen_subnet_mask_long($ifcfgsn))));
$subnet_start = ip2ulong(long2ip32(ip2long($config['interfaces'][$if]['ipaddr']) & gen_subnet_mask_long($config['interfaces'][$if]['subnet'])));
$subnet_end = ip2ulong(long2ip32(ip2long($config['interfaces'][$if]['ipaddr']) | (~gen_subnet_mask_long($config['interfaces'][$if]['subnet']))));
if ((ip2ulong($_POST['range_from']) < $subnet_start) || (ip2ulong($_POST['range_from']) > $subnet_end) ||
(ip2ulong($_POST['range_to']) < $subnet_start) || (ip2ulong($_POST['range_to']) > $subnet_end)) {
if ((ip2ulong($pconfig['range_from']) < $subnet_start) || (ip2ulong($pconfig['range_from']) > $subnet_end) ||
(ip2ulong($pconfig['range_to']) < $subnet_start) || (ip2ulong($pconfig['range_to']) > $subnet_end)) {
$input_errors[] = gettext("The specified range lies outside of the current subnet.");
}
if (ip2ulong($_POST['range_from']) > ip2ulong($_POST['range_to']))
if (ip2ulong($pconfig['range_from']) > ip2ulong($pconfig['range_to'])) {
$input_errors[] = gettext("The range is invalid (first element higher than second element).");
}
if (is_numeric($pool) || ($act == "newpool")) {
if (isset($pool) || ($act == "newpool")) {
$rfrom = $config['dhcpd'][$if]['range']['from'];
$rto = $config['dhcpd'][$if]['range']['to'];
if (is_inrange_v4($_POST['range_from'], $rfrom, $rto) || is_inrange_v4($_POST['range_to'], $rfrom, $rto))
if (is_inrange_v4($pconfig['range_from'], $rfrom, $rto) || is_inrange_v4($pconfig['range_to'], $rfrom, $rto)) {
$input_errors[] = gettext("The specified range must not be within the DHCP range for this interface.");
}
}
foreach ($a_pools as $id => $p) {
if (is_numeric($pool) && ($id == $pool))
if (isset($pool) && ($id == $pool)) {
continue;
if (is_inrange_v4($_POST['range_from'], $p['range']['from'], $p['range']['to']) ||
is_inrange_v4($_POST['range_to'], $p['range']['from'], $p['range']['to'])) {
}
if (is_inrange_v4($pconfig['range_from'], $p['range']['from'], $p['range']['to']) ||
is_inrange_v4($pconfig['range_to'], $p['range']['from'], $p['range']['to'])) {
$input_errors[] = gettext("The specified range must not be within the range configured on a DHCP pool for this interface.");
break;
}
}
/* make sure that the DHCP Relay isn't enabled on this interface */
if (isset($config['dhcrelay']['enable']) && (stristr($config['dhcrelay']['interface'], $if) !== false))
$input_errors[] = sprintf(gettext("You must disable the DHCP relay on the %s interface before enabling the DHCP server."),$iflist[$if]);
if (isset($config['dhcrelay']['enable']) && (stristr($config['dhcrelay']['interface'], $if) !== false)) {
$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));
}
$dynsubnet_start = ip2ulong($_POST['range_from']);
$dynsubnet_end = ip2ulong($_POST['range_to']);
if (is_array($a_maps)) {
$dynsubnet_start = ip2ulong($pconfig['range_from']);
$dynsubnet_end = ip2ulong($pconfig['range_to']);
foreach ($a_maps as $map) {
if (empty($map['ipaddr']))
if (empty($map['ipaddr'])) {
continue;
}
if ((ip2ulong($map['ipaddr']) > $dynsubnet_start) &&
(ip2ulong($map['ipaddr']) < $dynsubnet_end)) {
$input_errors[] = sprintf(gettext("The DHCP range cannot overlap any static DHCP mappings."));
......@@ -369,142 +418,86 @@ if (isset($_POST['submit'])) {
}
}
}
// save data
if (count($input_errors) == 0) {
$dhcpdconf = array();
// simple 1-on-1 copy
foreach ($config_copy_fieldsnames as $fieldname) {
if (!empty($pconfig[$fieldname])) {
$dhcpdconf[$fieldname] = $pconfig[$fieldname];
}
}
// handle booleans
$dhcpdconf['enable'] = !empty($dhcpdconf['enable']);
$dhcpdconf['staticarp'] = !empty($dhcpdconf['staticarp']);
$dhcpdconf['denyunknown'] = !empty($dhcpdconf['denyunknown']);
$dhcpdconf['ddnsupdate'] = !empty($dhcpdconf['ddnsupdate']);
$dhcpdconf['netboot'] = !empty($dhcpdconf['netboot']);
// supply range
$dhcpdconf['range'] = array();
$dhcpdconf['range']['from'] = $pconfig['range_from'];
$dhcpdconf['range']['to'] = $pconfig['range_to'];
if (!$input_errors) {
if (!is_numeric($pool)) {
if ($act == "newpool") {
$dhcpdconf = array();
} else {
if (!is_array($config['dhcpd'][$if]))
$config['dhcpd'][$if] = array();
$dhcpdconf = $config['dhcpd'][$if];
// array types
$dhcpdconf['winsserver'] = [];
if (!empty($pconfig['wins1'])) {
$dhcpdconf['winsserver'][] = $pconfig['wins1'];
}
} else {
if (is_array($a_pools[$pool])) {
$dhcpdconf = $a_pools[$pool];
} else {
// Someone specified a pool but it doesn't exist. Punt.
header("Location: services_dhcp.php");
exit;
if (!empty($pconfig['wins2'])) {
$dhcpdconf['winsserver'][] = $_POST['wins2'];
}
$dhcpdconf['dnsserver'] = [];
if (!empty($pconfig['dns1'])) {
$dhcpdconf['dnsserver'][] = $pconfig['dns1'];
}
if (!empty($pconfig['dns2'])) {
$dhcpdconf['dnsserver'][] = $pconfig['dns2'];
}
if (!is_array($dhcpdconf['range']))
$dhcpdconf['range'] = array();
$dhcpd_enable_changed = false;
// copy pools to this config
if (!empty($config['dhcpd'][$if]['pool'])) {
$dhcpdconf['pools'] = $config['dhcpd'][$if]['pool'];
}
// Global Options
if (!is_numeric($pool) && !($act == "newpool")) {
$old_dhcpd_enable = isset($dhcpdconf['enable']);
$new_dhcpd_enable = ($_POST['enable']) ? true : false;
if ($old_dhcpd_enable != $new_dhcpd_enable) {
/* DHCP has been enabled or disabled. The pf ruleset will need to be rebuilt to allow or disallow DHCP. */
$dhcpd_enable_changed = true;
}
$dhcpdconf['enable'] = $new_dhcpd_enable;
$dhcpdconf['staticarp'] = ($_POST['staticarp']) ? true : false;
$previous = $dhcpdconf['failover_peerip'];
if($previous <> $_POST['failover_peerip'])
// handle changes
if (!isset($pool) && $act != "newpool") {
if (isset($config['dhcpd'][$if]['enable']) != !empty($pconfig['enable'])) {
// DHCP has been enabled or disabled.
// The pf ruleset will need to be rebuilt to allow or disallow DHCP.
$exec_filter_configure = true;
}
$previous = !empty($config['dhcpd'][$if]['failover_peerip']) ? $config['dhcpd'][$if]['failover_peerip'] : "";
if($previous <> $pconfig['failover_peerip']) {
mwexec("/bin/rm -rf /var/dhcpd/var/db/*");
$dhcpdconf['failover_peerip'] = $_POST['failover_peerip'];
$dhcpdconf['dhcpleaseinlocaltime'] = $_POST['dhcpleaseinlocaltime'];
} else {
// Options that exist only in pools
$dhcpdconf['descr'] = $_POST['descr'];
}
// Options that can be global or per-pool.
$dhcpdconf['range']['from'] = $_POST['range_from'];
$dhcpdconf['range']['to'] = $_POST['range_to'];
$dhcpdconf['defaultleasetime'] = $_POST['deftime'];
$dhcpdconf['maxleasetime'] = $_POST['maxtime'];
$dhcpdconf['netmask'] = $_POST['netmask'];
unset($dhcpdconf['winsserver']);
if ($_POST['wins1'])
$dhcpdconf['winsserver'][] = $_POST['wins1'];
if ($_POST['wins2'])
$dhcpdconf['winsserver'][] = $_POST['wins2'];
unset($dhcpdconf['dnsserver']);
if ($_POST['dns1'])
$dhcpdconf['dnsserver'][] = $_POST['dns1'];
if ($_POST['dns2'])
$dhcpdconf['dnsserver'][] = $_POST['dns2'];
$dhcpdconf['gateway'] = $_POST['gateway'];
$dhcpdconf['domain'] = $_POST['domain'];
$dhcpdconf['domainsearchlist'] = $_POST['domainsearchlist'];
$dhcpdconf['denyunknown'] = ($_POST['denyunknown']) ? true : false;
$dhcpdconf['ddnsdomain'] = $_POST['ddnsdomain'];
$dhcpdconf['ddnsdomainprimary'] = $_POST['ddnsdomainprimary'];
$dhcpdconf['ddnsdomainkeyname'] = $_POST['ddnsdomainkeyname'];
$dhcpdconf['ddnsdomainkey'] = $_POST['ddnsdomainkey'];
$dhcpdconf['ddnsupdate'] = ($_POST['ddnsupdate']) ? true : false;
$dhcpdconf['mac_allow'] = $_POST['mac_allow'];
$dhcpdconf['mac_deny'] = $_POST['mac_deny'];
unset($dhcpdconf['ntpserver']);
if ($_POST['ntp1'])
$dhcpdconf['ntpserver'][] = $_POST['ntp1'];
if ($_POST['ntp2'])
$dhcpdconf['ntpserver'][] = $_POST['ntp2'];
$dhcpdconf['tftp'] = $_POST['tftp'];
$dhcpdconf['ldap'] = $_POST['ldap'];
$dhcpdconf['netboot'] = ($_POST['netboot']) ? true : false;
$dhcpdconf['nextserver'] = $_POST['nextserver'];
$dhcpdconf['filename'] = $_POST['filename'];
$dhcpdconf['filename32'] = $_POST['filename32'];
$dhcpdconf['filename64'] = $_POST['filename64'];
$dhcpdconf['rootpath'] = $_POST['rootpath'];
// Handle the custom options rowhelper
if(isset($dhcpdconf['numberoptions']['item']))
unset($dhcpdconf['numberoptions']['item']);
$dhcpdconf['numberoptions'] = $numberoptions;
if (is_numeric($pool) && is_array($a_pools[$pool])) {
}
// save changes to config
if (isset($pool)) {
$a_pools[$pool] = $dhcpdconf;
} elseif ($act == "newpool") {
$a_pools[] = $dhcpdconf;
} else {
$config['dhcpd'][$if] = $dhcpdconf;
}
write_config();
if (isset($exec_filter_configure)) {
filter_configure();
}
}
if (isset($_POST['submit']) || isset($_POST['apply'])) {
/* Stop DHCP so we can cleanup leases */
killbyname("dhcpd");
dhcp_clean_leases();
system_hosts_generate();
/* dnsmasq_configure calls dhcpd_configure */
/* no need to restart dhcpd twice */
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) {
services_dnsmasq_configure();
clear_subsystem_dirty('hosts');
} elseif (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic'])) {
services_unbound_configure();
clear_subsystem_dirty('unbound');
} else {
services_dhcpd_configure();
reconfigure_dhcpd();
header("Location: services_dhcp.php?if={$if}");
exit;
}
clear_subsystem_dirty('staticmaps');
if ($dhcpd_enable_changed) {
filter_configure();
} elseif (isset($_POST['apply'])) {
// apply changes
reconfigure_dhcpd();
header("Location: services_dhcp.php?if={$if}");
exit;
}
$savemsg = get_std_save_message();
}
if ($act == "delpool") {
if ($a_pools[$_GET['id']]) {
unset($a_pools[$_GET['id']]);
......@@ -515,6 +508,11 @@ if ($act == "delpool") {
}
if ($act == "del") {
if (!empty($config['dhcpd'][$if]['staticmap'])) {
$a_maps = &$config['dhcpd'][$if]['staticmap'];
} else {
$a_maps = array();
}
if ($a_maps[$_GET['id']]) {
unset($a_maps[$_GET['id']]);
write_config();
......@@ -532,84 +530,15 @@ if ($act == "del") {
}
$service_hook = 'dhcpd';
legacy_html_escape_form_data($pconfig);
include("head.inc");
?>
<body>
<script type="text/javascript" src="/javascript/row_helper.js">
</script>
<script type="text/javascript">
//<![CDATA[
function itemtype_field(fieldname, fieldsize, n) {
return '<select name="' + fieldname + n + '" class="form-control" id="' + fieldname + n + '"><?php
$customitemtypes = array('text' => gettext('Text'), 'string' => gettext('String'), 'boolean' => gettext('Boolean'),
'unsigned integer 8' => gettext('Unsigned 8-bit integer'), 'unsigned integer 16' => gettext('Unsigned 16-bit integer'), 'unsigned integer 32' => gettext('Unsigned 32-bit integer'),
'signed integer 8' => gettext('Signed 8-bit integer'), 'signed integer 16' => gettext('Signed 16-bit integer'), 'signed integer 32' => gettext('Signed 32-bit integer'), 'ip-address' => gettext('IP address or host'));
foreach ($customitemtypes as $typename => $typedescr) {
echo "<option value=\"{$typename}\">{$typedescr}<\/option>";
}
?><\/select>';
}
rowname[0] = "number";
rowtype[0] = "textbox";
rowsize[0] = "10";
rowname[1] = "itemtype";
rowtype[1] = itemtype_field;
rowname[2] = "value";
rowtype[2] = "textbox";
rowsize[2] = "40";
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
function enable_change(enable_over) {
var endis;
<?php if (is_numeric($pool) || ($act == "newpool")): ?>
enable_over = true;
<?php endif; ?>
endis = !(document.iform.enable.checked || enable_over);
<?php if (is_numeric($pool) || ($act == "newpool")): ?>
document.iform.descr.disabled = endis;
<?php endif; ?>
document.iform.range_from.disabled = endis;
document.iform.range_to.disabled = endis;
document.iform.wins1.disabled = endis;
document.iform.wins2.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.failover_peerip.disabled = endis;
document.iform.domain.disabled = endis;
document.iform.domainsearchlist.disabled = endis;
document.iform.staticarp.disabled = endis;
document.iform.dhcpleaseinlocaltime.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.mac_allow.disabled = endis;
document.iform.mac_deny.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.nextserver.disabled = endis;
document.iform.filename.disabled = endis;
document.iform.filename32.disabled = endis;
document.iform.filename64.disabled = endis;
document.iform.rootpath.disabled = endis;
document.iform.denyunknown.disabled = endis;
}
function show_shownumbervalue() {
document.getElementById("shownumbervaluebox").innerHTML='';
aodiv = document.getElementById('shownumbervalue');
......@@ -654,451 +583,541 @@ include("head.inc");
//]]>
</script>
<?php include("fbegin.inc"); ?>
<script type="text/javascript">
$( document ).ready(function() {
/**
* Additional BOOTP/DHCP Options extenable table
*/
function removeRow() {
if ( $('#numberoptions_table > tbody > tr').length == 1 ) {
$('#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 pool action
$(".act_delete_pool").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 pool?");?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
dialogRef.close();
}}, {
label: "<?= gettext("Yes");?>",
action: function(dialogRef) {
$.post(window.location, {act: 'delpool', id:id, if:intf}, function(data) {
location.reload();
});
}
}]
});
});
// 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>
<?php include("fbegin.inc"); ?>
<section class="page-content-main">
<div class="container-fluid">
<div class="row">
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
<?php if (isset($savemsg)) print_info_box($savemsg); ?>
<?php if (is_subsystem_dirty('staticmaps')): ?><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; ?>
<section class="col-xs-12">
<?php
<?php
/* active tabs */
$tab_array = array();
$tabscounter = 0;
$i = 0;
foreach ($iflist as $ifent => $ifname) {
$oc = $config['interfaces'][$ifent];
if ((is_array($config['dhcpd'][$ifent]) && !isset($config['dhcpd'][$ifent]['enable']) && (!is_ipaddrv4($oc['ipaddr']))) ||
(!is_array($config['dhcpd'][$ifent]) && (!is_ipaddrv4($oc['ipaddr']))))
continue;
if ($ifent == $if)
$active = true;
else
$active = false;
$tab_array[] = array($ifname, $active, "services_dhcp.php?if={$ifent}");
$tabscounter++;
}
if ($tabscounter == 0) {
echo "</section>";
echo "</div>";
echo "</div>";
echo "</section>";
include("foot.inc");
exit;
foreach ($config['interfaces'] as $if_id => $intf) {
if (!empty($intf['enable']) && is_ipaddrv4($intf['ipaddr'])) {
$ifname = !empty($intf['descr']) ? htmlspecialchars($intf['descr']) : strtoupper($if_id);
if ($if_id == $if) {
$tab_array[] = array($ifname, true, "services_dhcp.php?if={$if_id}");
} else {
$tab_array[] = array($ifname, false, "services_dhcp.php?if={$if_id}");
}
display_top_tabs($tab_array);
?>
<div class="tab-content content-box col-xs-12">
<form action="services_dhcp.php" method="post" name="iform" id="iform">
}
}?>
<?php if (isset($config['dhcrelay']['enable'])): ?>
<?php echo gettext("DHCP Relay is currently enabled. Cannot enable the DHCP Server service while the DHCP Relay is enabled on any interface."); ?>
<?php print_info_box(gettext("DHCP Relay is currently enabled. Cannot enable the DHCP Server service while the DHCP Relay is enabled on any interface.")); ?>
<?php elseif (count($tab_array) == 0):?>
<?php print_info_box(("No interfaces found with a static IPv4 address.")); ?>
<?php else: ?>
<?php display_top_tabs($tab_array); ?>
<div class="tab-content content-box col-xs-12">
<form action="services_dhcp.php" method="post" name="iform" id="iform">
<div class="table-responsive">
<table class="table table-striped table-sort">
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
<table class="table table-striped">
<?php
if (!isset($pool) && !($act == "newpool")): ?>
<tr>
<td width="22%" valign="top" class="vtable">&nbsp;</td>
<td width="78%" class="vtable">
<input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\""; ?> onclick="enable_change(false)" />
<strong><?php printf(gettext("Enable DHCP server on " .
"%s " .
"interface"),htmlspecialchars($iflist[$if]));?></strong></td>
<td width="22%"><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable");?> </td>
<td width="78%">
<input name="enable" id="enable" type="checkbox" value="yes" <?=!empty($pconfig['enable']) ? "checked=\"checked\"" : ""; ?> />
<strong><?php printf(gettext("Enable DHCP server on " . "%s " ."interface"),!empty($config['interfaces'][$if]['descr']) ? htmlspecialchars($config['interfaces'][$if]['descr']) : strtoupper($if));?></strong>
</td>
</tr>
<?php else: ?>
<?php
else: ?>
<tr>
<td colspan="2" class="listtopic"><?php echo gettext("Editing Pool-Specific Options. To return to the Interface, click its tab above."); ?></td>
<td colspan="2"><?php echo gettext("Editing Pool-Specific Options. To return to the Interface, click its tab above."); ?></td>
</tr>
<?php endif; ?>
<tr>
<td width="22%" valign="top" class="vtable">&nbsp;</td>
<td width="78%" class="vtable">
<input name="denyunknown" id="denyunknown" type="checkbox" value="yes" <?php if ($pconfig['denyunknown']) echo "checked=\"checked\""; ?> />
<strong><?=gettext("Deny unknown clients");?></strong><br />
<?=gettext("If this is checked, only the clients defined below will get DHCP leases from this server. ");?></td>
<td width="22%"><i class="fa fa-info-circle text-muted"></i> <?=gettext("Pool Description");?></td>
<td>
<input name="descr" type="text" id="descr" value="<?=$pconfig['descr'];?>" />
</td>
</tr>
<?php if (is_numeric($pool) || ($act == "newpool")): ?>
<?php
endif; ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Pool Description");?></td>
<td width="78%" class="vtable">
<input name="descr" type="text" class="form-control unknown" id="descr" size="20" value="<?=htmlspecialchars($pconfig['descr']);?>" />
<td><a id="help_for_denyunknown" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Deny unknown clients");?></td>
<td>
<input name="denyunknown" type="checkbox" value="yes" <?=!empty($pconfig['denyunknown']) ? "checked=\"checked\"" : ""; ?> />
<div class="hidden" for="help_for_denyunknown">
<?=gettext("If this is checked, only the clients defined below will get DHCP leases from this server. ");?>
</div>
</td>
</tr>
<?php endif; ?>
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Subnet");?></td>
<td width="78%" class="vtable">
<?=gen_subnet($ifcfgip, $ifcfgsn);?>
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Subnet");?></td>
<td>
<?=gen_subnet($config['interfaces'][$if]['ipaddr'], $config['interfaces'][$if]['subnet']);?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Subnet mask");?></td>
<td width="78%" class="vtable">
<?=gen_subnet_mask($ifcfgsn);?>
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Subnet mask");?></td>
<td>
<?=gen_subnet_mask($config['interfaces'][$if]['subnet']);?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Available range");?></td>
<td width="78%" class="vtable">
<?php
$range_from = ip2long(long2ip32(ip2long($ifcfgip) & gen_subnet_mask_long($ifcfgsn)));
$range_from++;
echo long2ip32($range_from);
?>
-
<?php
$range_to = ip2long(long2ip32(ip2long($ifcfgip) | (~gen_subnet_mask_long($ifcfgsn))));
$range_to--;
echo long2ip32($range_to);
?>
<?php if (is_numeric($pool) || ($act == "newpool")): ?>
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Available range");?></td>
<td>
<?php
$range_from = ip2long(long2ip32(ip2long($config['interfaces'][$if]['ipaddr']) & gen_subnet_mask_long($config['interfaces'][$if]['subnet']))) + 1;
$range_to = ip2long(long2ip32(ip2long($config['interfaces'][$if]['ipaddr']) | (~gen_subnet_mask_long($config['interfaces'][$if]['subnet'])))) - 1;?>
<?=long2ip32($range_from);?> - <?=long2ip32($range_to);?>
<?php
if (isset($pool) || ($act == "newpool")): ?>
<br />In-use DHCP Pool Ranges:
<?php if (is_array($config['dhcpd'][$if]['range'])): ?>
<br /><?php echo $config['dhcpd'][$if]['range']['from']; ?>-<?php echo $config['dhcpd'][$if]['range']['to']; ?>
<?php endif; ?>
<?php foreach ($a_pools as $p): ?>
<?php if (is_array($p['range'])): ?>
<br /><?php echo $p['range']['from']; ?>-<?php echo $p['range']['to']; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<br /><?=htmlspecialchars($config['dhcpd'][$if]['range']['from']); ?>-<?=htmlspecialchars($config['dhcpd'][$if]['range']['to']);?>
<?php
foreach ($a_pools as $p): ?>
<br /><?= htmlspecialchars($p['range']['from']); ?>-<?=htmlspecialchars($p['range']['to']); ?>
<?php
endforeach;
endif;?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Range");?></td>
<td width="78%" class="vtable">
<input name="range_from" type="text" class="form-control unknown" id="range_from" size="20" value="<?=htmlspecialchars($pconfig['range_from']);?>" />
&nbsp;<?=gettext("to"); ?>&nbsp; <input name="range_to" type="text" class="form-control unknown" id="range_to" size="20" value="<?=htmlspecialchars($pconfig['range_to']);?>" />
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Range");?></td>
<td>
<table class="table table-condensed">
<thead>
<tr>
<th><?=gettext("from");?></th>
<th><?=gettext("to");?></th>
</tr>
</thead>
<tbody>
<tr>
<td><input name="range_from" type="text" id="range_from" value="<?=$pconfig['range_from'];?>" /></td>
<td><input name="range_to" type="text" id="range_to" value="<?=$pconfig['range_to'];?>" /> </td>
</tr>
</tbody>
</table>
</td>
</tr>
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
<?php
if (!isset($pool) && !($act == "newpool")): ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Additional Pools");?></td>
<td width="78%" class="vtable">
<?php echo gettext("If you need additional pools of addresses inside of this subnet outside the above Range, they may be specified here."); ?>
<table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0" summary="subnet">
<td><a id="help_for_additionalpools" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Additional Pools");?></td>
<td>
<table class="table table-condensed">
<thead>
<tr>
<td width="35%" class="listhdrr"><?=gettext("Pool Start");?></td>
<td width="35%" class="listhdrr"><?=gettext("Pool End");?></td>
<td width="20%" class="listhdrr"><?=gettext("Description");?></td>
<td width="10%" class="list">
<a href="services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;act=newpool" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a>
</td>
<th><?=gettext("Pool Start");?></th>
<th><?=gettext("Pool End");?></th>
<th><?=gettext("Description");?></th>
<th><a href="services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;act=newpool" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a></th>
</tr>
<?php if(is_array($a_pools)): ?>
<?php $i = 0; foreach ($a_pools as $poolent): ?>
<?php if(!empty($poolent['range']['from']) && !empty($poolent['range']['to'])): ?>
</thead>
<tbody>
<?php
$i = 0;
foreach ($a_pools as $poolent): ?>
<tr>
<td class="listlr" ondblclick="document.location='services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;pool=<?=$i;?>';">
<?=htmlspecialchars($poolent['range']['from']);?>
</td>
<td class="listr" ondblclick="document.location='services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;pool=<?=$i;?>';">
<?=htmlspecialchars($poolent['range']['to']);?>&nbsp;
</td>
<td class="listr" ondblclick="document.location='services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;pool=<?=$i;?>';">
<?=htmlspecialchars($poolent['descr']);?>&nbsp;
</td>
<td><?=htmlspecialchars($poolent['range']['from']);?></td>
<td><?=htmlspecialchars($poolent['range']['to']);?></td>
<td><?=htmlspecialchars($poolent['descr']);?></td>
<td>
<a href="services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;pool=<?=$i;?>"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-pencil"></span></button></a>
<a href="services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;act=delpool&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this pool?");?>')"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button></a>
<a href="services_dhcp.php?if=<?=$if;?>&amp;pool=<?=$i;?>"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-pencil"></span></button></a>
<a href="#" data-if="<?=$if;?>" data-id="<?=$i;?>" class="act_delete_pool"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button></a>
</td>
</tr>
<?php endif; ?>
<?php $i++; endforeach; ?>
<?php endif; ?>
<?php
endforeach;?>
</tbody>
</table>
<div class="hidden" for="help_for_additionalpools">
<?=gettext("If you need additional pools of addresses inside of this subnet outside the above Range, they may be specified here."); ?>
</div>
</td>
</tr>
<?php endif; ?>
<?php
endif; ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("WINS servers");?></td>
<td width="78%" class="vtable">
<input name="wins1" type="text" class="form-control unknown" id="wins1" size="20" value="<?=htmlspecialchars($pconfig['wins1']);?>" /><br />
<input name="wins2" type="text" class="form-control unknown" id="wins2" size="20" value="<?=htmlspecialchars($pconfig['wins2']);?>" />
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("WINS servers");?></td>
<td>
<input name="wins1" type="text" value="<?=$pconfig['wins1'];?>" /><br />
<input name="wins2" type="text" value="<?=$pconfig['wins2'];?>" />
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers");?></td>
<td width="78%" class="vtable">
<input name="dns1" type="text" class="form-control unknown" id="dns1" size="20" value="<?=htmlspecialchars($pconfig['dns1']);?>" /><br />
<input name="dns2" type="text" class="form-control unknown" id="dns2" size="20" value="<?=htmlspecialchars($pconfig['dns2']);?>" /><br />
<td><a id="help_for_dns" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DNS servers");?></td>
<td>
<input name="dns1" type="text" value="<?=$pconfig['dns1'];?>" /><br />
<input name="dns2" type="text" 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.");?>
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Gateway");?></td>
<td width="78%" class="vtable">
<input name="gateway" type="text" class="form-control host" id="gateway" size="20" value="<?=htmlspecialchars($pconfig['gateway']);?>" /><br />
<td><a id="help_for_gateway" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Gateway");?></td>
<td>
<input name="gateway" type="text" class="form-control host" value="<?=$pconfig['gateway'];?>" />
<div class="hidden" for="help_for_gateway">
<?=gettext("The default is to use the IP on this interface of the firewall as the gateway. Specify an alternate gateway here if this is not the correct gateway for your network. Type \"none\" for no gateway assignment.");?>
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Domain name");?></td>
<td width="78%" class="vtable">
<input name="domain" type="text" class="form-control unknown" id="domain" size="20" value="<?=htmlspecialchars($pconfig['domain']);?>" /><br />
<td><a id="help_for_domain" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain name");?></td>
<td>
<input name="domain" type="text" value="<?=$pconfig['domain'];?>" />
<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.");?>
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Domain search list");?></td>
<td width="78%" class="vtable">
<input name="domainsearchlist" type="text" class="form-control unknown" id="domainsearchlist" size="20" value="<?=htmlspecialchars($pconfig['domainsearchlist']);?>" /><br />
<td><a id="help_for_domainsearchlist" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain search list");?></td>
<td>
<input name="domainsearchlist" type="text" id="domainsearchlist" value="<?=$pconfig['domainsearchlist'];?>" />
<div class="hidden" for="help_for_domainsearchlist">
<?=gettext("The DHCP server can optionally provide a domain search list. Use the semicolon character as separator ");?>
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Default lease time");?></td>
<td width="78%" class="vtable">
<input name="deftime" type="text" class="form-control unknown" id="deftime" size="10" value="<?=htmlspecialchars($pconfig['deftime']);?>" />
<?=gettext("seconds");?><br />
<?=gettext("This is used for clients that do not ask for a specific " .
"expiration time."); ?><br />
<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>
<input name="defaultleasetime" type="text" id="defaultleasetime" value="<?=$pconfig['defaultleasetime'];?>" />
<div class="hidden" for="help_for_defaultleasetime">
<?=gettext("This is used for clients that do not ask for a specific " . "expiration time."); ?><br />
<?=gettext("The default is 7200 seconds.");?>
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Maximum lease time");?></td>
<td width="78%" class="vtable">
<input name="maxtime" type="text" class="form-control unknown" id="maxtime" size="10" value="<?=htmlspecialchars($pconfig['maxtime']);?>" />
<?=gettext("seconds");?><br />
<?=gettext("This is the maximum lease time for clients that ask".
" for a specific expiration time."); ?><br />
<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>
<input name="maxleasetime" type="text" id="maxleasetime" value="<?=$pconfig['maxleasetime'];?>" />
<div class="hidden" for="help_for_maxleasetime">
<?=gettext("This is the maximum lease time for clients that ask"." for a specific expiration time."); ?><br />
<?=gettext("The default is 86400 seconds.");?>
</div>
</td>
</tr>
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
<?php
if (!isset($pool) && !($act == "newpool")): ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Failover peer IP:");?></td>
<td width="78%" class="vtable">
<input name="failover_peerip" type="text" class="form-control host" id="failover_peerip" size="20" value="<?=htmlspecialchars($pconfig['failover_peerip']);?>" /><br />
<td><a id="help_for_failover_peerip" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Failover peer IP:");?></td>
<td>
<input name="failover_peerip" type="text" class="form-control host" id="failover_peerip" value="<?=$pconfig['failover_peerip'];?>" />
<div class="hidden" for="help_for_failover_peerip">
<?=gettext("Leave blank to disable. Enter the interface IP address of the other machine. Machines must be using CARP. Interface's advskew determines whether the DHCPd process is Primary or Secondary. Ensure one machine's advskew<20 (and the other is >20).");?>
</div>
</td>
</tr>
<?php endif; ?>
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Static ARP");?></td>
<td width="78%" class="vtable">
<input type="checkbox" value="yes" name="staticarp" id="staticarp" <?php if($pconfig['staticarp']) echo " checked=\"checked\""; ?> />&nbsp;
<td><a id="help_for_failover_staticarp" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Static ARP");?></td>
<td>
<input type="checkbox" value="yes" name="staticarp" <?=!empty($pconfig['staticarp']) ? " checked=\"checked\"" : ""; ?> />&nbsp;
<strong><?=gettext("Enable Static ARP entries");?></strong>
<br />
<div class="hidden" for="help_for_failover_staticarp">
<?=gettext("Warning: This option persists even if DHCP server is disabled. Only the machines listed below will be able to communicate with the firewall on this NIC.");?>
</div>
</td>
</tr>
<?php endif; ?>
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Time format change"); ?></td>
<td width="78%" class="vtable">
<input name="dhcpleaseinlocaltime" type="checkbox" id="dhcpleaseinlocaltime" value="yes" <?php if ($pconfig['dhcpleaseinlocaltime']) echo "checked=\"checked\""; ?> />
<td><a id="help_for_failover_dhcpleaseinlocaltime" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Time format change"); ?></td>
<td>
<input name="dhcpleaseinlocaltime" type="checkbox" id="dhcpleaseinlocaltime" value="yes" <?= !empty($pconfig['dhcpleaseinlocaltime']) ? "checked=\"checked\"" : ""; ?> />
<strong><?=gettext("Change DHCP display lease time from UTC to local time."); ?></strong>
<br />
<div class="hidden" for="help_for_failover_dhcpleaseinlocaltime">
<?=gettext("Warning: By default DHCP leases are displayed in UTC time. By checking this " .
"box DHCP lease time will be displayed in local time and set to time zone selected. This " .
"will be used for all DHCP interfaces lease time."); ?>
</div>
</td>
</tr>
<?php endif; ?>
<?php
endif; ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Dynamic DNS");?></td>
<td width="78%" class="vtable">
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Dynamic DNS");?></td>
<td>
<div id="showddnsbox">
<input type="button" onclick="show_ddns_config()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show Dynamic DNS");?>
</div>
<div id="showddns" style="display:none">
<input type="checkbox" value="yes" name="ddnsupdate" id="ddnsupdate" <?php if($pconfig['ddnsupdate']) echo " checked=\"checked\""; ?> />
<input type="checkbox" value="yes" name="ddnsupdate" <?=!empty($pconfig['ddnsupdate']) ? " checked=\"checked\"" :""; ?> />
<strong><?=gettext("Enable registration of DHCP client names in DNS.");?></strong><br />
<br/>
<input name="ddnsdomain" type="text" class="form-control unknown" id="ddnsdomain" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomain']);?>" /><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.");?>
<input name="ddnsdomainprimary" type="text" class="form-control unknown" id="ddnsdomainprimary" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainprimary']);?>" /><br />
<?=gettext("Note: Leave blank to disable dynamic DNS registration.");?><br />
<input name="ddnsdomain" type="text" value="<?=$pconfig['ddnsdomain'];?>" />
<?=gettext("Enter the primary domain name server IP address for the dynamic domain name.");?><br />
<input name="ddnsdomainkeyname" type="text" class="form-control unknown" id="ddnsdomainkeyname" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainkeyname']);?>" /><br />
<input name="ddnsdomainprimary" type="text" value="<?=$pconfig['ddnsdomainprimary'];?>" />
<?=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="form-control unknown" id="ddnsdomainkey" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainkey']);?>" /><br />
<input name="ddnsdomainkeyname" type="text" value="<?=$pconfig['ddnsdomainkeyname'];?>" />
<?=gettext("Enter the dynamic DNS domain key secret which will be used to register client names in the DNS server.");?>
<input name="ddnsdomainkey" type="text" value="<?=$pconfig['ddnsdomainkey'];?>" />
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("MAC Address Control");?></td>
<td width="78%" class="vtable">
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("MAC Address Control");?></td>
<td>
<div id="showmaccontrolbox">
<input type="button" onclick="show_maccontrol_config()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show MAC Address Control");?>
</div>
<div id="showmaccontrol" style="display:none">
<input name="mac_allow" type="text" class="form-control unknown" id="mac_allow" size="20" value="<?=htmlspecialchars($pconfig['mac_allow']);?>" /><br />
<?=gettext("Enter a list of partial MAC addresses to allow, comma separated, no spaces, such as ");?>00:00:00,01:E5:FF
<input name="mac_deny" type="text" class="form-control unknown" id="mac_deny" size="20" value="<?=htmlspecialchars($pconfig['mac_deny']);?>" /><br />
<input name="mac_allow" type="text" id="mac_allow" value="<?=$pconfig['mac_allow'];?>" />
<?=gettext("Enter a list of partial MAC addresses to deny access, comma separated, no spaces, such as ");?>00:00:00,01:E5:FF
<input name="mac_deny" type="text" id="mac_deny" value="<?=$pconfig['mac_deny'];?>" /><br />
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("NTP servers");?></td>
<td width="78%" class="vtable">
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("NTP servers");?></td>
<td>
<div id="showntpbox">
<input type="button" onclick="show_ntp_config()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show NTP configuration");?>
</div>
<div id="showntp" style="display:none">
<input name="ntp1" type="text" class="form-control unknown" id="ntp1" size="20" value="<?=htmlspecialchars($pconfig['ntp1']);?>" /><br />
<input name="ntp2" type="text" class="form-control unknown" id="ntp2" size="20" value="<?=htmlspecialchars($pconfig['ntp2']);?>" />
<input name="ntp1" type="text" id="ntp1" value="<?=$pconfig['ntp1'];?>" /><br />
<input name="ntp2" type="text" id="ntp2" value="<?=$pconfig['ntp2'];?>" />
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("TFTP server");?></td>
<td width="78%" class="vtable">
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("TFTP server");?></td>
<td>
<div id="showtftpbox">
<input type="button" onclick="show_tftp_config()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show TFTP configuration");?>
</div>
<div id="showtftp" style="display:none">
<input name="tftp" type="text" class="form-control unknown" id="tftp" size="50" value="<?=htmlspecialchars($pconfig['tftp']);?>" /><br />
<input name="tftp" type="text" size="50" value="<?=$pconfig['tftp'];?>" />
<?=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">
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("LDAP URI");?></td>
<td>
<div id="showldapbox">
<input type="button" onclick="show_ldap_config()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show LDAP configuration");?>
</div>
<div id="showldap" style="display:none">
<input name="ldap" type="text" class="form-control unknown" id="ldap" size="80" value="<?=htmlspecialchars($pconfig['ldap']);?>" /><br />
<input name="ldap" type="text" id="ldap" size="80" value="<?=$pconfig['ldap'];?>" /><br />
<?=sprintf(gettext("Leave blank to disable. Enter a full URI for the LDAP server in the form %s"),'ldap://ldap.example.com/dc=example,dc=com')?>
</div>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Enable network booting");?></td>
<td width="78%" class="vtable">
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable network booting");?></td>
<td>
<div id="shownetbootbox">
<input type="button" onclick="show_netboot_config()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show Network booting");?>
</div>
<div id="shownetboot" style="display:none">
<input type="checkbox" value="yes" name="netboot" id="netboot" <?php if($pconfig['netboot']) echo " checked=\"checked\""; ?> />
<input type="checkbox" value="yes" name="netboot" id="netboot" <?=!empty($pconfig['netboot']) ? " checked=\"checked\"" : ""; ?> />
<strong><?=gettext("Enables network booting.");?></strong>
<br/>
<?=gettext("Enter the IP of the"); ?> <b><?=gettext("next-server"); ?></b>
<input name="nextserver" type="text" class="form-control unknown" id="nextserver" size="20" value="<?=htmlspecialchars($pconfig['nextserver']);?>" /><br />
<input name="nextserver" type="text" id="nextserver" value="<?=$pconfig['nextserver'];?>" /><br />
<?=gettext("and the default bios filename");?>
<input name="filename" type="text" class="form-control unknown" id="filename" size="20" value="<?=htmlspecialchars($pconfig['filename']);?>" /><br />
<input name="filename" type="text" id="filename" value="<?=$pconfig['filename'];?>" /><br />
<?=gettext("and the UEFI 32bit filename ");?>
<input name="filename32" type="text" class="form-control unknown" id="filename32" size="20" value="<?=htmlspecialchars($pconfig['filename32']);?>" /><br />
<input name="filename32" type="text" id="filename32" value="<?=$pconfig['filename32'];?>" /><br />
<?=gettext("and the UEFI 64bit filename ");?>
<input name="filename64" type="text" class="form-control unknown" id="filename64" size="20" value="<?=htmlspecialchars($pconfig['filename64']);?>" /><br />
<input name="filename64" type="text" id="filename64" value="<?=$pconfig['filename64'];?>" /><br />
<?=gettext("Note: You need both a filename and a boot server configured for this to work!");?>
<?=gettext("You will need all three filenames and a boot server configured for UEFI to work!");?>
<?=gettext("Enter the"); ?> <b><?=gettext("root-path"); ?></b>-<?=gettext("string");?>
<input name="rootpath" type="text" class="form-control unknown" id="rootpath" size="90" value="<?=htmlspecialchars($pconfig['rootpath']);?>" /><br />
<input name="rootpath" type="text" id="rootpath" size="90" value="<?=$pconfig['rootpath'];?>" /><br />
<?=gettext("Note: string-format: iscsi:(servername):(protocol):(port):(LUN):targetname");?>
</div>
</td>
</tr>
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
<?php
if (!isset($pool) && !($act == "newpool")): ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Additional BOOTP/DHCP Options");?></td>
<td width="78%" class="vtable">
<td><a id="help_for_numberoptions" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Additional Options");?></td>
<td>
<div id="shownumbervaluebox">
<input type="button" onclick="show_shownumbervalue()" class="btn btn-default btn-xs" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show Additional BOOTP/DHCP Options");?>
</div>
<div id="shownumbervalue" style="display:none">
<table id="maintable" summary="bootp-dhcp options">
<tbody>
<table class="table table-striped table-condensed" id="numberoptions_table">
<thead>
<tr>
<td colspan="3">
<div style="padding:5px; margin-top: 16px; margin-bottom: 16px; border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;" id="itemhelp">
<?=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>
</div>
</td>
<th></th>
<th id="detailsHeading1"><?=gettext("Number"); ?></th>
<th id="detailsHeading3"><?=gettext("Type"); ?></th>
<th id="updatefreqHeader" ><?=gettext("Value");?></th>
</tr>
<tr>
<td><div id="onecolumn"><?=gettext("Number");?></div></td>
<td><div id="twocolumn"><?=gettext("Type");?></div></td>
<td><div id="threecolumn"><?=gettext("Value");?></div></td>
</tr>
<?php $counter = 0; ?>
<?php
if($pconfig['numberoptions'])
foreach($pconfig['numberoptions']['item'] as $item):
?>
<?php
$number = $item['number'];
$itemtype = $item['type'];
$value = $item['value'];
?>
</thead>
<tbody>
<?php
if (empty($pconfig['numberoptions']['item'])) {
$numberoptions = array();
$numberoptions[] = array('number' => null, 'value' => null, 'type' => null);
} else {
$numberoptions = $pconfig['numberoptions']['item'];
}
foreach($numberoptions as $item):?>
<tr>
<td>
<input autocomplete="off" name="number<?php echo $counter; ?>" type="text" class="form-control unknown" 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>
<select name="itemtype<?php echo $counter; ?>" class="form-control" id="itemtype<?php echo $counter; ?>">
<?php
foreach ($customitemtypes as $typename => $typedescr) {
echo "<option value=\"{$typename}\" ";
if ($itemtype == $typename) echo "selected=\"selected\"";
echo ">" . $typedescr . "</option>";
}
?>
</select>
<input name="numberoptions_number[]" type="text" value="<?=$item['number'];?>" />
</td>
<td>
<input autocomplete="off" name="value<?php echo $counter; ?>" type="text" class="form-control unknown" id="value<?php echo $counter; ?>" size="40" value="<?=htmlspecialchars($value);?>" />
</td>
<td>
<a onclick="removeRow(this); return false;" href="#" class="btn btn-default btn-xs"><span class="fa fa-trash text-muted"></span></a></a>
<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> <input name="numberoptions_value[]" type="text" value="<?=$item['value'];?>" /> </td>
</tr>
<?php $counter++; ?>
<?php endforeach; ?>
<?php
endforeach;?>
</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>
<a onclick="javascript:addRowTo('maintable', 'form-controlalias'); return false;" href="#" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a>
<script type="text/javascript">
//<![CDATA[
field_counter_js = 3;
rows = 1;
totalrows = <?php echo $counter; ?>;
loaded = <?php echo $counter; ?>;
//]]>
</script>
<div class="hidden" for="help_for_numberoptions">
<?=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>
</div>
</div>
</td>
</tr>
<?php endif; ?>
<?php
endif; ?>
<tr>
<td width="22%" valign="top">&nbsp;</td>
<td width="78%">
<?php if ($act == "newpool"): ?>
<td>&nbsp;</td>
<td>
<?php
if ($act == "newpool"): ?>
<input type="hidden" name="act" value="newpool" />
<?php endif; ?>
<?php if (is_numeric($pool)): ?>
<input type="hidden" name="pool" value="<?php echo $pool; ?>" />
<?php endif; ?>
<input name="if" type="hidden" value="<?=htmlspecialchars($if);?>" />
<input name="submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" onclick="enable_change(true)" />
<?php
endif; ?>
<?php
if (isset($pool)): ?>
<input type="hidden" name="pool" value="<?=$pool; ?>" />
<?php
endif; ?>
<input name="if" type="hidden" value="<?=$if;?>" />
<input name="submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" />
</td>
</tr>
<tr>
<td width="22%" valign="top">&nbsp;</td>
<td width="78%"> <p><?=gettext("Note:");?><br />
<td>&nbsp;</td>
<td> <p><?=gettext("Note:");?><br />
<?=sprintf(gettext("The DNS servers entered in %sSystem: " .
"General setup%s (or the %sDNS forwarder%s, if enabled), will be assigned to clients by the DHCP server."),'<a href="system_general.php">','</a>','<a href="services_dnsmasq.php">','</a>'); ?><br />
<br />
......@@ -1107,80 +1126,71 @@ include("head.inc");
</td>
</tr>
</table>
<?php if (!is_numeric($pool) && !($act == "newpool")): ?>
</div>
<?php
if (!isset($pool) && !($act == "newpool")): ?>
<div class="table-responsive">
<table class="table table-striped table-sort">
<tr>
<td colspan="5" valign="top" class="listtopic"><?=gettext("DHCP Static Mappings for this interface.");?></td>
<td colspan="5" valign="top"><?=gettext("DHCP Static Mappings for this interface.");?></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="7%" class="listhdrr"><?=gettext("Static ARP");?></td>
<td width="18%" class="listhdrr"><?=gettext("MAC address");?></td>
<td width="15%" class="listhdrr"><?=gettext("IP address");?></td>
<td width="20%" class="listhdrr"><?=gettext("Hostname");?></td>
<td width="30%" class="listhdr"><?=gettext("Description");?></td>
<td width="10%" class="list">
<table border="0" cellspacing="0" cellpadding="1" summary="add">
<tr>
<td valign="middle" width="17"></td>
<td valign="middle"><a href="services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a></td>
</tr>
</table>
<td><?=gettext("Static ARP");?></td>
<td><?=gettext("MAC address");?></td>
<td><?=gettext("IP address");?></td>
<td><?=gettext("Hostname");?></td>
<td><?=gettext("Description");?></td>
<td>
<a href="services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a>
</td>
</tr>
<?php if(is_array($a_maps)): ?>
<?php $i = 0; foreach ($a_maps as $mapent): ?>
<?php if($mapent['mac'] <> "" or $mapent['ipaddr'] <> ""): ?>
<?php
if (!empty($config['dhcpd'][$if]['staticmap'])):
$i = 0;
foreach ($config['dhcpd'][$if]['staticmap'] as $mapent): ?>
<?php
if($mapent['mac'] <> "" || $mapent['ipaddr'] <> ""): ?>
<tr>
<td align="center" class="listlr" ondblclick="document.location='services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>';">
<?php if (isset($mapent['arp_table_static_entry'])): ?>
<td>
<?php
if (isset($mapent['arp_table_static_entry'])): ?>
<span class="glyphicon glyphicon-info-sign"></span>
<?php endif; ?>
<?php
endif; ?>
</td>
<td class="listlr" ondblclick="document.location='services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>';">
<td>
<?=htmlspecialchars($mapent['mac']);?>
</td>
<td class="listr" ondblclick="document.location='services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['ipaddr']);?>&nbsp;
<td>
<?=htmlspecialchars($mapent['ipaddr']);?>
</td>
<td class="listr" ondblclick="document.location='services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['hostname']);?>&nbsp;
<td>
<?=htmlspecialchars($mapent['hostname']);?>
</td>
<td class="listbg" ondblclick="document.location='services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>';">
<?=htmlspecialchars($mapent['descr']);?>&nbsp;
<td>
<?=htmlspecialchars($mapent['descr']);?>
</td>
<td valign="middle" class="list nowrap">
<table border="0" cellspacing="0" cellpadding="1" summary="icons">
<tr>
<td valign="middle"><a href="services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a></td>
<td valign="middle"><a href="services_dhcp.php?if=<?=htmlspecialchars($if);?>&amp;act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this mapping?");?>')" class="btn btn-default btn-xs"><span class="fa fa-trash text-muted"></span></a></td>
</tr>
</table>
<td>
<a href="services_dhcp_edit.php?if=<?=htmlspecialchars($if);?>&amp;id=<?=$i;?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
<a href="#" data-if="<?=$if;?>" data-id="<?=$i;?>" class="act_delete_static"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button></a>
</td>
</tr>
<?php endif; ?>
<?php $i++; endforeach; ?>
<?php endif; ?>
<?php
endif;
$i++;
endforeach;
endif; ?>
</table>
<?php endif; ?>
</div>
<?php endif; ?>
<?php
endif; ?>
</form>
</div>
<?php
endif; ?>
</section>
</div>
</div>
</section>
<script type="text/javascript">
//<![CDATA[
enable_change(false);
//]]>
</script>
<?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