SSH;
- SSH stands for Secure Shell.
- SSH allows you to remotely access and control another computer or server in a secure way. eg: TV remote
- It’s commonly used by system administrators, developers, and anyone who needs to manage or access remote systems securely.
- SSH PORT -22
- SSH CONFIG FILE /etc/ssh/sshdconfig
# sudo apt-get install openssh-server
How to connect from windows to Linux through SSH.
To connect from a Windows computer to a Linux system using SSH, you can use a program called PuTTY, which is a free and open-source SSH client for Windows.

How to connect linux machine from another linux machine through SSH.
To connect from one Linux machine to another using SSH, you’ll need the OpenSSH client installed on the machine.
Open Terminial and enter below details.
# ssh username@ip_address
# ssh admin@192.168.1.100

Leave a comment