2011-03-25 18:45:13 +00:00
|
|
|
|
|
|
|
INFO
|
|
|
|
|
|
|
|
name : wmifinfo
|
|
|
|
author : Ico Doornekamp
|
|
|
|
email : wmifinfo@zevv.nl
|
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
|
|
|
wmifinfo is a simple applet showing basic network info for all available
|
|
|
|
interfaces. It shows IP address, netmask, gateway and MAC address. A bit
|
2014-10-05 15:29:59 +00:00
|
|
|
like ifconfig.
|
2011-03-25 18:45:13 +00:00
|
|
|
|
|
|
|
Runs on Linux and OpenBSD (for now)
|
|
|
|
|
|
|
|
Left-button click moves to the next interface, right-button click calls
|
2014-10-05 15:29:59 +00:00
|
|
|
ifup/ifdown scripts. These can be set with the -u and -d options. The
|
2011-03-25 18:45:13 +00:00
|
|
|
'%s' variable is replaced with the interface name.
|
|
|
|
|
2014-10-05 15:29:59 +00:00
|
|
|
example :
|
2011-03-25 18:45:13 +00:00
|
|
|
|
|
|
|
$ wmifinfo -i ppp0 -u "/sbin/ifup %s" -d "/sbin/ifdown %s"
|
|
|
|
|
|
|
|
(ifup/ifdown or the wmifinfo binaries should be suid root for this
|
|
|
|
to work)
|
|
|
|
|
|
|
|
Led color Meaning
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
red interface is down
|
|
|
|
yellow ifup/ifdown script is busy
|
|
|
|
dark green interface is up, no traffic
|
|
|
|
light green interface is up, and sending or receiving
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSTALLING
|
|
|
|
|
2014-07-29 03:51:00 +00:00
|
|
|
- If you have a NoWiresNeeded 1148 or Swallow NIC, set ENABLE_NWN_SUPPORT
|
2011-03-25 18:45:13 +00:00
|
|
|
to 'y' in the makefile to enable wlan signal indication for this type of
|
|
|
|
network adapter.
|
|
|
|
|
|
|
|
- make
|
|
|
|
|
|
|
|
- make install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
|
|
|
|
usage: wmifinfo [-lh] [-i interface]
|
|
|
|
-d <cmd> Command to exec for iface-down
|
|
|
|
-i <interface> Start with given interface, if available
|
|
|
|
-l LCD display mode
|
|
|
|
-h Print this help
|
|
|
|
-u <cmd> Command to exec for iface-up
|
|
|
|
-v Show version info and exit
|
|
|
|
|
|
|
|
|
|
|
|
KNOWN BUGS
|
|
|
|
|
|
|
|
- The link quality readout of the poldhu/swallow cards is slow and may be
|
|
|
|
unreliable, due to the way this is implemented in the firmware and
|
|
|
|
driver. (Bas?)
|
|
|
|
|
|
|
|
|
|
|
|
THANKS
|
|
|
|
|
|
|
|
- Peter Stromberg for adding OpenBSD support
|
|
|
|
- Ben Stern for endian-correctness and old-libc support patches
|
|
|
|
- Michael G. Henderson's wmWeather for some example dockapp code.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
COPYRIGHT
|
|
|
|
|
2014-07-29 03:51:00 +00:00
|
|
|
Copyright (c) 2004 Ico Doornekamp <ico@pruts.nl>
|
2011-03-25 18:45:13 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
2014-08-06 06:15:02 +00:00
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2014-07-29 03:50:59 +00:00
|
|
|
|
2011-03-25 18:45:13 +00:00
|
|
|
|