WLAN einrichten mit wpa supplicant: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „==Network-Manager rausschmeißen== apt-get remove network-manager ==installieren== apt-get install wpasupplicant ==Konfigurationsdatei== vi /etc/wpa_supplica…“)
 
 
Zeile 16: Zeile 16:
 
           pairwise=CCMP
 
           pairwise=CCMP
 
           group=CCMP
 
           group=CCMP
           psk="28grind06core61"
+
           psk="88g66c11"
 
  }
 
  }
 +
 
==Interfacekonfiguration==
 
==Interfacekonfiguration==
 
vi /etc/network/interfaces
 
vi /etc/network/interfaces

Aktuelle Version vom 17. Oktober 2014, 17:26 Uhr

Network-Manager rausschmeißen

apt-get remove network-manager

installieren

apt-get install wpasupplicant

Konfigurationsdatei

vi /etc/wpa_supplicant/wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant
eapol_version=1
ap_scan=1

network={
         ssid="ZECHPRELLER"
         scan_ssid=0
         proto=RSN
         key_mgmt=WPA-PSK
         pairwise=CCMP
         group=CCMP
         psk="88g66c11"
}

Interfacekonfiguration

vi /etc/network/interfaces

auto wlan0
iface wlan0 inet dhcp
 wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

und hoch

ifdown wlan0
ifup wlan0

Vorlage:HOWTO