iT邦幫忙

0

Hyper-V 架設 ubuntu 修改 50-cloud-init.yaml 檔案設定固定 IP 無法 SSH 連線

  • 分享至 

  • xImage

今天嘗試在hyper-v設定ubuntu固定IP,不想IP是可以浮動,導致SSH的麻煩
作了以下操作

sudo   vi /etc/netplan/50-cloud-init.yaml
network:
    ethernets:
        eth0:
            addresses: [192.168.137.200/24]
sudo  netplan apply

之後ifconfig 數據如下
xxx

使用SSH連接出現錯誤

Connecting to 192.168.137.200:22...
Could not connect to '192.168.137.200' (port 22): Connection failed.

請問我哪邊做錯了嗎?


更新

嘗試1 : 將50-cloud-init.yaml檔案清空保存
結果 : 可以正確連線,但又變回浮動IP...
xxx

Connecting to 172.25.60.31:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

Welcome to Ubuntu 20.04.1 LTS (GNU/Linux 5.4.0-47-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

  System information as of Mon 14 Sep 2020 03:00:05 AM UTC

  System load:  0.0               Processes:                126
  Usage of /:   8.1% of 61.76GB   Users logged in:          1
  Memory usage: 17%               IPv4 address for docker0: 172.17.0.1
  Swap usage:   0%                IPv4 address for eth0:    172.25.60.31


30 updates can be installed immediately.
0 of these updates are security updates.
To see these additional updates run: apt list --upgradable


Last login: Mon Sep 14 02:11:39 2020 from 172.25.48.1
test@test:~$ 

嘗試 : 按照 wrxue 大神做法

看你使用浮動IP的結果,你的介面卡eth0網段應該是172.25.48.0/20,你設定一個192.168.137.200/24當然不會通

network:
        ethernets:
                eth0:
                        addresses: [172.25.60.31/24]

結果 : 可以正常SSH連線!

Connecting to 172.25.60.31:22...
Connection established.
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
wrxue
iT邦好手 1 級 ‧ 2020-09-14 11:13:55
最佳解答

看你使用浮動IP的結果,你的介面卡eth0網段應該是172.25.48.0/20,你設定一個192.168.137.200/24當然不會通

也許你可以實驗

  1. 把浮動IP172.25.60.31/20寫到50-cloud-init.yaml,確定能連線
  2. 再給與浮動IP同網段的IP172.25.60.32/20,確定能連線
  3. 再給與浮動IP不同網段的IP192.168.137.200/24,確定不能連線,就是網段問題

若連第一步都無法連線,就肯定是哪裡設定錯了

感恩wrxue 大神!讚嘆wrxue 大神!

我要發表回答

立即登入回答