2011年12月6日 星期二

Network 修改固定IP

在 Ubuntu Server 更改 IP 。
1. 編輯 ip 設定檔

Goldenmelon@ubuntu:~$ sudo vi /etc/network/interfaces


2. 更改 eth0 設定,將
auto eth0
iface eth0 inet dhcp

改為
auto eth0
iface eth0 inet static
address 192.168.˙˙˙.˙˙˙
netmask 255.255.255.0
gateway 192.168.˙˙˙.˙˙˙


3. 重新連線
GoldenMelon@ubuntu:~$ sudo /etc/init.d/networking restart