ifup和ifdown在raspbian Stretch lite上不起作用2017-09-07-raspbian-stretch-lite.img


11

我刚刚安装了最新的Raspbian Stretch Lite的干净映像。

具体来说- 2017-09-07-raspbian-stretch-lite.img

ifconfig 显示我的wifi接口wlan0被检测到并启动。

eth0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether b8:27:eb:c6:dc:d4  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1  (Local Loopback)
        RX packets 2516  bytes 144456 (141.0 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 2516  bytes 144456 (141.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.165  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::d4dd:c202:d337:c0de  prefixlen 64  scopeid 0x20<link>
        ether 00:24:a5:36:ed:49  txqueuelen 1000  (Ethernet)
        RX packets 49461  bytes 49499638 (47.2 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 36499  bytes 4455517 (4.2 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

但是,尝试使用ifdownifup命令表示该设备不存在。

[pi:~] sudo ifdown wlan0
ifdown: unknown interface wlan0

也许,仅当使用/ etc / network / interfaces来管理网络设备时,ifup和ifdown才起作用,而在2017-09-07的raspbian Stretch lite版本中显然不是这种情况


感谢您提供的有益评论!FYI我下载的精简版raspbian图像raspberrypi.org/downloads/raspbian 的一个,上面写着-基于Debian加长版Raspbian弹力精简版最小的图像:2017年9月上映日期:2017年9月7日内核版本:4.9
萨拉夫

/ etc / network / interfaces文件仍然存在。是否可以使用该文件来管理网络接口(并禁用dhcpcd)?
萨拉夫

1
对于那些被的“已弃用”状态所迷惑的人ifconfig,这是该ServerFault上的一个不错的线程:我应该使用Ifconfig退出吗?.. ifconfig将长期存在。有点像IPv4。配置系统有多种方法。我使用ifconfig它是因为它非常容易,并且会提供我习惯的出色输出...这是我的偏爱,只要它包含在回购协议中,我就将继续使用它。
RubberStamp

经过2年多的时间,这似乎仍然是一个有效的问题,没有明确的答案。该问答对您有帮助,但不是确定的。
Seamus

Answers:


15

什么起作用而不是

sudo ifup wlan0
sudo ifdown wlan0

sudo ifconfig wlan0 up
sudo ifconfig wlan0 down

3
当“存在的力量”决定改变所有这些(网络业务)时,他们如何让用户知道他们做了什么?或者,他们只是简单地做出改变,而让农民自生自灭?我最困惑的是它们遗留在/ etc中的所有“工件”。
Seamus '18

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.