Created
July 31, 2010 02:20
-
-
Save ssokolow/501674 to your computer and use it in GitHub Desktop.
Simple "Get WAN IPv4 Address" script for m0n0wall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/php | |
| <?php | |
| /* | |
| Simple "Get WAN IPv4 Address" script for m0n0wall | |
| Adapted from m0n0wall's status_interfaces.php | |
| See http://blog.ssokolow.com/archives/2010/07/30/a-quick-and-dirty-m0n0wall-get-wan-ip-api/ | |
| Copyright (C) 2003-2007 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"); | |
| function get_interface_info($ifdescr) { | |
| global $config, $g; | |
| $ifaddr6s = array(); | |
| $ifaddr4s = array(); | |
| $ifinfo = array(); | |
| /* find out interface name */ | |
| $ifinfo['hwif'] = $config['interfaces'][$ifdescr]['if']; | |
| if ($ifdescr == "wan") | |
| $ifinfo['if'] = get_real_wan_interface(); | |
| else | |
| $ifinfo['if'] = $ifinfo['hwif']; | |
| /* run netstat to determine link info */ | |
| unset($linkinfo); | |
| exec("/usr/bin/netstat -I " . $ifinfo['hwif'] . " -nWb -f link", $linkinfo); | |
| $linkinfo = preg_split("/\s+/", $linkinfo[1]); | |
| if (preg_match("/\*$/", $linkinfo[0]) || preg_match("/^$/", $linkinfo[0])) { | |
| $ifinfo['status'] = "down"; | |
| } else { | |
| $ifinfo['status'] = "up"; | |
| } | |
| if (!strstr($ifinfo['if'],'tun')) { | |
| $ifinfo['macaddr'] = $linkinfo[3]; | |
| $ifinfo['inpkts'] = $linkinfo[4]; | |
| $ifinfo['inerrs'] = $linkinfo[5]; | |
| $ifinfo['inbytes'] = $linkinfo[6]; | |
| $ifinfo['outpkts'] = $linkinfo[7]; | |
| $ifinfo['outerrs'] = $linkinfo[8]; | |
| $ifinfo['outbytes'] = $linkinfo[9]; | |
| $ifinfo['collisions'] = $linkinfo[10]; | |
| } else { | |
| $ifinfo['inpkts'] = $linkinfo[3]; | |
| $ifinfo['inbytes'] = $linkinfo[5]; | |
| $ifinfo['outpkts'] = $linkinfo[6]; | |
| $ifinfo['outbytes'] = $linkinfo[8]; | |
| } | |
| /* DHCP? -> see if dhclient is up */ | |
| if (($ifdescr == "wan") && ($config['interfaces']['wan']['ipaddr'] == "dhcp")) { | |
| /* see if dhclient is up */ | |
| if ($ifinfo['status'] == "up" && file_exists("{$g['varrun_path']}/dhclient.pid")) | |
| $ifinfo['dhcplink'] = "up"; | |
| else | |
| $ifinfo['dhcplink'] = "down"; | |
| } | |
| /* PPPoE interface? -> get status from virtual interface */ | |
| if (($ifdescr == "wan") && ($config['interfaces']['wan']['ipaddr'] == "pppoe")) { | |
| unset($linkinfo); | |
| exec("/usr/bin/netstat -I " . $ifinfo['if'] . " -nWb -f link", $linkinfo); | |
| $linkinfo = preg_split("/\s+/", $linkinfo[1]); | |
| if (preg_match("/\*$/", $linkinfo[0])) { | |
| $ifinfo['pppoelink'] = "down"; | |
| } else { | |
| /* get PPPoE link status for dial on demand */ | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig " . $ifinfo['if'], $ifconfiginfo); | |
| $ifinfo['pppoelink'] = "up"; | |
| foreach ($ifconfiginfo as $ici) { | |
| if (strpos($ici, 'LINK0') !== false) | |
| $ifinfo['pppoelink'] = "down"; | |
| } | |
| } | |
| } | |
| /* PPTP interface? -> get status from virtual interface */ | |
| if (($ifdescr == "wan") && ($config['interfaces']['wan']['ipaddr'] == "pptp")) { | |
| unset($linkinfo); | |
| exec("/usr/bin/netstat -I " . $ifinfo['if'] . " -nWb -f link", $linkinfo); | |
| $linkinfo = preg_split("/\s+/", $linkinfo[1]); | |
| if (preg_match("/\*$/", $linkinfo[0])) { | |
| $ifinfo['pptplink'] = "down"; | |
| } else { | |
| /* get PPTP link status for dial on demand */ | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig " . $ifinfo['if'], $ifconfiginfo); | |
| $ifinfo['pptplink'] = "up"; | |
| foreach ($ifconfiginfo as $ici) { | |
| if (strpos($ici, 'LINK0') !== false) | |
| $ifinfo['pptplink'] = "down"; | |
| } | |
| } | |
| } | |
| if ($ifinfo['status'] == "up") { | |
| /* try to determine media with ifconfig */ | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig " . $ifinfo['hwif'], $ifconfiginfo); | |
| foreach ($ifconfiginfo as $ici) { | |
| if (!isset($config['interfaces'][$ifdescr]['wireless'])) { | |
| /* don't list media/speed for wireless cards, as it always | |
| displays 2 Mbps even though clients can connect at 11 Mbps */ | |
| if (preg_match("/media: .*? \((.*?)\)/", $ici, $matches)) { | |
| $ifinfo['media'] = $matches[1]; | |
| } else if (preg_match("/media: Ethernet (.*)/", $ici, $matches)) { | |
| $ifinfo['media'] = $matches[1]; | |
| } | |
| } | |
| if (preg_match("/status: (.*)$/", $ici, $matches)) { | |
| if ($matches[1] != "active") | |
| $ifinfo['status'] = $matches[1]; | |
| } | |
| if (preg_match("/channel (\S*)/", $ici, $matches)) { | |
| $ifinfo['channel'] = $matches[1]; | |
| } | |
| if (preg_match("/ssid (\".*?\"|\S*)/", $ici, $matches)) { | |
| if ($matches[1][0] == '"') | |
| $ifinfo['ssid'] = substr($matches[1], 1, -1); | |
| else | |
| $ifinfo['ssid'] = $matches[1]; | |
| } | |
| } | |
| if ($ifinfo['pppoelink'] != "down" && $ifinfo['pptplink'] != "down") { | |
| /* try to determine IP address and netmask with ifconfig */ | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig " . $ifinfo['if'], $ifconfiginfo); | |
| foreach ($ifconfiginfo as $ici) { | |
| if (preg_match("/inet (\S+)/", $ici, $matches)) { | |
| $ifinfo['ipaddr'] = $matches[1]; | |
| } | |
| if (preg_match("/netmask (\S+)/", $ici, $matches)) { | |
| if (preg_match("/^0x/", $matches[1])) | |
| $ifaddr4s[] = $ifinfo['ipaddr'] . "/" . long2ip(hexdec($matches[1])); | |
| } | |
| if (preg_match("/inet6 (\S+) prefixlen (\d+)/", $ici, $matches)) { | |
| $ifaddr6s[] = $matches[1] . "/" . $matches[2]; | |
| } | |
| } | |
| if ($ifdescr == "wan") { | |
| /* run netstat to determine the default gateway */ | |
| unset($netstatrninfo); | |
| exec("/usr/bin/netstat -rnf inet", $netstatrninfo); | |
| foreach ($netstatrninfo as $nsr) { | |
| if (preg_match("/^default\s*(\S+)/", $nsr, $matches)) { | |
| $ifinfo['gateway'] = $matches[1]; | |
| } | |
| } | |
| if (ipv6enabled()) { | |
| unset($netstatrninfo); | |
| exec("/usr/bin/netstat -rnf inet6", $netstatrninfo); | |
| foreach ($netstatrninfo as $nsr) { | |
| if (preg_match("/^default\s*(\S+)/", $nsr, $matches)) { | |
| $ifinfo['gateway6'] = $matches[1]; | |
| } | |
| } | |
| /* 6to4 on WAN? need to run ifconfig on stf0 then */ | |
| if ($config['interfaces']['wan']['ipaddr6'] == "6to4") { | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig stf0", $ifconfiginfo); | |
| foreach ($ifconfiginfo as $ici) { | |
| if (preg_match("/inet6 (\S+) prefixlen (\d+)/", $ici, $matches)) { | |
| $ifaddr6s[] = $matches[1] . "/" . $matches[2]; | |
| } | |
| } | |
| } | |
| /* GRE tunnel on WAN? need to run ifconfig on gif0 then */ | |
| if ($config['interfaces']['wan']['tunnel6'] || ($config['interfaces']['wan']['ipaddr6'] == "aiccu" && !isset($config['interfaces']['wan']['aiccu']['ayiya']) ) ) { | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig gif0", $ifconfiginfo); | |
| foreach ($ifconfiginfo as $ici) { | |
| if (preg_match("/inet6 (\S+) prefixlen (\d+)/", $ici, $matches)) { | |
| $ifaddr6s[] = $matches[1] . "/" . $matches[2]; | |
| } | |
| } | |
| } | |
| if ($config['interfaces']['wan']['ipaddr6'] == "aiccu" && isset($config['interfaces']['wan']['aiccu']['ayiya']) ) { | |
| unset($ifconfiginfo); | |
| exec("/sbin/ifconfig tun0", $ifconfiginfo); | |
| foreach ($ifconfiginfo as $ici) { | |
| if (preg_match("/inet6 (\S+) prefixlen (\d+)/", $ici, $matches)) { | |
| $ifaddr6s[] = $matches[1] . "/" . $matches[2]; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| return array ($ifinfo, $ifaddr6s,$ifaddr4s); | |
| } | |
| list( $ifinfo, $ifaddr6s, $ifaddr4s) = get_interface_info('wan'); | |
| if (!empty($ifaddr4s)) { | |
| $ip_elems = explode('/', $ifaddr4s[0], 2); | |
| echo $ip_elems[0]; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment