Revision 3a4fb57e
Added by Chris Buechler over 15 years ago
usr/local/www/services_dhcp.php | ||
---|---|---|
229 | 229 |
$input_errors[] = "A valid domain name must be specified for the DNS domain."; |
230 | 230 |
} |
231 | 231 |
if (($_POST['tftp'] && !is_ipaddr($_POST['tftp']))) { |
232 |
$input_errors[] = "A valid IP address must be specified for the tftp server.";
|
|
232 |
$input_errors[] = "A valid IP address must be specified for the TFTP server.";
|
|
233 | 233 |
} |
234 | 234 |
if (($_POST['nextserver'] && !is_ipaddr($_POST['nextserver']))) { |
235 | 235 |
$input_errors[] = "A valid IP address must be specified for the network boot server."; |
... | ... | |
581 | 581 |
</td> |
582 | 582 |
</tr> |
583 | 583 |
<tr> |
584 |
<td width="22%" valign="top" class="vncell">Domain-Name</td>
|
|
584 |
<td width="22%" valign="top" class="vncell">Domain name</td>
|
|
585 | 585 |
<td width="78%" class="vtable"> |
586 | 586 |
<input name="domain" type="text" class="formfld unknown" id="domain" size="20" value="<?=htmlspecialchars($pconfig['domain']);?>"><br> |
587 |
The default is to use the domainname of the router as DNS-Search string that is served via DHCP. Specify an alternate DNS-Search string here.
|
|
587 |
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.
|
|
588 | 588 |
</td> |
589 | 589 |
</tr> |
590 | 590 |
<tr> |
591 |
<td width="22%" valign="top" class="vncell">Domain-Searchlist</td>
|
|
591 |
<td width="22%" valign="top" class="vncell">Domain search list</td>
|
|
592 | 592 |
<td width="78%" class="vtable"> |
593 | 593 |
<input name="domainsearchlist" type="text" class="formfld unknown" id="domainsearchlist" size="20" value="<?=htmlspecialchars($pconfig['domainsearchlist']);?>"><br> |
594 |
DNS-Searchlist: the DHCP server can serve a list of domains to be searched.
|
|
594 |
The DHCP server can optionally provide a domain search list.
|
|
595 | 595 |
</td> |
596 | 596 |
</tr> |
597 | 597 |
<tr> |
... | ... | |
618 | 618 |
<td width="22%" valign="top" class="vncell">Failover peer IP:</td> |
619 | 619 |
<td width="78%" class="vtable"> |
620 | 620 |
<input name="failover_peerip" type="text" class="formfld host" id="failover_peerip" size="20" value="<?=htmlspecialchars($pconfig['failover_peerip']);?>"><br> |
621 |
Leave blank to disable. Enter the REAL address of the other machine. Machines must be using CARP.
|
|
621 |
Leave blank to disable. Enter the interface IP address of the other machine. Machines must be using CARP.
|
|
622 | 622 |
</td> |
623 | 623 |
</tr> |
624 | 624 |
<tr> |
... | ... | |
703 | 703 |
</td> |
704 | 704 |
</tr> |
705 | 705 |
<tr> |
706 |
<td width="22%" valign="top" class="vncell">Enable Network booting</td>
|
|
706 |
<td width="22%" valign="top" class="vncell">Enable network booting</td>
|
|
707 | 707 |
<td width="78%" class="vtable"> |
708 | 708 |
<div id="shownetbootbox"> |
709 | 709 |
<input type="button" onClick="show_netboot_config()" value="Advanced"></input> - Show Network booting</a> |
Also available in: Unified diff
fix up text