Remote Ping for MikroTik network devices.
Template is based on PowerShell (running locally on SolarWinds server) and is connecting via SSH Terminal, in order to execute Ping command.
Posh-SSH module is required:
https://www.powershellgallery.com/packages/Posh-SSH/
Command for installing Posh-SSH on servers with Internet access:
Install-Module -Name Posh-SSH
Example for terminal output:
[admin@Router1] > ping 8.8.8.8 count=5
SEQ HOST SIZE TTL TIME STATUS
0 8.8.8.8 56 114 16ms
1 8.8.8.8 56 114 16ms
2 8.8.8.8 56 114 16ms
3 8.8.8.8 56 114 16ms
4 8.8.8.8 56 114 16ms
sent=5 received=5 packet-loss=0% min-rtt=16ms avg-rtt=16ms max-rtt=16ms
[admin@Router1] >
Final result in SolarWinds:
Take care, Marcin.