SSH
SSH is a protocol for accessing a terminal remotely. For SSH to work, the remote machine needs to have an OpenSSH instance running and listening for connections, and port 22 must be allowed through any VPNs or firewalls between the client and host machines. An SSH client is also needed, be it any UNIX system (using the ssh command), or a Windows server using a client such as PuTTY. OpenSSH Client Connect to a Remote Server Connect Using a Password ssh <user>@<ip> > <password> ssh root@192.168.1.133 > Ctrl+D # Disconnect After connecting to a server for the first time, the fingerprint of that server is stored in the ~/.ssh/known-hosts file. ...