Ubuntu 設定網路卡

Ubuntu 設定網路卡

設定檔 interfaces

sudo nano /etc/network/interfaces

auto lo # 啟用 lookback 設備。注意,請不要改動它!
iface lo inet loopback # 設定 lookback 設備。注意,也不要改動到它!

auto eth0 # 啟用 eth0 網路卡,若您有其他網路卡,可以直接
auto eth1 # 加在後面變成 auto eth0 eth1 或者獨立成一行設定

iface eth0 inet static # 設定 eth0 這張網路卡為固定 ip
address 192.168.1.5 # 設定 IP 地址
netmask 255.255.255.0 # 設定子網路遮罩
gateway 192.168.1.1 # 設閘道器
dns 192.168.1.1#設DNS
network 192.168.1.0 # 設定網路代號,不一定要設定,可有可無!
broadcast 192.168.1.255 # 設定廣播地址,不一定要設定,可有可無!

iface eth1 inet dhcp # 設定 eth1 這張網路卡從 DHCP server 取得 IP

重新啟用網路介面:

sudo /etc/init.d/networking restart

也可以只重新啟動單一網路設備:

sudo ifdown eth0 # 關閉 eth0 這個裝置
sudo ifup eth0 # 啟用 eth0 並從 interfaces 讀取設定檔

=========================================================
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0 p5p1
iface eth0 inet static
        address 192.168.1.1
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        #gateway
        #dns
        dns-nameservers 192.168.1.248 192.168.1.249

iface p5p1 inet static
        address 59.125.1.1
        netmask 255.255.255.0
        gateway 59.125.1.254
        dns-nameservers 168.95.1.1

參考資料:http://joy715.blogspot.tw/2007/09/ubuntu.html