summaryrefslogtreecommitdiffstats
path: root/usr/local/www/load_balancer_relay_action.php
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2008-08-28 21:21:50 +0000
committerBill Marquette <billm@pfsense.org>2008-08-28 21:21:50 +0000
commit0919224fbd27505f35b94f4dd8a8070ceac153aa (patch)
tree748065cc800cd91a30db55a0b657665dc084d9f5 /usr/local/www/load_balancer_relay_action.php
parent9557628b8ab7dafc01cb28173618d558280f2bb4 (diff)
downloadpfsense-0919224fbd27505f35b94f4dd8a8070ceac153aa.zip
pfsense-0919224fbd27505f35b94f4dd8a8070ceac153aa.tar.gz
Bring in relay options for inbound load balancer
More work pending, this seems to generate proper configs needs much more testing though
Diffstat (limited to 'usr/local/www/load_balancer_relay_action.php')
-rwxr-xr-xusr/local/www/load_balancer_relay_action.php150
1 files changed, 150 insertions, 0 deletions
diff --git a/usr/local/www/load_balancer_relay_action.php b/usr/local/www/load_balancer_relay_action.php
new file mode 100755
index 0000000..55763a3
--- /dev/null
+++ b/usr/local/www/load_balancer_relay_action.php
@@ -0,0 +1,150 @@
+<?php
+/* $Id$ */
+/*
+ load_balancer_protocol.php
+ part of pfSense (http://www.pfsense.com/)
+
+ Copyright (C) 2008 Bill Marquette <bill.marquette@gmail.com>.
+ 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-loadbalancer-relay-action
+##|*NAME=Services: Load Balancer: Relay Actions page
+##|*DESCR=Allow access to the 'Services: Load Balancer: Relay Actions' page.
+##|*MATCH=load_balancer_relay_action.php*
+##|-PRIV
+
+require("guiconfig.inc");
+
+if (!is_array($config['load_balancer']['lbaction'])) {
+ $config['load_balancer']['lbaction'] = array();
+}
+$a_action = &$config['load_balancer']['lbaction'];
+
+
+if ($_POST) {
+
+ $pconfig = $_POST;
+
+ if ($_POST['apply']) {
+ $retval = 0;
+
+ config_lock();
+ $retval |= filter_configure();
+ $retval |= relayd_configure();
+ config_unlock();
+
+ $savemsg = get_std_save_message($retval);
+ unlink_if_exists($d_vsconfdirty_path);
+ }
+}
+
+if ($_GET['act'] == "del") {
+ if ($a_action[$_GET['id']]) {
+ /* make sure no relay protocols reference this entry */
+ if (is_array($config['load_balancer']['lbprotocol'])) {
+ foreach ($config['load_balancer']['lbprotocol'] as $lbp) {
+ foreach($lbp['lbaction'] as $lba) {
+ if ($lba['name'] == $a_action[$_GET['id']]['name']) {
+ $input_errors[] = "This entry cannot be deleted because it is still referenced by at least one relay protocol.";
+ break;
+ }
+ }
+ }
+ }
+
+ if (!$input_errors) {
+ unset($a_action[$_GET['id']]);
+ write_config();
+ touch($d_vsconfdirty_path);
+ header("Location: load_balancer_relay_action.php");
+ exit;
+ }
+ }
+}
+
+/* Index lbpool array for easy hyperlinking */
+/* for ($i = 0; isset($config['load_balancer']['lbprotocol'][$i]); $i++) {
+ for ($o = 0; isset($config['load_balancer']['lbprotocol'][$i]['options'][$o]); o++) {
+ $a_vs[$i]['options'][$o] = "
+ $a_vs[$i]['pool'] = "<a href=\"/load_balancer_pool_edit.php?id={$poodex[$a_vs[$i]['pool']]}\">{$a_vs[$i]['pool']}</a>";
+ if ($a_vs[$i]['sitedown'] != '') {
+ $a_vs[$i]['sitedown'] = "<a href=\"/load_balancer_pool_edit.php?id={$poodex[$a_vs[$i]['sitedown']]}\">{$a_vs[$i]['sitedown']}</a>";
+ } else {
+ $a_vs[$i]['sitedown'] = 'none';
+ }
+}
+*/
+
+$pgtitle = array("Load Balancer","Relay Action");
+include("head.inc");
+
+?>
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<form action="load_balancer_relay_action.php" method="post">
+<?php if ($input_errors) print_input_errors($input_errors); ?>
+<?php if ($savemsg) print_info_box($savemsg); ?>
+<?php if (file_exists($d_vsconfdirty_path)): ?><p>
+<?php print_info_box_np("The load balancer configuration has been changed.<br>You must apply the changes in order for them to take effect.");?><br>
+<?php endif; ?>
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr><td class="tabnavtbl">
+ <?php
+ /* active tabs */
+ $tab_array = array();
+ $tab_array[] = array("Pools", false, "load_balancer_pool.php");
+ $tab_array[] = array("Virtual Servers", false, "load_balancer_virtual_server.php");
+ $tab_array[] = array("Monitors", false, "load_balancer_monitor.php");
+ $tab_array[] = array("Relay Protocols", false, "load_balancer_relay_protocol.php");
+ $tab_array[] = array("Relay Actions", true, "load_balancer_relay_action.php");
+ display_top_tabs($tab_array);
+ ?>
+ </td></tr>
+ <tr>
+ <td>
+ <div id="mainarea">
+<?
+ $t = new MainTable();
+ $t->edit_uri('load_balancer_relay_action_edit.php');
+ $t->my_uri('load_balancer_relay_action.php');
+ $t->add_column('Name','name',20);
+ $t->add_column('Type','type',10);
+ $t->add_column('Options','options',30);
+ $t->add_column('Description','desc',30);
+ $t->add_button('edit');
+ $t->add_button('dup');
+ $t->add_button('del');
+ $t->add_content_array($a_action);
+ $t->display();
+?>
+ </div>
+ </td>
+ </tr>
+</table>
+</form>
+<?php include("fend.inc"); ?>
+</body>
+</html>
OpenPOWER on IntegriCloud