summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-06-02 20:25:54 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-06-02 20:25:54 +0000
commitdc22c75cedda7f4cc707aef1d51e792c358f5455 (patch)
tree6d24e100a37c00d07a6a2e00c10bb2920749d990 /usr
parent1249b2141ae9dc7dfc1c7164b82f99806950b207 (diff)
downloadpfsense-dc22c75cedda7f4cc707aef1d51e792c358f5455.zip
pfsense-dc22c75cedda7f4cc707aef1d51e792c358f5455.tar.gz
Remove filtering bridge option. It's on by default now Toto.
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/system_advanced.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/usr/local/www/system_advanced.php b/usr/local/www/system_advanced.php
index e95cdfd..41615c9 100755
--- a/usr/local/www/system_advanced.php
+++ b/usr/local/www/system_advanced.php
@@ -37,7 +37,6 @@ require("guiconfig.inc");
$pconfig['disablefilter'] = $config['system']['disablefilter'];
$pconfig['disableftpproxy'] = $config['system']['disableftpproxy'];
$pconfig['rfc959workaround'] = $config['system']['rfc959workaround'];
-$pconfig['filteringbridge_enable'] = isset($config['bridge']['filteringbridge']);
$pconfig['ipv6nat_enable'] = isset($config['diag']['ipv6nat']['enable']);
$pconfig['ipv6nat_ipaddr'] = $config['diag']['ipv6nat']['ipaddr'];
$pconfig['cert'] = base64_decode($config['system']['webgui']['certificate']);
@@ -107,10 +106,6 @@ if ($_POST) {
else
unset($config['system']['rfc959workaround']);
- if($_POST['filteringbridge_enable'] == "yes")
- $config['bridge']['filteringbridge'] = true;
- else
- unset($config['bridge']['filteringbridge']);
if($_POST['ipv6nat_enable'] == "yes") {
$config['diag']['ipv6nat']['enable'] = true;
$config['diag']['ipv6nat']['ipaddr'] = $_POST['ipv6nat_ipaddr'];
@@ -349,29 +344,6 @@ function update_description(itemnum) {
<tr>
<td colspan="2" class="list" height="12"></td>
</tr>
- <tr>
- <td colspan="2" valign="top" class="listtopic">Filtering bridge</td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell">&nbsp;</td>
- <td width="78%" class="vtable">
- <input name="filteringbridge_enable" type="checkbox" id="filteringbridge_enable" value="yes" <?php if ($pconfig['filteringbridge_enable']) echo "checked"; ?>>
- <strong>Enable filtering bridge</strong><span class="vexpl"><br>
- This will cause bridged packets to pass through the packet
- filter in the same way as routed packets do (by default bridged
- packets are always passed). If you enable this option, you'll
- have to add filter rules to selectively permit traffic from
- bridged interfaces.</span></td>
- </tr>
- <tr>
- <td width="22%" valign="top">&nbsp;</td>
- <td width="78%">
- <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
- </td>
- </tr>
- <tr>
- <td colspan="2" class="list" height="12"></td>
- </tr>
<tr>
<td colspan="2" valign="top" class="listtopic">webGUI SSL certificate/key</td>
</tr>
OpenPOWER on IntegriCloud