I want to operate chirpstack on ‘my network’. I download and flash the appropriate ‘full’ image from the chirpstack website. I flash the microSD card and insert it into the Pi Zero. I login into chirpstack WiFi using ChirpStackAP as the password. I then run 192.168.0.1 in the browser. I add passwords for the Router and the ‘root’ password. I click Network the WiFi. I select scan. I then select the appropriate WiFi connection. A new page comes up. I select ‘replace wireless configuration’, add a passphrase and select the green firewall selection. I then click apply. I have tried this with both revert and not reverting. It does not work! The Pi Zero does not login to my WiFI network. Am I missing a step or is it just broken. Is there a work around.
I got around it by manually editing the following:
i.e. logged in via ssh and edited the following files
vi /etc/config/wireless
config wifi-iface
option device ‘radio0’
option network ‘wwan’
option mode ‘sta’
option ssid ‘YourWiFiSSID’
option encryption ‘psk2’
option key ‘YourWiFiPassword’
vi /etc/config/network
config interface ‘wwan’
option proto ‘dhcp’
I rebooted the device then logged into my local WiFi after dicovering which the new IP address was.
The next question is how do I install the RAK7246 gateway software? i.e gateway-config
The standard method is
$ sudo apt update; sudo apt install git -y
$ git clone GitHub - RAKWireless/RAK7246: RAK7246 is built on RPi zero W + RAK2246 Pi HAT (SX1308) ~/rak7246_for_rpi
$ cd ~/rak7246_for_rpi
$ sudo ./install.sh
How do I go about this installation process?