1. 一般ssh服务的默认端口为22端口,查看监听的端口用netstat

  2. [root@ansiblemoniter ~]# netstat -tnlp |grep ssh

    tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      9085/sshd

    tcp        0      0 :::22                       :::*                        LISTEN      9085/sshd

  3. 修改默认ssh 端口

  4. vim /etc/ssh/sshd_config

  5. Port 22 改成  Port 3322

  6. 重启ssh    service ssh restart