操作系统:CentOS

远程连接工具:SecureCRT

实验任务:CentOS 6.0修改ssh远程连接端口

实验步骤:

1)添加9899端口的方式如下:

a)方式一:

[root@www ~]#  vi  /etc/sysconfig/iptables   

-A  INPUT -p tcp -m state --state NEW -m tcp --dport 9899  -j  ACCEPT

[root@www ~]# /etc/init.d/iptables restart

b)方式二:

[root@www ~]# iptables  -A  INPUT -p tcp -m state --state NEW -m tcp --dport 9899  -j  ACCEPT

[root@www ~]# /etc/init.d/iptables save

[root@www ~]# /etc/init.d/iptables restart

2)修改ssh端口配置文件

[root@www ~]# vi  /etc/ssh/sshd_config

在端口#Port 22下面增加Port  9899

#Port 22

Port 9899

[root@www ~]# service  sshd  restart

3)远程连接CentOS

CentOS修改远程连接端口号_第1张图片

4)禁止root通过ssh远程登录
[root@www ~]#
vi  /etc/ssh/sshd_config
# PermitRootLogin  yes   #仅可以用普通用户连接

  PermitRootLogin  no      #禁止root用户远程连接