summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_gateways.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-08-25 08:08:24 -0300
committerRenato Botelho <renato@netgate.com>2015-08-25 14:49:54 -0300
commit46bc6e545a17e77202aaf01ec0cd8d5a46567525 (patch)
tree32d18dda436ec739c67c489ceb771e8629cd926f /usr/local/www/status_gateways.php
parent4d9801c2dbd2b3e54a39578ee62b93af66607227 (diff)
downloadpfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.zip
pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.tar.gz
Move main pfSense content to src/
Diffstat (limited to 'usr/local/www/status_gateways.php')
-rw-r--r--usr/local/www/status_gateways.php169
1 files changed, 0 insertions, 169 deletions
diff --git a/usr/local/www/status_gateways.php b/usr/local/www/status_gateways.php
deleted file mode 100644
index e6fcf9d..0000000
--- a/usr/local/www/status_gateways.php
+++ /dev/null
@@ -1,169 +0,0 @@
-<?php
-/* $Id$ */
-/*
- status_gateways.php
- part of pfSense (https://www.pfsense.org/)
-
- Copyright (C) 2010 Seth Mos <seth.mos@dds.nl>.
- Copyright (C) 2013-2015 Electric Sheep Fencing, LP
- 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: routing
-*/
-
-##|+PRIV
-##|*IDENT=page-status-gateways
-##|*NAME=Status: Gateways page
-##|*DESCR=Allow access to the 'Status: Gateways' page.
-##|*MATCH=status_gateways.php*
-##|-PRIV
-
-require("guiconfig.inc");
-
-$a_gateways = return_gateways_array();
-$gateways_status = array();
-$gateways_status = return_gateways_status(true);
-
-$now = time();
-$year = date("Y");
-
-$pgtitle = array(gettext("Status"), gettext("Gateways"));
-$shortcut_section = "gateways";
-include("head.inc");
-
-?>
-<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
-<?php include("fbegin.inc"); ?>
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr><td class="tabnavtbl">
- <?php
- /* active tabs */
- $tab_array = array();
- $tab_array[] = array(gettext("Gateways"), true, "status_gateways.php");
- $tab_array[] = array(gettext("Gateway Groups"), false, "status_gateway_groups.php");
- display_top_tabs($tab_array);
- ?>
- </td></tr>
- <tr>
- <td>
- <div id="mainarea">
- <table class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="10%" class="listhdrr"><?=gettext("Name"); ?></td>
- <td width="10%" class="listhdrr"><?=gettext("Gateway"); ?></td>
- <td width="10%" class="listhdrr"><?=gettext("Monitor"); ?></td>
- <td width="8%" class="listhdrr"><?=gettext("RTT"); ?></td>
- <td width="7%" class="listhdrr"><?=gettext("Loss"); ?></td>
- <td width="35%" class="listhdrr"><?=gettext("Status"); ?></td>
- <td width="20%" class="listhdr"><?=gettext("Description"); ?></td>
- </tr>
-<?php
- foreach ($a_gateways as $gname => $gateway) {
-?>
- <tr>
- <td class="listlr">
- <?=$gateway['name'];?>
- </td>
- <td class="listr" align="center" >
- <?php echo lookup_gateway_ip_by_name($gname);?>
- </td>
- <td class="listr" align="center" >
- <?php
- if ($gateways_status[$gname]) {
- echo $gateways_status[$gname]['monitorip'];
- } else {
- echo $gateway['monitorip'];
- }
- ?>
- </td>
- <td class="listr" align="center">
- <?php
- if ($gateways_status[$gname]) {
- echo $gateways_status[$gname]['delay'];
- } else {
- echo gettext("Pending");
- }
- ?>
- </td>
- <td class="listr" align="center">
- <?php
- if ($gateways_status[$gname]) {
- echo $gateways_status[$gname]['loss'];
- } else {
- echo gettext("Pending");
- }
- ?>
- </td>
- <td class="listr" >
- <table border="0" cellpadding="0" cellspacing="2">
- <?php
- if ($gateways_status[$gname]) {
- $status = $gateways_status[$gname];
- if (stristr($status['status'], "force_down")) {
- $online = gettext("Offline (forced)");
- $bgcolor = "#F08080"; // lightcoral
- } elseif (stristr($status['status'], "down")) {
- $online = gettext("Offline");
- $bgcolor = "#F08080"; // lightcoral
- } elseif (stristr($status['status'], "loss")) {
- $online = gettext("Warning, Packetloss").': '.$status['loss'];
- $bgcolor = "#F0E68C"; // khaki
- } elseif (stristr($status['status'], "delay")) {
- $online = gettext("Warning, Latency").': '.$status['delay'];
- $bgcolor = "#F0E68C"; // khaki
- } elseif ($status['status'] == "none") {
- $online = gettext("Online");
- $bgcolor = "#90EE90"; // lightgreen
- }
- } else if (isset($gateway['monitor_disable'])) {
- $online = gettext("Online");
- $bgcolor = "#90EE90"; // lightgreen
- } else {
- $online = gettext("Pending");
- $bgcolor = "#D3D3D3"; // lightgray
- }
- echo "<tr><td><table width='100%'><tr><td bgcolor=\"$bgcolor\">&nbsp;$online&nbsp;</td></tr><tr><td>";
- $lastchange = $gateways_status[$gname]['lastcheck'];
- if (!empty($lastchange)) {
- echo gettext("Last check:") . '<br />' . $lastchange;
- }
- echo "</td></tr></table></td></tr>";
- ?>
- </table>
- </td>
- <td class="listbg"> <?=$gateway['descr']; ?></td>
- </tr>
-<?php
- } // foreach gateway
-?>
- </table>
- </div>
- </td>
- </tr>
-</table>
-
-<?php include("fend.inc"); ?>
-</body>
-</html>
OpenPOWER on IntegriCloud