RICbot Hotspot

From Rsewiki
Revision as of 08:36, 28 April 2026 by Jca (talk | contribs) (Created page with "Back to Ricbot == Raspberry hotspot == If Wi-Fi is not available, then start your own hotspot. === Network manager === Network Manager do it all in one go: sudo nmcli device wifi hotspot ssid <example-network-name> password <example-password> This will also make an entry in ''/etc/NetworkManager/system-connections/'' called ''Hotspot.nmconnection'' [connection] id=Hotspot uuid=407d1e04-7971-4c33-9a71-c760c803ce9b type=wifi autoconnect=false interface-na...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Back to Ricbot

Raspberry hotspot

If Wi-Fi is not available, then start your own hotspot.

Network manager

Network Manager do it all in one go:

sudo nmcli device wifi hotspot ssid <example-network-name> password <example-password>

This will also make an entry in /etc/NetworkManager/system-connections/ called Hotspot.nmconnection

[connection]
id=Hotspot
uuid=407d1e04-7971-4c33-9a71-c760c803ce9b
type=wifi
autoconnect=false
interface-name=wlan0

[wifi]
mode=ap
ssid=raspberry

[wifi-security]
group=ccmp;
key-mgmt=wpa-psk
pairwise=ccmp;
proto=rsn;
psk=pipiAnika

[ipv4]
method=shared

[ipv6]
addr-gen-mode=default
method=ignore

[proxy]