#!/usr/local/bin/php . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ require("guiconfig.inc"); unset($index); if ($_GET['index']) $index = $_GET['index']; else if ($_POST['index']) $index = $_POST['index']; if (!$index) exit; $optcfg = &$config['interfaces']['opt' . $index]; $pconfig['descr'] = $optcfg['descr']; $pconfig['bridge'] = $optcfg['bridge']; $pconfig['ipaddr'] = $optcfg['ipaddr']; $pconfig['subnet'] = $optcfg['subnet']; $pconfig['gateway'] = $optcfg['gateway']; $pconfig['bandwidth'] = $optcfg['bandwidth']; $pconfig['bandwidthtype'] = $optcfg['bandwidthtype']; $pconfig['enable'] = isset($optcfg['enable']); /* Wireless interface? */ if (isset($optcfg['wireless'])) { require("interfaces_wlan.inc"); wireless_config_init(); } if ($_POST) { unset($input_errors); $pconfig = $_POST; /* input validation */ if ($_POST['enable']) { /* description unique? */ for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) { if ($i != $index) { if ($config['interfaces']['opt' . $i]['descr'] == $_POST['descr']) { $input_errors[] = "An interface with the specified description already exists."; } } } if ($_POST['bridge']) { /* double bridging? */ for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) { if ($i != $index) { if ($config['interfaces']['opt' . $i]['bridge'] == $_POST['bridge']) { $input_errors[] = "Optional interface {$i} " . "({$config['interfaces']['opt' . $i]['descr']}) is already bridged to " . "the specified interface."; } else if ($config['interfaces']['opt' . $i]['bridge'] == "opt{$index}") { $input_errors[] = "Optional interface {$i} " . "({$config['interfaces']['opt' . $i]['descr']}) is already bridged to " . "this interface."; } } } if ($config['interfaces'][$_POST['bridge']]['bridge']) { $input_errors[] = "The specified interface is already bridged to " . "another interface."; } /* captive portal on? */ if (isset($config['captiveportal']['enable'])) { $input_errors[] = "Interfaces cannot be bridged while the captive portal is enabled."; } } else { $reqdfields = explode(" ", "descr ipaddr subnet"); $reqdfieldsn = explode(",", "Description,IP address,Subnet bit count"); do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); if (($_POST['ipaddr'] && !is_ipaddr($_POST['ipaddr']))) { $input_errors[] = "A valid IP address must be specified."; } if (($_POST['subnet'] && !is_numeric($_POST['subnet']))) { $input_errors[] = "A valid subnet bit count must be specified."; } } } /* Wireless interface? */ if (isset($optcfg['wireless'])) { $wi_input_errors = wireless_config_post(); if ($wi_input_errors) { $input_errors = array_merge($input_errors, $wi_input_errors); } } if (!$input_errors) { $optcfg['descr'] = $_POST['descr']; $optcfg['ipaddr'] = $_POST['ipaddr']; $optcfg['subnet'] = $_POST['subnet']; $optcfg['bridge'] = $_POST['bridge']; $optcfg['enable'] = $_POST['enable'] ? true : false; $optcfg['bandwidth'] = $_POST['bandwidth']; $optcfg['bandwidthtype'] = $_POST['bandwidthtype']; $optcfg['gateway'] = $_POST['gateway']; write_config(); $retval = 0; if (!file_exists($d_sysrebootreqd_path)) { config_lock(); $retval = interfaces_optional_configure(); /* is this the captive portal interface? */ if (isset($config['captiveportal']['enable']) && ($config['captiveportal']['interface'] == ('opt' . $index))) { captiveportal_configure(); } config_unlock(); } $savemsg = get_std_save_message($retval); } } ?> <?=gentitle("Interfaces: Optional $index (" . htmlspecialchars($optcfg['descr']) . ")");?>

Interfaces: Optional ()

  onClick="enable_change(false)"> Enable Optional interface
Description
Enter a description (name) for the interface here.
IP configuration
Bridge with
IP address /
Gateway
Bandwidth Management (Traffic Shaping)
Interface Bandwidth Speed
The bandwidth setting will define the speed of the interface for traffic shaping.
 
  Note:
be sure to add firewall rules to permit traffic through the interface. Firewall rules for an interface in bridged mode have no effect on packets to hosts other than m0n0wall itself, unless "Enable filtering bridge" is checked on the System: Advanced functions page.

Optional has been disabled because there is no OPT interface.