09-10-2023, 09:28 AM 
		
	
	How to Specify the ECHO_REQUEST Number Using Ping Command
By default, ping sends unlimited packets until the user terminates the process. To send a specific number of packets, use the -c option:
ping -c * destination
Replace * with the limit number for your packets. For example, this ping command will send five packets to the specified IP address:
ping -c 5 185.185.185.185
    

