1. Ports
  2. Port 2036

Port 2036 belongs to the registered port range (1024–49151). IANA catalogues these ports to prevent collisions — when a developer needs a well-known home for a service, they register it here and it's theirs. 1

In August 2005, port 2036 was registered as e-dpnet: Ethernet WS DP network, on both TCP and UDP. 2

That registration is the entire story. The service it describes never became something you'd encounter in the wild. No RFC was written for it. No major software ships with it. No security advisories warn about it. Port 2036 is a plot of land with a deed but no building.

What the Registered Range Means

Below port 1024, ports belong to well-known protocols — HTTP, SSH, DNS, SMTP. These are the landmarks everybody knows.

The registered range (1024–49151) is different. IANA tracks these ports, but registration doesn't require the service to succeed or even ship. Developers register ports speculatively, or for internal protocols that never spread beyond one company. The registry ends up as a mix of actively used services, abandoned projects, and names attached to nothing.

Port 2036 falls into the last category.

If You See Traffic on Port 2036

If something is actually listening on port 2036 on your system, it isn't e-dpnet. It's whatever chose this port because it happened to be free. To find out what it is:

On Linux or macOS:

sudo ss -tlnp | grep 2036
# or
sudo lsof -i :2036

On Windows:

netstat -ano | findstr :2036
# Then look up the PID:
tasklist | findstr <PID>

The process name will tell you what's actually there.

Why Unassigned Ports Matter

The port system works because of coordination. When enough services pick arbitrary ports that clash with each other, configuration becomes chaos — firewall rules break, services step on each other, debugging gets harder.

The registered range is IANA's attempt to maintain order in the middle space between well-known services and ephemeral connections. Even ports that never get used serve a purpose: they're held so nobody else claims them in conflict.

Port 2036 is quietly doing that job. Probably.

آیا این صفحه مفید بود؟

😔
🤨
😃