fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

Setup -> I have a running

Aim: I want the pi to always offer a on
based on the command

nmcli device wifi hotspot ssid pizerohotspot password my_password

Is this below a bad solution ?? -> I came up with this solution in the link below using a .service but fear it shows I am clueless? Is there a better way? Thanks!
loramesh.org/subpages/pi_insta

www.loramesh.orglora Mesh - raspberry pi setup
adingbatponder

I found this too.... about how to get a to be automatically on at
askubuntu.com/questions/146026 apt install dnsmasq-base -y
nmcli connection add type wifi ifname wlan0 con-name access_point autoconnect yes ssid my_ssid
nmcli connection modify access_point 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
nmcli connection modify access_point wifi-sec.key-mgmt wpa-psk
nmcli connection modify access_point wifi-sec.psk "my_password"
nmcli connection up access_point

Ask UbuntuHow do I setup an access point that starts on every boot?I tried following Web-E's answer on this but when I connect to the AP/hotspot I don't get an IP: How to create a Wi-Fi Hotspot (in Access Point mode)? I had to use the default hostapd conf for it t...

might be that setting settings as above in the command makes most sense.