Testing port connectivity with Telnet from Windows
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.The preceding link was correct as of January 25, 2013. If you find the link is broken, provide feedback and a VMware employee will update the link.
To initiate a Telnet test to a port from Windows:
- Open a command prompt. For more information, see Opening a command or shell prompt (1003892).
- In the command prompt window, type:
telnet server port
Whereserver
is the hostname or IP address of the server, andport
is the port that you want to connect to. - Press Enter.
Note: To exit the Telnet application, press Ctrl + ], then typequit
.
- Connecting to port 902 on an ESXi/ESX host:
C:\>telnet server 902
Connecting...
220 VMware Authentication Daemon Version 1.10: SSL Required, ServerDaemonProtocol:SOAP, MKSDisplayProtocol:VNC - Connecting to port 25 on a mail server:
C:\>telnet server 25
Connecting...
220 server ESMTP Sendmail 8.13.3/8.13.3; - Connecting to port 443 on the vCenter Server:
C:\>telnet server 443
Connecting...
220 VMware Authentication Daemon Version 1.10: SSL Required, ServerDaemonProtocol:SOAP, MKSDisplayProtocol:VNC
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 (1005189).C:\>telnet server 902
Connecting To server...
Could not open connection to the host, on port 902: Connect failed
Testing port connectivity with Telnet from Linux or Mac OS X
To initiate a Telnet test to a port from Linux or Mac OS X:- Open a shell prompt. For more information, see Opening a command or shell prompt (1003892).
Note: Several distributions of Linux do not have a Telnet client installed by default. Refer to the website of your distribution for details on whether one is available and how to install the package. - In the shell prompt window, type:
telnet server port
Whereserver
is the hostname or IP address of the server, andport
is the port that you want to connect to. - Press Enter.
Note: To exit the Telnet application, press Ctrl + ], then typequit
.
- Connecting to port 902 on an ESXi/ESX host:
[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 - Connecting to port 25 on a mail server:
[root@server]$ telnet server 25
Trying server...
Connected to server.
Escape character is '^]'.
220 server ESMTP Sendmail 8.13.3/8.13.3;
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 (1005189).[root@server]$ telnet server 902
Trying server...
telnet: connect to address server: Connection refused
No comments:
Post a Comment