[go: up one dir, main page]

0% found this document useful (0 votes)
16 views1 page

SSH Access

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views1 page

SSH Access

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

Check sshd service: #


systemctl status sshd
2. Install the openssh package: # dnf install
openssh -y
or Update the openssh package : # dnf update
openssh
3. Start the OpenSSH:
# systemctl start sshd
4. Check sshd service: #
systemctl status sshd
5. Enable the SSH service to start after the reboot: # systemctl
enable sshd

Open the firewall rules to accept incoming traffic on SSH port 22:
# firewall-cmd --zone=public --permanent --add-service=ssh

Connect to the SSH from a remote client machine:


$ ssh root@10.1.1.1

You might also like