summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_gateway_groups.php
diff options
context:
space:
mode:
authorSeth Mos <seth.mos@xs4all.nl>2008-06-30 09:26:01 +0000
committerSeth Mos <seth.mos@xs4all.nl>2008-06-30 09:26:01 +0000
commit719769d65395480fe7118aea516be6f09492498e (patch)
tree6d2521dcc8d8f0985fea16c4dfa46108dfa0aeb9 /usr/local/www/status_gateway_groups.php
parent59de818ef75ff9f0c454b1d3a0be3b5791087c67 (diff)
downloadpfsense-719769d65395480fe7118aea516be6f09492498e.zip
pfsense-719769d65395480fe7118aea516be6f09492498e.tar.gz
Add status gateway groups page.
Diffstat (limited to 'usr/local/www/status_gateway_groups.php')
-rwxr-xr-xusr/local/www/status_gateway_groups.php201
1 files changed, 201 insertions, 0 deletions
diff --git a/usr/local/www/status_gateway_groups.php b/usr/local/www/status_gateway_groups.php
new file mode 100755
index 0000000..f947288
--- /dev/null
+++ b/usr/local/www/status_gateway_groups.php
@@ -0,0 +1,201 @@
+<?php
+/* $Id$ */
+/*
+ status_gateway_groups.php
+ part of pfSense (http://pfsense.com)
+
+ Copyright (C) 2007 Seth Mos <seth.mos@xs4all.nl>.
+ 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");
+
+if (!is_array($config['gateways']['gateway_group']))
+ $config['gateways']['gateway_group'] = array();
+
+if (!is_array($config['gateways']['gateway_item']))
+ $config['gateways']['gateway_item'] = array();
+
+$a_gateway_groups = &$config['gateways']['gateway_group'];
+$a_gateways = &$config['gateways']['gateway_item'];
+$changedesc = "Gateway Groups: ";
+
+$gateways_status = array();
+$gateways_status = return_gateways_status();
+
+if ($_POST) {
+
+ $pconfig = $_POST;
+
+ if ($_POST['apply']) {
+
+ $retval = 0;
+
+ $retval = system_routing_configure();
+ $retval |= filter_configure();
+
+ $savemsg = get_std_save_message($retval);
+ if ($retval == 0) {
+ if (file_exists($d_staticroutesdirty_path)) {
+ config_lock();
+ unlink($d_staticroutesdirty_path);
+ config_unlock();
+ }
+ }
+ }
+}
+
+if ($_GET['act'] == "del") {
+ if ($a_gateway_groups[$_GET['id']]) {
+ $changedesc .= "removed gateway group {$_GET['id']}";
+ unset($a_gateway_groups[$_GET['id']]);
+ write_config($changedesc);
+ touch($d_staticroutesdirty_path);
+ header("Location: system_gateway_groups.php");
+ exit;
+ }
+}
+
+$pgtitle = array("System","Gateway Groups");
+include("head.inc");
+
+?>
+
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<form action="system_gateway_groups.php" method="post">
+<input type="hidden" name="y1" value="1">
+<?php if ($savemsg) print_info_box($savemsg); ?>
+<?php if (file_exists($d_staticroutesdirty_path)): ?><p>
+<?php print_info_box_np("The gateway 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>
+<?php
+ $tab_array = array();
+ $tab_array[0] = array("Gateways", false, "status_gateways.php");
+ $tab_array[1] = array("Groups", true, "status_gateway_groups.php");
+ display_top_tabs($tab_array);
+?>
+</td></tr>
+ <tr>
+ <td>
+ <div id="mainarea">
+ <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="20%" class="listhdrr">Group Name</td>
+ <td width="50%" class="listhdrr">Gateways</td>
+ <td width="30%" class="listhdr">Description</td>
+ </tr>
+ <?php $i = 0; foreach ($a_gateway_groups as $gateway_group): ?>
+ <tr>
+ <td class="listlr">
+ <?php
+ echo $gateway_group['name'];
+ ?>
+
+ </td>
+ <td class="listr">
+ <table border='0'>
+ <?php
+ /* process which priorities we have */
+ $priorities = array();
+ foreach($gateway_group['item'] as $item) {
+ $itemsplit = explode("|", $item);
+ $priorities[$itemsplit[1]] = true;
+ }
+ $priority_count = count($priorities);
+
+ echo "<tr>";
+ foreach($priorities as $number => $tier) {
+ echo "<td width='120'>Tier $number</td>";
+ }
+ echo "</tr>\n";
+
+ /* inverse gateway group to gateway priority */
+ $priority_arr = array();
+ foreach($gateway_group['item'] as $item) {
+ $itemsplit = explode("|", $item);
+ $priority_arr[$itemsplit[1]][] = $itemsplit[0];
+ }
+
+ // echo print_r($priority_arr, true);
+ $p = 1;
+ foreach($priority_arr as $number => $tier) {
+ /* for each priority process the gateways */
+ foreach($tier as $member) {
+ /* we always have $priority_count fields */
+ echo "<tr>";
+ $c = 1;
+ while($c <= $priority_count) {
+ if($p == $c) {
+ $monitor = lookup_gateway_monitor_ip_by_name($member);
+ switch($gateways_status[$monitor]['status']) {
+ case "None":
+ $online = "Online";
+ $bgcolor = "lightgreen";
+ break;
+ case "\"down\"":
+ $online = "Offline";
+ $bgcolor = "lightcoral";
+ break;
+ case "\"delay\"":
+ $online = "Warning, Latency";
+ $bgcolor = "khaki";
+ break;
+ case "\"loss\"":
+ $online = "Warning, Packetloss";
+ $bgcolor = "khaki";
+ break;
+ }
+ echo "<td bgcolor='$bgcolor'>". htmlspecialchars($member) ."</td>";
+ } else {
+ echo "<td>&nbsp;</td>";
+ }
+ $c++;
+ }
+ echo "</tr>\n";
+ }
+ $p++;
+ }
+ ?>
+ </table>
+ </td>
+ <td class="listbg">
+ <font color="#FFFFFF"><?=htmlspecialchars($gateway_group['descr']);?>&nbsp;
+ </td>
+ </tr>
+ <?php $i++; endforeach; ?>
+
+ </table>
+ </div>
+ </td>
+ </tr>
+</table>
+</form>
+<?php include("fend.inc"); ?>
+</body>
+</html>
OpenPOWER on IntegriCloud