Never expose to the internet

Port 23 — Telnet

Unencrypted remote shell from the era before SSH. Everything, including the password, crosses the network in plain text.

Port
23
Service
Telnet
Protocol
TCP

Security guidance

If this is open, close it today. There is no safe use for Telnet on the public internet.

Test port 23 yourself

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

macOS / Linux — netcat

nc -vz example.com 23

Any OS — nmap

nmap -p 23 example.com

Windows — PowerShell

Test-NetConnection example.com -Port 23

open = a service answered on port 23; 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 23 open on your server?

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

Check port 23