Changes between Initial Version and Version 1 of wade/raspberryPi
- Timestamp:
- Sep 6, 2013, 3:56:42 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
wade/raspberryPi
v1 v1 1 [[PageOutline]] 2 3 = 無線網路設定 = 4 * WPA 密碼設定: 5 * 設定檔:/etc/network/interfaces 6 {{{ 7 # allow-hotplug wlan0 8 iface wlan0 inet manual 9 wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf 10 iface default inet static 11 address 10.1.2.20 12 netmask 255.255.255.0 13 network 10.1.2.0 14 gateway 10.1.2.1 15 }}} 16 * 設定檔:/etc/wpa_supplicant/wpa_supplicant.conf 17 {{{ 18 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev 19 update_config=1 20 21 network={ 22 ssid="Your SSID Here" 23 proto=RSN 24 key_mgmt=WPA-PSK 25 pairwise=CCMP TKIP 26 group=CCMP TKIP 27 psk="YourPresharedKeyHere" 28 } 29 }}}