1. Ports
  2. Port 962

Port 962 belongs to the well-known port range (0-1023)—the space reserved for standard Internet services assigned by the Internet Assigned Numbers Authority (IANA). Yet unlike its neighbors SSH (port 22) or HTTPS (port 443), port 962 has never been claimed.

It sits unassigned. No protocol. No RFC. No official purpose.

What the Well-Known Range Means

Ports 0-1023 are called "well-known ports" or "system ports." This is the Internet's most restricted address space. On Unix-like systems, only root-level processes can bind to these ports. The range was designed for fundamental Internet services—the protocols everyone needs.

IANA carefully manages this range. When a protocol needs a well-known port, developers submit a formal request. If approved, that port becomes permanently associated with that service across the Internet.

Port 962 has never received such an assignment.1

Why Unassigned Ports Matter

The existence of unassigned ports in the well-known range tells you something: not every number from 0-1023 was needed. The original designers reserved 1,024 addresses for "well-known" services, but the Internet only required a fraction of them.

Some ports in this range remain unassigned because:

  • The service that might have used them never materialized
  • Multiple services consolidated onto fewer ports (HTTP/2 and HTTP/3 still use port 443)
  • The protocol died and IANA reclaimed the number
  • No one ever needed it

Port 962 falls into the last category. It has always been available. It remains available today.

What Runs on Port 962

Nothing official. But unassigned doesn't mean unused.

Any application can technically bind to port 962 if it has the necessary permissions. You might find:

  • Custom internal applications that picked an arbitrary port number
  • Legacy software that chose 962 before checking IANA assignments
  • Malware using uncommon ports to avoid detection (though this is rare)

The point: if you see traffic on port 962, it's not a standard service. It's something local to your network or system.

Checking What's Listening

To see if anything is actually using port 962 on your system:

On Linux/macOS:

sudo lsof -i :962

or

sudo netstat -tulpn | grep :962

On Windows:

netstat -ano | findstr :962

If nothing returns, the port is closed. If something appears, you'll see the process ID and can investigate what's running.

The Bigger Picture

Port 962 represents something honest about how the Internet actually developed. The architects reserved space for 1,024 essential services in the well-known range. They didn't need them all. Some numbers—like 962—never found their calling.

And that's fine. The Internet doesn't suffer from unused port numbers. The well-known range still does its job. The unassigned ports simply wait, available if someday a protocol emerges that genuinely needs a permanent, universally recognized address.

For now, port 962 remains what it has always been: a number. Unclaimed. Quiet. Ready.

Frequently Asked Questions About Port 962

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

😔
🤨
😃
Port 962 — Unassigned • Connected