Port 25 — SMTP
TCP well-known
What runs on port 25
Server-to-server mail transfer.
Security considerations
Most residential ISPs and cloud providers block outbound 25 to limit spam. For sending mail from an application use port 587 with authentication.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :25
sudo ss -lntp | grep :25
# Windows
netstat -ano | findstr :25
Get-NetTCPConnection -LocalPort 25
# is it reachable from outside?
nc -zv example.com 25
curl -v telnet://example.com:25
Freeing the port
# find the process, then stop it
sudo lsof -ti :25 | xargs kill # Linux / macOS
netstat -ano | findstr :25 # note the PID, then:
taskkill /PID <pid> /F # Windows