linux修改ssh端口号 Gary Wang 2023-05-15 前端 vps 编辑配置文件 1vim /etc/ssh/sshd_config 添加一个新的端口 12345# If you want to change the port on a SELinux system, you have to tell# SELinux about this change.# semanage port -a -t ssh_port_t -p tcp #PORTNUMBERPort 22Port 10022 重启服务 12systemctl restart sshd shutdown -r now 使用新的端口号登录 如果没有问题再注释掉22端口 如果只有22端口则不需要添加22端口 默认注释即可