我正在尝试使用 wpa2-enterprise 连接到办公网络并在其中设置静态 IP。我第一次连接 dhcp,获得 IP,断开连接并添加以下信息:wpa_supplicant.conf 文件:
network={
ssid="myssid"
key_mgmt=WPA-EAP
proto=RSN
pairwise=CCMP TKIP
group=CCMP TKIP
identity="my_user"
password="mypass"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
}
/etc/网络/接口:
auto wlan0
allow-hotplug wlan0
iface wlan0 inet static
address 10.44.72.75
netmask 255.255.255.192
gateway 10.44.72.65
pre-up wpa_supplicant -B -Dwext -i wlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf -f /var/log/wpa_supplicant.log
post-down killall -q wpa_supplicant
重新启动后,我看到我在 ifconfig 中获得了 ip,但在外部和网关上都没有 ping。
我错过了什么?