Expose with care

Port 25 — SMTP

Server-to-server email delivery. Mail servers talk to each other on this port.

Port
25
Service
SMTP
Protocol
TCP

Security guidance

Needed on a mail server, pointless elsewhere. Many home and cloud providers block outbound 25 to limit spam.

Test port 25 yourself

From your own machine, against any host (swap in your domain):

macOS / Linux — netcat

nc -vz example.com 25

Any OS — nmap

nmap -p 25 example.com

Windows — PowerShell

Test-NetConnection example.com -Port 25

open = a service answered on port 25; closed = the host replied but nothing is listening; filtered = a firewall silently dropped the probe. These test from your network — our port checker tests from the outside, the view that matters for security.

Is port 25 open on your server?

Test it from outside your network — the only view that matters.

Check port 25