Is it possible to monitor devices that are normally offline?
Q: We have devices which are normally offline, and we only need to be alerted when the device comes online. Is this possible to do with IPNetwork Monitor? A: This is not directly supported for all monitor types, but there are some workarounds:- Perform reverse Ping check with “Script or Program” monitor
- Get notification only when host goes online
- Check offline state with WMI query
C:\scripts\reverse-ping.vbsChange the below settings as required if you choose another script location. To check the script, open cmd.exe as administrator and run command like
cscript //nologo C:\scripts\reverse-ping.vbs example.com(use actual device name or IP address instead of example.com) Script should output single digit 0 in case PING request times out (monitor OK), or error description and/or code if target device is online, or if network level error occurs (monitor Down). To use for actual monitoring, create “Script or Program monitor” with Main parameters like below:
SELECT StatusCode FROM Win32_PingStatus where (address='192.168.14.02' and StatusCode != 0)Replace ‘192.168.14.102’ with actual IP address of your device.