1. Ports
  2. Port 10348

What This Port Is

Port 10348 sits in the registered port range (1024–49151), the middle ground of the port system.1 This is the space reserved for services that people request through IANA but haven't broken into the well-known tier. It supports both TCP and UDP.

Assignment Status

This port has no official IANA service assignment. It's not a secret or undocumented port—it simply hasn't been claimed. No RFC defined it. No protocol defined itself on it.

Known Uses

No widely documented unofficial uses appear in scanning databases, security tools, or port registries. This isn't unusual. The registered range contains 48,127 possible ports. Fewer than 10,000 have actual assignments. The rest are waiting rooms.

Why This Matters

Port 10348 tells you something true about the Internet's design: we built a system with room to grow. Instead of assigning services to random sockets, we created a registry. You can apply for a port. You can reserve your corner of the system.

This port is your corner if you want it. It's unclaimed. It's yours.

How to Check What's on Port 10348

If something is listening on port 10348 on your machine, you can check:

On macOS/Linux:

lsof -i :10348          # Show what's listening
sudo netstat -tulnp | grep 10348  # With process info (Linux)

On Windows:

netstat -ano | findstr :10348

The results will show you the process ID (PID) of whatever is using the port. Most of the time, it's nothing.

Was this page helpful?

😔
🤨
😃
Port 10348 — A Port That Waits • Connected