1. 安装sshd服务
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| sudo dnf install -y openssh-server
sudo systemctl enable sshd
sudo systemctl status sshd
sudo systemctl restart sshd
sudo firewall-cmd --permanent --add-service=ssh sudo firewall-cmd --reload
|
2. 配置文件
修改配置文件相应的值,才能够进行ssh远程连接。vim /etc/ssh/sshd_config
。
1 2 3 4
| PasswordAuthentication yes PermitRootLogin yes PubkeyAuthentication yes UsePAM yes
|
修改后重启sshd服务,sudo systemctl restart sshd
。