How to Scan an IP Range on Windows (Free Tool + Command Line)

📅 Jul 18, 2024⏱️ 8 min read✍️ SterJo Software📂 Network

Scanning an IP range tells you which devices are active on your network — by checking every address in a subnet and reporting which ones respond. It's the starting point for network troubleshooting, security audits, and finding devices you need to configure.

This guide covers two methods: a free GUI tool that handles everything automatically, and built-in Windows commands for when you need a quick command-line approach.

Quick Answer

Fastest method: Download SterJo Fast IP Scanner (free, portable) → Enter your IP range (e.g. 192.168.1.1 – 192.168.1.254) → Click Scan. Results in under 30 seconds.

No download needed: Open Command Prompt and run for /L %i in (1,1,254) do ping -n 1 -w 100 192.168.1.%i >> ping_results.txt — slower but works without any tools.

Step 1: Find Your Network's IP Range

Before scanning, you need to know what IP range your network uses. Most home networks use either 192.168.1.x or 192.168.0.x. Here's how to confirm yours:

  1. Press Windows + R, type cmd, press Enter
  2. Type ipconfig and press Enter
  3. Look for your active adapter (Ethernet or Wi-Fi) and note:
    • IPv4 Address — your PC's IP (e.g. 192.168.1.105)
    • Subnet Mask — usually 255.255.255.0 for home networks
    • Default Gateway — your router's IP (e.g. 192.168.1.1)
  4. For a typical home network with subnet 255.255.255.0, your scan range is the first three octets of your IP address, with the last octet from 1 to 254. So if your IP is 192.168.1.105, scan 192.168.1.1 – 192.168.1.254.

Method 1: SterJo Fast IP Scanner — Recommended

SterJo Fast IP Scanner is a free, portable Windows tool that scans any IP range using multi-threaded ping. It checks over 1,000 IP addresses in under 30 seconds and shows each active host with its IP address, hostname (resolved via reverse DNS), and response time.

Step-by-Step:

  1. Download SterJo Fast IP Scanner (1.7 MB, portable version available)
  2. Run the tool — no installation required for the portable version
  3. Enter your start IP (e.g. 192.168.1.1) and end IP (e.g. 192.168.1.254)
  4. Click Scan
  5. Active devices appear as they respond — with IP address, hostname, and status

🔍 SterJo Fast IP Scanner v1.1

Free • Portable • Windows XP to 11 • 1.7 MB

  • Scan any custom IP address range
  • Multi-threaded — checks 1,000+ IPs in under 30 seconds
  • Shows IP address, hostname (reverse DNS), and response time
  • Works on home, office, and enterprise local networks
  • Portable — runs from USB, no installation needed
  • Compatible with Windows XP through Windows 11

Download SterJo Fast IP Scanner (Free) →

Method 2: Ping Sweep via Command Prompt

If you need a quick check without downloading anything, Windows Command Prompt can do a basic ping sweep. This is slower than a dedicated tool but requires nothing extra.

For Loop Ping Sweep:

Open Command Prompt and run:

for /L %i in (1,1,254) do @ping -n 1 -w 100 192.168.1.%i | find "Reply"

This pings every address from 192.168.1.1 to 192.168.1.254 and prints only the successful replies. Replace 192.168.1 with your actual network prefix if different.

⚠️ Limitations: The command-line ping sweep is sequential (one address at a time) and significantly slower than a multi-threaded tool. It also misses devices that block ICMP ping. For reliable results, SterJo Fast IP Scanner is the better choice.

View ARP Cache After Pinging:

After a ping sweep, run arp -a to see the full ARP table — this shows the MAC addresses of devices that responded, which the ping output alone doesn't provide.

Method 3: ARP Command for Quick Results

The Windows ARP cache stores recently-seen devices automatically — no scanning required. View it instantly:

arp -a

This shows IP addresses and MAC addresses your PC has recently communicated with. It's not a full scan — it only covers devices your machine has directly talked to — but it's instant and requires no tools or commands beyond what Windows already provides.

When to Use IP Range Scanning

  • Find a device's IP address — Printer, NAS drive, Raspberry Pi, smart hub — scan to find which IP it was assigned
  • Network inventory — Document all active hosts before a router replacement or network change
  • IP conflict detection — Two devices with the same IP cause connectivity issues; a scan reveals duplicates
  • Office network management — See all workstations and servers currently online without visiting each one
  • Troubleshooting — Confirm whether a specific device is actually active on the network or unreachable
  • Security audit — Identify unexpected hosts on your subnet

IP Scanner vs WiFi Network Scanner — Which to Use?

Both tools discover network devices, but they're optimized for different tasks:

FeatureSterJo Fast IP ScannerSterJo Wireless Network Scanner
Scan methodICMP pingARP (more thorough)
Custom IP range✅ Yes — any range❌ Auto-detects subnet
Shows MAC address❌ No✅ Yes
Shows MAC vendor❌ No✅ Yes
Detects phones/IoT⚠️ Partial (many block ping)✅ Better coverage
Best forCustom subnets, office networks, finding specific IPsHome WiFi security check, device identification

Frequently Asked Questions

1. What IP range should I scan on a home network?

Most home routers assign addresses in the 192.168.1.x or 192.168.0.x range. Run ipconfig in Command Prompt — your Default Gateway shows your router's IP, and the Subnet Mask (usually 255.255.255.0) tells you the range. Scan from x.x.x.1 to x.x.x.254 where the first three octets match your router's IP.

2. Why does the scan show fewer devices than I expect?

ICMP ping-based scanners miss devices that have ping blocked by their firewall — a common default on many phones and PCs. Devices that are powered off or in deep sleep won't respond either. For better coverage including IoT devices and phones, use SterJo Wireless Network Scanner which uses ARP instead of ping.

3. How do I find my router's IP range automatically?

Open Command Prompt, run ipconfig, and look at the Default Gateway entry for your active adapter. Your network's IP range uses the same first three octets (e.g., if your gateway is 192.168.0.1, scan 192.168.0.1–192.168.0.254).

4. Can SterJo Fast IP Scanner scan multiple subnets at once?

SterJo Fast IP Scanner scans one continuous IP range at a time. For multiple subnets, run separate scans for each range. The portable version makes this easy to run quickly on any network.

5. Does IP scanning work on office and enterprise networks?

Yes. SterJo Fast IP Scanner works on any local network — home, small office, or enterprise. Enter the appropriate IP range for the subnet you want to scan. For large enterprise networks with multiple subnets, scan each subnet separately.

6. Is it safe to run an IP scanner on my own network?

Yes, completely safe on networks you own or manage. Scanning sends ICMP ping packets — standard network communication. On a corporate or guest network you don't own, check with the network administrator first, as unauthorized scanning may violate network policy.

📚 Related Guides

Network

Find All Devices on Your Network by IP

Complete guide to finding and cataloguing every device on your local network.

Network

Scan Your Home Network for All Devices

ARP-based scanning to find every connected device including phones and IoT hardware.

Network

Find Unknown Devices on Your WiFi

Identify unfamiliar entries in your network scan results.

Security

Monitor Network Activity in Windows

Track which programs are using your internet connection.

✅ Scan Any IP Range in Seconds

SterJo Fast IP Scanner is free, portable, and scans 1,000+ IPs in under 30 seconds. No installation required.

Download SterJo Fast IP Scanner (Free) →

💡 Quick Tip

Run ipconfig first to confirm your Default Gateway and subnet mask before scanning. This tells you exactly which IP range to enter in the scanner.

📊 Did You Know?

SterJo Fast IP Scanner can check over 1,000 IP addresses in under 30 seconds thanks to multi-threaded scanning. A sequential ping sweep of the same range via Command Prompt takes several minutes.