summaryrefslogtreecommitdiffstats
path: root/usr/local/www/interfaces_wlan_scan.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-08-14 02:29:45 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-08-14 02:29:45 +0000
commit6ba1c65f1d978bfcb7516d51bad83e018fb1da96 (patch)
treebb879699dc96138cd26a4412ac9b3550d421f6ec /usr/local/www/interfaces_wlan_scan.php
parent0e07750c900c6432f21bdc75557e999c4c67a832 (diff)
downloadpfsense-6ba1c65f1d978bfcb7516d51bad83e018fb1da96.zip
pfsense-6ba1c65f1d978bfcb7516d51bad83e018fb1da96.tar.gz
Add wireless canning option
Diffstat (limited to 'usr/local/www/interfaces_wlan_scan.php')
-rwxr-xr-xusr/local/www/interfaces_wlan_scan.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/usr/local/www/interfaces_wlan_scan.php b/usr/local/www/interfaces_wlan_scan.php
new file mode 100755
index 0000000..dcbe91f
--- /dev/null
+++ b/usr/local/www/interfaces_wlan_scan.php
@@ -0,0 +1,54 @@
+#!/usr/local/bin/php
+<?php
+/* $Id$ */
+/*
+ interfaces_wan.php
+ Copyright (C) 2004 Scott Ullrich
+ All rights reserved.
+
+ originally part of m0n0wall (http://m0n0.ch/wall)
+ Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
+ 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");
+
+
+$pgtitle = "Interfaces: Scan Wireless";
+include("head.inc");
+
+?>
+
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<p class="pgtitle"><?=$pgtitle?></p>
+
+$scan_nodes = `/sbin/ifconfig {$_GET['interface']} scan`;
+echo "<PRE>";
+echo $scan_nodes;
+echo "</PRE>";
+
+<?php include("fend.inc"); ?>
+</body>
+</html>
OpenPOWER on IntegriCloud