作者:天通金1980 | 来源:互联网 | 2023-10-16 17:34
Ssh是一个安全的远程登录协议,它的端口号默认是22端口
vim /etc/ssh/sshd_config
firewall-cmd --zone=public --add-port=2202/tcp --permanent 开放端
systemctl restart firewalld.service 重启防火墙(注意)
sed -i ‘s#SELINUX=enforcing#SELINUX=disabled#g’ /etc/selinux/config (需要重启)如果需要当时验证就临时关闭setenforce 0
Getenforce
查看状态 Permissive是关闭成功Enforcing是没有关闭
systemctl restart sshd.service 重启sshd服务
netstat -tnlp |grep ssh