Raspbian
Konfiguration
sudo raspi-config
Netzwerk
Werkezeuge
sudo apt-get update sudo apt-get install dnsutils
Wireless
In der Datei /etc/network/interfaces folgende Zeilen hinzufügen / anpassen:
auto wlan0 allow-hotplug wlan0 iface wlan0 inet static address <static ip> netmask 255.255.255.0 gateway 10.0.0.1 dns-nameservers <nameserver ip> wpa-ap-scan 1 wpa-scan-ssid 1 wpa-ssid "<ssid>" wpa-psk "<password>"
Backup
auto lo iface lo inet loopback iface eth0 inet static address 10.0.0.98 netmask 255.255.255.0 gateway 10.0.0.1 auto wlan0 allow-hotplug wlan0 iface wlan0 inet static address 10.0.0.99 netmask 255.255.255.0 gateway 10.0.0.1 wpa-ap-scan 1 wpa-scan-ssid 1 wpa-ssid "<ssid>" wpa-psk "<password>" up sysctl -w net.ipv4.ip_forward=1 up iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
Links
http://www.netzmafia.de/skripten/hardware/RasPi/RasPi_Network.html
http://raspberrypiguide.de/howtos/ssh-zugriff-unter-raspbian-einrichten/
https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md
http://linux.die.net/man/5/wpa_supplicant.conf
Weitere Dienste
Links
https://www.elektronik-kompendium.de/sites/raspberry-pi/
Zurück zu Hauptseite