Access Point mode not activated when failed to connect to WiFi
-
Must be disabled by default
root@Omega-170B:/home/omega# opkg list |grep wifisaint
wifisaint - 0.1-1 - Cron service to create an AP wifi network if all networks are disabled
-
To check wifisaint do the following:
- Run opkg list wifisaint
This should show:
wifisaint - 0.1-1 - Cron service to create an AP wifi network if all networks are disabled
This only tells you that opkg knows about wifisaint
If you get nothing, run opkg update first and try again - To check that wifisaint is installed, run opkg list-installed wifisaint
If it is installed, this will show:
wifisaint - 0.1-1
If it doesn't show this, you need to install it by running:
opkg update
opkg install wifisaint
And check again - Once wifisaint is installed, run the command crontab -l
The output should at least include a line like:
*/10 * * * * /usr/bin/wifisaint
which indicates that wifisaint will be run every 10 minutes (not 5 minutes as has been reported elsewhere)
You can change the frequency at which wifisaint is run by doing the following:- Take a copy of the file /etc/crontabs/root (e.g. to /root/ctab)
- Edit the file /root/ctab) to read (e.g.):
*/2 * * * * /usr/bin/wifisaint
to run it every 2 minutes (look for crontab usage online for more details of format) - Run the command
crontab /root/ctab
to start using your new crontab file
- Run opkg list wifisaint
-
Thanks for a very detailed answer, @Kit-Bishop ! I found out that the program is indeed installed on my Omega. I was just looking for one with dash (wifi-saint).
I am not sure it launched the AP after 10 minutes, though - when I experienced the problem. But maybe those 10 minutes have not passed when I stopped trying. I have to test it once again. Could it be that a non-exiting python program (a monitoring script) registered in /etc/rc.local prohibits contrab from launching wifisaint?
-
Hi @Pavils-Jurjans The non-exiting python program could be an issue. Can you try launching the python program with an
&
at the end to let it running in the background?
-
Thanks, the script launches&performs well, I'll need som outside-the-home testing to report whether the wifisaint really activates the AP.
-
@Pavils-Jurjans You can test it out by first connecting the Omega to your smartphone's wifi hotspot, and then turning it off to see if the Omega resets its wifi configuration.
-
I've found out, though that 2 minutes is not a good idea. Then it always starts in AP mode. Perhaps at the time when crontab launches
wifisaint
, the wifi has not yet properly initialized, thus makingwifisaint
to happily switch on the AP mode. I changed it back to 10 minutes, and now it connects to home WiFi fine. Actually, the prematurewifisaint
checking (if that's the case) would happen, albeit with much lower probability, also if the crontab is set up with every-10-minutes rule, if one is very unlucky to start Omega exactly few seconds before the 10th minute (ie, at 19:39:47, 13 seconds before the 10th minute).
-
@Pavils-Jurjans Running
wifisaint
on cron is quite an inefficient way to do it. We are working on a wifi manager for the Omega so that it can remember wifi networks and their passwords and also check to see if connections are established correctly. Once it is finished, it will restore connection when connecting to wifi fails instead of doing a check every few minutes.
-
Does
wifisaint
have some logs I could check? Because I experienced an embarrassing moment when my device would not init as AP in the new years eve, that was painful. I'd like to understand what's going on.
-
@Pavils-Jurjans I apologize for causing the embarrassment. Unfortunately
wifisaint
doesn't have any logs right now. However it does output dmesg when it encounters errors. Can you describe what you were doing?Our new wifi setup tool will be released soon, and hopefully it will eliminate all of these issues.
Thank you for your patience!