1. Ports
  2. Port 1473

Port 1473 sits in the registered port range (1024-49151) but has no official service assigned by IANA. It's one of thousands of port numbers held in reserve—not forgotten, just waiting for someone to formally claim it.

What the Registered Range Means

The port number system divides into three ranges:

  • Well-known ports (0-1023): Reserved for standard services, assigned by IANA, require elevated privileges
  • Registered ports (1024-49151): Available for applications to register with IANA, though many remain unassigned
  • Dynamic/ephemeral ports (49152-65535): Used temporarily by client applications, never assigned

Port 1473 falls in the middle category. Organizations can request IANA assign these ports to their protocols, but most numbers in this range have never been claimed.1

Unofficial Uses

While port 1473 has no official assignment, it has been used informally over the years:

GroupWise email systems: Novell's GroupWise used this port for communication between servers and clients in some deployments.2

SQL Server remote access: Microsoft SQL Server has used this port for remote access in certain configurations.2

These uses were never standardized. Different networks might use port 1473 for entirely different purposes, or not at all. That's the nature of unassigned ports—they're available for anyone who needs a number and doesn't mind the lack of formal recognition.

Why Unassigned Ports Matter

The registered range holds roughly 48,000 port numbers. Most are unassigned. This isn't a problem—it's a feature. The Internet needs room to grow.

Every new protocol needs a port number. When someone invents a new way for computers to talk to each other, they need a door to knock on. The unassigned ports are that possibility space—thousands of numbers waiting for the next thing someone decides the Internet needs.

Some protocols start by grabbing an unassigned number informally and only register it with IANA later, after they've proven useful. Others never bother with formal registration at all. The Internet is pragmatic. If it works, people use it.

Checking What's Listening

To see if anything on your system is using port 1473:

On Linux or macOS:

sudo lsof -i :1473
# or
sudo netstat -tulpn | grep 1473

On Windows:

netstat -ano | findstr :1473

If nothing appears, the port is free. If something does appear, you've found one of those informal uses—or something entirely unexpected.

The Quiet Ports

Port 1473 won't appear in history books. It has no RFC defining its purpose, no protocol named after it. It's just a number in a range, available when needed.

Most ports are like this. The famous ones—22 for SSH, 443 for HTTPS—get all the attention. But the unassigned ports are equally important. They're the Internet's way of saying: we don't know what we'll need next, so we'll leave room for it.

That space matters. Every protocol that exists today was once just an idea someone had, looking for a port number to call home.

Ήταν χρήσιμη αυτή η σελίδα;

😔
🤨
😃