1. Ports
  2. Port 2216

Port 2216 is officially registered with IANA — assigned to "vtu-comms," described as a "VTU data service," registered in January 2006 by a contact named David Barrass.1

That's everything the public record knows.

No RFC. No documentation. No software that prominently identifies itself as using this port. Whatever VTU data was — possibly Video Teleconferencing Unit communications, possibly something else entirely — it didn't leave a trail.

What Range This Port Belongs To

Port 2216 sits in the registered ports range (1024–49151). These ports are assigned by IANA after an application process — someone fills out a form, provides a contact name, and describes the intended use. IANA records the assignment. That's roughly where the oversight ends.2

Unlike well-known ports (0–1023), registered ports don't require elevated privileges to use on most systems. And unlike dynamic/ephemeral ports (49152–65535), registered ports carry the implication that something intentional lives there.

Port 2216 has the paper, not the practice.

Why Ghost Registrations Happen

The registered port range has over 13,000 entries. Many of them are exactly like this: a product or protocol someone planned to build, or built internally and never deployed at scale, or deployed and then abandoned. The IANA registry has no expiration mechanism. A registration from 2006 looks identical to one that's actively used today.

This matters for a practical reason: port scanners and security tools may flag port 2216 as "registered — vtu-comms" when they see traffic on it, when in reality that traffic is almost certainly something else — a development server, a game, a custom application that picked an open-looking port number.

The name is a label from 2006. It tells you nothing about what's actually listening.

How to Check What's Using Port 2216 on Your System

If you see traffic or a listening process on port 2216, identify it directly:

On Linux or macOS:

# Show what process is listening on port 2216
ss -tlnp | grep 2216

# Or with lsof
lsof -i :2216

On Windows:

# Show listening ports with process IDs
netstat -ano | findstr :2216

# Then find the process
tasklist | findstr <PID>

The process name is the real answer. The IANA label is not.

Byla tato stránka užitečná?

😔
🤨
😃
Port 2216: vtu-comms — A Ghost in the Registry • Connected