Tuesday, April 8, 2014

Ubuntu 網路IP的設定方式

要如何在Ubuntu改成固定的ip設定呢?

請先用指令看網路的編號
ifconfig

接著請用指令開啟
sudo vim /etc/network/interfaces

然後把原本加入以下的內容 (下面的eth3請依照ifconfig使用的ethernet port修正)
auto eth3
iface eth3 inet static
address 172.24.80.1xx
netmask 255.255.255.0
gateway 172.24.80.253
dns-nameservers 172.24.80.253


ps. 如果是用虛擬機器(如VirtualBox),請依照以下的方法修改

1)先按"設定值"
 2)再修正NAT為網接介面卡(Bridge Interface),並在名稱(N)中選擇正確可以對外連線的網卡



--------
除此之外,如果要設定成內網的話,可以使用以下的方式:
然後把原本加入以下的內容 (下面的eth3請依照ifconfig使用的ethernet port修正,Getway跟DNS可以不用設定)
auto eth3
iface eth3 inet static
address 192.168.1.1
netmask 255.255.255.0

--------
關於DHCP的設定方式
auto eth1
iface eth1 inet dhcp
netmask 255.255.255.0
gateway 172.24.80.254

dns-nameservers 172.24.80.253 172.24.80.254

No comments:

Post a Comment