ubuntu 18.04的網路管理程式改為netplan
了,因此配置方式也需要改!
檢視ip:
ifconfig -a
檢視當前的配置檔案:
cat /etc/netplan/
50-cloud-init.yaml
如果要使用靜態ip的話,需要使用vi /etc/netplan/50-cloud-init.yaml
,將該配置檔案修改為下面的樣子:
# this file is generated from information provided by
# the datasource. changes to it will not persist across an instance.
# to disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network:
network:
ethernets:
enp0s3:
addresses:
[192.168
.85.154/24
,]dhcp4: no
dhcp6: no
gateway4:
192.168
.85.1
nameservers:
addresses:
[8.8
.8.8
,9.9
.9.9
] version:
2
其中,把dhcp4/dhcp6都設為no予以關閉,設上自己的ip位址、閘道器和網域名稱伺服器。
此處靜態ip為ifconfig
獲取的內網位址,而不是自己物理機電腦的ip位址(不能自己隨便寫)。
如果是通過ssh遠端訪問的,需要使用新的ip重新連線!
Ubuntu18 04 設定靜態IP
先吐槽一下,linux下難道就沒有乙個統一的指令來配置永久靜態ip麼!ubuntu18.04 靜態ip使用netplan來配置,需要修改 etc netplan 裡的yaml檔案,我的檔案是 etc netplan 50 cloud init.yaml 所以 sudo vim etc netplan...
ubuntu18 04設定靜態IP
ubuntu18與ubuntu14 16設定靜態ip地方方法不同,很多人沒去讀更新文件的時候往往會設定靜態ip位址不成功,下面是具體的設定方法 做之前一定要確認自己作業系統的版本,每個版本設定的方法有時完全不相同 sudo vim etc netplan yaml yaml檔名稱不同,這裡以正則匹配...
ubuntu18 04 靜態IP位址設定
sudo gedit etc netplan 01 network manager all.yaml我這裡是原來沒有這個檔案直接建立了乙個新的 貼上以下內容 let networkmanager manage all devices on this system network version 2 ...