Ganz wichtig: USB-WiFi-Dongle einstecken
cat /etc/debian_version
sudo nmcli con add con-name hotspot ifname wlxxxxxxxx type wifi ssid SSID
ip a
herausgefunden werden.sudo nmcli con mod hotspot 802-11-wireless.mode ap 802-11-wireless.band bg
sudo nmcli con mod hotspot ipv4.addresses 10.0.0.1/8
sudo nmcli con mod hotspot ipv4.gateway 10.0.0.1
sudo nmcli con mod hotspot ipv4.method manual
sudo nmcli con mod hotspot ipv4.method shared
sudo nmcli con up hotspot
sudo nmcli con mod hotspot connection.autoconnect yes
sudo apt -y install dhcpcd
sudo mv /etc/dhcpcd.conf /etc/dhcpcd.conf_alt
sudo nano /etc/dhcpcd.conf
interface wlxxxxxxxxxxx static ip_address=10.0.0.1/8 nohook wpa_supplicant
wlxxxxxxxxxx ist der Name der im System aktiven WLAN Schnittstelle, Bitte mit ip a
herausfinden.
sudo systemctl restart dhcpcd && sudo systemctl enable dhcpcd
sudo apt -y install dnsmasq
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf_alt
sudo nano /etc/dnsmasq.conf
interface=wlxxxxxxxxxx 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;
sudo systemctl restart dnsmasq && sudo systemctl enable dnsmasq
sudo apt -y install hostapd
sudo nano /etc/hostapd/hostapd.conf
ip a
herausfinden.ssid=SSID interface=wlxxxxxxxxxxx channel=3 hw_mode=g ieee80211n=1 ieee80211d=1 country_code=DE
sudo nano /etc/default/hostapd
RUN_DAEMON=yes DAEMON_CONF="/etc/hostapd/hostapd.conf"
sudo nano /usr/lib/systemd/system/hostapd.service
EnvironmentFile=-/etc/default/hostapd
:ExecStartPre=/usr/bin/sleep 60
sudo systemctl unmask hostapd && sudo systemctl start hostapd && sudo systemctl enable hostapd
Weiter geht es ab hier nun mit der Installation der Server-Dienste.