BMX Bicycle freestyle
BMX Bicycle freestyle

Sunday, December 6, 2009

Network Stumbler for linux: Give your Signal Sound

Are you connected to wi-fi network but there is not enough speed so you
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..


related:Ultimate Wireless wlan Signal Booster Antena

0 comments:

Post a Comment