How to set up SSH in Linux
Sigiloso
On RHEL 7 install the packages: sudo yum –y install openssh-server openssh-clients; systemctl start sshd; systemctl enable sshd; Add the ssh port (22) to the firewall: firewall-cmd --permanent --zone=public --add-service=ssh; systemctl restart firewalld;