Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
|
computer:raspberrypi:netzwerk [2013/09/05 08:11] ristigl [Proxy] |
computer:raspberrypi:netzwerk [2018/03/16 21:11] (aktuell) |
||
|---|---|---|---|
| Zeile 33: | Zeile 33: | ||
| </file> | </file> | ||
| - | Für Wlan zu Hause: | + | Für Wlan zu Hause (WPA/WPA2): |
| <file> | <file> | ||
| Zeile 47: | Zeile 47: | ||
| key_mgmt=WPA-PSK #WPA-PSK (pre shared key); WPA-EAP (Extensible Authentication Protocol) | key_mgmt=WPA-PSK #WPA-PSK (pre shared key); WPA-EAP (Extensible Authentication Protocol) | ||
| psk="PASSWORT" | psk="PASSWORT" | ||
| + | } | ||
| + | </file> | ||
| + | |||
| + | Für Wlan zu Hause (WEP): | ||
| + | |||
| + | <file> | ||
| + | ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | ||
| + | update_config=1 | ||
| + | |||
| + | network={ | ||
| + | ssid="Netzwerkname" | ||
| + | scan_ssid=1 | ||
| + | key_mgmt=NONE | ||
| + | wep_tx_keyidx=0 | ||
| + | wep_key0="PASSWORT" | ||
| } | } | ||
| </file> | </file> | ||
| Zeile 64: | Zeile 79: | ||
| allow-hotplug wlan0 | allow-hotplug wlan0 | ||
| iface wlan0 inet dhcp | iface wlan0 inet dhcp | ||
| + | wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | ||
| + | |||
| + | iface default inet dhcp | ||
| + | </file> | ||
| + | |||
| + | Für eine feste IP-Adresse (für Fernzugriffe) | ||
| + | <file> | ||
| + | auto lo | ||
| + | iface lo inet loopback | ||
| + | |||
| + | iface eth0 inet dhcp | ||
| + | |||
| + | allow-hotplug wlan0 | ||
| + | iface wlan0 inet dhcp | ||
| + | address 192.168.2.100 # Feste IP | ||
| + | netmask 255.255.255.0 | ||
| + | gateway 192.168.2.1 | ||
| wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | ||