would like to adjust position/anntena? this is even better than network
stumbler as is only give sound to desired signal
while(true); do
frequency=`iwconfig wlan0 | grep Link | awk -F"[/,:]" '{print $3}'`; y=100; mul=$(($frequency * $y));
beep -f $mul -n;
done
#OR
#to listen to link quality (signal to noise ratio)
while(true); do frequency=`iwconfig wlan0 | grep Link | awk -F"[/,=]"
'{print $2}'`; y=100; mul=$(($frequency * $y)); beep -f $mul -n; done
this will allow you to hear signal of connected AP only..
0 comments:
Post a Comment