Ubuntu設定靜態IP

2021-10-01 14:41:44 字數 1290 閱讀 7839

1.首先確認虛擬機器上面這幾個設定;

虛擬機器左側->對應虛擬機器系統->右鍵->設定

2.設定inte***ces即可

sudo

vi /etc/network/inte***ces

修改如下:

# inte***ces(5) file used by ifup(8) and ifdown(8)

#auto lo

#iface lo inet loopback

auto ens33

#設定靜態

iface ens33 inet static

#設定ip位址

address 192.168.0.135

#設定子網掩碼

netmask 255.255.255.0

#設定閘道器

gateway 192.168.0.1

#設定dns

dns-nameserver 114.114.114.114

重啟閘道器或者重啟虛擬機器:

sudo /etc/init.d/networking restart

//或者

圖形化介面設定參考

1ifconfig找不到ip

錯誤:啟動介面出現failed to start raise network inte***ces!

#啟用網絡卡

sudo

ifconfig ens33 up

#分配ip

sudo dhclient ens33

參考文件

2出現ping不通其他網路destination host unreachable問題

首先,下圖三種網路編輯名稱不能刪除,因為他們對應的橋接模式-僅主機-nat模式;刪除則不能使用對應的模組。

待更新!!

ubuntu設定靜態ip

ubuntu10.04設定靜態ip 2010 12 20 09 39 step1 設定ip vi etc network inte ces 檔案內容修改為 auto eth0 iface eth0 inet static address 192.168.1.2 gateway 192.168.1.1...

ubuntu設定靜態ip

ubuntu設定靜態ip 找到檔案並作如下修改 sudo vi etc network inte ces修改如下部分 auto eth0 iface eth0 inet static address 192.168.0.117 gateway 192.168.0.1 這個位址你要確認下 閘道器是不是...

ubuntu設定靜態ip

當dhcp伺服器出問題的時候,不能自動分配ip,就需要我們手動設定靜態ip 1 vim etc network inte ces 個人不是很習慣用vim,可以換成gedit就和記事本一樣操作啦 2 修改檔案內容如下 我的不叫eth0,是enp2s0,輸入ifconfig看第乙個 auto eth0 ...