1. Ports
  2. Port 20028

Port 20028 has no story because nothing runs here. No RFC defines it. No application claims it. No unofficial service has colonized it. It's just a number.

What This Port Is

Port 20028 belongs to the registered ports range (1024-49151). This range is managed by IANA (Internet Assigned Numbers Authority), where organizations can register ports for specific services. But 20028? Nobody's registered it.1

Unlike well-known ports (0-1023) which are reserved for standard protocols like HTTP and SSH, registered ports are available for applications to claim through IANA's process. Port 20028 has never been claimed.

Why Unassigned Ports Matter

Out of 65,535 possible port numbers, only a fraction are assigned. The rest sit empty, and that's important:

Dynamic allocation: Your operating system uses unassigned ports as ephemeral ports—temporary addresses for outgoing connections. When your browser fetches a web page, it might use port 20028 for a few seconds, then release it.

Future services: Every protocol that exists today—HTTP, HTTPS, SSH, DNS—once needed a port number. Unassigned ports are the space where future protocols will live.

Private use: Organizations run internal services on unassigned ports all the time. No registration required. Port 20028 might be running something critical inside a corporate network right now, and that's perfectly fine.

Checking What's Listening

Even though port 20028 has no official assignment, something could be using it on your system. Here's how to check:

On Linux/Mac:

# See what's listening on port 20028
sudo lsof -i :20028

# Or use netstat
netstat -an | grep 20028

On Windows:

# Find the process using port 20028
netstat -ano | findstr :20028

If nothing returns, the port is closed. If you see output, something local is using it—possibly an application you installed, a development server, or malware (rare, but possible).

The Honest Truth

Most ports are empty. That's normal. The Internet doesn't need 65,535 different protocols. What it needs is space—room for experimentation, temporary connections, future services we haven't imagined yet.

Port 20028 is that space. It's not broken. It's not forgotten. It's just available.

  • Ports 1024-49151: The registered ports range where 20028 lives
  • Ports 49152-65535: Dynamic/private ports, never officially assigned
  • Port 20048: NFS lock manager (mountd), a nearby assigned port2

Frequently Asked Questions

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

😔
🤨
😃
Port 20028: Unassigned — A Number Waiting • Connected