diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-08-27 22:08:45 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-08-27 22:08:45 +0000 |
commit | 25e031a16e2444708cd53810a76227aa9f28a013 (patch) | |
tree | 494a456580a6dca156b303f5c0e952e054936dfa /usr/local/www/services_dhcp.php | |
parent | 0ab9e9eb6cfaebde901928a1df9df855acebf5ab (diff) | |
download | pfsense-25e031a16e2444708cd53810a76227aa9f28a013.zip pfsense-25e031a16e2444708cd53810a76227aa9f28a013.tar.gz |
Add NOTE of why we need DNS Server options per subnet,
Diffstat (limited to 'usr/local/www/services_dhcp.php')
-rwxr-xr-x | usr/local/www/services_dhcp.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index 04de15c..0827375 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -282,19 +282,23 @@ function enable_change(enable_over) { <td width="22%" valign="top" class="vncellreq">Range</td> <td width="78%" class="vtable"> <input name="range_from" type="text" class="formfld" id="range_from" size="20" value="<?=htmlspecialchars($pconfig['range_from']);?>"> - to <input name="range_to" type="text" class="formfld" id="range_to" size="20" value="<?=htmlspecialchars($pconfig['range_to']);?>"></td> + to <input name="range_to" type="text" class="formfld" id="range_to" size="20" value="<?=htmlspecialchars($pconfig['range_to']);?>"> + </td> </tr> <tr> <td width="22%" valign="top" class="vncell">WINS servers</td> <td width="78%" class="vtable"> <input name="wins1" type="text" class="formfld" id="wins1" size="20" value="<?=htmlspecialchars($pconfig['wins1']);?>"><br> - <input name="wins2" type="text" class="formfld" id="wins2" size="20" value="<?=htmlspecialchars($pconfig['wins2']);?>"></td> + <input name="wins2" type="text" class="formfld" id="wins2" size="20" value="<?=htmlspecialchars($pconfig['wins2']);?>"> + </td> </tr> <tr> <td width="22%" valign="top" class="vncell">DNS servers</td> <td width="78%" class="vtable"> <input name="dns1" type="text" class="formfld" id="dns1" size="20" value="<?=htmlspecialchars($pconfig['dns1']);?>"><br> - <input name="dns2" type="text" class="formfld" id="dns2" size="20" value="<?=htmlspecialchars($pconfig['dns2']);?>"></td> + <input name="dns2" type="text" class="formfld" id="dns2" size="20" value="<?=htmlspecialchars($pconfig['dns2']);?>"><br> + NOTE: leave blank to use the system default DNS servers. This option is handy when your doing CARP+DHCP Failover, etc. + </td> </tr> <tr> <td width="22%" valign="top" class="vncell">Gateway</td> |