1. Ports
  2. Port 2229

What Range This Port Belongs To

Port 2229 sits in the registered ports range (1024–49151), also called user ports. IANA maintains this range and assigns specific port numbers to services that apply for them. When a protocol is standardized and widely deployed, its authors typically request an IANA assignment so the port number becomes canonical — something network administrators and firewall operators can rely on.

Port 2229 was never claimed. IANA lists it as unassigned.1

That's not unusual. The registered port space contains over 48,000 numbers, and thousands remain unassigned. Not every port needs a tenant.

A Coincidence Worth Noting

RFC 2229 — which shares its number with this port entirely by coincidence — defines the DICT protocol, a standard for querying dictionary databases over a network.2 DICT actually runs on port 2628, not 2229. The matching numbers mean nothing. It's one of those accidents that makes you look twice.

Known Unofficial Uses

No commonly observed unofficial service runs on port 2229. Port databases and security scanners have no notable entries for it.3 If you see something listening on 2229, it's application-specific — a developer chose the port arbitrarily, or a configuration file pointed there.

How to Check What's Listening on This Port

If you see port 2229 active on a system and want to know why:

On Linux/macOS:

# Show which process is using port 2229
sudo lsof -i :2229

# Or with ss (faster, modern alternative to netstat)
sudo ss -tlnp | grep 2229

On Windows:

# Show process using port 2229
netstat -ano | findstr :2229

# Then look up the PID
tasklist | findstr <PID>

The output will name the process. From there, you know whether it's expected software, a misconfiguration, or something worth investigating.

Why Unassigned Ports Matter

The port system works because assignments are predictable. When your browser connects to a web server, it knows to try port 443. When your mail client fetches messages, it knows port 993. This predictability is built from thousands of deliberate assignments over decades.

Unassigned ports like 2229 are the negative space that makes that structure possible. They're available for internal applications, development servers, and proprietary software that doesn't need a universal standard. They're also where misconfigured services sometimes end up — or where malware occasionally hides, hoping nobody's watching a port that doesn't officially exist.

An unassigned port on your system isn't automatically suspicious. It's worth knowing what put it there.

Frequently Asked Questions

Byla tato stránka užitečná?

😔
🤨
😃