Base Station administration issues
RF Region update fails
SYMPTOM: RF Region update could fail with a gateway for a specific radio configuration. A cause could be an incorrect md5 hash, which doesn't match the radio configuration tarball.
SOLUTION:
Check the md5 and the tarball configuration file's hash
-
Start a bash on the node1 lrc container:
docker exec -it $(docker ps -q -f "name=actility_lrc1") bash
cd /var/ftp/
md5sum cfglrr-EU868_16channels.2-CONF_s1_a1_b1_v2.tar.gzcat cfglrr-EU868_16channels.2-CONF_s1_a1_b1_v2.md5
NOTE: Replace cfglrr-EU868_16channels.2-CONF_s1_a1_b1_v2 with the RF Region you tried to apply to your Base Station.
In case where they don't match, please execute the following procedure on node1, and node2 for a TPE OCP HA.
-
Start a bash on the lrc container:
docker exec -it $(docker ps -q -f "name=actility_lrc1") bashNOTE: Use
actility_lrc1for node1 andactility_lrc2for node2 -
Regenere RF_Region tarball for all RF Regions (takes 1 or 2 minutes):
for file in $(find /home/actility/FDB_lora/RFRegion/ ! -name '*DEFAULT-RFREGION-TEMPLATE' -type f | xargs -n 1 basename);do /home/actility/rfregtool/shells/dnrfregionid.sh -d /var/ftp/ -g $file; done