Some links on this page are affiliate links: if you buy through them we may earn a commission, at no extra cost to you.
To send exactly 100 ping requests, use ping -n 100 <host> in Windows Command Prompt or ping -c 100 <host> in macOS or Linux Terminal. For example, ping -n 100 1.1.1.1 on Windows and ping -c 100 1.1.1.1 on Mac or Linux. A 100-packet test helps reveal intermittent latency or unanswered probes, but it measures ICMP round-trip responsiveness—not internet speed or whether a website or app works.
Quick answer
Windows: ping -n 100 <hostname-or-IP>
macOS/Linux: ping -c 100 <hostname-or-IP>
Replace the placeholder with a host name, such as example.com, or an IP address, such as 1.1.1.1. Do not include https://: ping accepts a host, not a web address or page path. The count options are documented by Microsoft for Windows and in the Linux ping manual; macOS commonly uses the BSD-style -c option too.
The command sends 100 separate ICMP Echo Requests over time, not 100 requests simultaneously. The destination may not answer every request: a firewall, VPN, network policy, or destination can filter or deprioritize ICMP. ICMP Echo Request and Reply are defined in RFC 792.
Do these 3 things before closing this tab:
1Repair Windows errors before they cause bigger problems2Scan for outdated or missing drivers - takes under a minute3Clear out junk files and repair common Windows errorsRun the test on Windows
- Open Command Prompt.
- Enter
ping -n 100 1.1.1.1and press Enter. - Wait for the command to finish and display its statistics.
To test a name instead, run ping -n 100 example.com. A hostname test involves name resolution as well as pinging the resulting address; an IP-address test avoids DNS resolution as a variable.
#1 Best Overall
- 40 Gbps 2000 Mhz High Speed: The Cat 8 ethernet cable support max. 40 Gbps data transfer and 2000 MHz Brandwith, ideal for gaming and streaming, greatly improving upload and download speed, sound, image and resolution quality
- Excellent Anti-interference: The ethernet cable comes with 4 shielded foiled twisted pairs (F/FTP), pure copper core and gold-plated RJ45 connector, reducing interference, noise and crosstalk, making network speed faster and more stable
- Marvelous Durability: Internet cable wrapped with quality cotton braided cord, which makes the LAN cable stronger and more durable. The test proves that this internet cable can be bent at least 10000 times without broken, very suitable for long-term use
- PoE Supported: All lengths of ethernet cord can support the PoE power supply function except 65ft. You don't need additional power supply when installing a PoE camera, which is very convenient and safe
- Wide Compatibility: With the RJ45 Connector, network cable can be perfectly compatible with computers, laptops, modems, routers, PS5, X-Box and other networking devices. It can also be fully backward compatible with Cat7, Cat6e, Cat6, Cat5e, Cat5
Windows-specific options include separate IPv4 and IPv6 tests:
ping -4 -n 100 example.com
ping -6 -n 100 example.com
Use Ctrl+C to stop a test early. A fixed-count test ordinarily ends by itself after its requests. Do not confuse it with continuous mode, which runs until stopped:
ping -t 1.1.1.1
To save output to a file in the current directory, use >; this replaces the file if it already exists. Use >> to append another run instead:
ping -n 100 1.1.1.1 > ping-results.txt
ping -n 100 1.1.1.1 >> ping-results.txt
See Microsoft’s Windows ping reference for the options available on your Windows version.
Rank #2
- Cat 6 performance at a Cat5e price but with higher bandwidth
- High Performance Cat6, 30 AWG, RJ45 Ethernet Patch Cable provides universal connectivity for LAN network components such as PCs,computer servers,printers,routers,switch boxes,network media players,NAS,VoIP phones
- Jadaol cat6 standard cable support Cat8 and Cat7 network and provides performance of up to 250 MHz 10Gbps and is suitable for 10BASE-T, 100BASE-TX (Fast Ethernet), 1000BASE-T/1000BASE-TX (Gigabit Ethernet) and 10GBASE-T (10-Gigabit Ethernet)
- UTP(Unshielded Twisted Pair) patch cable with RJ45 gold-plated Connectors and are made of 100% bare copper wire, ensure minimal noise and interference
- The unique flat cable shape allows for a cleaner and safer installation. You can easily and seamlessly make the cable run along walls, follow edges & corners or even make it completely invisible by sliding it under a carpet.
Run the test on macOS
Open Terminal and run:
ping -c 100 1.1.1.1
For a hostname, use ping -c 100 example.com. Stop before the 100 requests complete with Control+C. Save or append the output with:
ping -c 100 1.1.1.1 > ping-results.txt
ping -c 100 1.1.1.1 >> ping-results.txt
macOS releases and BSD-derived versions of ping can differ in available options and output. Run man ping in Terminal for the manual installed on your Mac. Apple’s archived ping manual describes the BSD-style command.
Run the test on Linux
On most Linux distributions using iputils, run:
ping -c 100 1.1.1.1
You can substitute a hostname or your router’s gateway address. To save or append output:
PC Slower Than It Used to Be?
A free scan shows the junk files, broken settings and background clutter dragging Windows down - then fixes them in one click.Free scan · Windows 10 & 11Outdated Drivers Are Slowing You Down
One free scan finds every outdated or missing driver and matches the right update for your exact hardware.Free scan · exact hardware matchping -c 100 1.1.1.1 > ping-results.txt
ping -c 100 1.1.1.1 >> ping-results.txt
Many iputils versions support -D to add a timestamp to each output line:
Rank #3
- Designed for Outdoor & Direct Burial Installations – Heavy-duty double-shielded Cat8 Ethernet cable minimizes EMI/RFI interference and delivers stable long-distance performance. Waterproof, anti-corrosion PVC jacket allows safe direct burial and reliable use in outdoor or indoor environments.
- 26AWG for Stable High-Load Networks – Thicker 26AWG conductors provide faster, more stable data transmission than standard 32AWG cables. Ideal for high-performance home networks, gaming setups, smart homes, and data-intensive applications.
- F/FTP Shielding & Hyper-Speed Performance: Cat8 Ethernet cable constructed with 4 shielded foiled twisted pairs and 26AWG OFC conductors; supports bandwidth up to 2000 MHz and data transmission speeds up to 40 Gbps, effectively reducing signal interference and ensuring stable connections. Ideal for low-latency gaming, 4K/8K streaming, and high-speed internet connections.
- RJ45 Connectors & Wide Compatibility: Cat8 Ethernet cable with two shielded RJ45 connectors; compatible with networking switches, IP cameras, routers, Nintendo Switch, modems, PS3, PS4, Xbox, patch panels, servers, smart TVs, and more; works with Cat7, Cat6, Cat5e, and Cat5 devices
- Weatherproof & UV Resistant: Outdoor-rated Cat8 Ethernet cable with UV-resistant PVC jacket; withstands direct sunlight, extreme cold, humidity, and hot weather; anti-aging and durable; Includes 18-month support.
ping -D -c 100 1.1.1.1
This option is implementation-dependent; check man ping or ping --help on your system. The same caution applies to IPv4/IPv6 switches, though iputils commonly accepts -4 and -6:
ping -4 -c 100 example.com
ping -6 -c 100 example.com
Do not speed up routine testing with an unusually short interval. Options and restrictions vary, and faster probing may require elevated privileges or be limited by the system. A standard, controlled sample is usually more useful than a rapid burst.
Choose targets in a useful order
If you are diagnosing a connection problem, test progressively rather than relying on one public address. Use your actual gateway address; the examples below are common possibilities, not universal defaults.
- Check the local network stack. Run
ping -n 100 127.0.0.1on Windows orping -c 100 127.0.0.1on macOS or Linux. This tests the computer’s local TCP/IP stack, not Wi-Fi, the router, or the internet connection. - Check the router or gateway. Find the gateway address in your device’s network settings, then ping it—for example,
192.168.1.1,192.168.0.1, or10.0.0.1. Loss or large timing swings here can point to the device, Wi-Fi or Ethernet link, router, or local network. - Check a public IP. For example, use
1.1.1.1or8.8.8.8. Neither is guaranteed to answer from every network. If the gateway test is clean but a public-host test is poor, the problem may be farther along the route—or the host may treat ICMP differently. - Check the relevant service, if it supports ping. A public resolver can respond normally while a game, work VPN, website, or other service has a separate route or performance problem. Use the actual service host when you know it and are permitted to test it.
Use the same operating-system syntax for each target: Windows uses ping -n 100 <host>; macOS and Linux commonly use ping -c 100 <host>.
Rank #4
- Cat 8 Speed, Cat 5/5e Value Enjoy Cat 8 Ethernet cable performance at a Cat 5/5e-level value. With up to 40Gbps speed and 2000MHz bandwidth, this high speed internet cable delivers more bandwidth than standard Cat 5 and Cat 5e cables, helping support smooth gaming, streaming, video calls, large file transfers and everyday wired network use.
- 40Gbps Speed, Wide Compatibility This Cat 8 Ethernet cable supports up to 40Gbps data transfer and 2000MHz bandwidth for fast, reliable internet performance. Standard RJ45 connectors are backward compatible with Cat7, Cat6, Cat6a and Cat5e devices, including routers, modems, switches, gaming PCs, PS5, PS4, Xbox, smart TVs, laptops and printers.
- Stable U/FTP Shielding Each of the 4 twisted pairs is individually wrapped with aluminum foil to help reduce crosstalk, noise, and signal interference. Combined with RJ45 connectors on both ends, the U/FTP design helps maintain cleaner signal transmission for a stable and reliable wired network connection.
- Nylon Braided Durability The nylon braided jacket adds everyday durability while keeping the cable flexible and easy to route. Reinforced construction helps the cord handle bending, pulling and frequent plugging, making it a reliable choice for desks, gaming rooms, home offices and long-term network setups.
- 50ft Reach for More Setups The 50 ft length makes it easier to connect devices across rooms, along walls, under desks or around corners. Great for router-to-PC connections, modem-to-TV setups, gaming consoles, workstations, printers and other home network equipment that needs a longer Ethernet cable.
Understand the summary
A typical summary reports packets sent, packets received, and packet loss. On Windows, it may show lines such as “Packets: Sent = 100, Received = 98, Lost = 2 (2% loss),” followed by minimum, maximum, and average times. macOS and Linux commonly report transmitted and received packets, loss, and round-trip timing values.
Packet loss is calculated as ((sent - received) / sent) × 100. With 100 probes, each unanswered request corresponds to one percentage point: 1 lost is 1%, 5 lost is 5%. An unanswered ping does not necessarily mean application traffic was lost: ICMP may be filtered or given lower priority than the TCP or UDP traffic an app uses.
- 0% loss: No probes were lost in this run. It does not prove the connection will never lose packets.
- Small loss: Repeat the test and compare targets. Possible explanations include intermittent congestion, Wi-Fi interference, ICMP filtering, or de-prioritization.
- Loss to the gateway: More suggestive of a local link, device, or router issue than loss seen only at one remote host.
- Loss only to one public host: Could reflect that host’s ICMP policy rather than a general internet fault.
Round-trip time (RTT) is the time for a probe to reach its destination and for a reply to return. Minimum is the quickest observed reply, average summarizes replies, and maximum is the slowest. Some Unix-like summaries also show standard deviation or mean deviation, a measure of how much timing varies. A low average with a high maximum can mean occasional spikes; a narrow range suggests more consistent ICMP timing during that test.
The Tool Desk
Outbyte PC Repair FREEClear out junk files and repair common Windows errorsFree Scan →Outbyte Driver Updater FREEScan for outdated or missing drivers - takes under a minuteDriver Scan →There is no universal “good ping” number. Distance, routing, access technology, Wi-Fi conditions, VPN paths, and server location all affect latency. Compare the gateway with the remote target and compare runs made under similar conditions. For gaming or calls, the relevant service and its own network indicators matter more than a generic public-host result.
Best Value
- [Flat Design, Zero Cable Clutter] - Lies perfectly flat against walls, under rugs, along baseboards, and through tight spaces without kinks, tangles, or messy coils. Customers praise it for effortless installation and clean cable management that blends into any room.
- [REINFORCED BRAIDED CONSTRUCTION FOR LONG‑LASTING PERFORMANCE] - Premium cotton braided jacket paired with reinforced RJ45 connectors delivers outstanding durability, rigorously tested for over 15,000 bend cycles. Many customers describe this ethernet cable as rock‑solid and well‑crafted, ideal for long‑term daily use with no worries about premature wear‑and‑tear or connection failure
- [10GBPS SPEED & 600MHZ BANDWIDTH — GAMING, STREAMING & FIBER READY] - Delivers 10Gbps data transfer rate with 600MHz bandwidth for PS5, Xbox, 4K streaming, and fiber internet. Customers report stable performance and fast speeds. Backward compatible with Cat 6 and Cat 5e devices
- [STP SHIELDING & GOLD-PLATED RJ45 — MINIMIZES EMI/RFI INTERFERENCE] - 100% bare copper STP shielding helps protect signal integrity when routed near power cords. Gold-plated RJ45 connectors resist corrosion. Compatible with 2.5GB network card
- [Works with Everything — Router, Modem, PS5, Xbox, PC, Smart TV, Printer More ] - Full backward compatibility with Cat7, Cat6, Cat6a, and Cat5e devices means this one cable works with all your home or office equipment today, and future upgrades tomorrow. Works with 10/100/1000/10G/40G BASE-T speeds. Includes 36-month warranty with free replacement support
If requests time out or results look wrong
- Compare targets in order. Test loopback, the gateway, then a public IP. If loopback replies but the gateway does not, focus first on the local link, router, firewall, or network policy.
- Compare hostname and IP. If a name fails but an IP responds, investigate DNS, while remembering that the two tests might select different destinations or address families.
- Separate IPv4 and IPv6. On Windows use
ping -4 -n 100 example.comandping -6 -n 100 example.com. Linux iputils commonly supportsping -4 -c 100 example.comandping -6 -c 100 example.com; on macOS or other implementations, checkman pingfor the local syntax. - Check whether the service itself works. A ping timeout alone cannot establish that a website, port, API, or application is unavailable. ICMP can be blocked even when ordinary service traffic works.
- Consider the path or local policy. A firewall, corporate network, VPN, or security product may filter ICMP or change routing. If you use a VPN, note its status and compare only in ways allowed by your network or organization.
If you need to investigate where delay may begin, try tracert example.com on Windows or traceroute example.com on macOS/Linux. Windows also provides pathping example.com for a longer path-and-loss analysis. mtr, where available, combines ongoing path and timing observations. Intermediate routers may filter or deprioritize diagnostic traffic, so a missing response at one hop does not by itself prove that hop is causing a service problem.
Make intermittent tests comparable
A 100-packet test may take longer than a few seconds: standard implementations space requests out, and timeouts can extend a run. Duration depends on the operating system, implementation, destination responsiveness, and options. Results can also change with Wi-Fi interference, route changes, queueing, VPN use, or server load.
For an intermittent issue, save several runs at different times and note the date and time, connection type (Wi-Fi or Ethernet), VPN status, destination, operating system, packet loss, average, and maximum latency. This makes comparisons more useful than treating one test as a verdict.
Avoid changing packet size unless you specifically intend to investigate packet-size or MTU behavior. On Windows, for example, -n 100 sets the request count while -l 600 sets the data size; they do different things. Larger payloads can introduce fragmentation or MTU variables that are not needed for a basic latency and loss check.
Do not use flood or rapid-fire options for routine troubleshooting. They can burden networks, trigger rate limits, or violate network rules. A measured 100-request test is the appropriate starting point.
Quick Recap
Product prices and availability are accurate as of the date/time indicated and are subject to change. Any price and availability information displayed on Amazon at the time of purchase will apply.

