我遇到的问题是,在 eth0 尝试获取 IP 地址之前,以太网 PHY 未启动
这是我的等/网络/接口
# Configure Loopback
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
post-up /etc/network/if-post-up.d/nfs
这是日志
Starting network...
eth0: device MAC address 7e:f1:78:29:23:d0
stmmac_open: failed PTP initialisation
udhcpc (v1.22.1) started
Sending discover...
Sending discover...
Sending discover...
No lease, failing
libphy: stmmac-0:01 - Link is Up - 100/Full
正如您所看到的,只有在 udhcpc 停止尝试获取 IP 地址后,PHY 才完全启动。
有没有办法让udhcpc等待PHY启动?谢谢