为了提高服务器的安全性,您应该更改服务器上的SSH登录端口,而不要使用默认端口22 。如何在linux中更改SSH远程登录端口 。
1.编辑sshd_config文件
nano /etc/ssh/sshd_config
搜索 #Port 22行,删除开头的 # 字符,然后将其替换为要使用的端口,例如2404 。请确保该端口2404上没有正在运行的服务 。
【Linux更改SSH远程登录端口教程】2.重新启动sshd服务
service sshd restart
3. [选项]如果您正在使用像iptables这样的防火墙,则需要打开端口2404 。
service iptables stopiptables -A INPUT -m state –state NEW -m tcp -p tcp –dport 2404 -j ACCEPTservice iptables saveservice iptables start
推荐阅读
- 如何在Mac下生成ssh密钥?
- 并行SSH运维工具pssh
- Linux运维:多主机ssh封装器mussh
- Linux 程序编译过程的来龙去脉
- 从零安装一个Linux操作系统几种方法,以Ubuntu18.04为例
- 史上最详细的Linux网卡ifcfg-eth0配置详解
- 淘宝新店怎么改店铺名字 淘宝开店店名可以更改吗
- Linux useradd 命令介绍
- linux开放指定端口命令
- Linux中如何对硬盘进行分区、格式化、挂载使用