Skip to content

Instantly share code, notes, and snippets.

@dekokun
Created October 22, 2015 12:40
Show Gist options
  • Save dekokun/0cbb67ba2e7b4826c9af to your computer and use it in GitHub Desktop.
Save dekokun/0cbb67ba2e7b4826c9af to your computer and use it in GitHub Desktop.
ラズパイの無線LAN運用に成功したconfigファイル
# /etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/myhome.conf
auto wlan1
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
# /etc/wpa_supplicant/myhome.conf
network={
proto=WPA
key_mgmt=WPA-PSK
pairwise=CCMP
group=CCMP
priority=2
# wpa_passphrase SSID passwordで出力したもの
ssid="XXXXXXXX"
psk=XXXXXXXXXX
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment