1. Ports
  2. Port 3368

What Port 3368 Is

Port 3368 is a registered port — officially assigned by IANA to a service called satvid-datalnk, short for Satellite Video Data Link. It's part of a block spanning ports 3367 through 3371, all registered for the same purpose.

The registration is real. The service is not, in any practical sense. No major satellite video system uses this port. No protocol documentation describes it. The assignment exists in the registry and essentially nowhere else.1

The Registered Port Range

Port 3368 sits in the registered ports range: 1024 through 49151. This is the middle tier of the port numbering system:

  • Well-known ports (0-1023): Assigned to foundational protocols — HTTP, HTTPS, SSH, DNS, SMTP. Require root or administrator privileges to bind.
  • Registered ports (1024-49151): Assigned by IANA to applications and services. No privilege required to use. Port 3368 lives here.
  • Dynamic/ephemeral ports (49152-65535): Unmanaged. Used temporarily by operating systems for outbound connections.

Being in the registered range means something tried to stake a claim here. It doesn't mean anything is actually listening.

What "satvid-datalnk" Was

Satellite Video Data Link. The name describes the function plainly enough — some system for transmitting video over satellite links needed port identifiers, registered a block with IANA, and apparently never deployed in a way that left any lasting trace.

This happens. The IANA registry is full of port assignments that made sense to someone at some point and have since gone quiet. A company registers ports for a product. The product ships to a small number of customers, or doesn't ship at all. The ports remain registered indefinitely — IANA assignments don't expire.2

If You See Traffic on Port 3368

It isn't satellite video.

Unassigned or obscure ports attract attention from:

  • Malware: Uncommon ports can evade firewalls that only block well-known services
  • Port scanners: Automated tools sweeping for open ports will knock on 3368 along with everything else
  • Custom applications: Developers sometimes pick high-numbered ports at random for internal services

If something is listening on port 3368 on your system and you didn't put it there, that's worth investigating.

How to Check What's Listening

Linux/macOS:

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

Windows:

netstat -ano | findstr :3368

Then match the process ID (PID) against your running process list to identify what opened the port.

Why Unassigned Ports Matter

The port numbering system works because assignments create predictability. When port 443 is HTTPS everywhere, firewalls, monitoring tools, and network diagrams can make sense of traffic at a glance.

Ports like 3368 — registered but dormant — occupy a gray zone. They're not free, but they're not in use. They fill the registry the way abandoned lots fill a city block: claimed, not built on, not available to anyone else.

The practical consequence: if you're building something and need a port number, don't pick something in the registered range at random. Check the IANA registry first.3 Your "random" choice might collide with someone else's quiet reservation.

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

😔
🤨
😃