linux修改默认的SSH远程端口22
1. 编辑sshd_config文件
[root@localhost ~]# vim /etc/ssh/sshd_config
#Port 22 // 搜索 #Port 22行,删除开头的 # 字符,然后将其替换为要使用的端口,例如1234。请确保该端口1234上没有正在运行的服务。
Port 1234
2. 重新启动sshd服务
[root@localhost ~]# service sshd restart
3. [可选项]如果您正在使用frewall防火墙,则需要打开端口1234。(CentOS 7)
[root@localhost ~]# firewall-cmd --zone=public --add-port=3715/tcp --permanent
[root@localhost ~]# firewall-cmd --reload
[root@localhost ~]# service sshd restart
4. [可选项]如果您正在使用SELinux,则需要打开端口1234。(CentOS 7)
[root@localhost ~]# semanage port -a -t ssh_port_t -p tcp 1234
[root@localhost ~]# semanage port -l | grep ssh // 检查是否添加成功,如出现1234端口号,即为成功。
5. [可选项]如果您正在使用像iptables这样的防火墙,则需要打开端口1234。(CentOS 6)
[root@localhost ~]# service iptables stop
[root@localhost ~]# iptables -A INPUT -p tcp --dport 1234 -j ACCEPT
[root@localhost ~]# service iptables save
[root@localhost ~]# service iptables start