1. Ports
  2. Port 1895

Port 1895 belongs to the registered port range (1024–49151). These ports are supposed to be claimed — registered with IANA, tied to a specific service or protocol, documented for the world to see. Port 1895 never was.

IANA lists it as unassigned for both TCP and UDP.1

What "Registered But Unassigned" Means

The registered range sits between the well-known ports (0–1023, where the classics live: HTTP on 80, SSH on 22, DNS on 53) and the ephemeral ports (49152–65535, the temporary ports your system grabs on the fly for outgoing connections).

Registered ports are supposed to mean something. A vendor or protocol author files a request with IANA, agrees to the terms, and gets their number. It becomes theirs. Port 1895 was never claimed this way — it's a number sitting in the registry with no owner.

The Microsoft Footnote

There is one trace. The IANA registry notes that Microsoft uses port 1895 unofficially.1 No service name. No protocol. No documentation. Just a note that someone was there.

This is not uncommon. Large software companies sometimes use ports internally — for Windows services, developer tools, update mechanisms — without ever filing formal registrations. Whether port 1895 is still used this way, by which Windows product, or whether it's been abandoned, isn't documented anywhere findable.

What's Actually on This Port

Nothing universal. Port 1895 carries whatever your system or network happens to put there. Some possibilities:

  • A Windows service operating on an undocumented internal port
  • Application software that picked this number arbitrarily
  • Nothing at all

The only way to know is to look.

How to Check What's Listening

On Linux or macOS:

# Show what's listening on port 1895
ss -tlnp | grep 1895

# Or with lsof (shows the process name)
lsof -i :1895

On Windows:

netstat -ano | findstr :1895

The output will show you the process ID. From there, Task Manager (Windows) or ps aux (Linux/macOS) tells you what process owns it.

If nothing shows up, nothing is listening. The port is simply open ocean.

Why Gaps Like This Exist

The port number space has 65,535 slots. Even with thousands of registered services, there are gaps — numbers that were never claimed, were abandoned, or exist only in internal use. Port 1895 is one of them.

These gaps aren't wasted. Ephemeral connections, application-specific services, and developer tools all need somewhere to live. An unregistered port just means: no global agreement exists about what should be here. Local context determines everything.

Frequently Asked Questions

Ця сторінка була корисною?

😔
🤨
😃
Port 1895: Unassigned — An Empty Lot with Footprints • Connected