如何在 Debian Jessie 启动时禁用 LAN 连接?我不知道是什么建立了这种联系。是任何配置文件还是我的 wicd 在启动时启动。但是当我打开 wicd 时,我可以看到系统启动后通过线路建立了连接。我不想要此连接,因为调制解调器连接此时不起作用。如何在启动时禁用 LAN?
接口文件:
root@debian:cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
root@debian:/home/gameboy#
答案1
这两行定义了要应用于eth0
界面的操作:
allow-hotplug eth0
iface eth0 inet dhcp
接口 ( ) 的手册页man interfaces
将非常详细地描述它,但本质上,它是在说
- 如果我们有一个
eth0
接口,请允许定义它 - 当我们发现
eth0
使用 DHCP 启动它时
在旧版本的 Debian 中,您可以简单地注释掉这两行。但是,在较新的版本中,这会告诉其他网络管理员控制该接口,因此不建议这样做。
相反,更改dhcp
为manual
,它告诉其他网络管理员您希望控制此文件中保留的接口,但您不希望它自动启动:
allow-hotplug eth0
iface eth0 inet manual