最近用VMware安装完CentOS后,使用ifconfig配置IP时,发现网卡eth0不见了。
1、使用命令:ifconfig eth0 up
启动网卡,但是IP地址、子网掩码和网关都是错误的。
可以使用如下命令更改:
ifconfig eth0 10.0.13.24 netmask 255.255.255.0 gateway 10.0.13.1
如果网络连接方式使用的是桥接,可以继续以下操作来配置网络eth0。
免费学习视频教程推荐:linux视频教程
2、修改/etc/sysconfig/network-scripts/ifcfg-eth0
文件,内容如下:
DEVICE=eth0 // 设备名称 ONBOOT=yes // 在系统启动时激活设备yes或no BOOTPROTO=static // static或dhcp IPADDR=10.0.13.24 // IP地址 NETMASK=255.255.255.0 // 子网掩码 GATEWAY=10.0.13.1 // 网关 HWADDR=00:0C:29:96:38:F8 // MAC地址
3、使用命令:service network restart
重启网络服务
相关文章教程推荐:linux教程
Atas ialah kandungan terperinci linux虚拟机找不到网卡eth0. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!