在Ubuntu上配置SSH訪問並關閉防火牆

hackintosh發表於2024-10-17

在Ubuntu上配置SSH訪問並關閉防火牆可以透過以下步驟完成:

配置SSH訪問

  1. 安裝SSH伺服器

    sudo apt update
    sudo apt install openssh-server
    
  2. 啟動並檢查SSH服務

    sudo systemctl enable ssh
    sudo systemctl start ssh
    sudo systemctl status ssh
    
  3. 配置SSH(可選):

    • 編輯/etc/ssh/sshd_config檔案,根據需要修改配置,例如允許root登入:
      sudo nano /etc/ssh/sshd_config
      
    • 確保以下行沒有被註釋掉(去掉行首的#):
      PermitRootLogin yes
      PasswordAuthentication yes
      
  4. 重啟SSH服務

    sudo systemctl restart ssh
    

關閉防火牆

  1. 檢視防火牆狀態

    sudo ufw status
    
  2. 關閉防火牆

    sudo ufw disable
    
  3. 永久關閉防火牆(可選):

    sudo systemctl stop ufw
    sudo systemctl disable ufw
    

透過這些步驟,你應該能夠成功配置SSH訪問並關閉防火牆。如果你在過程中遇到任何問題,隨時告訴我!你對其他系統管理任務也感興趣嗎?

源: 與 Copilot 的對話, 2024/10/17
(1) Ubuntu - 檢視、開啟、關閉和永久關閉防火牆 - CSDN部落格. https://blog.csdn.net/qq_43116031/article/details/133818049.
(2) 【原創】【終極詳細】ubuntu關閉防火牆方法 - CSDN部落格. https://blog.csdn.net/DameLillardd/article/details/122585475.
(3) Ubuntu系統關閉防火牆的正確方式 - CSDN部落格. https://bing.com/search?q=Ubuntu+關閉防火牆.
(4) Ubuntu中關閉防火牆的方法 - 百度智慧雲. https://cloud.baidu.com/article/2693491.
(5) Ubuntu: 配置ssh,保姆級教程 - CSDN部落格. https://blog.csdn.net/weixin_44197719/article/details/119888235.
(6) 如何在 Ubuntu 20.04 啟用 SSH,並且透過區域網登入Ubuntu .... https://blog.csdn.net/jaken_xie/article/details/110329684.
(7) Ubuntu中安裝和配置SSH的完全指南_ubuntu ssh配置-CSDN部落格. https://bing.com/search?q=Ubuntu+配置+SSH+訪問.
(8) 啟用透過 SSH 遠端訪問 - Official Ubuntu Documentation. https://help.ubuntu.com/stable/ubuntu-help/sharing-secure-shell.html.zh-CN.
(9) undefined. https://help.ubuntu.com.
(10) undefined. https://landscape.canonical.com.
(11) undefined. https://ubuntu.com/advantage.
(12) undefined. https://cloud.tencent.com/developer/article/1638882.
(13) undefined. https://zhuanlan.zhihu.com/p/191627275.

相關文章