Linux ez 2012-06-04
Ubuntu 預設為 DHCP,如果要指定IP,只需修改 /etc/network/interfaces 即可達成!
vi /etc/network/interfaces
將 eth0 內容更改為以下:
auto eth0 iface eth0 inet static address 192.168.x.x #IP位址 netmask 255.255.255.0 #網路遮罩 gateway 192.168.x.x #預設閘道
修改完可利用以下指令重新讀取網路設定
/etc/init.d/networking restart
標籤: Linux