A terminal-based IP scanner with an adaptive TUI — scan your local network, identify live hosts, enumerate open ports, resolve hostnames, and look up MAC vendor info, all without leaving the terminal.
Platform: Windows only. Host discovery and adapter detection use PowerShell and ARP via Windows tooling.
- Adaptive TUI — full split-pane layout on large terminals; compact single-pane layout on smaller windows, powered by ratatui.
- No admin required — host discovery uses TCP connect probes to common ports instead of raw ICMP sockets.
- Port scanning — async, semaphore-limited (default 50 concurrent).
- Reverse DNS — async resolution with in-memory caching.
- MAC + OUI vendor lookup — ARP-based with an embedded ~17 000-entry vendor database; no internet required.
- Persistent cache — results written to
ipscannr_cache.jsonand loaded on next launch. - CSV export — export results from inside the TUI.
- Compat mode (
--compat) — ASCII-only borders and 16-color ANSI styles for RMM consoles and restricted terminals. - Auto-start —
--range+--scanbegins scanning without UI navigation. - Continuous ping / tracert overlays — live output streamed inside the TUI.
- Wake-on-LAN — send magic packets to selected hosts.
- Go to the Releases page.
- Download
ipscannr-vX.Y.Z-x86_64-windows.zip. - Extract
ipscannr.exeto any directory on yourPATH.
Requires Rust stable and the MSVC toolchain (x86_64-pc-windows-msvc).
cargo build --release
# binary: target\release\ipscannr.exeipscannr [OPTIONS]
Options:
-r, --range <RANGE> IP range to scan
--scan Start scanning immediately on launch
--compat ASCII-only rendering for RMM / limited consoles
-h, --help Print help
-V, --version Print version
| Format | Example |
|---|---|
| CIDR | 192.168.1.0/24 |
| Short range | 192.168.1.1-254 |
| Full range | 192.168.1.1-192.168.1.254 |
| Single IP | 192.168.1.1 |
| Comma-separated | 192.168.1.1,10.0.0.0/8 |
ipscannr # interactive TUI
ipscannr --range 192.168.1.0/24 --scan # auto-start scan
ipscannr --range 192.168.1.0/24 --scan --compat # RMM console mode| Key | Action |
|---|---|
Tab / Shift+Tab |
Cycle focus between panes |
s |
Start scan |
x |
Stop scan |
Space |
Resume scan / toggle multi-select |
p |
Configure ports |
r |
Edit range |
f |
Toggle filter (all hosts / online only) |
e |
Export results (CSV or JSON) |
d |
Toggle details pane |
w |
Wake-on-LAN |
c |
Continuous ping overlay |
t |
Tracert overlay |
a |
Save host to list |
? |
Show help overlay |
↑ / k, ↓ / j |
Navigate up/down |
PgUp / PgDn |
Page up/down |
q / Ctrl+C |
Quit |
Results are persisted to ipscannr_cache.json in the working directory.
Override the path with the IPSCANNR_CACHE_FILE environment variable.
MIT — see LICENSE.