站長留言

  • ✅ 本站維護及更新歷史紀錄,詳情請參考公告
  • ✅ 有任何意見、想法,歡迎留言給Spicy知道喔
  • ✅ 固定於每周一至周五更新Blogger文章,周末不定期
LinuxsshUbuntu

【Linux】Ubuntu Server - 3: 遠端連線SSH 設定

tags: Linux Ubuntu

圖片來源

Netplan Setting 網路設定

  1. 安裝工具 sudo apt-get install net-tools
  2. 查詢有線網路ethernets名稱 networkctl
  3. 編輯設定檔 sudo vim /etc/netplan/[config.yaml]
    • 替換ethernets名稱
    • 替換指定Ubuntu Server的IP及gateway
    • 替換DNS
    # This is the network config written by 'subiquity'
    network:
      ethernets:
        enp0s31f6:
          addresses: [192.168.10.37/24]
          gateway4: 192.168.10.254
          nameservers:
                  addresses: [192.168.10.2]
          dhcp4: no
      version: 2
    
  4. 檢查 sudo netplan try
  5. 套用 sudo netplan apply

安裝SSH

  1. 查詢是否有安裝 dpkg -l | grep ssh
  2. openssh-clinet 已預設安裝
  3. 安裝openssh-server sudo apt-get install openssh-server
  4. 確認啟動 ps -e | grep ssh

登入SSH

  • 測試登入 ssh [username]@[server ip]
  • 利用Xshell於其他電腦遠端操作

Reference 參考資料

沒有留言:

張貼留言

本網站建議使用電腦或平板瀏覽