Linux優化遠程SSH鏈接

優化遠程SSH鏈接

1.Linxu和Window的ssh鏈接區別
   html

Windom默認3389端口,管理員administartor   普通是guest
Linux 默認22端口    管理員root            普通一堆

2.修改默認配置
  shell

 ssh服務的啓動文件sshd(d表示服務端)
        2-1修改 /etc/ssh/sshd_config 

          GSSAPIAuthentication yes    解決一臺服務器管理多個ssh服務
            UseDNS no  加快響應速度由於在內網環境下
            PermitRootLogin no  不運行root用戶直接登陸
            Port 11544 更改訪問端口號
            ListenAddress  192.168.25.130  只監聽內網的IP
        2-2重啓服務
            service sshd restart       寫入命令進內存
            service sshd reload(優先)  reload是一個平滑的訪問,不影響用戶使用
        2-3查看鏈接端口
            netstat -an | grep EST

【更多參考】https://www.cnblogs.com/ftl1012/p/ssh.html服務器

相關文章
相關標籤/搜索