Wireshark packet capture

VLAN mistakes are the most common way a home lab or small office loses hours to “the internet is slow”. The symptoms are almost always the same: an IoT device on the wrong VLAN, a trunk port allowing every VLAN by default, or a native VLAN mismatch flooding the “quiet” management VLAN with broadcast noise.

These are the best apps for VLAN network audit, from packet-level tools to full IPAM systems. Any of them will save more time than they cost.

What to look for in a VLAN audit app

Five things matter when picking a tool:

Quick comparison

App Best for Platforms Free plan Starting price Rating
Wireshark Packet-level VLAN inspection Linux, Windows, macOS Yes Free 4.9
Nmap Fast host discovery per VLAN Linux, Windows, macOS Yes Free 4.8
Netbox IPAM and VLAN documentation Linux self-host Yes Free 4.7
PRTG Network Monitor Alerting and dashboards Windows 100-sensor free tier Paid tiers per sensor 4.6
LibreNMS Open-source SNMP monitoring Linux self-host Yes Free 4.7
ntopng Live per-VLAN flow view Linux, Windows, macOS Community free Pro paid annually 4.6
Angry IP Scanner Fast one-off VLAN sweep Linux, Windows, macOS Yes Free 4.5

The apps

1. Wireshark, best for packet-level VLAN inspection

Wireshark on a mirrored trunk port shows every 802.1Q tag, native VLAN packet, and broadcast frame. Filter on vlan and the noise clears; filter on vlan.id == 20 and you see one VLAN’s traffic.

Where it falls short: Needs a mirror port or a switch that supports SPAN. Not a “run it once and forget” tool.

Pricing: Free.

Platforms: Linux, Windows, macOS.

Download: Wireshark

Bottom line: Wireshark for VLAN audit is the ground truth. Skip it only if you can’t get a mirror port.

2. Nmap, best for fast host discovery per VLAN

Nmap discovers hosts fast. Run it from a VLAN-tagged interface and you get a live inventory of that VLAN. Great for finding an IoT device that ended up in the wrong subnet.

Where it falls short: Aggressive scans can trip enterprise-grade intrusion detection. Use the polite -T2 timing on production networks.

Pricing: Free.

Platforms: Linux, Windows, macOS.

Download: Nmap

Bottom line: Nmap for VLAN audit is the fastest way to inventory a single VLAN. Skip it if you already have LibreNMS discovery.

3. Netbox, best for IPAM and VLAN documentation

Netbox is the open-source IPAM (IP Address Management) tool that most homelab and MSP setups now use. VLANs, subnets, hosts, and devices all live in a single database, and its REST API means Ansible or Terraform can read the source of truth.

Where it falls short: Populating Netbox is a one-time investment. Discovery isn’t automatic.

Pricing: Free.

Platforms: Linux self-hosted, any browser.

Download: Netbox

Bottom line: Netbox is the audit report. Skip it if you have three VLANs and no plans to grow.

4. PRTG Network Monitor, best for alerting and dashboards

PRTG monitors VLANs via SNMP sensors and raises alerts when a port suddenly changes VLAN membership or when a VLAN sees unexpected traffic. The free tier covers a home network’s needs.

Where it falls short: Windows-only server. Paid tiers scale by “sensor” (a metric), which adds up.

Pricing: Free for 100 sensors. Paid tiers billed annually per sensor count.

Platforms: Windows server, any browser.

Download: PRTG

Bottom line: PRTG for VLAN audit is the shortest path to alerts on a Windows shop. Skip it if you’re all Linux.

5. LibreNMS, best open-source SNMP monitoring

LibreNMS auto-discovers switches, pulls VLAN membership from CDP/LLDP, and draws a live topology. Alerting is SMTP, Slack, or Discord out of the box.

Where it falls short: LAMP-stack install. Discovery works best on Cisco, MikroTik, and Ubiquiti; some consumer switches don’t expose enough via SNMP.

Pricing: Free.

Platforms: Linux self-hosted, any browser.

Download: LibreNMS

Bottom line: LibreNMS for VLAN audit is the “PRTG but open-source” pick. Skip it if you’re only auditing consumer gear.

6. ntopng, best for a live per-VLAN flow view

ntopng shows per-VLAN traffic in real time. Where Wireshark is packet-level, ntopng is flow-level: top talkers per VLAN, protocol breakdown, and anomaly detection.

Where it falls short: Requires NetFlow, sFlow, or a mirror port. Community edition is generous but Pro adds enterprise features.

Pricing: Community free. Pro is a paid annual subscription.

Platforms: Linux, Windows, macOS.

Download: ntopng

Bottom line: ntopng for VLAN audit spots broadcast bleed within a minute. Skip it if you don’t have a flow source.

7. Angry IP Scanner, best for a fast one-off sweep

Angry IP Scanner is a small Java app that pings a range and reports open ports. Point it at a VLAN and you have a device list in seconds.

Where it falls short: No SNMP, no VLAN tagging awareness. It sees whatever the interface it runs on can see.

Pricing: Free.

Platforms: Linux, Windows, macOS.

Download: Angry IP Scanner

Bottom line: Angry IP Scanner for VLAN audit is the fastest way to sanity-check a subnet. Skip it as a primary tool.

How to pick the right one

If you want the simplest option, run Angry IP Scanner or Nmap from each VLAN’s tagged interface and confirm the host list matches your expectation. If you want ground truth on tagged frames, connect a laptop to a mirror port and open Wireshark. If you want a system of record, install Netbox and populate it once. If you want alerts, LibreNMS for Linux shops or PRTG for Windows shops. If you want to see broadcast bleed live, ntopng.

FAQ

How do I audit a VLAN for misconfigurations? Combine a discovery scan (Nmap or Angry IP Scanner) with a packet capture (Wireshark) on a mirror port. Compare devices found to your IPAM record.

What is the best free VLAN monitoring tool? LibreNMS for continuous monitoring. Wireshark for on-demand deep inspection. Both are free and open-source.

Can I audit VLANs without SNMP access on the switch? Yes. Wireshark on a mirror port works without SNMP. But without SNMP you lose the automatic VLAN membership view, and you’ll manually correlate ports to VLANs.

How do I catch a native VLAN mismatch? Wireshark on a trunk port. A native VLAN mismatch shows as untagged frames arriving with a VLAN ID that doesn’t match the port config.

Does my consumer switch support 802.1Q? Most managed consumer switches (TP-Link Easy Smart, Netgear ProSAFE Plus, Ubiquiti EdgeSwitch) do. Unmanaged switches do not. Check the switch’s spec sheet before assuming.