SSH Connection Establish

ssh stands for “Secure Shell”. It is a protocol used to securely connect to a remote server/system. ssh is secure in the sense that it transfers the data in encrypted form between the host and the client. It transfers inputs from the client to the host and relays back the output. ssh runs at TCP/IP port 22. 

Syntax: ssh user_name@host(IP/Domain_name)

How can we access the Redhat machine via the Windows command prompt using `ssh`? 

By using shh:

For example: If our IP address is “10.80.70.3” and our username is “Suraj”

syntax: ssh suraj@10.80.70.3

Add your username in place of “Suraj” and add your IP address in place of “10.80.70.3”

Leave a Reply