DOS BAT FILE
Run the dos command. Windows 7, left click start command, right click "command prompt" and use run as administartor.
At the command prompt type "ping /?" enter to see dos ping commands.
I made a number of files with notepad and saved the files with the extension .bat and put a shortcut on the desktop.
Example below; (I do not ping the client bridges, Private network on .0.xx subnet I have gateway permission to access)
ECHO OFF
Date /t
Time /t
ECHO South Tower
ping -n 15 192.168.1.xx
ECHO BH-ST
ping -n 15 192.168.1.xx
ECHO BH-RC
ping -n 15 192.168.1.xx
ECHO North Tower
ping -n 15 192.168.1.xx
ECHO Gateway Private
ping -n 15 192.168.0.xx
ECHO Gateway Public
ping -n 15 192.168.1.xx
ECHO Gateway wireless
ping -n 15 192.168.2.xx
ECHO PrivateBM recenter
ping -n 15 192.168.0.xx
ECHO PrivateBM Office
ping -n 15 192.168.0.xx
ECHO GATEWAY WAN (XPLORNET ASSIGNED STATIC IP)
ping -n 15 xxx.xx.xxx.xxx
ECHO XPLORNET GATEWAY
ping -n 15 xxx.xx.xxx.xxx
ECHO xplornet Primary DNS server
ping -n 15 xxx.xxx.xx.xx
ECHO xplornet Secondary DNS server
ping -n 15 xxx.xxx.xx.xx
ECHO google Canada
ping -n 15 74.125.227.18
Pause
Exit
I only go into the Engenius AP's to check the number of clients on the network, I check the logs of two Dlink AP's as I have found the DLink logs usefull. I have not found the Enenius logs usefull. I do not check the RSSI's anymore. It is a good idea to record RSSI's at the start. If you have a ping test that does not work or to much delay then you go and start troubleshooting. If you notice we have Xplornet and I ping their gateway and DNS servers as well as another internet address. (-n 15 run 15 ping test).
DOS is very powerfull, be carefull if you have not used it before.
