network-ping
Send ICMP echo requests to a host to test connectivity, measure latency, and diagnose network issues by reporting packet loss and response times.
Instructions
Send ICMP echo requests to a host to test connectivity and measure latency.
USE CASES:
- Check if a host is reachable over the network
- Measure round-trip time (latency) to a host
- Diagnose network connectivity issues
- Verify if a firewall is blocking ICMP traffic
WHAT IT DOES:
- Sends multiple ICMP echo request packets to the target host
- Waits for echo response packets
- Reports packet loss percentage and response times
PARAMETERS:
- host: Required. The hostname or IP address to ping (e.g., 'google.com', '8.8.8.8')
- count: Optional. Number of ping packets to send (default: 4)
OUTPUT:
- Packet loss statistics
- Min/Avg/Max response times
- Will show '100% packet loss' if host is unreachable or blocking ICMPInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | Yes | The hostname or IP address to ping (e.g., 'google.com' or '192.168.1.1') | |
| count | No | Number of ping packets to send (default: 4) |