1. Ports
  2. Port 2813

Port 2813 is registered with IANA to llm-pass, a service belonging to Loftware, an enterprise label management and barcode printing company.1 The "LLM" stands for Loftware Label Manager — their flagship software for designing and printing barcode labels at scale. The registration was filed in July 2020.1

It is not, despite what the acronym now implies, related to artificial intelligence.

What Loftware Label Manager Does

Loftware's software sits at the back of supply chains — warehouses, manufacturing floors, shipping docks. When a company needs to print thousands of barcode labels that conform to retailer compliance standards, pull data from an ERP system, and route jobs to the right printers automatically, that's the kind of problem Loftware solves.2

The "llm-pass" service on port 2813 appears to be a pass-through or internal communication component within the Loftware Print Server ecosystem — the layer that coordinates jobs between the Label Manager application and printing infrastructure. Loftware's documentation doesn't expose this at a level that's publicly detailed, which is typical of enterprise middleware ports.

The Registered Port Range

Port 2813 sits in the registered ports range (1024–49151). This range is managed by IANA. Any software vendor can apply to register a port within it to claim a well-known address for their service — preventing conflicts with other applications and making it easier for network administrators to write firewall rules.

Registered doesn't mean common. Most ports in this range are used by niche enterprise software that millions of systems never touch. If you see port 2813 open on a machine, you're almost certainly looking at a Loftware installation.

Checking What's on This Port

If port 2813 is active on a system you administer, you can identify what's using it:

On Linux/macOS:

# See what process is listening on port 2813
sudo ss -tlnp | grep 2813

# Or with lsof
sudo lsof -i :2813

On Windows:

netstat -aon | findstr :2813

Take the PID from the output and look it up in Task Manager (Windows) or ps aux | grep <PID> (Linux/macOS) to confirm the process name.

Why Unassigned-Seeming Ports Still Matter

Most people encountering port 2813 in a port scan will see an unfamiliar service name or nothing at all. That's the nature of the registered range — it's a registry of tens of thousands of services, most of them enterprise software nobody outside that industry has heard of.

This is intentional design. The alternative — every vendor picking arbitrary ports — creates the kind of chaos that makes firewall rules and network audits a nightmare. Even a port registered to barcode label software has value in the system: it's one less collision, one fewer mystery on a network scan.

Frequently Asked Questions

Was this page helpful?

😔
🤨
😃