linux下修改ssh默認端口號

1、簡介

     爲了系統的安全性,有時需要修改ssh的默認端口。修改方法如下:

     vim  /etc/ssh/sshd_config
     添加兩個Port

        # $OpenBSD: sshd_config,v 1.69 2004/05/23 23:59:53 dtucker Exp $ 
       # This is the sshd server system-wide configuration file. See
       # sshd_config(5) for more information.
       # This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin
       # The strategy used for options in the default sshd_config shipped with
       # OpenSSH is to specify options with their default value where
       # possible, but leave them commented. Uncommented options change a
       # default value.
       Port 22    //以前這個前面是有 # 號的
       Port 8284 

       #Protocol 2,1
       #ListenAddress 0.0.0.0
       #ListenAddress ::
       # HostKey for protocol version 1
       #HostKey /etc/ssh/ssh_host_key
       # HostKeys for protocol version 2
       #HostKey /etc/ssh/ssh_host_rsa_key
       #HostKey /etc/ssh/ssh_host_dsa_key


       重啓sshd服務

       /etc/init.d/sshd restart


      若防火牆開啓,需要修改防火牆設置。



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章