modifying configuration for multiple region support

Viewed 3

Hi there, I am having some issues with my home assistant ChirpStack configuration , specifically changing /adding regions into the chirpstack.toml config. the default region installed is eu868 and I am attempting to add region au915 into the config, however when i add the following into my chirpstack.toml config, modify the chirpstack-gateway-bridge.toml to include the au915 parameters and create the region_au915.toml , l have noticed on restart of chirpstack, my config appears to default back to the original settings with only the eu region applied. I am hoping that someone may be able to shed some light on what I am doing wrong as this is the first dive into Lora and have basically no Idea of what I am doing wrong atm

cheers

chirpstack.toml snippet

</>[network]
net_id = “000000”
secondary_net_ids =

dev_addr_prefixes =

enabled_regions = [“eu868”,“au915”]
deduplication_delay = “200ms”
get_downlink_data_delay = “100ms”
mac_commands_disabled = false
adr_plugins = </>

chirpstack-gateway-bridge.toml snippet

</>
[backend.basic_station]
bind = “0.0.0.0:3001”
tls_support_proxy = false
tls_cert = “”
tls_key = “”
ca_cert = “”
stats_interval = “30s”
ping_interval = “1m0s”
timesync_interval = “0s”
read_timeout = “1m5s”
write_timeout = “1s”
region = “EU868”
frequency_min = 863000000
frequency_max = 870000000

region = “AU915”
frequency_min = 915000000
frequency_max = 928000000

[integration]
marshaler = “json”

[integration.mqtt]
event_topic_template = “eu868/gateway/{{ .GatewayID }}/event/{{ .EventType }}”
state_topic_template = “eu868/gateway/{{ .GatewayID }}/state/{{ .StateType }}”
command_topic_template = “eu868/gateway/{{ .GatewayID }}/command/#”
state_retained = true
keep_alive = “30s”
max_reconnect_interval = “1m0s”
terminate_on_connect_error = false

[integration.mqtt]
event_topic_template = “au915/gateway/{{ .GatewayID }}/event/{{ .EventType }}”
state_topic_template = “au915/gateway/{{ .GatewayID }}/state/{{ .StateType }}
command_topic_template = “au915/gateway/{{ .GatewayID }}/command/#”
state_retained = true
keep_alive = “30s”
max_reconnect_interval = “1m0s”
terminate_on_connect_error = false </

0 Answers