How to Access SSH Command Line in Windows 

SSH, or more accurately, Secure Shell is network protocol which provides a set of rules for a secure communications between two computers connected by a medium prone to outside threats. In this tutorial we will guide you on how to access windows SSH command line. In windows there is no built-in utility for SSH, so we are going to use the open ssh application. You can download the application for free from openssh.org.



Step#1: Getting started with SSH
To use SSH, let’s open up the command prompt and type
ssh root@192.168.190.131
With this command we will connect to the SSH server. Over here, we have specified the server username followed by the IP address.
connecting to the SSH server

Step#2: Authentication
You will see a prompt asking for the password. Type the password here and press Enter.
password required to log in

Step#3: SSH Server
As a result, you will notice a Linux based command prompt being displayed which means you have successfully accessed the server using windows command line ssh.
a linux like access to SSH server

Step#4: Accessing SSH Server
Now, you can use all the Linux based commands in the windows environment. For example, if we type ls and hit enter, it will display all the contents of the SSH server.
running commands on the server

Step#5: Using SSH Server Resources
To read a file on the SSH server, you can use the cat command followed by the name of the file. Let’s open up this file over here. Once we hit enter, you will see that the xml file is displayed in the command prompt over here.
displaying contents of an xml file on the server

Step#7: Terminating Session
To end the session of the windows command line ssh, simply type logout and hit enter. You will be notified that the connection has been closed.
logging off the server

And that is how windows SSH command line is used to access the SSH server, execute commands and use its resources in a secure manner.