1. Ports
  2. Port 1708

What Range This Port Belongs To

Port 1708 sits in the registered ports range: 1024–49151.

This range is managed by IANA (the Internet Assigned Numbers Authority). Unlike the well-known ports below 1024 — where HTTP lives at 80 and SSH lives at 22 — registered ports don't require root privileges to bind to. They're intended for applications that want an officially assigned address so they don't collide with someone else's software.

The theory: you build a service, you register a port, and your software and someone else's software coexist without stepping on each other. The practice: thousands of registrations happened, and many of the services they pointed to never shipped, or shipped and disappeared.

What IANA Says

Port 1708 is officially registered as gat-lmd on both TCP and UDP.1

The registration appears to be for a "license management daemon" from a company called Global Architecture Technology. The IANA contact is listed as Igor Zaoutine at global-tech.com — a domain with no current presence. There is no RFC. There is no public documentation. The registration exists; the service, as far as anyone can tell, does not.

This is not unusual. The IANA registry contains many entries like this: a name, a port number, a contact email from 1998, and nothing else.

Known Unofficial Uses

No well-known application is commonly observed using port 1708. Some port scanners flag it generically based on proximity to other ports or historical trojan associations — this is noise, not signal. If you see traffic on port 1708, it's almost certainly something specific to your environment, not a standard protocol.

How to Check What's Listening on This Port

If you see port 1708 open on a machine and want to know why:

On Linux/macOS:

ss -tlnp | grep 1708
# or
lsof -i :1708

On Windows:

netstat -ano | findstr :1708
# Then look up the PID in Task Manager

These commands show you what process has bound to the port. The process name is your answer. It might be a license manager for some installed software, a custom application, or something you don't recognize (worth investigating).

Why Unassigned and Obscure Ports Matter

The port numbering system is finite: 65,535 total ports. IANA manages the registered range so that established services have stable addresses. But the registry isn't perfectly curated — registrations from decades ago persist even when the software they represent has vanished.

Port 1708 is an example of the registry's long memory. Something was registered here, once, by someone with a plan. Whether that plan materialized, nobody left a record. The port just sits there, officially named, practically empty.

When you're configuring a firewall or investigating network traffic, an "unassigned" or obscure port like 1708 deserves the same scrutiny as any other: who put it there, what process owns it, and does that make sense given what's installed on the machine?

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

😔
🤨
😃