Note: The Telnet client is not installed by default on Windows 7, Windows Server 2008 R2, Windows Vista, Windows Server 2008, Windows 8, and Windows Server 2012. For more information, see the Microsoft TechNet article, Install Telnet Client.
For windows 10 and 11 telnet may need to be enabled by doing the following:
Once installed and enabled to initiate a Telnet test to a port from Windows:
telnet server port
server
is the hostname or IP address of the server, and port
is the port that you want to connect to.quit
.Depending on the application that uses the port, you may only see a blank screen with a cursor in the corner; this is normal. Some common outputs of a successful connection attempt are:
C:\>telnet server 902
Connecting...
220 VMware Authentication Daemon Version 1.10: SSL Required, ServerDaemonProtocol:SOAP, MKSDisplayProtocol:VNC
C:\>telnet server 25
Connecting...
220 server ESMTP Sendmail 8.13.3/8.13.3;
C:\>telnet server 443
Connecting...
220 VMware Authentication Daemon Version 1.10: SSL Required, ServerDaemonProtocol:SOAP, MKSDisplayProtocol:VNC
If Telnet is unable to connect to the port, the output is similar to:
C:\>telnet server 902
Connecting To server...
Could not open connection to the host, on port 902: Connect failed
If the connection is refused, a firewall may be blocking that port from your source to the destination server. For more information, see Required ports for configuring an external firewall to allow ESX and vCenter Server traffic.
To initiate a Telnet test to a port from Linux or Mac OS X:
telnet server port
server
is the hostname or IP address of the server, and port
is the port that you want to connect to.quit
.Depending on the application that uses the port, you may only see a blank screen with a cursor in the corner; this is normal. Some common outputs of a successful connection attempt are:
[root@server]$ telnet server 902
Trying server...
Connected to server.
Escape character is '^]'.
220 VMware Authentication Daemon Version 1.10: SSL Required, ServerDaemonProtocol:SOAP, MKSDisplayProtocol:VNC
[root@server]$ telnet server 25
Trying server...
Connected to server.
Escape character is '^]'.
220 server ESMTP Sendmail 8.13.3/8.13.3;
If Telnet is unable to connect to the port, the output is similar to:
[root@server]$ telnet server 902
Trying server...
telnet: connect to address server: Connection refused
If the connection is refused, a firewall may be blocking that port from your source to the destination server. For more information, see Required ports for configuring an external firewall to allow ESX and vCenter Server traffic.
For more information on required ports for VMware products, see TCP and UDP Ports required to access vCenter Server, ESX hosts, and other network components.