Linux:Netzwerk

Aus Alexander's Wiki
Version vom 18. November 2014, 12:53 Uhr von Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== WLAN Konfiguration == === /etc/network/interfaces === <source lang="bash"> auto wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.c…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

WLAN Konfiguration

/etc/network/interfaces

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

wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant

network={
        ssid="Meine SSID"
        key_mgmt=WPA-PSK
        proto=WPA
        pairwise=TKIP
        group=TKIP
        psk="secret key"
}