ubuntu 配置固定ip

2021-08-27 17:35:41 字數 717 閱讀 9619

設定ip

$sudo gedit /etc/network/inte***ces

auto lo

iface lo inet loopback           

//注意這裡是本地連線,即連了網線的

auto eth0 

iface eth0 inet static 

address 192.168.0.111

netmask 255.255.255.0 

gateway 192.168.0.1

//如果是無線網路,即為wlan0  可以用ifconfig檢視

auto wlan0

iface wlan0 inet static 

address 192.168.0.111

netmask 255.255.255.0 

gateway 192.168.0.1

儲存,並關閉gedit。

這樣,ip並沒有立即生效。需要執行

$sudo /etc/init.d/networking restart

這時候就能ping到區域網中的電腦了。但是上不了internet,是因為沒有設定dns的原因。dns資訊儲存在/etc/resolv.conf中,一旦更改,立即生效。

$sudo gedit /etc/resolv.conf

nameserver 192.168.2.43

儲存並關閉,現在就可以上網了。

ubuntu16 10固定ip配置

netstat r 檢視路由表 ifconfig 檢視所有埠的配置 ethtool enp2s0 檢視網路埠的詳細資訊 sudo etc init.d networking restart 重啟網路服務,配置完成後重啟才能生效 a以下為臨時設定 調整速度 sudo ethtool s enp2s0 ...

ubuntu下固定IP位址配置方法

靜態設定ipubuntu網路配置資訊儲存在 etc network inte ces 檔案中,預設內容如下 auto eth0 iface eth0 inet dhcpauto lo iface lo inet loopback 設定靜態ip的方法如下 使用root使用者編輯 etc network...

Ubuntu設定固定IP

為虛擬機器設定固定ip的方法 1 設定ip 閘道器 子網掩碼 vi etc network inte ces,然後新增如下內容 auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.161 ...