04-17-2012 02:41 PM
Any suggestions ?
Is this an 'unofficial' dead product ??
Maarten
04-23-2012 05:41 AM
04-23-2012 05:45 AM
No updates from Juniper yet (as far a I know) !
All they can suggest is to switch to the (expensive) WLC platform! ![]()
Customers are not amused as you cn imagine.....
04-24-2012 07:10 AM
I'm running 11.something on an SRX 210, plus the latest AX411 firmware.
Everything seemed to get much better after I told the SRX to reset the AP every day at 0300.
04-24-2012 09:04 AM
Your comment is spot on. I don't reboot daily - just once once a week, but it is pretty obvious that regular reboots and a prerequisite to having a happy, functioning AX411 AP.
04-25-2012 12:16 AM
05-05-2012 12:27 PM
Can I second that request?
I have to get someone to pull the plug on them once in a while.
Is there a command to reboot remotely the AX411 or a script for the SRX?
Thanks!
05-06-2012 10:47 AM
@Juniper support: is it normal behaviour ??? Wouldn't it be nice (not more then normal?) that some updates are released ?? is this product EOL ??
In the meantime, I would also like to get a copy of the script from any of you guys if possible ??
05-07-2012 05:53 AM
hi all,
I don't have any experience with AX411, but 'request wlan access-point restart XXX' seems to be the way to restart AP.
If it works, simple event policy may be used to restart AP once a day:
event-options {
generate-event {
every-day-3am time-of-day "03:00:00 +0200";
}
policy restart-ap {
events every-day-3am;
then {
execute-commands {
commands {
"request wlan access-point restart AP-Name";
}
inactive: user-name admin;
inactive: output-filename restart-ap-log;
inactive: destination local-flash;
inactive: output-format text;
}
}
}
inactive: destinations {
local-flash {
archive-sites {
/var/tmp;
}
}
}
}
Set time-of-day you like (UTC offset added automatically), activate/modify the 'inactive' commands if you want to see request command(s) output (do you really need it ? I'd be careful with the number of files if using local flash !)
If one wants to restart APs once a XXX days, we need to write custom event-script. To make it once a week, the simple solution is to use the policy with day-event script from junoscriptorium:
jtb
05-10-2012 12:14 AM