SETUP YOUR NETWORK
網路的手動設定
1. 設定檔 /etc/sysconfig/network
2. NETWORKING=yes < - - - 是否啟動網路
HOSTNAME=your.host.name < - - - 主機的名稱
3. 網路卡的參數設定 /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 < - - - 裝置名稱
ONBOOT=yes < - - - 是否在開機啟動網路
BOOTPROTO=static < - - -啟動時的ip設定 static or dhcp取得
IPADDR=192.168.0.111 < - - -IP位址
BROADCAST=192.168.1.255 < - - -廣播位址
GATEWAY=192.168.1.1 < - - - 這個網路卡的GETWARE
#GATEWAY=eth0 < - - - 這是另一種寫法
1. DNS的設定檔 /etc/resolv.conf
nameserver 168.95.192.1
nameserver 168.95.1.1
2. 網路卡的啟動與關閉
#/etc/rc.d/init.d/network restart < - - - 重新啟動網路介面
#ifup eth0 < - - - 啟動 eth0
#ifdown eth0 < - - - 關閉 eth0
#ifconfig eth0 up < - - - 啟動 eth0
#ifconfig eth0 down < - - - 關閉 eth0
3. 臨時改變ip的方法(重新開機後就無效)
#ifconfig eth0 192.168.0.123 netmask 255.255.255.0