From ce9abebd780ccd64cb548837a799279826900525 Mon Sep 17 00:00:00 2001 From: Ermal Luci Date: Wed, 28 Jan 2009 18:16:16 +0000 Subject: Forgotten part! --- usr/local/www/services_igmpproxy.php | 170 +++++++++++++++++ usr/local/www/services_igmpproxy_edit.php | 291 ++++++++++++++++++++++++++++++ 2 files changed, 461 insertions(+) create mode 100755 usr/local/www/services_igmpproxy.php create mode 100755 usr/local/www/services_igmpproxy_edit.php (limited to 'usr/local') diff --git a/usr/local/www/services_igmpproxy.php b/usr/local/www/services_igmpproxy.php new file mode 100755 index 0000000..30ee290 --- /dev/null +++ b/usr/local/www/services_igmpproxy.php @@ -0,0 +1,170 @@ +. + 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. +*/ + +##|+PRIV +##|*IDENT=page-services-igmpproxy +##|*NAME=Services: Igmpproxy page +##|*DESCR=Allow access to the 'Services: Igmpproxy' page. +##|*MATCH=services_igmpproxy.php* +##|-PRIV + + +require("guiconfig.inc"); + +if (!is_array($config['igmpproxy']['igmpentry'])) + $config['igmpproxy']['igmpentry'] = array(); + +//igmpproxy_sort(); +$a_igmpproxy = &$config['igmpproxy']['igmpentry']; + +if ($_POST) { + + $pconfig = $_POST; + + $retval = 0; + + config_lock(); + /* reload all components that use igmpproxy */ + $retval = services_igmpproxy_configure(); + config_unlock(); + + if(stristr($retval, "error") <> true) + $savemsg = get_std_save_message($retval); + else + $savemsg = $retval; +} + +if ($_GET['act'] == "del") { + if ($a_igmpproxy[$_GET['id']]) { + unset($a_igmpproxy[$_GET['id']]); + write_config(); + touch($d_igmpproxydirty_path); + header("Location: services_igmpproxy.php"); + exit; + } +} + +$pgtitle = array("Services","Igmpproxy"); +include("head.inc"); + +?> + + + +
+ +

+You must apply the changes in order for them to take effect.");?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeValuesDescription + + + + + +
 
+
+ + + + + + +   + + + + + + +
+
+ + + + + + + +
  + + " alt="" /> + +
+
+
+ +
+
+

Note:
Please add the interfaces for upstream, and the allowed subnets, and the downstream interfaces you would like the proxy to allow. Only one 'upstream' interface is allowed to be configured.

+
+

+ + + diff --git a/usr/local/www/services_igmpproxy_edit.php b/usr/local/www/services_igmpproxy_edit.php new file mode 100755 index 0000000..8bd4658 --- /dev/null +++ b/usr/local/www/services_igmpproxy_edit.php @@ -0,0 +1,291 @@ +. + 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. +*/ + +##|+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","Igmpproxy", "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 $proxyentry) + 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"); + +?> + +"> + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Igmpproxy 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 availible 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 con- + figured. + +
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
+ + + + + +
+ + + +
  + + + + + +
+
+ + + + + + -- cgit v1.1