#vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 //網卡的代號
BOOTPROTO=no //是否使用 dhcp
HWADDR=00:1e:8c:1e:64:4f //網卡卡號(MAC)
IPADDR=192.168.1.70 //IP位址
NETMASK=255.255.255.0 //網路遮罩
ONBOOT=yes //是否預設啟動此介面
GATEWAY=192.168.1.1 //通訊閘
NM_CONTROLLED=yes //額外的網管軟體
DNS1=168.95.1.1
DNS2=8.8.8.8
檢視網卡狀態
#ifconfig
啟動與關閉網卡
#ifup eth0
#ifdown eth0
It’s much easier to untnesdard when you put it that way!