Linux的网络配置文件/etc/network/interfaces中一般用auto或者allow-hotplug来定义网络接口的启动行为。
1、auto <interface_name>
在系统启动的时候启动网络接口,无论该网络接口设备是否存在,有无连接网线,如果该接口配置了DHCP,系统都会去执行获取DHCP,直到该接口超时后才会继续。
2、allow-hotplug <interface_name>
当内核从该接口检测到网络接口状态改变就会马上执行,所谓的热插拔模式。
建议设置为auto <interface_name>,配合systemctl restart networking.service重启网络服务来生效比较好。
目前有 0 条评论