1. Ports
  2. Port 20031

Port 20031 is officially unassigned by IANA. But in practice, it's been claimed by Dell NetVault Backup software for client-server communication and network data management operations.

What Runs Here

Dell NetVault Backup uses port 20031 as part of a range (20031-20106) for NDMP (Network Data Management Protocol) operations. The Network Manager opens both TCP and UDP sockets on this port to communicate with backup clients.

This is the port that wakes up at 2am to move your data somewhere safe. Every incremental backup, every disaster recovery plan, every "we can restore from last night" promise depends on ports like this staying open and available.

The Registered Port Range

Port 20031 sits in the registered ports range (1024-49151). This range is managed by IANA through a first-come, first-served process documented in RFC 63351. Organizations can apply to IANA to register a port for their service.

But port 20031 was never officially registered. NetVault just uses it.

This is common in the registered range—software picks a port that seems available, ships with that default configuration, and it becomes the de facto standard through deployment rather than official assignment.

Why It Matters

If another application claims port 20031 before NetVault starts, the NetVault Backup Service fails immediately. No warning, no graceful degradation—just failure. Your backup strategy collapses because of a port conflict.

There's also a known denial-of-service vulnerability: specially crafted data sent to TCP port 20031 can trigger an assertion failure and crash the service2. When your backup system is down, you're living without a safety net.

How to Check What's Using This Port

On Linux or macOS:

sudo lsof -i :20031
sudo netstat -tulpn | grep 20031

On Windows:

netstat -ano | findstr :20031

If you see NetVault listening here, your backups are probably running. If you see something else, someone's backup system just broke.

The Honest Truth About Unassigned Ports

Port 20031 represents how the Internet actually works versus how it's supposed to work. IANA maintains a registry. Software vendors are supposed to register their ports. But in practice, they often just pick a number in the registered range and ship it.

The system works most of the time because the port space is large enough that conflicts are rare. Until they're not. Until two enterprise applications both want port 20031 and someone has to reconfigure one of them at 3am while their boss asks why last night's backup didn't run.

This is the unglamorous infrastructure that keeps data safe. No one thinks about port 20031 until it stops working. Then everyone does.

  • Port 10000 - Network Data Management Protocol (NDMP) official assignment
  • Ports 20031-20106 - NetVault's claimed range for backup operations
  • Port 111 - RPC portmapper, often used to negotiate backup service ports

Frequently Asked Questions

Was deze pagina nuttig?

😔
🤨
😃
Port 20031: NetVault Backup — The Unassigned Port Backing Up Your Data • Connected