PDF download Download Article
Learn how to ping an IP address with these simple steps
PDF download Download Article

The Ping command allows you to test the connection speed between you and an IP address. This wikiHow will teach you how to use the Ping command on any system. We've also included some troubleshooting tips and frequently asked questions. Keep reading to learn more.

Pinging an IP Address

To ping an IP address, open your computer's Command Prompt or Terminal, type "ping <ip address>", and press Enter or Return. For example, type "ping 8.8.8.8" to ping the IP address 8.8.8.8. To stop a ping, press Control + C.

Section 1 of 5:

Windows, Mac, and Linux

PDF download Download Article
  1. Every operating system has a command line interface that allows you to run the Ping command. The Ping command operates virtually identically on all systems.
    • If using Windows, you can open Command Prompt, Windows PowerShell, or Terminal (depending on your Windows version).
      • If you're on Windows 10, right-click the Windows icon in your taskbar and click Command Prompt or Windows PowerShell.
      • If you're on Windows 11, right-click the Windows icon in your taskbar and click Terminal.
      • If you're on an older version of Windows, type cmd into the taskbar search bar or Start menu and open Command Prompt. This also works on Windows 10 and 11.
    • If using Mac OS, open the Terminal. Open your Applications folder, and then open the Utilities folder. Select Terminal.
    • If using Linux, open a Terminal window. It is most often found in the Accessories folder in your Applications directory.
      • In Ubuntu and most other Linux distributions, you can use the keyboard shortcut Ctrl+Alt+T to open the Terminal.
  2. Type ping IP address or ping hostname.
    • A hostname is typically a website address. Replace hostname with the website or server that you want to ping. For example, to ping wikiHow’s main web server, type ping www.wikihow.com.
    • An IP address is a computer’s location on a network, either locally or on the internet. If you know the IP address you want to ping, replace "IP address" with it.[1] For example, to ping the IP address 192.168.1.1, type ping 192.168.1.1.
    • To have your PC ping itself, type ping 127.0.0.1.
    Advertisement
  3. The results will be displayed beneath the current command line. See the lower section for how to read the output.[2]
  4. Advertisement
Section 2 of 5:

Mac Network Utility (Catalina & Earlier)

PDF download Download Article
  1. Open your Applications folder and select Utilities. Look for Network Utility.
    • Network Utility is only available in macOS Catalina and earlier. With macOS Big Sur, Network Utility was deprecated.
  2. Specify a hostname or IP Address.
    • A hostname is typically a website address. For example, to ping wikiHow’s main web server, type www.wikihow.com in the field.
    • An IP address is a computer’s location on a network, either locally or on the internet. For example, to ping the IP address 192.168.1.1, type 192.168.1.1 into the field.
  3. You can typically get a good measurement with only 4-6 pings. Click Ping when you are ready, and the output will be displayed in the lower part of the window.
  4. Advertisement
Section 3 of 5:

Reading Ping Output

PDF download Download Article
  1. The first line tells you what the command is doing. It will repeat the address you put in and tell you how much data is being sent. For example:

    Pinging www.wikihow.com [173.203.142.5] with 32 bytes of data:
  2. A successful Ping command will return lines that display how long it took the address to respond. TTL represents the number of hops that occurred during the packet transfer process. The lower the number, the more routers the packet passed through.[3] [4] Time is how long in milliseconds the connection took:

    Reply from 173.203.142.5: bytes=32 time=102ms TTL=48
    Reply from 173.203.142.5: bytes=32 time=105ms TTL=48
    Reply from 173.203.142.5: bytes=32 time=105ms TTL=48
    Reply from 173.203.142.5: bytes=32 time=108ms TTL=48
    • You may need to press Ctrl + C to stop pinging.
  3. After the operation is complete, a summary of the results will be displayed. Lost packets mean your connection to the address is unreliable, and data is being lost in the transfer. The summary will also display the average time the connection took:

    Ping statistics for 173.203.142.5:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 102ms, Maximum = 108ms, Average = 105ms
  4. Advertisement
Section 4 of 5:

Troubleshooting

PDF download Download Article
  1. One of the common error reports looks similar to Ping request could not find host www.wikihow.com. Please check the name and try again.This usually means that you have misspelled the hostname.
    • Try retyping it to correct any spelling errors. If that doesn’t fix the problem, try another well-known hostname, such as a search engine or news site. If that reports “Unknown host,” then the problem is most likely the address of the domain name server.
    • Ping using the host’s IP address instead of its name (ex., 173.203.142.5). If this is successful, then either the address you are using for the domain name server is incorrect, or it is unreachable or down.[5]
  2. Another error message is sendto: No route to host. This may mean the address of the gateway is incorrect or that the connection from your PC is not up and running.
    • Ping 127.0.0.1: that's your own PC. If this fails, your TCP/IP is not functioning correctly, and your network adapter needs to be reconfigured.[6]
    • Check your wireless connection or the connection from your PC to your router, especially if it was working previously.
    • Most PC network ports have an indicator light that indicates a good connection and one that blinks as data is transferred. As the ping command transmits packets at about 1 per second, you should be able to see the data light blink.
    • Check that the router has the proper indicator lights (and no faults), including the one that indicates a good connection to your PC. If a fault indicator is on, follow the cable from your PC to the router to make sure it is properly connected, then call your cable or broadband provider if necessary.
  3. Advertisement
Section 5 of 5:

FAQ

PDF download Download Article
  1. 1
    What does pinging an IP address do? Ping (named after the submarine echo location) uses the simplest packet type. The response is done by the communication subsystem (TCP/IP) portion of the Operating System.[7] It does not need any applications to be running, does not access any files, and needs no configuration, and has almost no impact on any other activity. It does require all of the hardware, gateways, routers, firewalls, name servers, and intermediate hosts to be working. If the ping is successful and you cannot access the target host with a browser or other application, it's most likely not your problem.
  2. 2
    When would you want to use ping? Like all diagnostics, it is best to use ping in a working configuration to understand how it is supposed to work. You can ping your PC using "ping -c5 127.0.0.1" . When first setting up your PC, changing your network, or if browsing the internet doesn't work, use ping to validate your equipment and configurations.
  3. 3
    What other options can I use with ping? Your options depend on the implementation. Here are a few:[8]
    • ping -c <number of packets> <ip address>. On Linux and macOS, this sends the number of packets and then stops. The other way to stop a ping is to press Control + C. This option is convenient for scripts that periodically check network behavior.
      • On Windows, use ping -n instead.
    • ping -t <ip address>. Runs the ping command continuously until you stop it.
    • ping -w <timeout in milliseconds> <ip address>. Specifies how long to wait for a response before the packet is declared to be timed out or lost. Ping with a longer timeout to identify latency problems, for example, ping -w 10000.
    • ping -s <packet size> <ip address>. Specifies the size of each packet sent (in bytes).
      • This option is not available on Windows.
    • ping -f <ip address>. Flood with packets as fast as possible. This is used to stress test the performance of a network.
      • This option is not available on Windows.
    • ping /? (Windows) or man ping (Mac/Linux). Displays additional ping options, syntax, and help.
  4. Advertisement

Community Q&A

Search
Add New Question
  • Question
    What is the purpose of pinging an IP address?
    Community Answer
    Community Answer
    Generally, pinging can give you a measurement of the quality of your internet, and not just the speed. It can show lost packets and packet fluctuation, and help you gauge what may be wrong with your internet (if there is an issue).
  • Question
    What do I do if I am unable to ping any IP?
    Community Answer
    Community Answer
    Restart your router/modem and try again. If it fails again, restart your PC. It could also be that IP/site is disabled or being blocked by your ISP or Firewall.
  • Question
    Can someone else (at an another location) ping my computer?
    Community Answer
    Community Answer
    If your computer's security is low or your anti-virus is not updated or very good, then yes.
See more answers
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement

Video

Tips

Submit a Tip
All tip submissions are carefully reviewed before being published
Name
Please provide your name and last initial
Thanks for submitting a tip for review!

You Might Also Like

Ping on Mac OS Run the Ping Command on a Mac: Step-by-Step Guide
Ping in LinuxUse Ping in Linux: Tutorial, Examples, & Interpreting Results
Ping Your Own ComputerPing Your Own Computer
Test Network and Internet Latency (Lag) in Microsoft WindowsTest Network and Internet Latency (Lag) in Microsoft Windows
Traceroute Run the Traceroute Command: Step-by-Step Guide
Find a Website's IP Address Find a Website's IP Address: Try These Easy Tricks
Destination Host UnreachableDestination Host Unreachable: What Does It Mean in Ping?
Find an IP Address Find the Public or Private IP Address on Any Device
Get Website Information Using Command PromptGet Website Information Using Command Prompt
Ping a Phone Ping an Android or iPhone: Easy Step-by-Step Methods to Try
Check a Computer IP Address Find the IP Address of Your Computer, Phone, or Tablet
Fix Packet Loss Fix Packet Loss (+ What It Is and What Causes It)
Find Proper MTU Size for NetworkFind Proper MTU Size for Network
Monitor Internet Speed over Time on PC or Mac Monitor Your Internet Speed Over Time
Advertisement

About This Article

Stan Kats
Reviewed by:
Professional Technologist
This article was reviewed by Stan Kats and by wikiHow staff writer, Hannah Dillon. Stan Kats is a Professional Technologist and the COO and Chief Technologist for The STG IT Consulting Group in West Hollywood, California. Stan provides comprehensive technology solutions to businesses through managed IT services, and for individuals through his consumer service business, Stan's Tech Garage. Stan holds a BA in International Relations from The University of Southern California. He began his career working in the Fortune 500 IT world. Stan founded his companies to offer an enterprise-level of expertise for small businesses and individuals. This article has been viewed 2,999,947 times.
How helpful is this?
Co-authors: 57
Updated: May 29, 2025
Views: 2,999,947
Categories: IP Addresses
Article SummaryX

1. Open Command Prompt or Terminal. More ↓
2. Enter the Ping command.
3. Press Enter to see your ping output.
4. Read the first line to see what the command is doing.
5. Read the body of the output to see how long it took the address to respond.
6. Read the summary.

Did this summary help you?

Thanks to all authors for creating a page that has been read 2,999,947 times.

Reader Success Stories

  • Anonymous

    Anonymous

    Jul 22, 2016

    "Never used the Mac utility; actually, never realized it was there. Thanks for pointing it out. It will save me time..." more
Share your story

Is this article up to date?

Advertisement