Port 49152: What's Using It and Is It Safe to Kill?
Port 49152 is the start of the dynamic / ephemeral port range. Here's what that means on a Mac and why it's usually nothing to worry about.
Port 49152 is the first port in the dynamic, or ephemeral, range that runs from 49152 to 65535. Unlike a database or web port, it isn’t tied to a particular service. The operating system assigns ports from this range automatically whenever your Mac opens an outgoing connection.
What typically uses port 49152
- Outgoing connections: Apps that connect out (browsers, sync clients, anything talking to a server) get a temporary local port from this range.
- Temporary listeners: Some software opens a short-lived listener on a dynamic port for peer-to-peer transfers or local IPC.
Because assignment is automatic, the exact port varies from one connection to the next. Seeing 49152, or any high number, in use is part of normal networking. For more on the ranges, see Common ports and what they’re used for.
Is it safe to kill?
There’s usually nothing to kill in the sense of a stuck server. A process using 49152 is typically just one side of a normal connection. Identify the owning app first, and only stop it if it’s an application you actually want to quit. Ending a connection’s port on its own doesn’t accomplish anything useful.
Is it suspicious?
Generally no. Heavy use of the ephemeral range is exactly what you’d expect from an active machine. It’s only worth a closer look if a specific unfamiliar process is making connections you can’t explain, in which case the app, not the port number, is what to investigate.
How to find what’s on port 49152 on macOS
lsof -i :49152
More usefully, look at what your apps are actually connecting to:
lsof -i -P | grep ESTABLISHED
Portie shows ephemeral ports alongside the apps that own them in its live view, so you can see which application a high-numbered connection belongs to instead of guessing.