1. Ports
  2. Port 1709

What Port 1709 Is

Port 1709 sits in the registered ports range (1024-49151). These are ports that any software vendor could formally claim with IANA, the body that manages port assignments, by filing an application. The intent was to prevent two applications from unknowingly colliding on the same port number.

The IANA registry lists port 1709 under the service name "centra" for both TCP and UDP.1

What Centra Was

Centra Software was a web conferencing and e-learning platform that had its moment in the early 2000s. At its peak, the company claimed 1,200 customers including BMW of North America, Century 21, and the IRS. It held a slice of the web conferencing market at a time when "joining a meeting from your browser" felt remarkable.2

Centra's platform streamed live audio, let a presenter flip through PowerPoint slides, mark up a whiteboard, and let audience members raise a virtual hand to ask questions. In 2001 and 2002, it was one of the hotter e-learning companies in the market.

Then it stalled. Saba Software acquired Centra in January 2006.3 The product was eventually folded in and discontinued.

The IANA registration for port 1709 remains.

What This Means Practically

Nothing is actively using port 1709 for Centra. The software is gone. But the registration sits in the registry, which means:

  • Port 1709 is not "unassigned" in the strict sense — it has a name on record
  • In practice, it behaves like an unassigned port for any modern software
  • Firewalls and port scanners may flag it as "registered" without being able to tell you why

If you see traffic on port 1709 on your network, it isn't Centra. It's either a custom application that chose this port arbitrarily, a misconfiguration, or something worth investigating.

How to Check What's Using Port 1709

On Linux or macOS:

sudo lsof -i :1709

On Windows:

netstat -aon | findstr :1709

This shows you the process ID (PID) listening on the port. Cross-reference the PID with Task Manager or ps aux to identify what it actually is.

Why These Ghost Registrations Matter

The IANA registry has thousands of registered ports pointing to software that no longer ships, companies that no longer exist, or products that were discontinued quietly. Port 1709 is one of them.

This matters because the port system depends on coordination. If a new application picks port 1709 assuming it's available, and some legacy Centra installation is still running somewhere behind a firewall, they collide. The registry is supposed to prevent this — but only if the registrations stay current, and they often don't.

Ports outlive software. The number persists. The thing it named doesn't.

이 페이지가 도움이 되었나요?

😔
🤨
😃
Port 1709: Centra — A Registered Port for Software That No Longer Exists • Connected