diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-08-19 23:50:05 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-08-19 23:50:29 -0400 |
commit | a7fcf2517a98ab8750e15df55fe74152c9fcc7e5 (patch) | |
tree | 3a8ee8dcf194b850a79f624f2b4beef58c8d084e | |
parent | 74acf8065ba17aa94515e8c6e14a6499f25366a8 (diff) | |
download | pfsense-a7fcf2517a98ab8750e15df55fe74152c9fcc7e5.zip pfsense-a7fcf2517a98ab8750e15df55fe74152c9fcc7e5.tar.gz |
Add Show Bogons command.
-rw-r--r-- | usr/local/www/diag_showbogons.php | 79 | ||||
-rwxr-xr-x | usr/local/www/fbegin.inc | 1 |
2 files changed, 80 insertions, 0 deletions
diff --git a/usr/local/www/diag_showbogons.php b/usr/local/www/diag_showbogons.php new file mode 100644 index 0000000..522972b --- /dev/null +++ b/usr/local/www/diag_showbogons.php @@ -0,0 +1,79 @@ +<?php +/* $Id$ */ +/* + diag_showbogons.php + Copyright (C) 2009 Scott Ullrich + 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-diag-showbogons +##|*NAME=Diagnostics: System Activity +##|*DESCR=Allows access to the 'Diagnostics: Show Bogons' page +##|*MATCH=diag_showbogons.php +##|-PRIV + +require("guiconfig.inc"); + +$bogons = `cat /etc/bogons`; + +$pgtitle = "Diagnostics: Show Bogons"; + +include("head.inc"); + +include("fbegin.inc"); +?> +<body link="#0000CC" vlink="#0000CC" alink="#0000CC"> +<style type="text/css"> +body { font-family: Verdana; font-size: 100%; } +pre { font-size: 1.15em; } +</style> +<table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tr> + <td> + <table id="backuptable" class="tabcont" align="left" width="100%" border="0" cellpadding="6" cellspacing="0"> + <tr> + <td> + <table> + <tr> + <td> +<b>Currently loaded bogons table:</b><p/> +<pre> + +<?php echo $bogons; ?> +</pre> + </td> + </tr> + </table> + </td> + </tr> + </table> + </div> + </td> + </tr> +</table> +</form> +<?php include("fend.inc"); ?> +</body> +</html> diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 51eeb73..05a0e48 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -269,6 +269,7 @@ if ($_REQUEST['noticeaction'] == 'acknowledge') { output_menu_item("/diag_system_pftop.php", "pfTOP"); output_menu_item("/reboot.php", "Reboot"); output_menu_item("/diag_routes.php", "Routes"); + output_menu_item("/diag_showbogons.php", "Show Bogons"); output_menu_item("/diag_dump_states.php", "States"); output_menu_item("/diag_system_activity.php", "System Activity"); output_menu_item("/diag_traceroute.php", "Traceroute"); |