1. 程式人生 > >SecureCRT 通過ssh協議連線ubuntu伺服器

SecureCRT 通過ssh協議連線ubuntu伺服器

ubuntu版本16.04,需關閉防火牆:sudo  ufw disable

  1. 確認ubuntu安裝openssh-server服務

        如果沒有安裝,通過命令下載安裝sshd:

        sudo apt-get install openssh-server openssh-client

    2.安裝完成後確認ssh是否在監聽22埠:netstat -nat | grep 22

    

    3.然後通過CRT連線:輸入伺服器ip和使用者名稱密碼即可連線,

    

    4.注意sshd配置檔案預設是不允許用root使用者連線的,如果想用root使用者連線,需要修改配置檔案:

    vim  /etc/ssh/sshd_config

    

    修改為yes即可,然後重啟服務service ssh restart