Close Menu
    What's Hot

    The Rules of Classic Solitaire Explained

    April 22, 2026

    From Phishing to AI-Driven Social Engineering: Why Human Trust Remains the Primary Attack Vector

    April 20, 2026

    How Overreliance on Security Tools Creates Blind Spots

    April 20, 2026
    Facebook X (Twitter) YouTube LinkedIn
    Facebook X (Twitter) YouTube LinkedIn
    SysprobsSysprobs
    • Tech Guides
      • Windows
        • Windows 11
        • Windows 10
        • Windows Servers
      • Virtualization
        • VirtualBox
        • VMware
        • Hyper-V
        • Server Virtualization
        • VirtualBox Images
      • PC
        • Linux
        • macOS
        • Hackintosh
        • MS Office
      • Pro IT Tips
        • Internet
        • MS Exchange
        • Fintech
    • Reviews
      • Gadgets
        • Android
        • iPhone
    • Security & Privacy
      • IT Security
    • Trading Gear
      • Laptops
    SysprobsSysprobs
    Home»Pro IT Tips»How to Ping Multiple IP Addresses in CMD at Once from Windows 10/11

    How to Ping Multiple IP Addresses in CMD at Once from Windows 10/11

    DineshBy DineshUpdated:August 2, 2022
    Share
    Facebook Twitter LinkedIn Pinterest Email

    When you are a system or network administrator, you may need to ping multiple IP addresses on the same series/or different networks for monitoring and troubleshooting. Many free GUI tools and scripts are available to accomplish this task in Windows 10/11. Here I’m going to show my favorite methods and tools you can regularly use to ping multiple IP addresses simultaneously.

    Basics:

    Typing the below command in the command prompt will ping a device continuously.

    Ping -t 10.10.16.16

    -t: switch to ping continuously.

    See the below example,

    Ping Multiple IPs in CMD

    Opening several command prompt screens with separate IPs will help if you want to ping fewer IPs simultaneously. But it is not the ideal way if the IP range is huge.

    Ping Multiple IP Addresses in CMD at Once

    Use the below command to ping multiple IPs at once from a Windows computer.

    for /L %z in (1,1,254) do @ping 10.10.11.%z -w 10 -n 1 | find “Reply”

    The above command works in the loop and pings the IP series you defined.

    Variables:

    • 1,254 defines the starting and ending number of the IP addresses. For example, if you want to ping IPs starting from 1 and ending at 25, change the value to 1,25.
    • Change the primary IP address series after the @ping. In the above example, I’m going to ping IP series 10.10.11.x. Suppose your local network starts with 192.168.200.x, then change those values.
    • -w 10 indicates the waiting time for the ping reply; it is 10 seconds in this case. It will wait 10 seconds to get a reply from one IP, then move to the next. If you want to extend the waiting time for some reason, increase the -w value.

    The above command works on all Windows Operating Systems, including Windows 10/11, 8.1/7 and Server OS.

    Here is the sample of pinging multiple IPs at once on a single command prompt screen.

    Ping Multiple IPs - The command

    To monitor the IP history and manage the IP addresses in your environment, you need to look for a few IP management or pinging GUI tools. Here are some of the tools I use daily basis.

    Angry IP Scanner to Ping Multiple IPs from Windows PC

    AngryIP scanner is a free, simple and fully compatible tool with Windows 11 and 10. You can set the start and end of the IPs to ping at the same time.

    Download the latest version from the official site here. You can install it if you want to have it permanently on your Windows computer or download the executable version to carry with you as a portable tool.

    Once you set the range, click Scan. It will scan and provide more details about the hosts/IPs.

    Angry IP Scan - how to ping multiple ip addresses in cmd

    Here you can quickly identify which IP/devices are non-active (Red) and online devices (Blue). If you have multiple different IPs in a text file, you can also import and ping them at once.

    Adding the IP series to Favourites will allow you to recall the series later and ping again.

    The drawback of the tool is you can’t add IPs from different series together. For example, with this tool, you can’t ping 10.10.11.25 and 10.10.130.100 simultaneously.

    Another Tool to Ping Multiple IPs – in Different Range

    There is a free tool called ‘FREEping’; it is completely free and easy to use. In the below example, I’m monitoring 12 network devices, including the IP addresses shown in the earlier example. The FREEping tool can continuously communicate (ping) to each device. You can see the status by the color of each entry.

    Freeping for different IP series

    The good thing about this tool is that you can ping and monitor multiple IP addresses of different networks in a single window. Before starting different network monitoring, make sure your network can communicate with different networks (Routing and permissions)

    Green indicates – the host is alive and can be communicated with.

    Red indicates– the host cannot be contacted. You can see the error or reason under ‘Error’

    Orange indicates (not in this example) – the host is coming up or communication is starting. After some time the orange colour will change to green.

    How to Add Network Devices to FREEping

    To add network devices to FREEping, follow the steps.

    1) Click on Host and Add or the Host icon.

    Add host

    2) In Host, enter the IP address and give a description. The default data size for pinging is 32bytes, and you can increase the size to check the stability of the network.

    Ping multiple IPs in GUI

    You can set the destination and message to pop up when a host becomes unavailable. More information can be found in FREEping help.

    Once pressed OK, the new host will be under monitoring.

    If you want to know how to ping multiple IPs at once from PowerShell, watch the below video!

    I hope these above methods and tools provide enough information on how to ping multiple IP addresses in CMD and other tools simultaneously.

    Free Tips network Windows 10 Windows 8.1
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Dinesh
    • Website

    Dinesh is the founder of Sysprobs and written more than 400 articles. Enthusiast in Microsoft and cloud technologies with more than 15 years of IT experience.

    Related Posts

    From Phishing to AI-Driven Social Engineering: Why Human Trust Remains the Primary Attack Vector

    April 20, 2026

    Migrating off HP-UX: Why the Global Crisis Makes Emulation Your Best Bet Right Now  

    April 15, 2026

    Disable WSUS by Registry On Windows 11/10 Managed Computers

    March 13, 2026

    When to Run Full Regression Tests vs Targeted Tests

    March 5, 2026

    Best VPN for Home Server 2026

    March 4, 2026

    The Systems Powering Safer, More Resilient Businesses

    March 3, 2026

    Comments are closed.

    Top Posts

    Where is the Outlook QR code? How to Use?

    February 16, 2024

    How to Install and Use Outlook for Ubuntu 24.04 LTS/24.10

    December 10, 2025

    Download and Use Windows 7 Pre-Installed VirtualBox Image

    May 3, 2022
    Don't Miss

    The Rules of Classic Solitaire Explained

    April 22, 2026

    Card games often carry simple rules yet offer deep mental challenges. A quiet puzzle with…

    From Phishing to AI-Driven Social Engineering: Why Human Trust Remains the Primary Attack Vector

    April 20, 2026

    How Overreliance on Security Tools Creates Blind Spots

    April 20, 2026

    Migrating off HP-UX: Why the Global Crisis Makes Emulation Your Best Bet Right Now  

    April 15, 2026
    Stay In Touch
    • Facebook
    • YouTube
    • Twitter
    • LinkedIn
    Latest Posts

    The Rules of Classic Solitaire Explained

    April 22, 2026

    From Phishing to AI-Driven Social Engineering: Why Human Trust Remains the Primary Attack Vector

    April 20, 2026

    How Overreliance on Security Tools Creates Blind Spots

    April 20, 2026
    INFORMATION
    • About
    • Contact Us
    • Privacy Policy
    ABOUT

    Established in 2007, Sysprobs is a trusted resource for IT professionals and System Administrators. We bridge the gap between enterprise infrastructure and the future of fintech security. From Windows virtualization to Blockchain node management, we provide technical guides for the modern digital economy.

    POPULAR SECTION

    WINDOWS 11
    WINDOWS 10
    VIRTUALIZATION
    IT SECURITY
    PRO IT TIPS

     

    Sysprobs
    Facebook X (Twitter) YouTube LinkedIn
    • Home
    • Windows
    • Cloud
    • Security & Privacy
    © 2026 SYSPROBS: System Security & Fintech Solutions. Protected by Cloudflare.

    Type above and press Enter to search. Press Esc to cancel.