jablonka.czprosek.czf

wifimon

Subversion Repositories:
[/] [trunk/] [wifimon] - Blame information for rev 8

 

Line No. Rev Author Line
12simandl#!/bin/bash
23simandl# authors : Petr Simandl www.simandl.cz
37simandl# : Fyzik
48simandl# release date : 9/3/2003
52simandl# name : wifimon
68simandl# version : 0.4beta3
72simandl# description : hostap powered wifi card monitoring
8# license : GPL
9 
107simandlwl_iwccmd="/usr/local/sbin/iwconfig"
11wl_ifccmd="/sbin/ifconfig"
12wl_hnmcmd="/bin/hostname"
132simandlwl_hostap="/proc/net/hostap/"
14wl_wireless="/proc/net/wireless"
153simandlwl_arp="/proc/net/arp"
162simandl 
174simandlwlc_red=`tput setaf 1`
18wlc_green=`tput setaf 2`
19wlc_brown=`tput setaf 3`
20wlc_blue=`tput setaf 4`
21wlc_magenta=`tput setaf 5`
22wlc_lblue=`tput setaf 6`
23wlc_grey=`tput setaf 7`
24wlc_std=`tput sgr0`
25 
26wlc_ip=$wlc_lblue # ip address color
27wlc_mac=$wlc_magenta # mac address color
28wlc_sig=$wlc_red # signal number color
29wlc_bar=$wlc_green # signal bar color
307simandl 
31wl_webpage="/tmp/wifimon.htm"
32wl_header="<html><head><meta HTTP-EQUIV=\"Refresh\" CONTENT=\"3\"><title>Wifimon @ `$wl_hnmcmd`</title></head><body BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"><pre>"
33wl_header_static="<html><head><title>Wifimon @ `$wl_hnmcmd`</title></head><body BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"><pre>"
34wl_footer="</pre></body></html>"
35 
36wlm_no_managed_or_master=" neni ani Master ani Managed..."
37wlm_number_of_clients="Pocet asociovanych klientu : "
38wlm_unknown="Nezname parametry nebo neplatne jmeno rozhrani : "
39#wlm_no_managed_or_master=" is not Master or Managed..."
40#wlm_number_of_clients="Number of associated clients : "
41 
422simandl######################################################################
434simandlw_bw()
44{
456simandl wlc_ip=""
46 wlc_mac=""
47 wlc_sig=""
48 wlc_bar=""
49 wlc_std=""
504simandl}
51######################################################################
522simandlw_bar()
53{
544simandl echo -n "${wlc_bar}"
552simandl until [ "$wl_cnt" -eq -1 ]
56 do
577simandl printf "="
582simandl wl_cnt=$(($wl_cnt - 1 ))
59 done
60 printf " \n"
616simandl echo -n "${wlc_std}"
62# tput sgr0
632simandl} # w_bar
64 
65######################################################################
66w_managed()
677simandl{ echo $wl_iwctxt | awk '{print $1,$3,$4,$5" "}'
68 echo -n `$wl_ifccmd $wl_iface | grep -E "inet addr|inet adr" | awk '{print $2" "}' | sed s/ad*r://g`" " # IP adresa mastera z ifconfig
69 echo $wl_iwctxt | awk '{print $9,$6,$11" "}'
70 #echo $wl_iwctxt | awk '{print $27,$28,$29,$31,$32" "}'
71 #cat $wl_wireless | grep $wl_iface
72 wl_wtxt=`cat $wl_wireless | grep $wl_iface | awk '{print $3,$4,$5}' | sed 's/\.//g'`
73 wl_quality=`echo $wl_wtxt | awk '{print $1}'`
74 wl_signal=`echo $wl_wtxt | awk '{print $2}'`
752simandl wl_signal=$(($wl_signal - 256))
767simandl wl_noise=`echo $wl_wtxt | awk '{print $3}'`
772simandl wl_noise=$(($wl_noise - 256))
785simandl echo "Quality:${wlc_sig}$wl_quality${wlc_std}/92 Signal level:$wl_signal Noise level:$wl_noise "
792simandl wl_cnt=$wl_quality
80 w_bar
817simandl #wl_cnt=$(($wl_cnt + 100))
82 #w_bar
832simandl echo
84} # w_managed
85 
86######################################################################
87w_master()
885simandl{ if [ $wcm_oneline -eq 0 ]
89 then
907simandl echo $wl_iwctxt | awk '{print $1,$3,$4,$5" "}'
91 echo $wl_iwctxt | awk '{print $6,$9,$11" "}'
925simandl else
937simandl echo $wl_iwctxt | awk '{print $1,$4,$5,$6,$11" "}' | sed 's/ [^": ]*:/ /g'
945simandl fi
952simandl 
96 wl_numcl=`ls $wl_hostap$wl_iface | grep -c 00`
97 echo $wlm_number_of_clients $wl_numcl
985simandl wl_numcllast=$(($wl_numcllast + $wl_numcl))
993simandl for wl_mac in `ls $wl_hostap$wl_iface | grep 00 `
1002simandl do
1017simandl wl_macparam=`cat $wl_hostap$wl_iface/$wl_mac | grep -E 'last_rx|last_tx'`
102 wl_cnt=`echo $wl_macparam | awk '{print $5}' | sed 's/signal=//g'`
1038simandl wl_ipc=`cat $wl_arp | grep -i $wl_mac | awk '{print $1}'` # IP adresa peeru z arp tabulky
104 wl_name=`cat /etc/dhcpd.conf | grep -i $wl_mac | awk '{print $2}'`
1055simandl if [ $wcm_oneline -eq 0 ]
106 then
1078simandl echo -n "$wl_name "
1085simandl echo -n "${wlc_ip}$wl_ipc${wlc_std} "
1098simandl echo -n "${wlc_mac}$wl_mac${wlc_std} Signal ${wlc_sig}$wl_cnt${wlc_std} "
1107simandl echo $wl_macparam | awk '{print $1,$2" "}'
1115simandl w_bar
112 else
1138simandl echo -n "$wl_name "
1147simandl #echo -n "${wlc_ip}$wl_ipc${wlc_std} "
1158simandl echo -n "${wlc_mac}$wl_mac${wlc_std} ${wlc_sig}$wl_cnt${wlc_std} "
1167simandl #echo -n $wl_macparam | awk '{print $1,$2" "}'
1175simandl w_bar
118 fi
1194simandl done
1202simandl 
121 echo
122} # w_master
123 
124######################################################################
125w_iface()
1267simandl{ wl_iwctxt=`$wl_iwccmd $wl_iface | grep -v 'Device|Some|Extension' | sed 's/ Nick/_Nick/g'`
127 wl_mode=`echo $wl_iwctxt | awk '{print $5}' | sed 's/Mode://g'`
1282simandl if [ "a$wl_mode" = "aManaged" ]
129 then
130 w_managed
1318simandl elif [ "a$wl_mode" = "aAd-Hoc" ]
132 then
133 w_managed
1342simandl elif [ "a$wl_mode" = "aMaster" ]
135 then
136 w_master
137 else
138 echo $wl_iface $wlm_no_managed_or_master
139 echo
140 fi
141}
142 
143######################################################################
1445simandlw_help()
145{
1463simandl echo Pouziti: wifimon [param]
147 echo param:
1485simandl echo -html generovani html stranky
1497simandl echo -col barevny cyklicky vypis na obrazovku
1505simandl echo -once vypsani jen jednoho vypisu a pak program skonci
151 echo -oneline vypsani klientu na jednu linku
152 echo -wlan0 -wlan1 -wlan2 vypise jen uvedene karty a to v danem poctu a poradi
1533simandl echo bez parametru cyklicky vypis na obrazovku
1545simandl exit 0
155}
156######################################################################
157######################################################################
1582simandl 
1595simandlwl_unknown=""
160wl_cnt=1
161wcm_clear=1
162wcm_once=0
163wcm_col=0
164wcm_oneline=0
165wcm_html=0
166wcm_ifc=""
167 
1686simandl# parsing input parameters
1695simandlwhile [ "a$1" != "a" ]
170do
171 case $1 in
172 -help)
173 w_help
174 ;;
175 -once)
176 wcm_once=1
177 shift
178 ;;
179 -oneline)
180 wcm_oneline=1
181 shift
182 ;;
183 -col)
184 wcm_col=1
185 shift
186 ;;
187 -html)
188 wcm_html=1
189 shift
190 ;;
191 *)
192 wl_flg=0
193 for wl_iface in `ls $wl_hostap`
194 do
195 if [ "a-$wl_iface" = "a$1" ]
196 then
197 wcm_ifc="$wcm_ifc $wl_iface"
198 wl_flg=1
199 fi
200 done
201 if [ $wl_flg -eq 0 ]
202 then
203 wl_unknown="$wl_unknown$1 "
204 fi
205 shift
206 esac
207done
208 
2096simandl# printing the list of bad parameters (if there are some)
2105simandlif [ "a$wl_unknown" != "a" ]
211then
212 echo "$wlm_unknown $wl_unknown"
213 w_help
214fi
215 
2166simandl# if no interface is selected then all available are choosen
2175simandlif [ "a$wcm_ifc" = "a" ]
218then
219 wcm_ifc=`ls $wl_hostap`
220fi
221 
2226simandl# setting for old and last same value to avoid double clear after start
223wl_numcllast=0
224wl_numclold=0
225for wl_iface in $wcm_ifc
226do
227 wl_numcl=`ls $wl_hostap$wl_iface | grep -c 00`
228 wl_numcllast=$(($wl_numcllast + $wl_numcl))
229done
230wl_numclold=$wl_numcllast
231 
232if [ $wcm_col -eq 0 ]
233then
234 w_bw
235fi
236 
237while [ 1 ]
2385simandl do
239 if [ $wl_numcllast -ne $wl_numclold ]
240 then
241 wl_numclold=$wl_numcllast
242 wcm_clear=1
243 fi
2447simandl if [ $wcm_clear -eq 1 ]
2455simandl then
2467simandl clear
2475simandl wcm_clear=0
248 fi
249 wl_numcllast=0
2507simandl if [ $wcm_html -eq 1 ]
2515simandl then
2527simandl w_bw
253 echo $wl_header
254 for wl_iface in $wcm_ifc
255 do
256 w_iface
257 done
258 echo $wl_footer
259 else
260 tput cup 0 0
261 for wl_iface in $wcm_ifc
262 do
263 w_iface
264 done
2655simandl fi
266 
267 if [ $wcm_once -eq 1 ]
268 then
269 exit 0
270 fi
271 sleep 1
2726simandldone
2735simandl 
274exit 0
275 

Powered by WebSVN 2.2.1