debian重启系统后网络丢失的解决方法
debian重启系统后网络丢失的解决方法
重启服务器后,发现无法连接远程服务器,通过后天VNC进入系统
执行下面命令发现网卡接口为空。
ifconfig
解决方法如下,
vi /etc/network/interfaces
1
2
3
4
5
6
7
8
9
# The loopback network interface
auto lo #开机自动挂载
iface lo inet loopback
auto eth0 #开机自动挂载,连接网络
iface eth0 inet static #static表示使用静态/固定ip(需两条用于设 置),dhcp表示使用动态ip(忽略以下两条)
address 192.168.0.123 #ip地址
netmask 255.255.255.0 #子网掩码
gateway 192.168.0.1 #网关
dns-nameservers 8.8.8.8 #DNS
第二个虚拟ip配置可以参考上面文件但需要更改网卡接口名称,不可重复。
1
2
auto eth0:1
iface eth0:1 inet static
/etc/init.d/networking start
搞定~
如果实在问题还是无法解决可以使用下面最简单粗暴的方法
编辑一下文件,
/etc/rc.local
添加下面的命令
/etc/init.d/networking restart
注意这里测试发现必须是restart命令,使用start命令是无效的
至于为什么出现开机无法挂载网卡的原因是,安装的系统是debian7.0
之后手动升级到了8.0内核,
内核升级参考以下链接
💘 相关文章
- 在ubuntu和Debian系统单网卡绑定多个IP v6地址的方法
- debian 10安装MySQL服务器记录
- debian 8平滑升级到debian 9
- 更改或设置debian时区的方法
- Create Debian minimal with Hyper-V
- 折腾了几天终于搞定了esxi直通网卡和虚拟机交换机互通的问题。
- configing more ip in debian9
- Debian系统出现 "gpg: command not found"的解决方法
- debian/Ubuntu系统超级简单的防火墙配置
- how can do speed test network for debian /ubuntu?