Hello, how can I configure the Raspberry Pi as an access point or hotspot to connect other Raspberry Pis as well as user PCs responsible for updating the content to be distributed? The Raspberry Pis cannot connect to the company network for security reasons.
I try to use nmtui but no succesS
Thanks
J’ai trouvé la solution.
sudo nmcli con add con-name hotspot ifname wlan0 type wifi ssid “anthias-ap” ip4 192.168.0.100/24 gw4 192.168.0.1
sudo nmcli con modify hotspot wifi-sec.key-mgmt wpa-psk
sudo nmcli con modify hotspot wifi-sec.psk “anthias-ap”
sudo nmcli con modify hotspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
The Anthias GitHub repository doesn’t document how to configure a Raspberry Pi as an access point at the moment. However, the following documentation from Adafruit might be useful to you: https://cdn-learn.adafruit.com/downloads/pdf/setting-up-a-raspberry-pi-as-a-wifi-access-point.pdf
Create an isolated network from your main company network, just make sure the VLAN’s are not able to connect to each other. Then you can control what the PI’s can connect to.
1 Like