Changes between Initial Version and Version 1 of wade/raspberryPi


Ignore:
Timestamp:
Sep 6, 2013, 3:56:42 PM (11 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • wade/raspberryPi

    v1 v1  
     1[[PageOutline]]
     2
     3= 無線網路設定 =
     4 * WPA 密碼設定:
     5   * 設定檔:/etc/network/interfaces
     6{{{
     7# allow-hotplug wlan0
     8iface wlan0 inet manual
     9wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
     10iface 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{{{
     18ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
     19update_config=1
     20
     21network={
     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}}}