sudo iw dev wlan0 set power_save offsudo nano /boot/config.txt### Internen WLAN-Chip abschalten (z.B. Pi Zero W / Zero 2 W / 3 / 4 / 5) dtoverlay=disable-wifi ### Bluetooth abschalten dtoverlay=disable-bt
sudo apt -y install dnsmasq hostapd dhcpcd5sudo nano /etc/dhcpcd.confinterface wlan0 static ip_address=10.0.0.1/8 nohook wpa_supplicant
sudo systemctl restart dhcpcdip l stellen wir fest, dass eth0 und wlan0 als Interface vorhanden sind.sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf_alt && sudo nano /etc/dnsmasq.confinterface=wlan0 no-dhcp-interface=eth0 dhcp-range=10.0.1.1,10.254.254.254,255.0.0.0,24h dhcp-option=option:dns-server,10.0.0.1 # ### Nachfolgende Zeile auskommentieren wenn "Captive Portal" gewünscht ### und KEIN Betrieb an einem anderen Netz gewünscht ### Bitte während der Installation nicht auskommentieren #address=/#/10.0.0.1