1. Ports
  2. Port 3728

What Port 3728 Is

Port 3728 sits in the registered port range (1024–49151), the middle tier of the port numbering system. Unlike the well-known ports below 1024 — which are reserved for foundational protocols like HTTP, SSH, and DNS — registered ports are claimed by specific applications and vendors through IANA. Anyone can apply. Not everyone's claim endures.

Port 3728 has two claimants with very different profiles.

The Official Assignment: Ericsson Web on Air

IANA's registry assigns port 3728 to Ericsson Web on Air (e-woa), a service registered in April 2003.1 Ericsson filed this registration during the era when mobile operators were building early mobile Internet services — the years of WAP portals and carrier-branded gateways, before smartphones made all of that obsolete.

The e-woa service never achieved widespread adoption. Today, finding documentation about what it actually did requires digging through archived telecom literature. The registration remains on the IANA list, a placeholder from a communications era that has largely passed.

The Real-World Use: GigaTribe

In practice, port 3728 is better known as the default port for GigaTribe, a private peer-to-peer file-sharing application originally developed in France around 2005.2

GigaTribe worked differently from public P2P networks like LimeWire or BitTorrent. Instead of sharing files with the world, you built a private network of trusted friends. Transfers were encrypted. Access was invite-only. Files moved directly between computers. Router guides from the era specifically instruct users to forward TCP port 3728 to enable GigaTribe without limitations.3

The pitch was "safe P2P" — private, encrypted, social. The reality is that it arrived just before cloud storage made friend-to-friend file transfer feel unnecessary. GigaTribe faded. Its port number stayed.

What This Tells You About Registered Ports

The registered port range is large — over 48,000 ports — and IANA processes registration requests without deeply validating whether the service will succeed or persist. The result is a registry full of entries like port 3728: technically claimed, rarely discussed, sometimes repurposed by software that never bothered to file official paperwork.

When you see an unfamiliar registered port in your firewall logs or netstat output, it could be:

  • A legitimate application with an obscure-but-real IANA registration
  • Software that chose the port informally (as GigaTribe did with 3728)
  • Something you should investigate further

The port number alone tells you nothing about intent.

How to Check What's Using Port 3728

If port 3728 shows up on your system, find out what's listening:

On Linux/macOS:

sudo lsof -i :3728
sudo ss -tlnp | grep 3728

On Windows:

netstat -ano | findstr :3728
tasklist /FI "PID eq <PID_from_above>"

The process name will tell you whether this is expected software or something worth investigating.

هل كانت هذه الصفحة مفيدة؟

😔
🤨
😃