SSH

Secure Shell (SSH) is a network protocol that allows the user to securely access a computer over an unsecured network by providing a strong password and public key authentication. SSH uses a client-server model and usually listens on the Transmission Control Protocol (TCP) port 22. You can learn more about SSH here.

To connect to Vitro Crystal using SSH, you will need to get the RSA public key from an administrator. When you have your access key, change its permissions:

chmod 600 <key_name>

πŸ‘

600 means that the owner can read and write, but can't execute it. Others can't read, write, nor execute. You can learn more about chmod here. To check which mode to use, you can use this website,

Now you can connect to Vitro Crystal:

ssh -i <key_name> root@<crystal_ip>

πŸ“˜

If you don't know Vitro Crystal IP address, you can check it on your router, by logging in on Vitro Crystal, or through a Serial connection.


What’s Next