问题描述
主机启动后网络不通,没有eth0网卡
问题排查
1. 重启eth0网卡,失败
从日志中看到系统找不到eth0网卡。
2. 查看 /etc/network/interfaces 是以静态的方式获取IP,我们目前线上vpc推荐用DHCP的方式去获取IP。尝试将配置文件修改为:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
重启网络,还是报网卡找不到的错误。
3. 在系统上输入ifconfig \-a, 显示:
在/etc/default/grub 中添加这一句 GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0" 添加这句,然后执行update-grub;
重启后恢复。
新建vpc实例,推荐以DHCP的方式:
cat /etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp