Created
October 22, 2015 12:40
-
-
Save dekokun/0cbb67ba2e7b4826c9af to your computer and use it in GitHub Desktop.
ラズパイの無線LAN運用に成功したconfigファイル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /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