Network Modes
NetRecon supports four network modes that determine how the probe connects to and monitors your network. Choosing the right mode depends on your hardware, network topology, and monitoring goals.
Prerequisites
- At least one Ethernet interface detected and assigned a role
- Understanding of your network topology (switch configuration, VLANs, etc.)
Mode Comparison
| Feature | Single | Dual Scan | Bridge | TAP |
|---|---|---|---|---|
| Minimum NICs | 1 | 2 | 2 | 2 |
| Active scanning | Yes | Yes | Yes | No |
| Passive monitoring | Limited | Limited | Yes | Yes |
| Network disruption | None | None | Minimal | None |
| Inline deployment | No | No | Yes | No |
| Best for | Small networks | Segmented networks | Full visibility | Production networks |
Single Interface Mode
The simplest configuration. One Ethernet port handles everything: scanning, management, and internet access.
┌─────────────────────────────────────────┐
│ Network Switch │
│ │
│ Port 1 Port 2 Port 3 Port 4 │
│ │ │ │ │ │
│ │ │ │ │ │
└────┼─────────┼─────────┼─────────┼──────┘
│ │ │ │
Probe PC/Server PC/Server Router
(eth0)
How it works:
- The probe connects to a regular switch port
- ARP discovery and port scanning go out through the same interface
- Management dashboard and remote access also use this interface
When to use:
- You have a single-NIC device (e.g., Raspberry Pi with no USB adapter)
- Small networks (< 50 devices)
- Quick deployment where simplicity is preferred
Limitations:
- Scanning traffic shares bandwidth with management traffic
- Cannot see traffic between other devices (only traffic to/from the probe)
Dual Scan Mode
Two separate interfaces: one dedicated to scanning and one for management/uplink.
┌─────────────────────────────────────────┐
│ Target Network Switch │
│ Port 1 Port 2 Port 3 Port 4 │
│ │ │ │ │ │
└────┼─────────┼─────────┼─────────┼──────┘
│ │ │ │
Probe PC/Server PC/Server │
(eth0) │
│
┌──────────────────────────────────┼──────┐
│ Management Switch │ │
│ Port 1 Port 2 Port 3 │
│ │ │ │ │
└────┼───────────────┼─────────────┼──────┘
│ │ │
Probe Admin PC Router
(eth1)
How it works:
eth0(Scan) connects to the target network for discovery and scanningeth1(Management) connects to your admin network for dashboard access
When to use:
- You want to isolate scan traffic from management traffic
- The target network and management network are on different subnets/VLANs
- Orange Pi R2S or any dual-NIC device
Advantages:
- Clean separation of scan and management traffic
- Management interface remains responsive during heavy scans
- Can scan a network you do not want management traffic on