1、修改配置檔案/etc/network/inte***ces
root@ubuntu:~#sudo gedit /etc/network/inte***ces
新增以下內容:
auto eth0#設定自動啟動eth0介面
iface eth0 inet static#配置靜態ip
address 192.168.11.88#ip位址
netmask 255.255.255.0#子網掩碼
gateway 192.168.11.1#預設閘道器
2、修改dns
sudo gedit /etc/resolve.conf
nameserver 127.0.0.1 #記得加上
nameserver 8.8.8.8#當地dns伺服器(用ipconfig /all 檢視本地dns,第乙個dns是預設的,共有2個dns)
注:#後面的注釋資訊不要加進去。
3、重啟網路,使配置生效
sudo /etc/init.d/networking restart
4、檢視ip是否配置成功 root@ubuntu:~# ifconfig
eth0 link encap:ethernet hwaddr 00:0c:29:2d:89:40
inet addr:192.168.11.88bcast:192.168.11.255 mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe2d:8940/64 scope:link
up broadcast running multicast mtu:1500 metric:1
rx packets:223 errors:0 dropped:0 overruns:0 frame:0
tx packets:253 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
rx bytes:24219 (24.2 kb) tx bytes:22960 (22.9 kb)
interrupt:19 base address:0×2024
lo link encap:local loopback
inet addr:127.0.0.1 mask:255.0.0.0
inet6 addr: ::1/128 scope:host
up loopback running mtu:16436 metric:1
rx packets:48 errors:0 dropped:0 overruns:0 frame:0
tx packets:48 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
rx bytes:3964 (3.9 kb) tx bytes:3964 (3.9 kb)
root@ubuntu:~#
注:紅字加粗「192.168.11.88」跟上面配置的ip一樣,表示ip配置成功。
如果網路無法啟動或不穩定,可嘗試如下操作:
gedit /etc/networkmanager/networkmanager.conf
managed=false設定成managed=true
Ubuntu配置和修改IP位址
習慣了使用redhat和centos,今天客戶要修改ubuntu的ip位址,怎麼著配置檔案也找不到,也沒有setup圖形配置程式,只能谷歌了一下,問題解決了,在此做一下備忘。1 修改配置檔案 etc network inte ces sudo vim etc network inte ces新增以下...
ubuntu配置和修改IP位址
習慣了使用redhat和centos,今天客戶要修改ubuntu的ip位址,怎麼著配置檔案也找不到,也沒有setup圖形配置程式,只能谷歌了一下,問題解決了,在此做一下備忘。1 修改配置檔案 etc network inte ces sudo vim etc network inte ces新增以下...
Ubuntu配置和修改IP位址
1 修改配置檔案 etc network inte ces root ubuntu sudo gedit etc network inte ces 新增以下內容 auto eth0 設定自動啟動eth0介面 iface eth0 inet static 配置靜態ip address 192.168....