What This Port Is
Port 60373 is an unassigned port in the dynamic/ephemeral range (49152–65535). That range is intentionally left open by the Internet Assigned Numbers Authority (IANA). No organization can register a service here. No protocol claims this port as home.
If you see port 60373 listening on a system, something on that machine decided it needed a port number, and the operating system handed it this one. Tomorrow, that application might release it. Next week, something else might use it. It's temporary infrastructure.
The Ephemeral Port Range: Why It Exists
The range 49152–65535 exists because the Internet needed a safety valve. 1
When your web browser connects to a server on port 443, your operating system needs to pick a port on your machine for the other end of the conversation. It can't use port 443 on your side—that's for servers, not clients. It can't use ports 0–1023, which are reserved for well-known services. It can't use ports 1024–49151, which are registered for specific applications.
So the OS reaches into the dynamic range, picks a number, opens it, uses it for the session, then closes it. Millions of these connections happen every second across the Internet. Your Netflix stream has an ephemeral port. Your email client has an ephemeral port. Your DNS queries bounce across ephemeral ports.
Port 60373 is in this river of temporary connections. 2
What Might Use Port 60373
Since the port is unassigned, anything can claim it:
- Operating system connections - Automatic client connections from your machine to remote servers
- Application-specific services - One source suggests possible association with Apple's Xsan Filesystem Access, but this is unofficial and context-dependent 3
- Custom applications - Any software that opens a listening port can request this number
- Peer-to-peer applications - Software that needs bidirectional communication often allocates from the dynamic range
The honest answer: if something is listening on port 60373, you'd need to check your running processes to know what it is.
How to Check What's Listening on This Port
On macOS or Linux:
or
On Windows:
These commands will show you the process ID and application name using the port.
Why Unassigned Ports Matter
The dynamic port range exists because not everything can be planned in advance.
Well-known ports (0–1023) are for famous services that need permanent, predictable homes: SSH on 22, HTTPS on 443, SMTP on 25. These ports are sacred. You can rely on them existing forever.
Registered ports (1024–49151) are for organizations that need stable, published services but don't have the historical claim to a well-known port.
Dynamic ports are for everything else—temporary connections, private services, custom applications, and the chaos of billions of devices talking to each other at the speed of light. Port 60373 is chaos infrastructure. It's one of 16,384 possible ports that the Internet uses as disposable connection points.
Without this range, the Internet would have to negotiate a registered port for every single client connection. Systems would be slower. New applications would have to request official registration. The network would be more rigid.
Instead, the Internet says: Here are 16,000 ports. Use them however you need. Let them go when you're done.
Port 60373 is the Internet trusting applications to be responsible. Most of the time, they are.
Was this page helpful?