NetworkManager 不会触发以太网断开连接

NetworkManager 不会触发以太网断开连接

更新:

  • 仅适用于 Raspberry Pi 3。
  • 致力于 Rasberry Pi 1 和 Rasberry Pi 2。
  • 使用相同的 SD 卡进行测试。

更新结束

我有一个树莓派,我在其中安装了 NetworkManager。

我写了 2 个密钥文件(权限均为 600)并且它们工作得很好wifiethernet

  • 我可以插入/拔出以太网电缆以及与 LAN 的断开/连接正确触发。

  • 同样的事情对于无线上网,我可以启动/停止 wifi 路由器,并正确触发 wifi 的断开/连接。

只有一种情况 NetworkManager 行为不正确:

  • 如果树莓派启动了连接以太网电缆,然后在启动后拔掉电缆,以太网连接的状态保持连接状态,并且无法更改状态。

  • 另一方面,如果树莓派启动了没有以太网电缆已连接,启动后我反复将其插入/拔出,连接状态也会相应变化。

ethernet

[connection]
id=ethernet
uuid=60d17e82-1be7-3d0f-b924-e980be41fcba
type=ethernet

[ipv6]
method=ignore

[ipv4]

# use this block to use dhcp wired connection
method=auto

# otherwise use this block to set the connection manually
# method=manual
# address1=10.0.0.123/16,10.0.0.1
# dns=10.0.0.1;8.8.8.8;

wifi

[connection]
id=wifi
uuid=319f2d8e-3ce7-4e47-b6eb-fabb0aa69f68
type=wifi

[wifi]
mode=infrastructure
ssid=Facco

[wifi-security]
auth-alg=open
key-mgmt=wpa-psk
psk=facco2016

[ipv6]
method=ignore

[ipv4]

# use this block to use dhcp wired connection
method=auto

# otherwise use this block to set the connection manually
# method=manual
# address1=10.0.0.123/16,10.0.0.1
# dns=10.0.0.1;8.8.8.8;

答案1

发现是这个问题。

当前版本的以太网驱动程序存在问题:

https://github.com/raspberrypi/firmware/issues/1100

相关内容