当我们启动 Raspberry pi 2 时,出现以下错误:

当 RPI 重新启动时,我们获得了一个 IP,我们可以在互联网上冲浪,所以我们不知道错误究竟意味着什么。我们与 WPA2 企业网络相连。
这是我的接口文件:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Run Code Online (Sandbox Code Playgroud)
这是我的 wpa_supplicant.conf 文件:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="Here comes my ssid"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP
auth_alg=OPEN
identity="Here comes my identity"
password="here comes my password"
}
Run Code Online (Sandbox Code Playgroud)
如何解决这个问题?