總網頁瀏覽量

2013年6月29日 星期六

ubuntu12.04新增網卡--VirturlBox

記得在virtualbox開啟網路卡
這樣ubuntu才會抓地到網卡

本例子是新增"僅限主機介面卡"

登入root權限

gedit /etc/network/interfaces


 auto eth1  //網卡名稱
iface eth1 inet static
address 192.168.0.168
netmask 255.255.0.0
gateway 192.168.0.10
network 192.168.0.0

broadcast 192.168.0.255
=======================================================

auto lo # 啟用 lookback 設備。
iface lo inet loopback # 設定 lookback 設備。

#DHCP 設定方式:

auto eth0
iface eth0 inet dhcp

#Static 設定方式:

  auto eth0
  iface eth0 inet static
  address 192.168.0.6
  netmask 255.255.255.0
  gateway 192.168.0.1 
  #gateway會視Router設定而變。
  dns-nameservers 8.8.8.8

沒有留言:

張貼留言