RaspAP / raspap-webgui

Simple wireless AP setup & management for Debian-based devices
https://raspap.com/
GNU General Public License v3.0
4.47k stars 791 forks source link

[Bug]: changing wifi password via config does not work #1502

Closed NL-TCH closed 9 months ago

NL-TCH commented 10 months ago

Code of Conduct

Issue reporting checklist

Operating System

Raspberry Pi OS (64-bit) Lite Bookworm

Quick install or Manual setup?

Quick install

Onboard wireless chipset or external adapter?

Onboard wireless chipset

Hardware

Raspberry Pi 4 Model B

RaspAP version

3.0 (Latest)

Other software or services running with RaspAP?

Yes (specify below)

Contact details (optional)

discord: TCH

Bug description

when using https://gist.github.com/billz/2cc43e96563293d650e313e068d52dfb or manually editing the /etc/hostapd/hostapd.conf file the SSID can be changed. but when changing the wifi password, clients cannot connect anymore with the old nor new password. is this a bug?!

Steps to reproduce

change the wpa_passphrase in /etc/hostapd/hostapd.conf and reload the daemon + raspapd services.

again, changing ssid works, but password not!

Screenshots

No response

Additional context

No response

Relevant log output

No response

NL-TCH commented 10 months ago

owh this might have to do something with setting a custom DHCP pool, then removing the docker container. the WLAN0 settings of the adapter stay, but the container is removed, when creating a new raspap container, nothing can connect anymore.

maybe we need a cleanup script for on the docker host .... i'll wait for that before i can continue working on the API, i don't want to reinstall my pi :(

NL-TCH commented 10 months ago

uncommenting the static config in /etc/dhcpcd.conf on the host and reinstalling the docker container gives the interface it's ip's back:

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.3.141.1  netmask 255.255.255.0  broadcast 10.3.141.255
        inet6 fe80::3a7f:e86a:3329:a5f8  prefixlen 64  scopeid 0x20<link>
        ether dc:a6:32:41:62:38  txqueuelen 1000  (Ethernet)
        RX packets 13  bytes 1573 (1.5 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 179  bytes 30160 (29.4 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

but still clients cannot connect

NL-TCH commented 10 months ago

even when running the uninstaller on container1, deleting the container, running a new docker container with raspap. containers cannot connect

billz commented 10 months ago

In a Docker context, I think this can be resolved by adding a volume for config files:

- ./raspap-conf/hostapd.conf:/etc/hostapd/hostapd.conf:rw

(untested)