2012/12/27

Raspberry Piの無線LAN設定関係メモ

以下のファイルを設定して、eth0とwlan0をそれぞれスタティックIPアドレスで運用しています。 Debian系はよくわからないので、見よう見まねです。

# cat /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
ctrl_interface_group=root
network={
 ssid="SSID"
 scan_ssid=1
 key_mgmt=WPA-PSK
 proto=WPA2 WPA
 pairwise=CCMP TKIP
 group=CCMP TKIP
 psk="パスフレーズ"
}

# cat /etc/network/interfaces
auto lo

iface lo inet loopback
iface eth0 inet static
address 192.168.1.xx
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1

allow-hotplug wlan0
iface wlan0 inet static
dns-nameservers 192.168.1.1
address 192.168.1.yy
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1

wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

0 件のコメント: