如下圖,在Linux輸入檢視IP和網卡資訊指令
[[email protected]~]#ifconfig
隻能檢視到lo環回網卡,eth1部分的資訊檢視不到(紅色方塊部分)
檢視所有網卡配置資訊,檢視到實體網卡的名稱eth1和mac位址
[[email protected]~]#ifconfig -a
啟用實體網卡
[[email protected]~]#ifconfig eth1 up
啟用後,再次檢視
[[email protected]~]#ifconfig ,如下圖,沒有配置IP
檢視是否存在eht1的配置檔案,進入到/etc/sysconfig/network-scripts/
輸入指令[[email protected]~]#cd /etc/sysconfig/network-scripts/
[[email protected]~]#ls
如圖,發現沒有ifcfg-eth1 網卡配置檔案,有ifcfg-eth0
檢視ifcfg-eth0配置檔案
[[email protected] network-scripts]#vi ifcfg-eth0
打開eth0配置檔案内容如下圖
輸入wq退出
複制eth0的配置檔案,新的配置檔案 eth1
[[email protected] network-scripts]#cp ifcfg-eth0 ifcfg-eth1
[[email protected] network-scripts]#ls
新的配置檔案ifcfg-eth1已經複制好,如下圖
重新開機,網絡服務
[[email protected] network-scripts]#service network restart
發現網卡啟動失敗,提示eth0 eth1貌似不存在初始化失敗Failed
我們繼續,
檢視ifcfg-eth1配置檔案,如下圖
[[email protected] network-scripts]#vi ifcfg-eth1
修改為
DEVICE=eth1
HWADDR=00:0C:29:D5:D1:13
NAME="System eth1"
儲存退出
然後,删除eth0配置檔案,輸入以下指令
[[email protected] network-scripts]#rm -f ifcfg-eth0
[[email protected] network-scripts]#ls
ifcfg-eth0配置檔案已經删除,如下圖
重新開機網絡服務,如下圖,eth1和回環位址啟動OK
重新開機Linux 驗證eth1網卡是否啟動,
實體機上ping 192.168.0.222
網絡工作正常,如下圖