$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."); break; } } $lansubnet_start = gen_subnetv4($ifcfgip, $ifcfgsn); $lansubnet_end = gen_subnetv4_max($ifcfgip, $ifcfgsn); if (!is_inrange_v4($_POST['ipaddr'], $lansubnet_start, $lansubnet_end)) { $input_errors[] = sprintf(gettext("The IP address must lie in the %s subnet."), $ifcfgdescr); } if ($_POST['ipaddr'] == $lansubnet_start) { $input_errors[] = sprintf(gettext("The IP address cannot be the %s network address."), $ifcfgdescr); } if ($_POST['ipaddr'] == $lansubnet_end) { $input_errors[] = sprintf(gettext("The IP address cannot be the %s broadcast address."), $ifcfgdescr); } } if (($_POST['gateway'] && !is_ipaddrv4($_POST['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']))) { $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']) { $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'])) || ($_POST['dns3'] && !is_ipaddrv4($_POST['dns3'])) || ($_POST['dns4'] && !is_ipaddrv4($_POST['dns4']))) { $input_errors[] = gettext("A valid IP address must be specified for each of the DNS servers."); } if ($_POST['deftime'] && (!is_numeric($_POST['deftime']) || ($_POST['deftime'] < 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']))) { $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']))) { $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 (($_POST['ddnsdomainkey'] && !$_POST['ddnsdomainkeyname']) || ($_POST['ddnsdomainkeyname'] && !$_POST['ddnsdomainkey'])) { $input_errors[] = gettext("You must specify both a valid domain key and key name."); } if ($_POST['domainsearchlist']) { $domain_array=preg_split("/[ ;]+/", $_POST['domainsearchlist']); foreach ($domain_array as $curdomain) { if (!is_domain($curdomain)) { $input_errors[] = gettext("A valid domain search list must be specified."); break; } } } if (($_POST['ntp1'] && !is_ipaddrv4($_POST['ntp1'])) || ($_POST['ntp2'] && !is_ipaddrv4($_POST['ntp2']))) { $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'])) { $input_errors[] = gettext("A valid IP address or hostname must be specified for the TFTP server."); } if (($_POST['nextserver'] && !is_ipaddrv4($_POST['nextserver']))) { $input_errors[] = gettext("A valid IP address must be specified for the network boot server."); } if (!$input_errors) { $mapent = array(); $mapent['mac'] = $_POST['mac']; $mapent['cid'] = $_POST['cid']; $mapent['ipaddr'] = $_POST['ipaddr']; $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']; $mapent['defaultleasetime'] = $_POST['deftime']; $mapent['maxleasetime'] = $_POST['maxtime']; unset($mapent['winsserver']); if ($_POST['wins1']) { $mapent['winsserver'][] = $_POST['wins1']; } if ($_POST['wins2']) { $mapent['winsserver'][] = $_POST['wins2']; } unset($mapent['dnsserver']); if ($_POST['dns1']) { $mapent['dnsserver'][] = $_POST['dns1']; } if ($_POST['dns2']) { $mapent['dnsserver'][] = $_POST['dns2']; } if ($_POST['dns3']) { $mapent['dnsserver'][] = $_POST['dns3']; } if ($_POST['dns4']) { $mapent['dnsserver'][] = $_POST['dns4']; } $mapent['gateway'] = $_POST['gateway']; $mapent['domain'] = $_POST['domain']; $mapent['domainsearchlist'] = $_POST['domainsearchlist']; $mapent['ddnsdomain'] = $_POST['ddnsdomain']; $mapent['ddnsdomainprimary'] = $_POST['ddnsdomainprimary']; $mapent['ddnsdomainkeyname'] = $_POST['ddnsdomainkeyname']; $mapent['ddnsdomainkey'] = $_POST['ddnsdomainkey']; $mapent['ddnsupdate'] = ($_POST['ddnsupdate']) ? true : false; unset($mapent['ntpserver']); if ($_POST['ntp1']) { $mapent['ntpserver'][] = $_POST['ntp1']; } if ($_POST['ntp2']) { $mapent['ntpserver'][] = $_POST['ntp2']; } $mapent['tftp'] = $_POST['tftp']; $mapent['ldap'] = $_POST['ldap']; if (isset($id) && $a_maps[$id]) { $a_maps[$id] = $mapent; } else { $a_maps[] = $mapent; } staticmaps_sort($if); 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; } } // Get our MAC address $ip = $_SERVER['REMOTE_ADDR']; $mymac = `/usr/sbin/arp -an | grep '('{$ip}')' | cut -d" " -f4`; $mymac = str_replace("\n", "", $mymac); $iflist = get_configured_interface_with_descr(); $ifname = ''; if (!empty($if) && isset($iflist[$if])) { $ifname = $iflist[$if]; } $pgtitle = array(gettext("Services"), gettext("DHCP Server"), $ifname, gettext("Edit Static Mapping")); $shortcut_section = "dhcp"; include("head.inc"); if ($input_errors) { print_input_errors($input_errors); } $form = new Form(); $section = new Form_Section(sprintf("Static DHCP Mapping on %s", $ifcfgdescr)); $macaddress = new Form_Input( 'mac', 'MAC Address', 'text', $pconfig['mac'], ['placeholder' => 'xx:xx:xx:xx:xx:xx'] ); $btnmymac = new Form_Button( 'btnmymac', 'Copy My MAC' ); $btnmymac->removeClass('btn-primary')->addClass('btn-success btn-sm'); $group = new Form_Group('MAC controls'); $group->add($macaddress); $group->add($btnmymac); $group->setHelp('MAC address (6 hex octets separated by colons)'); $section->add($group); $section->addInput(new Form_Input( 'cid', 'Client Identifier', 'text', $pconfig['cid'] )); $section->addInput(new Form_IpAddress( 'ipaddr', 'IP Address', $pconfig['ipaddr'] ))->setHelp('If an IPv4 address is entered, the address must be outside of the pool.' . '
' . 'If no IPv4 address is given, one will be dynamically allocated from the pool.'); $section->addInput(new Form_Input( 'hostname', 'Hostname', 'text', $pconfig['hostname'] ))->setHelp('Name of the host, without domain part.'); if ($netboot_enabled) { $section->addInput(new Form_Input( 'filename', 'Netboot filename', 'text', $pconfig['filename'] ))->setHelp('Name of the file that should be loaded when this host boots off of the network, overrides setting on main page.'); $section->addInput(new Form_Input( 'rootpath', 'Root Path', 'text', $pconfig['rootpath'] ))->setHelp('Enter the root-path-string, overrides setting on main page.'); } $section->addInput(new Form_Input( 'descr', 'Description', 'text', $pconfig['descr'] ))->setHelp('You may enter a description here for your reference (not parsed).'); $section->addInput(new Form_Checkbox( 'arp_table_static_entry', 'ARP Table Static Entry', 'Create an ARP Table Static Entry for this MAC & IP Address pair.', $pconfig['arp_table_static_entry'] )); $group = new Form_Group('WINS Servers'); $group->add(new Form_Input( 'wins1', null, 'text', $pconfig['wins1'], ['placeholder' => 'WINS 1'] )); $group->add(new Form_Input( 'wins2', null, 'text', $pconfig['wins2'], ['placeholder' => 'WINS 2'] )); $section->add($group); $group = new Form_Group('DNS Servers'); $group->add(new Form_Input( 'dns1', null, 'text', $pconfig['dns1'], ['placeholder' => 'DNS 1'] )); $group->add(new Form_Input( 'dns2', null, 'text', $pconfig['dns2'], ['placeholder' => 'DNS 2'] )); $group->add(new Form_Input( 'dns3', null, 'text', $pconfig['dns3'], ['placeholder' => 'DNS 3'] )); $group->add(new Form_Input( 'dns4', null, 'text', $pconfig['dns4'], ['placeholder' => 'DNS 4'] )); $group->setHelp('Note: leave blank to use the system default DNS servers - this interface\'s IP if DNS Forwarder or Resolver is enabled, otherwise the servers configured on the General page.'); $section->add($group); $section->addInput(new Form_Input( 'gateway', 'Gateway', 'text', $pconfig['gateway'] ))->setHelp('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.'); $section->addInput(new Form_Input( 'domain', 'Domain name', 'text', $pconfig['domain'] ))->setHelp('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. '); $section->addInput(new Form_Input( 'domainsearchlist', 'Domain search list', 'text', $pconfig['domainsearchlist'] ))->setHelp('The DHCP server can optionally provide a domain search list. Use the semicolon character as separator'); $section->addInput(new Form_Input( 'deftime', 'Default lease time (Seconds)', 'text', $pconfig['deftime'] ))->setHelp('Used for clients that do not ask for a specific expiration time. The default is 7200 seconds.'); $section->addInput(new Form_Input( 'maxtime', 'Maximum lease time (Seconds)', 'text', $pconfig['maxtime'] ))->setHelp('This is the maximum lease time for clients that ask for a specific expiration time. The default is 86400 seconds.'); $btndyndns = new Form_Button( 'btndyndns', 'Advanced' ); $btndyndns->removeClass('btn-primary')->addClass('btn-default btn-sm'); $section->addInput(new Form_StaticText( 'Dynamic DNS', $btndyndns . ' ' . 'Show dynamic DNS settings' )); $section->addInput(new Form_Checkbox( 'ddnsupdate', 'DHCP Registration', 'Enable registration of DHCP client names in DNS.', $pconfig['ddnsupdate'] )); $section->addInput(new Form_Input( 'ddnsdomain', 'DDNS Domain', 'text', $pconfig['ddnsdomain'] ))->setHelp('Leave blank to disable dynamic DNS registration. Enter the dynamic DNS domain which will be used to register client names in the DNS server.'); $section->addInput(new Form_IpAddress( 'ddnsdomainprimary', 'DDNS Server IP', $pconfig['ddnsdomainprimary'] ))->setHelp('Enter the primary domain name server IP address for the dynamic domain name.'); $section->addInput(new Form_Input( 'ddnsdomainkeyname', 'DDNS Domain Key name', 'text', $pconfig['ddnsdomainkeyname'] ))->setHelp('Enter the dynamic DNS domain key name which will be used to register client names in the DNS server.'); $section->addInput(new Form_Input( 'ddnsdomainkey', 'DDNS Domain Key secret', 'text', $pconfig['ddnsdomainkey'] ))->setHelp('Enter the dynamic DNS domain key secret which will be used to register client names in the DNS server.'); $btnntp = new Form_Button( 'btnntp', 'Advanced' ); $btnntp->removeClass('btn-primary')->addClass('btn-default btn-sm'); $section->addInput(new Form_StaticText( 'NTP servers', $btnntp . ' ' . 'Show NTP Configuration' )); $group = new Form_Group('NTP Servers'); $group->add(new Form_Input( 'ntp1', 'NTP Server 1', 'text', $pconfig['ntp1'], ['placeholder' => 'NTP 1'] )); $group->add(new Form_Input( 'ntp2', 'NTP Server 2', 'text', $pconfig['ntp2'], ['placeholder' => 'NTP 2'] )); $group->addClass('ntpclass'); $section->add($group); $btntftp = new Form_Button( 'btntftp', 'Advanced' ); $btntftp->removeClass('btn-primary')->addClass('btn-default btn-sm'); $section->addInput(new Form_StaticText( 'TFTP servers', $btntftp . ' ' . 'Show TFTP Configuration' )); $section->addInput(new Form_Input( 'tftp', 'TFTP Server', 'text', $pconfig['tftp'] ))->setHelp('Leave blank to disable. Enter a full hostname or IP for the TFTP server.'); $form->add($section); print($form); ?>