1. Ports
  2. Port 10093

What This Port Is

Port 10093 doesn't exist in any official registry. The IANA has not assigned it to any standard service. It lives in the registered port range (1024–49151)—the zone where applications can request their own private ports, but where thousands of ports remain unclaimed.1

This is not unusual. Of the 48,127 ports in this range, only a small fraction have official assignments. The rest are a commons. They wait for someone to use them.

Who Actually Uses It

Port 10093 has found an audience. Amateur radio operators configure it as a listening port in BPQAXIP, software that encapsulates amateur radio protocols over TCP/IP.2 It lets ham radio operators send data across the Internet without broadcasting on RF frequencies. The port serves no standardized purpose; it was simply chosen because it was available.

The BeebEm emulator—software that recreates the BBC Micro computer from the 1980s—also listens on port 10093 for Econet network connections, allowing vintage computing enthusiasts to network emulated machines.2 Again, port 10093 was chosen arbitrarily. It had no special significance. It was just unoccupied.

How to Check What's Listening

If you see traffic on port 10093, or think something might be listening there, use standard tools:

On macOS/Linux:

lsof -i :10093
netstat -tuln | grep 10093

On Windows:

netstat -b -a -o | find "10093"
Get-NetTCPConnection -LocalPort 10093 | Select-Object OwningProcess

These commands will show you the process ID of whatever application has claimed the port. Cross-reference the PID with your running applications to understand what it is.

Why Unassigned Ports Matter

There are 65,535 possible ports. Only about 9,000 have official assignments from IANA. That leaves roughly 56,000 unassigned ports—a frontier.1

The Internet's designers understood this: not everything can be pre-assigned. Applications need flexibility. Small communities need sanctuary. A amateur radio operator in Germany and one in Japan can independently decide to use port 10093 without coordination, and it works because they're not fighting over a globally-shared resource—they're using it locally, within their own networks.

Port 10093 is proof that the Internet still has room for people who don't ask permission. It's unused enough to be safe, known enough that someone found it useful. It's the quiet corner where niche communities set up shop.

The Deeper Pattern

Unassigned ports reveal something true about how the Internet actually works: most of its complexity is not in the official spec. It's in the people who needed to solve a problem, found an open port, and used it. The port itself doesn't know why. It just carries the signal.

Port 10093 carries amateur radio data and vintage computer networking. Next week, it might carry something else entirely, on some other machine, in some other person's network. That's not a bug. That's the feature.

Была ли эта страница полезной?

😔
🤨
😃
Port 10093 — Unassigned, Quietly Claimed by Amateur Radio • Connected