Commit 1e884f54 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) refactor services_dhcp_edit.php

parent 14c93845
<?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>.
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright 2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution. documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
*/ */
require_once("guiconfig.inc"); require_once("guiconfig.inc");
require_once("services.inc"); require_once("services.inc");
require_once("interfaces.inc"); require_once("interfaces.inc");
function staticmapcmp($a, $b) { function staticmapcmp($a, $b)
return ipcmp($a['ipaddr'], $b['ipaddr']);
}
function staticmaps_sort($ifgui)
{ {
global $config; return ipcmp($a['ipaddr'], $b['ipaddr']);
usort($config['dhcpd'][$ifgui]['staticmap'], "staticmapcmp");
} }
$referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/services_dhcp.php');
$if = $_GET['if'];
if ($_POST['if'])
$if = $_POST['if'];
if (!$if) { if ($_SERVER['REQUEST_METHOD'] === 'GET') {
header("Location: services_dhcp.php"); // handle identifiers and action
exit; if (!empty($_GET['if']) && !empty($config['interfaces'][$_GET['if']])) {
} $if = $_GET['if'];
} else {
if (!is_array($config['dhcpd'])) header("Location: services_dhcp.php");
$config['dhcpd'] = array(); exit;
if (!is_array($config['dhcpd'][$if])) }
$config['dhcpd'][$if] = array(); if (!empty($config['dhcpd'][$if]['staticmap'][$_GET['id']])) {
if (!is_array($config['dhcpd'][$if]['staticmap'])) $id = $_GET['id'];
$config['dhcpd'][$if]['staticmap'] = array(); }
if (!is_array($config['dhcpd'][$if]['pool'])) // read form data
$config['dhcpd'][$if]['pool'] = array(); $pconfig = array();
$a_pools = &$config['dhcpd'][$if]['pool']; $config_copy_fieldnames = array('mac', 'cid', 'hostname', 'filename', 'rootpath', 'descr', 'arp_table_static_entry',
'defaultleasetime', 'maxleasetime', 'gateway', 'domain', 'domainsearchlist', 'wins1', 'wins2', 'dns1', 'dns2', 'ddnsdomain',
$static_arp_enabled=isset($config['dhcpd'][$if]['staticarp']); 'ddnsdomainprimary', 'ddnsdomainkeyname', 'ddnsdomainkey', 'ddnsupdate', 'ntp1', 'ntp2', 'tftp', 'ipaddr',
$netboot_enabled=isset($config['dhcpd'][$if]['netboot']); 'winsserver', 'dnsserver');
$a_maps = &$config['dhcpd'][$if]['staticmap']; foreach ($config_copy_fieldnames as $fieldname) {
$ifcfgip = get_interface_ip($if); if (isset($config['dhcpd'][$if]['staticmap'][$id][$fieldname])) {
$ifcfgsn = get_interface_subnet($if); $pconfig[$fieldname] = $config['dhcpd'][$if]['staticmap'][$id][$fieldname];
$ifcfgdescr = convert_friendly_interface_to_friendly_descr($if); } elseif (isset($_GET[$fieldname])) {
$pconfig[$fieldname] = $_GET[$fieldname];
if (is_numericint($_GET['id'])) } else {
$id = $_GET['id']; $pconfig[$fieldname] = null;
if (isset($_POST['id']) && is_numericint($_POST['id'])) }
$id = $_POST['id']; }
if (isset($id) && $a_maps[$id]) { // handle array types
$pconfig['mac'] = $a_maps[$id]['mac']; if (isset($pconfig['winsserver'][0])) {
$pconfig['cid'] = $a_maps[$id]['cid']; $pconfig['wins1'] = $pconfig['winsserver'][0];
$pconfig['hostname'] = $a_maps[$id]['hostname']; }
$pconfig['ipaddr'] = $a_maps[$id]['ipaddr']; if (isset($pconfig['winsserver'][1])) {
$pconfig['filename'] = $a_maps[$id]['filename']; $pconfig['wins2'] = $pconfig['winsserver'][1];
$pconfig['rootpath'] = $a_maps[$id]['rootpath']; }
$pconfig['descr'] = $a_maps[$id]['descr']; if (isset($pconfig['dnsserver'][0])) {
$pconfig['arp_table_static_entry'] = isset($a_maps[$id]['arp_table_static_entry']); $pconfig['dns1'] = $pconfig['dnsserver'][0];
$pconfig['deftime'] = $a_maps[$id]['defaultleasetime']; }
$pconfig['maxtime'] = $a_maps[$id]['maxleasetime']; if (isset($pconfig['dnsserver'][1])) {
$pconfig['gateway'] = $a_maps[$id]['gateway']; $pconfig['dns2'] = $pconfig['dnsserver'][1];
$pconfig['domain'] = $a_maps[$id]['domain']; }
$pconfig['domainsearchlist'] = $a_maps[$id]['domainsearchlist']; if (isset($pconfig['ntpserver'][0])) {
list($pconfig['wins1'],$pconfig['wins2']) = $a_maps[$id]['winsserver']; $pconfig['ntp1'] = $pconfig['ntpserver'][0];
list($pconfig['dns1'],$pconfig['dns2']) = $a_maps[$id]['dnsserver']; }
$pconfig['ddnsdomain'] = $a_maps[$id]['ddnsdomain']; if (isset($pconfig['ntpserver'][1])) {
$pconfig['ddnsdomainprimary'] = $a_maps[$id]['ddnsdomainprimary']; $pconfig['ntp2'] = $pconfig['ntpserver'][1];
$pconfig['ddnsdomainkeyname'] = $a_maps[$id]['ddnsdomainkeyname']; }
$pconfig['ddnsdomainkey'] = $a_maps[$id]['ddnsdomainkey']; } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
$pconfig['ddnsupdate'] = isset($a_maps[$id]['ddnsupdate']); $pconfig = $_POST;
list($pconfig['ntp1'],$pconfig['ntp2']) = $a_maps[$id]['ntpserver']; // handle identifiers and actions
$pconfig['tftp'] = $a_maps[$id]['tftp']; if (!empty($pconfig['if']) && !empty($config['interfaces'][$pconfig['if']])) {
} else { $if = $pconfig['if'];
$pconfig['mac'] = $_GET['mac']; }
$pconfig['cid'] = $_GET['cid']; if (!empty($config['dhcpd'][$if]['staticmap'][$pconfig['id']])) {
$pconfig['hostname'] = $_GET['hostname']; $id = $pconfig['id'];
$pconfig['filename'] = $_GET['filename']; }
$pconfig['rootpath'] = $_GET['rootpath']; if (empty($config['dhcpd'])) {
$pconfig['descr'] = $_GET['descr']; $config['dhcpd'] = array();
$pconfig['arp_table_static_entry'] = $_GET['arp_table_static_entry']; }
$pconfig['deftime'] = $_GET['defaultleasetime']; if (empty($config['dhcpd'][$if])) {
$pconfig['maxtime'] = $_GET['maxleasetime']; $config['dhcpd'][$if] = array();
$pconfig['gateway'] = $_GET['gateway']; }
$pconfig['domain'] = $_GET['domain']; if (empty($config['dhcpd'][$if]['staticmap'])) {
$pconfig['domainsearchlist'] = $_GET['domainsearchlist']; $config['dhcpd'][$if]['staticmap'] = array();
$pconfig['wins1'] = $_GET['wins1']; }
$pconfig['wins2'] = $_GET['wins2']; $a_maps = &$config['dhcpd'][$if]['staticmap'];
$pconfig['dns1'] = $_GET['dns1']; $input_errors = array();
$pconfig['dns2'] = $_GET['dns2'];
$pconfig['ddnsdomain'] = $_GET['ddnsdomain']; /* input validation */
$pconfig['ddnsdomainprimary'] = $_GET['ddnsdomainprimary']; $reqdfields = array();
$pconfig['ddnsdomainkeyname'] = $_GET['ddnsdomainkeyname']; $reqdfieldsn = array();
$pconfig['ddnsdomainkey'] = $_GET['ddnsdomainkey']; do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
$pconfig['ddnsupdate'] = isset($_GET['ddnsupdate']);
$pconfig['ntp1'] = $_GET['ntp1'];
$pconfig['ntp2'] = $_GET['ntp2'];
$pconfig['tftp'] = $_GET['tftp'];
}
if ($_POST) {
unset($input_errors);
$pconfig = $_POST;
/* input validation */
$reqdfields = array();
$reqdfieldsn = array();
do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
/* either MAC or Client-ID must be specified */ /* either MAC or Client-ID must be specified */
if (empty($_POST['mac']) && empty($_POST['cid'])) if (empty($pconfig['mac']) && empty($pconfig['cid'])) {
$input_errors[] = gettext("Either MAC address or Client identifier must be specified"); $input_errors[] = gettext("Either MAC address or Client identifier must be specified");
}
/* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
$_POST['mac'] = strtolower(str_replace("-", ":", $_POST['mac'])); /* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
$pconfig['mac'] = strtolower(str_replace("-", ":", $pconfig['mac']));
if ($_POST['hostname']) {
preg_match("/\-\$/", $_POST['hostname'], $matches); if (!empty($pconfig['hostname'])) {
if($matches) preg_match("/\-\$/", $pconfig['hostname'], $matches);
$input_errors[] = gettext("The hostname cannot end with a hyphen according to RFC952"); if ($matches) {
if (!is_hostname($_POST['hostname'])) { $input_errors[] = gettext("The hostname cannot end with a hyphen according to RFC952");
$input_errors[] = gettext("The hostname can only contain the characters A-Z, 0-9 and '-'."); }
} else { if (!is_hostname($pconfig['hostname'])) {
if (strpos($_POST['hostname'],'.')) { $input_errors[] = gettext("The hostname can only contain the characters A-Z, 0-9 and '-'.");
$input_errors[] = gettext("A valid hostname is specified, but the domain name part should be omitted"); } elseif (strpos($pconfig['hostname'],'.')) {
} $input_errors[] = gettext("A valid hostname is specified, but the domain name part should be omitted");
} }
} }
if (($_POST['ipaddr'] && !is_ipaddr($_POST['ipaddr']))) { if (!empty($pconfig['ipaddr']) && !is_ipaddr($_POST['ipaddr'])) {
$input_errors[] = gettext("A valid IP address must be specified."); $input_errors[] = gettext("A valid IP address must be specified.");
} }
if (($_POST['mac'] && !is_macaddr($_POST['mac']))) { if (!empty($pconfig['mac']) && !is_macaddr($pconfig['mac'])) {
$input_errors[] = gettext("A valid MAC address must be specified."); $input_errors[] = gettext("A valid MAC address must be specified.");
} }
if($static_arp_enabled && !$_POST['ipaddr']) { if (isset($config['dhcpd'][$if]['staticarp']) && empty($pconfig['ipaddr'])) {
$input_errors[] = gettext("Static ARP is enabled. You must specify an IP address."); $input_errors[] = gettext("Static ARP is enabled. You must specify an IP address.");
} }
/* check for overlaps */ /* check for overlaps */
foreach ($a_maps as $mapent) { foreach ($a_maps as $mapent) {
if (isset($id) && ($a_maps[$id]) && ($a_maps[$id] === $mapent)) if (isset($id) && ($a_maps[$id] === $mapent)) {
continue; continue;
}
if ((($mapent['hostname'] == $_POST['hostname']) && $mapent['hostname']) || (($mapent['mac'] == $_POST['mac']) && $mapent['mac']) || (($mapent['ipaddr'] == $_POST['ipaddr']) && $mapent['ipaddr'] ) || (($mapent['cid'] == $_POST['cid']) && $mapent['cid'])) { if ((($mapent['hostname'] == $pconfig['hostname']) && $mapent['hostname']) ||
$input_errors[] = gettext("This Hostname, IP, MAC address or Client identifier already exists."); (($mapent['mac'] == $pconfig['mac']) && $mapent['mac']) ||
break; (($mapent['ipaddr'] == $pconfig['ipaddr']) && $mapent['ipaddr'] ) ||
} (($mapent['cid'] == $pconfig['cid']) && $mapent['cid'])) {
} $input_errors[] = gettext("This Hostname, IP, MAC address or Client identifier already exists.");
break;
/* make sure it's not within the dynamic subnet */ }
if ($_POST['ipaddr']) { }
$dynsubnet_start = ip2ulong($config['dhcpd'][$if]['range']['from']);
$dynsubnet_end = ip2ulong($config['dhcpd'][$if]['range']['to']); /* make sure it's not within the dynamic subnet */
if ((ip2ulong($_POST['ipaddr']) >= $dynsubnet_start) && if (!empty($pconfig['ipaddr'])) {
(ip2ulong($_POST['ipaddr']) <= $dynsubnet_end)) { $dynsubnet_start = ip2ulong($config['dhcpd'][$if]['range']['from']);
$input_errors[] = sprintf(gettext("The IP address must not be within the DHCP range for this interface.")); $dynsubnet_end = ip2ulong($config['dhcpd'][$if]['range']['to']);
} if (ip2ulong($pconfig['ipaddr']) >= $dynsubnet_start && ip2ulong($pconfig['ipaddr']) <= $dynsubnet_end) {
$input_errors[] = sprintf(gettext("The IP address must not be within the DHCP range for this interface."));
foreach ($a_pools as $pidx => $p) { }
if (is_inrange_v4($_POST['ipaddr'], $p['range']['from'], $p['range']['to'])) {
$input_errors[] = gettext("The IP address must not be within the range configured on a DHCP pool for this interface."); if (!empty($config['dhcpd'][$if]['pool'])) {
break; foreach ($config['dhcpd'][$if]['pool'] as $pidx => $p) {
} if (is_inrange_v4($pconfig['ipaddr'], $p['range']['from'], $p['range']['to'])) {
} $input_errors[] = gettext("The IP address must not be within the range configured on a DHCP pool for this interface.");
break;
$lansubnet_start = ip2ulong(long2ip32(ip2long($ifcfgip) & gen_subnet_mask_long($ifcfgsn))); }
$lansubnet_end = ip2ulong(long2ip32(ip2long($ifcfgip) | (~gen_subnet_mask_long($ifcfgsn)))); }
if ((ip2ulong($_POST['ipaddr']) < $lansubnet_start) || }
(ip2ulong($_POST['ipaddr']) > $lansubnet_end)) {
$input_errors[] = sprintf(gettext("The IP address must lie in the %s subnet."),$ifcfgdescr); $ifcfgip = get_interface_ip($if);
} $ifcfgsn = get_interface_subnet($if);
} $ifcfgdescr = convert_friendly_interface_to_friendly_descr($if);
$lansubnet_start = ip2ulong(long2ip32(ip2long($ifcfgip) & gen_subnet_mask_long($ifcfgsn)));
if (($_POST['gateway'] && !is_ipaddrv4($_POST['gateway']))) $lansubnet_end = ip2ulong(long2ip32(ip2long($ifcfgip) | (~gen_subnet_mask_long($ifcfgsn))));
$input_errors[] = gettext("A valid IP address must be specified for the gateway."); if (ip2ulong($pconfig['ipaddr']) < $lansubnet_start || ip2ulong($pconfig['ipaddr']) > $lansubnet_end) {
if (($_POST['wins1'] && !is_ipaddrv4($_POST['wins1'])) || ($_POST['wins2'] && !is_ipaddrv4($_POST['wins2']))) $input_errors[] = sprintf(gettext("The IP address must lie in the %s subnet."),$ifcfgdescr);
$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']) { if (!empty($pconfig['gateway']) && !is_ipaddrv4($pconfig['gateway'])) {
$parent_sn = get_interface_subnet($_POST['if']); $input_errors[] = gettext("A valid IP address must be specified for the gateway.");
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 ((!empty($pconfig['wins1']) && !is_ipaddrv4($pconfig['wins1'])) ||
} (!empty($pconfig['wins2']) && !is_ipaddrv4($pconfig['wins2']))) {
if (($_POST['dns1'] && !is_ipaddrv4($_POST['dns1'])) || ($_POST['dns2'] && !is_ipaddrv4($_POST['dns2']))) $input_errors[] = gettext("A valid IP address must be specified for the primary/secondary WINS servers.");
$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))) $parent_ip = get_interface_ip($pconfig['if']);
$input_errors[] = gettext("The default lease time must be at least 60 seconds."); if (is_ipaddrv4($parent_ip) && $pconfig['gateway']) {
if ($_POST['maxtime'] && (!is_numeric($_POST['maxtime']) || ($_POST['maxtime'] < 60) || ($_POST['maxtime'] <= $_POST['deftime']))) $parent_sn = get_interface_subnet($pconfig['if']);
$input_errors[] = gettext("The maximum lease time must be at least 60 seconds and higher than the default lease time."); if (!ip_in_subnet($pconfig['gateway'], gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn) && !ip_in_interface_alias_subnet($pconfig['if'], $pconfig['gateway'])) {
if (($_POST['ddnsdomain'] && !is_domain($_POST['ddnsdomain']))) $input_errors[] = sprintf(gettext("The gateway address %s does not lie within the chosen interface's subnet."), $_POST['gateway']);
$input_errors[] = gettext("A valid domain name must be specified for the dynamic DNS registration."); }
if (($_POST['ddnsdomain'] && !is_ipaddrv4($_POST['ddnsdomainprimary']))) }
$input_errors[] = gettext("A valid primary domain name server IP address must be specified for the dynamic domain name."); if ((!empty($pconfig['dns1']) && !is_ipaddrv4($pconfig['dns1'])) || (!empty($pconfig['dns2']) && !is_ipaddrv4($pconfig['dns2']))) {
if (($_POST['ddnsdomainkey'] && !$_POST['ddnsdomainkeyname']) || $input_errors[] = gettext("A valid IP address must be specified for the primary/secondary DNS servers.");
($_POST['ddnsdomainkeyname'] && !$_POST['ddnsdomainkey'])) }
$input_errors[] = gettext("You must specify both a valid domain key and key name.");
if ($_POST['domainsearchlist']) { if (!empty($pconfig['defaultleasetime']) && (!is_numeric($pconfig['defaultleasetime']) || ($pconfig['defaultleasetime'] < 60))) {
$domain_array=preg_split("/[ ;]+/",$_POST['domainsearchlist']); $input_errors[] = gettext("The default lease time must be at least 60 seconds.");
foreach ($domain_array as $curdomain) { }
if (!is_domain($curdomain)) { if (!empty($pconfig['maxleasetime']) && (!is_numeric($pconfig['maxleasetime']) || ($pconfig['maxleasetime'] < 60) || ($pconfig['maxleasetime'] <= $pconfig['defaultleasetime']))) {
$input_errors[] = gettext("A valid domain search list must be specified."); $input_errors[] = gettext("The maximum lease time must be at least 60 seconds and higher than the default lease time.");
break; }
} if (!empty($pconfig['ddnsdomain']) && !is_domain($pconfig['ddnsdomain'])) {
} $input_errors[] = gettext("A valid domain name must be specified for the dynamic DNS registration.");
} }
if (!empty($pconfig['ddnsdomain']) && !is_ipaddrv4($pconfig['ddnsdomainprimary'])) {
if (($_POST['ntp1'] && !is_ipaddrv4($_POST['ntp1'])) || ($_POST['ntp2'] && !is_ipaddrv4($_POST['ntp2']))) $input_errors[] = gettext("A valid primary domain name server IP address must be specified for the dynamic domain name.");
$input_errors[] = gettext("A valid IP address must be specified for the primary/secondary NTP servers."); }
if ($_POST['tftp'] && !is_ipaddrv4($_POST['tftp']) && !is_domain($_POST['tftp']) && !is_URL($_POST['tftp'])) if ((!empty($pconfig['ddnsdomainkey']) && empty($pconfig['ddnsdomainkeyname'])) ||
$input_errors[] = gettext("A valid IP address or hostname must be specified for the TFTP server."); (!empty($pconfig['ddnsdomainkeyname']) && empty($pconfig['ddnsdomainkey']))) {
if (($_POST['nextserver'] && !is_ipaddrv4($_POST['nextserver']))) $input_errors[] = gettext("You must specify both a valid domain key and key name.");
$input_errors[] = gettext("A valid IP address must be specified for the network boot server."); }
if (!empty($pconfig['domainsearchlist'])) {
if (!$input_errors) { $domain_array=preg_split("/[ ;]+/", $pconfig['domainsearchlist']);
$mapent = array(); foreach ($domain_array as $curdomain) {
$mapent['mac'] = $_POST['mac']; if (!is_domain($curdomain)) {
$mapent['cid'] = $_POST['cid']; $input_errors[] = gettext("A valid domain search list must be specified.");
$mapent['ipaddr'] = $_POST['ipaddr']; break;
$mapent['hostname'] = $_POST['hostname']; }
$mapent['descr'] = $_POST['descr']; }
$mapent['arp_table_static_entry'] = ($_POST['arp_table_static_entry']) ? true : false; }
$mapent['filename'] = $_POST['filename'];
$mapent['rootpath'] = $_POST['rootpath']; if ((!empty($pconfig['ntp1']) && !is_ipaddrv4($pconfig['ntp1'])) || (!empty($pconfig['ntp2']) && !is_ipaddrv4($pconfig['ntp2']))) {
$mapent['defaultleasetime'] = $_POST['deftime']; $input_errors[] = gettext("A valid IP address must be specified for the primary/secondary NTP servers.");
$mapent['maxleasetime'] = $_POST['maxtime']; }
if (!empty($pconfig['tftp']) && !is_ipaddrv4($pconfig['tftp']) && !is_domain($pconfig['tftp']) && !is_URL($pconfig['tftp'])) {
unset($mapent['winsserver']); $input_errors[] = gettext("A valid IP address or hostname must be specified for the TFTP server.");
if ($_POST['wins1']) }
$mapent['winsserver'][] = $_POST['wins1']; if ((!empty($pconfig['nextserver']) && !is_ipaddrv4($pconfig['nextserver']))) {
if ($_POST['wins2']) $input_errors[] = gettext("A valid IP address must be specified for the network boot server.");
$mapent['winsserver'][] = $_POST['wins2']; }
unset($mapent['dnsserver']); if (count($input_errors) == 0){
if ($_POST['dns1']) $mapent = array();
$mapent['dnsserver'][] = $_POST['dns1']; $config_copy_fieldnames = array('mac', 'cid', 'ipaddr', 'hostname', 'descr', 'filename', 'rootpath',
if ($_POST['dns2']) 'arp_table_static_entry', 'defaultleasetime', 'maxleasetime', 'gateway', 'domain', 'domainsearchlist',
$mapent['dnsserver'][] = $_POST['dns2']; 'ddnsdomain', 'ddnsdomainprimary', 'ddnsdomainkeyname', 'ddnsdomainkey', 'ddnsupdate', 'tftp',
'ldap', 'winsserver', 'dnsserver');
$mapent['gateway'] = $_POST['gateway'];
$mapent['domain'] = $_POST['domain']; foreach ($config_copy_fieldnames as $fieldname) {
$mapent['domainsearchlist'] = $_POST['domainsearchlist']; if (!empty($pconfig[$fieldname])) {
$mapent['ddnsdomain'] = $_POST['ddnsdomain']; $mapent[$fieldname] = $pconfig[$fieldname];
$mapent['ddnsdomainprimary'] = $_POST['ddnsdomainprimary']; }
$mapent['ddnsdomainkeyname'] = $_POST['ddnsdomainkeyname']; }
$mapent['ddnsdomainkey'] = $_POST['ddnsdomainkey']; // boolean
$mapent['ddnsupdate'] = ($_POST['ddnsupdate']) ? true : false; $mapent['arp_table_static_entry'] = !empty($mapent['arp_table_static_entry']);
$mapent['ddnsupdate'] = !empty($pconfig['ddnsupdate']) ? true : false;
unset($mapent['ntpserver']);
if ($_POST['ntp1']) // arrays
$mapent['ntpserver'][] = $_POST['ntp1']; $mapent['winsserver'] = array();
if ($_POST['ntp2']) if (!empty($pconfig['wins1'])) {
$mapent['ntpserver'][] = $_POST['ntp2']; $mapent['winsserver'][] = $pconfig['wins1'];
}
$mapent['tftp'] = $_POST['tftp']; if (!empty($pconfig['wins2'])) {
$mapent['ldap'] = $_POST['ldap']; $mapent['winsserver'][] = $pconfig['wins2'];
}
if (isset($id) && $a_maps[$id])
$a_maps[$id] = $mapent; $mapent['dnsserver'] = array();
else if (!empty($pconfig['dns1'])) {
$a_maps[] = $mapent; $mapent['dnsserver'][] = $_POST['dns1'];
staticmaps_sort($if); }
if (!empty($pconfig['dns2'])) {
write_config(); $mapent['dnsserver'][] = $_POST['dns2'];
}
if(isset($config['dhcpd'][$if]['enable'])) {
mark_subsystem_dirty('staticmaps'); $mapent['ntpserver'] = array();
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) if (!empty($pconfig['ntp1'])) {
mark_subsystem_dirty('hosts'); $mapent['ntpserver'][] = $pconfig['ntp1'];
if (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic'])) }
mark_subsystem_dirty('unbound'); if (!empty($pconfig['ntp2'])) {
} $mapent['ntpserver'][] = $pconfig['ntp2'];
}
header("Location: services_dhcp.php?if={$if}");
exit; if (isset($id)) {
} $a_maps[$id] = $mapent;
} else {
$a_maps[] = $mapent;
}
// sort before save
usort($config['dhcpd'][$if]['staticmap'], "staticmapcmp");
write_config();
if (isset($config['dhcpd'][$if]['enable'])) {
mark_subsystem_dirty('staticmaps');
if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic']))
mark_subsystem_dirty('hosts');
if (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic']))
mark_subsystem_dirty('unbound');
}
header("Location: services_dhcp.php?if={$if}");
exit;
}
} }
$service_hook = 'dhcpd';
include("head.inc");
$service_hook = 'dhcpd';
legacy_html_escape_form_data($pconfig);
include("head.inc");
?> ?>
<body> <body>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
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() { $("#showntpbox").hide();
document.getElementById("showntpbox").innerHTML=''; $("#showntp").show();
aodiv = document.getElementById('showntp'); }
aodiv.style.display = "block";
} function show_tftp_config() {
$("#showtftpbox").hide();
function show_tftp_config() { $("#showtftp").show();
document.getElementById("showtftpbox").innerHTML=''; }
aodiv = document.getElementById('showtftp');
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="row">
<div class="container-fluid"> <?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
<section class="col-xs-12">
<div class="row"> <div class="content-box">
<form method="post" name="iform" id="iform">
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?> <div class="table-responsive">
<table class="table table-striped">
<section class="col-xs-12"> <tr>
<td colspan="2"><?=gettext("Static DHCP Mapping");?></td>
<div class="content-box"> </tr>
<tr>
<form action="services_dhcp_edit.php" method="post" name="iform" id="iform"> <td width="22%"><a id="help_for_mac" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("MAC address");?></td>
<td width="78%">
<div class="table-responsive"> <input name="mac" id="mac" type="text" value="<?=$pconfig['mac'];?>" />
<table class="table table-striped table-sort"> <?php
<tr> $ip = getenv('REMOTE_ADDR');
<td colspan="2" valign="top" class="listtopic"><?=gettext("Static DHCP Mapping");?></td> $mac = `/usr/sbin/arp -an | grep {$ip} | /usr/bin/head -n1 | /usr/bin/cut -d" " -f4`;
</tr> $mac = str_replace("\n","",$mac);?>
<tr> <a onclick="$('#mac').val('<?=$mac?>');" href="#"><?=gettext("Copy my MAC address");?></a>
<td width="22%" valign="top" class="vncell"><?=gettext("MAC address");?></td> <div class="hidden" for="help_for_mac">
<td width="78%" class="vtable"> <?=gettext("Enter a MAC address in the following format: "."xx:xx:xx:xx:xx:xx");?>
<input name="mac" type="text" class="formfld unknown" id="mac" size="30" value="<?=htmlspecialchars($pconfig['mac']);?>" /> </div>
<?php </td>
$ip = getenv('REMOTE_ADDR'); </tr>
$mac = `/usr/sbin/arp -an | grep {$ip} | cut -d" " -f4`; <tr>
$mac = str_replace("\n","",$mac); <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Client identifier");?></td>
?> <td>
<a onclick="jQuery('#mac').val('<?=$mac?>');" href="#"><?=gettext("Copy my MAC address");?></a> <input name="cid" type="text" value="<?=$pconfig['cid'];?>" />
<br /> </td>
<span class="vexpl"><?=gettext("Enter a MAC address in the following format: ". </tr>
"xx:xx:xx:xx:xx:xx");?></span></td> <tr>
</tr> <td><a id="help_for_ipaddr" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("IP address");?></td>
<tr> <td>
<td width="22%" valign="top" class="vncell"><?=gettext("Client identifier");?></td> <input name="ipaddr" type="text" value="<?=$pconfig['ipaddr'];?>" />
<td width="78%" class="vtable"> <div class="hidden" for="help_for_ipaddr">
<input name="cid" type="text" class="formfld unknown" id="cid" size="30" value="<?=htmlspecialchars($pconfig['cid']);?>" /> <?=gettext("If an IPv4 address is entered, the address must be outside of the pool.");?>
</td> <br />
</tr> <?=gettext("If no IPv4 address is given, one will be dynamically allocated from the pool.");?>
<tr> </div>
<td width="22%" valign="top" class="vncell"><?=gettext("IP address");?></td> </td>
<td width="78%" class="vtable"> </tr>
<input name="ipaddr" type="text" class="formfld unknown" id="ipaddr" size="20" value="<?=htmlspecialchars($pconfig['ipaddr']);?>" /> <tr>
<br /> <td><a id="help_for_hostname" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Hostname");?></td>
<?=gettext("If an IPv4 address is entered, the address must be outside of the pool.");?> <td>
<br /> <input name="hostname" type="text" value="<?=$pconfig['hostname'];?>" />
<?=gettext("If no IPv4 address is given, one will be dynamically allocated from the pool.");?> <div class="hidden" for="help_for_hostname">
</td> <?=gettext("Name of the host, without domain part.");?>
</tr> </div>
<tr> </td>
<td width="22%" valign="top" class="vncell"><?=gettext("Hostname");?></td> </tr>
<td width="78%" class="vtable"> <?php
<input name="hostname" type="text" class="formfld unknown" id="hostname" size="20" value="<?=htmlspecialchars($pconfig['hostname']);?>" /> if (isset($config['dhcpd'][$if]['netboot'])):?>
<br /> <span class="vexpl"><?=gettext("Name of the host, without domain part.");?></span></td> <tr>
</tr> <td><a id="help_for_filename" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?= gettext('Netboot Filename') ?></td>
<?php if($netboot_enabled) { ?> <td>
<tr> <input name="filename" type="text" id="filename" size="20" value="<?=$pconfig['filename'];?>" />
<td width="22%" valign="top" class="vncell"><?= gettext('Netboot Filename') ?></td> <div class="hidden" for="help_for_filename">
<td width="78%" class="vtable"> <?= gettext('Name of the file that should be loaded when this host boots off of the network, overrides setting on main page.') ?>
<input name="filename" type="text" class="formfld unknown" id="filename" size="20" value="<?=htmlspecialchars($pconfig['filename']);?>" /> </div>
<br /> <span class="vexpl"><?= gettext('Name of the file that should be loaded when this host boots off of the network, overrides setting on main page.') ?></span></td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?= gettext('Root Path') ?></td> <td><a id="help_for_rootpath" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?= gettext('Root Path') ?></td>
<td width="78%" class="vtable"> <td>
<input name="rootpath" type="text" class="formfld unknown" id="rootpath" size="90" value="<?=htmlspecialchars($pconfig['rootpath']);?>" /> <input name="rootpath" type="text" value="<?=$pconfig['rootpath'];?>" />
<br /> <span class="vexpl"><?= gettext("Enter the root-path-string, overrides setting on main page.") ?></span></td> <div class="hidden" for="help_for_rootpath">
</tr> <?= gettext("Enter the root-path-string, overrides setting on main page.") ?>
<?php } ?> </div>
<tr> </td>
<td width="22%" valign="top" class="vncell"><?=gettext("Description");?></td> </tr>
<td width="78%" class="vtable"> <?php
<input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>" /> endif;?>
<br /> <span class="vexpl"><?=gettext("You may enter a description here ". <tr>
"for your reference (not parsed).");?></span></td> <td><a id="help_for_descr" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Description");?></td>
</tr> <td>
<tr> <input name="descr" type="text" value="<?=$pconfig['descr'];?>" />
<td width="22%" valign="top" class="vncell"><?=gettext("ARP Table Static Entry");?></td> <div class="hidden" for="help_for_descr">
<td width="78%" class="vtable"> <?=gettext("You may enter a description here ". "for your reference (not parsed).");?>
<input name="arp_table_static_entry" id="arp_table_static_entry" type="checkbox" value="yes" <?php if ($pconfig['arp_table_static_entry']) echo "checked=\"checked\""; ?> /> </div>
<br /> <span class="vexpl"><?=gettext("Create an ARP Table Static Entry for this MAC &amp; IP Address pair. ". </td>
"");?></span></td> </tr>
</tr> <tr>
<tr> <td><a id="help_for_arp_table_static_entry" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("ARP Table Static Entry");?></td>
<td width="22%" valign="top" class="vncell"><?=gettext("WINS servers");?></td> <td>
<td width="78%" class="vtable"> <input name="arp_table_static_entry" id="arp_table_static_entry" type="checkbox" value="yes" <?=!empty($pconfig['arp_table_static_entry']) ? "checked=\"checked\"" : ""; ?> />
<input name="wins1" type="text" class="formfld unknown" id="wins1" size="20" value="<?=htmlspecialchars($pconfig['wins1']);?>" /><br /> <div class="hidden" for="help_for_arp_table_static_entry">
<input name="wins2" type="text" class="formfld unknown" id="wins2" size="20" value="<?=htmlspecialchars($pconfig['wins2']);?>" /> <?=gettext("Create an ARP Table Static Entry for this MAC &amp; IP Address pair. ");?>
</td> </div>
</tr> </td>
<tr> </tr>
<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers");?></td> <tr>
<td width="78%" class="vtable"> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("WINS servers");?></td>
<input name="dns1" type="text" class="formfld unknown" id="dns1" size="20" value="<?=htmlspecialchars($pconfig['dns1']);?>" /><br /> <td>
<input name="dns2" type="text" class="formfld unknown" id="dns2" size="20" value="<?=htmlspecialchars($pconfig['dns2']);?>" /><br /> <input name="wins1" type="text" value="<?=$pconfig['wins1'];?>" /><br />
<?=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.");?> <input name="wins2" type="text" value="<?=$pconfig['wins2'];?>" />
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Gateway");?></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="gateway" type="text" class="formfld host" id="gateway" size="20" value="<?=htmlspecialchars($pconfig['gateway']);?>" /><br /> <input name="dns1" type="text" value="<?=$pconfig['dns1'];?>" /><br/>
<?=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.");?> <input name="dns2" type="text" value="<?=$pconfig['dns2'];?>" />
</td> <div class="hidden" for="help_for_dns">
</tr> <?=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.");?>
<tr> </div>
<td width="22%" valign="top" class="vncell"><?=gettext("Domain name");?></td> </td>
<td width="78%" class="vtable"> </tr>
<input name="domain" type="text" class="formfld unknown" id="domain" size="20" value="<?=htmlspecialchars($pconfig['domain']);?>" /><br /> <tr>
<?=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.");?> <td><a id="help_for_gateway" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Gateway");?></td>
</td> <td>
</tr> <input name="gateway" type="text" value="<?=$pconfig['gateway'];?>" />
<tr> <div class="hidden" for="help_for_gateway">
<td width="22%" valign="top" class="vncell"><?=gettext("Domain search list");?></td> <?=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.");?>
<td width="78%" class="vtable"> </div>
<input name="domainsearchlist" type="text" class="formfld unknown" id="domainsearchlist" size="20" value="<?=htmlspecialchars($pconfig['domainsearchlist']);?>" /><br /> </td>
<?=gettext("The DHCP server can optionally provide a domain search list. Use the semicolon character as separator ");?> </tr>
</td> <tr>
</tr> <td><a id="help_for_domain" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain name");?></td>
<tr> <td>
<td width="22%" valign="top" class="vncell"><?=gettext("Default lease time");?></td> <input name="domain" type="text" value="<?=$pconfig['domain'];?>" />
<td width="78%" class="vtable"> <div class="hidden" for="help_for_domain">
<input name="deftime" type="text" class="formfld unknown" id="deftime" size="10" value="<?=htmlspecialchars($pconfig['deftime']);?>" /> <?=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("seconds");?><br /> </div>
<?=gettext("This is used for clients that do not ask for a specific " . </td>
"expiration time."); ?><br /> </tr>
<?=gettext("The default is 7200 seconds.");?> <tr>
</td> <td><a id="help_for_domainsearchlist" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain search list");?></td>
</tr> <td>
<tr> <input name="domainsearchlist" type="text" id="domainsearchlist" size="20" value="<?=$pconfig['domainsearchlist'];?>" />
<td width="22%" valign="top" class="vncell"><?=gettext("Maximum lease time");?></td> <div class="hidden" for="help_for_domainsearchlist">
<td width="78%" class="vtable"> <?=gettext("The DHCP server can optionally provide a domain search list. Use the semicolon character as separator ");?>
<input name="maxtime" type="text" class="formfld unknown" id="maxtime" size="10" value="<?=htmlspecialchars($pconfig['maxtime']);?>" /> </div>
<?=gettext("seconds");?><br /> </td>
<?=gettext("This is the maximum lease time for clients that ask". </tr>
" for a specific expiration time."); ?><br /> <tr>
<?=gettext("The default is 86400 seconds.");?> <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> <td>
</tr> <input name="defaultleasetime" type="text" id="deftime" size="10" value="<?=$pconfig['defaultleasetime'];?>" />
<tr> <div class="hidden" for="help_for_defaultleasetime">
<td width="22%" valign="top" class="vncell"><?=gettext("Dynamic DNS");?></td> <?=gettext("This is used for clients that do not ask for a specific " ."expiration time."); ?><br />
<td width="78%" class="vtable"> <?=gettext("The default is 7200 seconds.");?>
<div id="showddnsbox"> </div>
<input type="button" onclick="show_ddns_config()" class="btn btn-xs btn-default" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show Dynamic DNS");?> </td>
</div> </tr>
<div id="showddns" style="display:none"> <tr>
<input style="vertical-align:middle" type="checkbox" value="yes" name="ddnsupdate" id="ddnsupdate" <?php if($pconfig['ddnsupdate']) echo "checked=\"checked\""; ?> />&nbsp; <td><a id="help_for_maxleasetime" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Maximum lease time");?> (<?=gettext("seconds");?>)</td>
<b><?=gettext("Enable registration of DHCP client names in DNS.");?></b><br /> <td>
<p> <input name="maxleasetime" type="text" value="<?=$pconfig['maxleasetime'];?>" />
<input name="ddnsdomain" type="text" class="formfld unknown" id="ddnsdomain" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomain']);?>" /><br /> <div class="hidden" for="help_for_maxleasetime">
<?=gettext("Note: Leave blank to disable dynamic DNS registration.");?><br /> <?=gettext("This is the maximum lease time for clients that ask"." for a specific expiration time."); ?><br />
<?=gettext("Enter the dynamic DNS domain which will be used to register client names in the DNS server.");?> <?=gettext("The default is 86400 seconds.");?>
<input name="ddnsdomainprimary" type="text" class="formfld unknown" id="ddnsdomainprimary" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainprimary']);?>" /><br /> </div>
<?=gettext("Enter the primary domain name server IP address for the dynamic domain name.");?><br /> </td>
<input name="ddnsdomainkeyname" type="text" class="formfld unknown" id="ddnsdomainkeyname" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainkeyname']);?>" /><br /> </tr>
<?=gettext("Enter the dynamic DNS domain key name which will be used to register client names in the DNS server.");?> <tr>
<input name="ddnsdomainkey" type="text" class="formfld unknown" id="ddnsdomainkey" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomainkey']);?>" /><br /> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Dynamic DNS");?></td>
<?=gettext("Enter the dynamic DNS domain key secret which will be used to register client names in the DNS server.");?> <td>
</p> <div id="showddnsbox">
</div> <input type="button" onclick="show_ddns_config()" class="btn btn-xs btn-default" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show Dynamic DNS");?>
</td> </div>
</tr> <div id="showddns" style="display:none">
<tr> <input style="vertical-align:middle" type="checkbox" value="yes" name="ddnsupdate" id="ddnsupdate" <?=!empty($pconfig['ddnsupdate']) ? "checked=\"checked\"" : ""; ?> />
<td width="22%" valign="top" class="vncell"><?=gettext("NTP servers");?></td> <b><?=gettext("Enable registration of DHCP client names in DNS.");?></b><br />
<td width="78%" class="vtable"> <?=gettext("Note: Leave blank to disable dynamic DNS registration.");?><br />
<div id="showntpbox"> <?=gettext("Enter the dynamic DNS domain which will be used to register client names in the DNS server.");?>
<input type="button" onclick="show_ntp_config()" class="btn btn-xs btn-default" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show NTP configuration");?> <input name="ddnsdomain" type="text" id="ddnsdomain" size="20" value="<?=$pconfig['ddnsdomain'];?>" />
</div> <?=gettext("Enter the primary domain name server IP address for the dynamic domain name.");?><br />
<div id="showntp" style="display:none"> <input name="ddnsdomainprimary" type="text" id="ddnsdomainprimary" size="20" value="<?=$pconfig['ddnsdomainprimary'];?>" />
<input name="ntp1" type="text" class="formfld unknown" id="ntp1" size="20" value="<?=htmlspecialchars($pconfig['ntp1']);?>" /><br /> <?=gettext("Enter the dynamic DNS domain key name which will be used to register client names in the DNS server.");?>
<input name="ntp2" type="text" class="formfld unknown" id="ntp2" size="20" value="<?=htmlspecialchars($pconfig['ntp2']);?>" /> <input name="ddnsdomainkeyname" type="text" id="ddnsdomainkeyname" size="20" value="<?=$pconfig['ddnsdomainkeyname'];?>" />
</div> <?=gettext("Enter the dynamic DNS domain key secret which will be used to register client names in the DNS server.");?>
</td> <input name="ddnsdomainkey" type="text" id="ddnsdomainkey" size="20" value="<?=$pconfig['ddnsdomainkey'];?>" />
</tr> </div>
<tr> </td>
<td width="22%" valign="top" class="vncell"><?=gettext("TFTP server");?></td> </tr>
<td width="78%" class="vtable"> <tr>
<div id="showtftpbox"> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("NTP servers");?></td>
<input type="button" onclick="show_tftp_config()" class="btn btn-xs btn-default" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show TFTP configuration");?> <td>
</div> <div id="showntpbox">
<div id="showtftp" style="display:none"> <input type="button" onclick="show_ntp_config()" class="btn btn-xs btn-default" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show NTP configuration");?>
<input name="tftp" type="text" class="formfld unknown" id="tftp" size="50" value="<?=htmlspecialchars($pconfig['tftp']);?>" /><br /> </div>
<?=gettext("Leave blank to disable. Enter a full hostname or IP for the TFTP server.");?> <div id="showntp" style="display:none">
</div> <input name="ntp1" type="text" id="ntp1" size="20" value="<?=$pconfig['ntp1'];?>" /><br />
</td> <input name="ntp2" type="text" id="ntp2" size="20" value="<?=$pconfig['ntp2'];?>" />
</tr> </div>
<tr> </td>
<td width="22%" valign="top">&nbsp;</td> </tr>
<td width="78%"> <tr>
<input name="Submit" type="submit" class="formbtn btn btn-primary" value="<?=gettext("Save");?>" /> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("TFTP server");?></td>
<input type="button" class="formbtn btn btn-default" value="<?=gettext("Cancel");?>" onclick="window.location.href='<?=$referer;?>'" /> <td>
<?php if (isset($id) && $a_maps[$id]): ?> <div id="showtftpbox">
<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" /> <input type="button" onclick="show_tftp_config()" class="btn btn-xs btn-default" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show TFTP configuration");?>
<?php endif; ?> </div>
<input name="if" type="hidden" value="<?=htmlspecialchars($if);?>" /> <div id="showtftp" style="display:none">
</td> <input name="tftp" type="text" id="tftp" size="50" value="<?=$pconfig['tftp'];?>" /><br />
</tr> <?=gettext("Leave blank to disable. Enter a full hostname or IP for the TFTP server.");?>
</table> </div>
</div> </td>
</form> </tr>
</div> <tr>
</section> <td></td>
</div> <td>
</div> <input name="Submit" type="submit" class="formbtn btn btn-primary" value="<?=gettext("Save");?>" />
</section> <input type="button" class="formbtn btn btn-default" value="<?=gettext("Cancel");?>" onclick="window.location.href='<?=(isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/services_dhcp.php');?>'" />
<?php
if (isset($id)): ?>
<input name="id" type="hidden" value="<?=$id;?>" />
<?php
endif; ?>
<input name="if" type="hidden" value="<?=$if;?>" />
</td>
</tr>
</table>
</div>
</form>
</div>
</section>
</div>
</div>
</section>
<?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