SupplyHouse.com interview question

How to set up SSH in Linux

Interview Answer

Anonymous

8 May 2020

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;