Raspberry PI WLAN konfigurieren

/etc/network/interfaces

auto lo
iface lo inet loopback
#iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
auto wlan0
iface wlan0 inet static
address IP-ADRESSE
netmask NETZMASKE
gateway GATEWAY
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

/etc/wpa-supplicant/wpa_supplicant.conf

update_config=1
network={
ssid=“NETZWERK-NAME“
psk=“WLAN-Schlüssel“
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}

Ausserdem musste ich noch die „Firmware“ für meinen Dongle (TP-Link)
herunterladen. Die wird offensichtlich bei jedem Anstecken/Strom EIN
neu in den Stick geladen :

cd /lib/firmware/rtlwifi
wget http://www.lwfinger.com/download/rtl8188eufw.bin

DNS stellt man in der „/etc/resolv.conf“ ein.
(Wird offenbar sofort aktiv)
Am besten man installiert dazu :
apt-get install dnsutils

dann kann man mit „nslookup“ checken, welcher DNS Server verwendet wird.

NTP sollte (falls ein lokaler vorhanden) auch umgestellt werden.
/etc/ntp.conf

Und dann mit „service ntp restart“ neustarten.