1. Ports
  2. Port 2666

What This Port Is

Port 2666 sits in the registered port range (1024–49151) and is formally assigned by IANA to Extensis — a company that makes font management software for creative teams.1

That's essentially the full extent of the official record. The IANA entry lists the service name as extensis, the contact as Milton Sagen, and nothing else. No RFC. No description. Just a name and a number.

What Extensis Does

Extensis makes tools like Universal Type Server, which lets creative teams share fonts across an organization without everyone manually managing font files. Design agencies and marketing departments use it so InDesign doesn't complain about missing fonts on the third Tuesday of every month.

Port 2666 is almost certainly how the Extensis server component talks to client machines — the local listener waiting for font activation requests. But there's no public documentation confirming this, which is itself telling. It's the kind of internal protocol that works fine until you need to configure a firewall, at which point you're hunting through support forums.

The Registered Port Range

The registered range (1024–49151) is where the port space gets interesting and a little chaotic. IANA assigns these ports on application from anyone willing to fill out the paperwork. There's no requirement that the protocol be documented publicly, that the software be widely used, or even that the company still exist.

The result is thousands of entries like port 2666: technically claimed, sparse on detail, and invisible unless you happen to be running that specific software. They're not dangerous by default — just quiet.

Is Something Running on This Port?

If port 2666 shows up on a machine that doesn't run Extensis software, that's worth investigating. Run a quick check:

Linux / macOS:

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

Windows:

netstat -aon | findstr :2666

The output will tell you which process ID owns the port. Cross-reference that PID with Task Manager (Windows) or ps aux (Linux/macOS) to see what's actually listening.

Why Unassigned-Looking Ports Matter

The gap between "registered" and "documented" is real. Port 2666 is registered, not unassigned — but if you looked it up in most databases, you'd see almost nothing. This gap is where confusion lives: security teams see an open port, can't identify it, and have to dig.

The system works better when registrations come with descriptions. Port 2666 is a small example of what happens when they don't.

Frequently Asked Questions

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

😔
🤨
😃