summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-03-15 04:39:58 +0000
committerBill Marquette <billm@pfsense.org>2005-03-15 04:39:58 +0000
commit80933129da81e0e449f8ee952610543ab0d1f59b (patch)
treea602f32888bdcf0fd615b0b1ea9e6952a245ba57 /usr
parentee9f992cae4638476e24655a15fe520a415a1941 (diff)
downloadpfsense-80933129da81e0e449f8ee952610543ab0d1f59b.zip
pfsense-80933129da81e0e449f8ee952610543ab0d1f59b.tar.gz
static arp entries are interface specific now - no longer tied to only LAN interface
added warning that this will break communications with hosts not in dhcp table I fully expect we'll want to move this to it's own section at some point
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/services_dhcp.php18
1 files changed, 10 insertions, 8 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php
index 3d4f74a..192aa5b 100755
--- a/usr/local/www/services_dhcp.php
+++ b/usr/local/www/services_dhcp.php
@@ -55,6 +55,7 @@ $pconfig['maxtime'] = $config['dhcpd'][$if]['maxleasetime'];
list($pconfig['wins1'],$pconfig['wins2']) = $config['dhcpd'][$if]['winsserver'];
$pconfig['enable'] = isset($config['dhcpd'][$if]['enable']);
$pconfig['denyunknown'] = isset($config['dhcpd'][$if]['denyunknown']);
+$pconfig['staticarp'] = isset($config['dhcpd'][$if]['staticarp']);
$ifcfg = $config['interfaces'][$if];
@@ -69,12 +70,6 @@ if ($_POST) {
unset($input_errors);
- if ($_POST['enablestaticarp'] == "") {
- unset($config['staticarp']['enablestaticarp']);
- } else {
- $config['staticarp']['enablestaticarp'] = "enabled";
- }
-
$pconfig = $_POST;
/* input validation */
@@ -137,8 +132,14 @@ if ($_POST) {
$config['dhcpd'][$if]['gateway'] = $_POST['gateway'];
+ $config['dhcpd'][$if]['staticarp'] = $_POST['staticarp'] ? true : false;
+
+
write_config();
- interfaces_staticarp_configure();
+
+ /* static arp configuration */
+ if (isset($config['dhcpd'][$if]['staticarp']))
+ interfaces_staticarp_configure($if);
$retval = 0;
if (!file_exists($d_sysrebootreqd_path)) {
@@ -291,7 +292,8 @@ The default is to use the IP of the firewall as the gateway. Specify an alterna
</tr>
<tr>
<td width="22%" valign="top" class="vncell">Static ARP</td>
- <td width="78%" class="vtable"><input type="checkbox" name="enablestaticarp" id="enablestaticarp" <?php if($config['staticarp']['enablestaticarp'] == "enabled") echo " checked"; ?>>&nbsp; <b>Enable Static ARP entries</b></td>
+ <td width="78%" class="vtable"><input type="checkbox" value="yes" name="staticarp" id="staticarp" <?php if($pconfig['staticarp']) echo " checked"; ?>>&nbsp; <b>Enable Static ARP entries</b><br>
+<span class="red"><strong>Note:</strong></span> This feature is under development. Only the machines listed below will be able to communicate with the firewall on this NIC. Disabling this has been tested to be broken, a reboot will be required to disable. Be warned!</td>
</tr>
<tr>
<td width="22%" valign="top">&nbsp;</td>
OpenPOWER on IntegriCloud