. 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. */ /* pfSense_MODULE: igmpproxy */ ##|+PRIV ##|*IDENT=page-services-igmpproxy ##|*NAME=Firewall: Igmpproxy: Edit page ##|*DESCR=Allow access to the 'Firewall: Igmpproxy' page. ##|*MATCH=services_igmpproxy_edit.php* ##|-PRIV $pgtitle = array("Firewall","IGMP Proxy", "Edit"); require("guiconfig.inc"); if (!is_array($config['igmpproxy']['igmpentry'])) $config['igmpproxy']['igmpentry'] = array(); //igmpproxy_sort(); $a_igmpproxy = &$config['igmpproxy']['igmpentry']; $id = $_GET['id']; if (isset($_POST['id'])) $id = $_POST['id']; if (isset($id) && $a_igmpproxy[$id]) { $pconfig['ifname'] = $a_igmpproxy[$id]['ifname']; $pconfig['threshold'] = $a_igmpproxy[$id]['threshold']; $pconfig['type'] = $a_igmpproxy[$id]['type']; $pconfig['address'] = $a_igmpproxy[$id]['address']; $pconfig['descr'] = html_entity_decode($a_igmpproxy[$id]['descr']); } if ($_POST) { unset($input_errors); $pconfig = $_POST; if ($_POST['type'] == "upstream") { foreach ($a_igmpproxy as $pid => $proxyentry) { if (isset($id) && $id == $pid) continue; if ($proxyentry['type'] == "upstream" && $proxyentry['ifname'] != $_POST['interface']) $input_errors[] = "Only one 'upstream' interface can be configured."; } } $igmpentry = array(); $igmpentry['ifname'] = $_POST['ifname']; $igmpentry['threshold'] = $_POST['threshold']; $igmpentry['type'] = $_POST['type']; $address = ""; $isfirst = 0; /* item is a normal igmpentry type */ for($x=0; $x<4999; $x++) { if($_POST["address{$x}"] <> "") { if ($isfirst > 0) $address .= " "; $address .= $_POST["address{$x}"]; $address .= "/" . $_POST["address_subnet{$x}"]; $isfirst++; } } if (!$input_errors) { $igmpentry['address'] = $address; $igmpentry['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto"); if (isset($id) && $a_igmpproxy[$id]) $a_igmpproxy[$id] = $igmpentry; else $a_igmpproxy[] = $igmpentry; write_config(); header("Location: services_igmpproxy.php"); exit; } //we received input errors, copy data to prevent retype else { $pconfig['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto"); $pconfig['address'] = $address; $pconfig['type'] = $_POST['type']; } } include("head.inc"); ?> ">
IGMP Proxy Edit
Interface
Description
You may enter a description here for your reference (not parsed).
Type
The upstream network interface is the outgoing interface which is responsible for communicating to available multicast data sources. There can only be one upstream interface.
Downstream network interfaces are the distribution interfaces to the destination networks, where multicast clients can join groups and receive multicast data. One or more downstream interfaces must be configured.
Threshold
Defines the TTL threshold for the network interface. Packets with a lower TTL than the threshols value will be ignored. This setting is optional, and by default the threshold is 1.
Network (s)
"") { $item = explode(" ", $address); foreach($item as $ww) { $address = $item[$counter]; $address_subnet = ""; $item2 = explode("/", $address); foreach($item2 as $current) { if($item2[1] <> "") { $address = $item2[0]; $address_subnet = $item2[1]; } } $item4 = $item3[$counter]; $tracker = $counter; ?>
Network
CIDR