設定IP
1 | vim /etc/network/interfaces |
改成
1 | auto eth0 |
2 | iface eth0 inet static(若要使用DHCP則將static改為dhcp) |
3 | address 210.71.4.88 |
4 | netmask 255.255.255.0 |
5 | gateway 210.71.4.254 |
設定DNS
1 | vim /etc/resolv.conf |
加入
1 | nameserver 210.71.11.200 |
重新啟動網路設定
1 | /etc/init.d/networking restart |