Port 992 is the TLS-encrypted Telnet port. Standard Telnet on port 23 transmits everything in cleartext including passwords. Port 992 wraps the session in TLS encryption. In practice, SSH on port 22 replaced both Telnet variants entirely – port 992 exists in IANA but sees near-zero real deployment.
Port Number
992
Protocol
TCP
Service
Telnet SSL/TLS
Range
IANA Well-Known (0–1023)
Check if anything is listening on port 992 (should be nothing)
ss -tlnp | grep 992Service detection on port 992 (identify what's actually running)
nmap -sV -p 992 targetIf something responds, check the TLS certificate for identification
openssl s_client -connect target:992openssl s_client -connect switch:992
nmap -p 992 target
telnet-ssl -z ssl host 992Port 992 was registered with IANA for 'telnets' (Telnet over TLS) in the 1990s, alongside other 'secure' variants of plaintext protocols (HTTPS/443, IMAPS/993, POP3S/995). Unlike those, Telnet/TLS never gained traction because SSH (1995) provided a superior alternative with key-based authentication, port forwarding, and proper key exchange. No major Telnet client or server implemented port 992 widely. It remains an IANA registration with essentially zero real-world deployment.
Is there any reason to use Telnet/TLS over SSH?
No. SSH is superior in every way: stronger authentication (public key, certificate-based), built-in key management, session multiplexing, port forwarding, SFTP/SCP file transfer, agent forwarding, and universal client/server availability. The only Telnet use case in 2024+ is accessing legacy network equipment that predates SSH support – and those devices don't support TLS either, so port 992 serves no one.