1. Ports
  2. Port 1802

What Port 1802 Is

Port 1802 is unassigned. The Internet Assigned Numbers Authority (IANA) — the body that manages the global port registry — has no official service registered here for either TCP or UDP. 1

That doesn't mean it's broken or off-limits. It means nobody has formally claimed it.

What Range It Lives In

Port 1802 falls in the registered port range: 1024–49151. This range sits between the well-known ports (0–1023, reserved for foundational services like HTTP, SSH, and DNS) and the ephemeral ports (49152–65535, used temporarily for outbound connections).

The registered range exists for applications and services to claim specific port numbers through IANA — so that two different services don't accidentally use the same port and collide. Software vendors and protocol designers submit a request; IANA records the assignment.

Port 1802 is simply one of the thousands of slots in that range that hasn't been assigned yet. 2

Known Unofficial Uses

Some port databases mention HP Jetdirect in connection with port 1802, but this appears to be inaccurate. HP Jetdirect uses well-documented, officially assigned ports — primarily 9100 for raw printing, 80 for its embedded web server, and a handful of others — not 1802. 3

No significant application, malware, or informal convention has established itself on port 1802.

How to Check What's Listening

If you see traffic on port 1802 on your system, something local has chosen to use it — a custom application, a development service, or occasionally malware. To check:

On Linux or macOS:

ss -tlnp | grep 1802
# or
lsof -i :1802

On Windows:

netstat -ano | findstr :1802

These commands show you what process, if any, has opened port 1802. The process ID can then be looked up in your system's process list.

Why Unassigned Ports Matter

The port system works because it's mostly predictable. When your browser connects to a web server, it reaches for port 443. When your mail client picks up email, it tries 993. The whole system depends on this shared agreement about what runs where.

Unassigned ports are the blank pages in that agreement. They're not a flaw — they're available capacity. Applications that don't need a globally unique, registered port (internal tools, development servers, custom protocols) use them freely. The registry doesn't need to know about everything.

Port 1802 is a blank space. Nothing flows through it by default.

Frequently Asked Questions

Var den här sidan till hjälp?

😔
🤨
😃