1. Ports
  2. Port 2031

What Port 2031 Is

Port 2031 sits in the registered port range (1024–49151). These ports are not reserved for core Internet infrastructure like the well-known ports below 1024, but they can be formally registered with IANA for specific applications. Port 2031 has no such registration — IANA lists it as unassigned.1

What Port Databases Say

Most port databases label 2031 as "mobrien-chat" — a TCP/UDP chat service that once ran at chat.mobrien.com:2031. The site is gone. The service appears to have been a private or small-scale chat application; it left no RFC, no specification, no documentation worth citing.

Port databases are like old phone books. They record what was there. They don't always note when the tenant moved out.

One active use: ThinManager, Rockwell Automation's thin client management software for industrial environments, uses port 2031 TCP as part of its internal communication.2 If you find this port open on an industrial network, that's the likely explanation.

How to Check What's Listening

If port 2031 is open on a machine you're responsible for, find out what's actually using it:

Linux / macOS:

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

Windows:

netstat -ano | findstr :2031

The process ID in the output maps to whatever application claimed the port. On a factory floor, it's probably ThinManager. Anywhere else, investigate before assuming it's benign.

Why Unassigned Ports Matter

The registered port range has 48,128 slots. Not all of them are filled, and that's fine — it means applications can choose a port that doesn't collide with known services. An open unassigned port isn't automatically suspicious, but it warrants a question: who opened it and why?

Port scanners flag unassigned ports because they're unexpected. Something is listening there, and unlike port 443 or port 22, there's no default assumption about what it is. That's useful signal. Unexpected open ports are how you find software you forgot you installed, services that shouldn't be exposed, or something that shouldn't be there at all.

Port 2031 is a small window. Look through it before you assume it's empty.

หน้านี้มีประโยชน์หรือไม่?

😔
🤨
😃