Think before you speak, read before you think.

树莓pi连接无线网络

这里使用的前提是已经连接好usb无线网卡, ifconfig命令能够看到wlan0 编辑 /etc/wpa.config, 写入以下内容

network={
    ssid="i_am_ssid"
    proto=RSN
    key_mgmt=WPA-PSK
    pairwise=CCMP TKIP
    group=CCMP TKIP
    psk="i_am_password"
}

接下来编辑/etc/network/interfaces,注意,如果默认使用无线网的话,写配置文件时,将wlan0写在eth0之前。我之前是将wlan0写在eth0之后,这种情况下,只有在插有线的时候无线才能用,拨掉有线就不能用了;将wlan0写在eth0之前,就可以单独使用无线,上述情况仅供参考。 如果想要动态获取地址,请按如下配置:

auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa.config

如果要静态获取ip地址,则按如下配置:

auto wlan0
iface wlan0 inet static
address 192.168.1.21
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8
wpa-conf /etc/wpa.config

配置完成后重启网络或pi后生效


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *