crisidoani
New Around Here
Hello!! it´s the first time that write here, and i´m sorry for my english 
I want change my actual neutral router Linksys wrt54gl for the asus rt n66u
I have configured all like the old one but i have one thing that i don´t know how do it
I have one script that execute every 15 minutes to check if any dispositive is conected to the wireless router and if there isn´t anything switch off the wifi
I want do the same in Asus but i don´t know how modify this script, in asus router have to wifi 2,4 and 5 ..... i don´t know, someone can help me??
Thank you
#!/bin/sh
wlclients=`wl assoclist | wc -l`
if [ $wlclients -lt 1 ]
then
/sbin/radio off
fi

I want change my actual neutral router Linksys wrt54gl for the asus rt n66u
I have configured all like the old one but i have one thing that i don´t know how do it
I have one script that execute every 15 minutes to check if any dispositive is conected to the wireless router and if there isn´t anything switch off the wifi
I want do the same in Asus but i don´t know how modify this script, in asus router have to wifi 2,4 and 5 ..... i don´t know, someone can help me??
Thank you
#!/bin/sh
wlclients=`wl assoclist | wc -l`
if [ $wlclients -lt 1 ]
then
/sbin/radio off
fi