Ubuntu配置ip的方法

Ubuntu系統進行網絡配置有的時候用圖形界面不起做用,這種狀況下能夠直接修改某些啓動腳本或配置文件ubuntu

Ubuntu系統進行網絡配置涉及到幾個配置文件
1./etc/network/interfaces 2./etc/resolv.conf服務器

操縱步驟:
1.打開ubuntu的/etc/network/interfaces文件默認的內容以下:
auto lo
iface lo inet loopback
動態獲取的配置方法:
auto eth0
iface eth0 inet dhcp
靜態分配的配置方法:
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.1
根據配置要求(是動態分配仍是自動獲取)修改該配置文件保存。網絡

2.添加域名服務器:打開/etc/resolv.conf文件
添加這行:nameserver 202.99.166.4ide

3.重啓下網絡
$/etc/init.d/networking restart(這條命令是重啓網卡)
或者
$ifdown eth0
$ifup eth0(這兩條命令是有針對性的重啓某個網絡接口,由於一個系統可能有多個網絡接口)oop

4.查看網絡配置的參數是否是正確(每進行一次操做均可以查看一下是否是修改了網絡配置)
$ifconfigrest

5.看看是否是可以ping通
ping不通網關說明網絡配置有問題 ping不通域名說明dns有問題server

有些時候須要修改網卡的硬件地址:
方法一:
$ifconfig eth0 hw ether XX:XX:XX:XX:XX:XX
$/etc/init.d/networking restart(重啓網卡)
方法二:
以上只是暫時的修改硬件地址要永久修改,直接編輯 /etc/network/interfaces 文件,在 iface eth0 inet static 後面添加一行: pre-up ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx(要改爲的MAC)
$ sudo /etc/init.d/networking restart(重啓網卡)dns

相關文章
相關標籤/搜索