Explore the world of ping scanning: Learn techniques, tools, and see it in action.
Ping scanning, also known as ICMP scanning, is a network reconnaissance technique used to determine which IP addresses are active or responsive on a network. It works by sending ICMP Echo Request messages to target IP addresses and waiting for ICMP Echo Reply messages.
Sends a single ICMP Echo Request to a specific IP address.
Sends ICMP Echo Requests to a range of IP addresses to identify live hosts.
Sends a ping to a broadcast address to discover multiple hosts simultaneously.
Uses ICMP Timestamp requests to gather timing information from targets.
A basic, built-in utility available on most operating systems for sending ICMP Echo Requests.
ping 192.168.1.1Sends ICMP Echo Requests to the specified IP address (192.168.1.1) continuously until stopped.
ping -c 4 192.168.1.1Sends exactly 4 ICMP Echo Requests to the specified IP address.
ping -i 0.5 192.168.1.1Sends ICMP Echo Requests every 0.5 seconds instead of the default 1 second interval.