Complete the command to send 4 ping requests to example.com.
ping -c [1] example.com-c option and letting ping run indefinitely.The -c option sets the number of ping requests to send. Here, 4 requests are sent.
Complete the command to ping the IP address 8.8.8.8 once.
ping -c [1] 8.8.8.8
-c option.The -c 1 option sends exactly one ping request.
Fix the error in the command to ping google.com 3 times.
ping -c [1] google.comThe count must be a positive integer number, so 3 is correct. Words or negative numbers cause errors.
Fill both blanks to ping 192.168.1.1 with 2 packets and wait 1 second between each.
ping -c [1] -i [2] 192.168.1.1
-c 2 sends 2 packets, and -i 1 sets 1 second interval between packets.
Fill all three blanks to ping example.org with 5 packets, 0.2 seconds interval, and a timeout of 3 seconds.
ping -c [1] -i [2] -W [3] example.org
-c 5 sends 5 packets, -i 0.2 sets 0.2 seconds interval, and -W 3 sets 3 seconds timeout for each reply.