DEV Community

Mohan Sharma
Mohan Sharma

Posted on

Install Telnet in Windows EC2

  • Install Telnet Client
Install-WindowsFeature -name Telnet-Client 
Enter fullscreen mode Exit fullscreen mode

Image description

  • Alternatively you can use Test-NetConnection PowerShell command. This is telnet equivalent to test connectivity to remote server
Test-NetConnection -ComputerName google.com -Port 443 
Enter fullscreen mode Exit fullscreen mode

Top comments (0)