What's new

Wireless crawled, then couldn't access UI on RT-N66U w/ .40

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

binarydad

Regular Contributor
Not sure what happened, but I decided to update all 6 of my windows 8.1 machines at once :D, so there was a bit of network traffic and a few machines rebooting. All of a sudden, wifi came to a crawl, then picked back up, then noticed I couldn't get to the UI - it just hung as it tried to connect. LAN speed was fine. Wireless wasn't at max capacity. It's almost as it I crippled it.

A reboot fixed it. I never noticed this before. Has this happened to anyone else?
 
Probably overloaded. Have you saved or looked at the routers log?
 
No. The only log I'm aware of was cleared when I did a restart. I'm not familiar with other forms of logging to a file on this thing.
 
In /tmp/ you'll find syslog.log as the current log.
There may also be a syslog.log-1 file. This is the older syslog.log file saved automatically.
 
Sorry, syslog.log-1 does not survive a reboot. My bad for not checking before posting.
 
You could save the logs to /tmp/mnt/sda1/tmp by adding a script (old files are deleted after 2 days):
/jffs/scripts/copylog.sh
Code:
#!/bin/sh
logfiles=`ls -1 /tmp/*.log*` # find log files in tmp
for xx in $logfiles
do
    name=`echo $xx|cut -d. -f1,2`
    datetime=`date '+%Y%m%d%H%M'`
    cp $xx /tmp/mnt/sda1/$name.$datetime.log
    find /tmp/mnt/sda1/tmp -mtime +2 -type f -delete # delete files older than 2 days
done
And make it executable
Code:
chmod a+rx /jffs/scripts/copylog.sh
Then add a cron job to run it every 10 minutes:
add to /jffs/scripts/services-start
Code:
cru a CopyLogs "*/10 * * * * /jffs/scripts/copylog.sh"
Make sure the /tmp/ directory exists on your Stick.
And then reboot
 
I have not had Wireless slow to a crawl, but I do lose access to the GUI after several days of uptime.
 
Actually it has happened few times - and 374.40 is first release that has been causing any problems until now.

Reset and reconfiguration (no resets for a quite many upgrades) did not help. Went back to 374.39 and problem disappeared.
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top