When I add a new region file, it does not take effect

I am trying to add the CN470 configuration file in the new version, first I added CN470 in chirpstack.toml, and then added CN470.toml in the folder, which is very similar to CN779.toml. However, I still cannot find the selection of CN470 in Region column. The log shows that the configuration file of CN470 has been correctly identified.

chirpstack_1                       | Aug 26 07:33:03.680  INFO setup{common_name=IN865 region_name=in865}: chirpstack::region: Configuring region
chirpstack_1                       | Aug 26 07:33:03.680  INFO setup{common_name=US915 region_name=us915_1}: chirpstack::region: Configuring region
chirpstack_1                       | Aug 26 07:33:03.680  WARN setup{common_name=AU915 region_name=au915_2}: chirpstack::region: Config exists, but region is not enabled. To enable it, add it to 'network.enabled_regions'
chirpstack_1                       | Aug 26 07:33:03.680  WARN setup{common_name=US915 region_name=us915_4}: chirpstack::region: Config exists, but region is not enabled. To enable it, add it to 'network.enabled_regions'
chirpstack_1                       | Aug 26 07:33:03.680  INFO setup{common_name=CN470 region_name=cn470}: chirpstack::region: Configuring region
chirpstack_1                       | Aug 26 07:33:03.680  INFO setup{common_name=EU433 region_name=eu433}: chirpstack::region: Configuring region
chirpstack_1                       | Aug 26 07:33:03.680  WARN setup{common_name=US915 region_name=us915_2}: chirpstack::region: Config exists, but region is not enabled. To enable it, add it to 'network.enabled_regions'
chirpstack_1                       | Aug 26 07:33:03.680  WARN setup{common_name=AU915 region_name=au915_7}: chirpstack::region: Config exists, but region is not enabled. To enable it, add it to 'network.enabled_regions'

chirpstack version: 4.0.0-rc.2
chirpstack.toml as follow

# Logging.
[logging]

  # Log level.
  #
  # Options are: trace, debug, info, warn error.
  level="trace"


# PostgreSQL configuration.
[postgresql]

  # PostgreSQL DSN.
  #
  # Format example: postgres://<USERNAME>:<PASSWORD>@<HOSTNAME>/<DATABASE>?sslmode=<SSLMODE>.
  #
  # SSL mode options:
  #  * disable - no SSL
  #  * require - Always SSL (skip verification)
  #  * verify-ca - Always SSL (verify that the certificate presented by the server was signed by a trusted CA)
  #  * verify-full - Always SSL (verify that the certification presented by the server was signed by a trusted CA and the server host name matches the one in the certificate)
  dsn="postgres://chirpstack:chirpstack@postgres/chirpstack?sslmode=disable"

  # Max open connections.
  #
  # This sets the max. number of open connections that are allowed in the
  # PostgreSQL connection pool.
  max_open_connections=10

  # Min idle connections.
  #
  # This sets the min. number of idle connections in the PostgreSQL connection
  # pool (0 = equal to max_open_connections).
  min_idle_connections=0


# Redis configuration.
[redis]

  # Server address or addresses.
  #
  # Set multiple addresses when connecting to a cluster.
  servers=[
    "redis://redis/",
  ]

  # TLS enabled.
  tls_enabled=false

  # Redis Cluster.
  #
  # Set this to true when the provided URLs are pointing to a Redis Cluster
  # instance.
  cluster=false


# Network related configuration.
[network]

  # Network identifier (NetID, 3 bytes) encoded as HEX (e.g. 010203).
  net_id="000000"

  # Enabled regions.
  #
  # Multiple regions can be enabled simultaneously. Each region must match
  # the 'name' parameter of the region configuration in '[[regions]]'.
  enabled_regions=[
    "as923_2",
    "as923_3",
    "as923_4",
    "au915_0",
    "cn470",
    "cn779",
    "eu433",
    "eu868",
    "in865",
    "ism2400",
    "kr920",
    "ru864",
    "us915_0",
    "us915_1",
  ]


# API interface configuration.
[api]

  # interface:port to bind the API interface to.
  bind="0.0.0.0:8080"

  # Secret.
  #
  # This secret is used for generating login and API tokens, make sure this
  # is never exposed. Changing this secret will invalidate all login and API
  # tokens. The following command can be used to generate a random secret:
  #   openssl rand -base64 32
  secret="you-must-replace-this"


[gateway]
  client_cert_lifetime="365days"
  ca_cert="configuration/certs/ca.crt"
  ca_key="configuration/certs/ca.key"

[integration]
  enabled=["mqtt"]

  [integration.mqtt]
    server="tcp://mosquitto:1883/"
    json=true

    [integration.mqtt.client]
      client_cert_lifetime="365days"
      ca_cert="configuration/certs/ca.crt"
      ca_key="configuration/certs/ca.key"

cn470.toml as follow

# This file contains an example cn470 configuration.
[[regions]]

  # Name is an user-defined identifier for this region.
  name="cn470"

  # Common-name refers to the common-name of this region as defined by
  # the LoRa Alliance.
  common_name="CN470"


  # Gateway configuration.
  [regions.gateway]

    # Force gateways as private.
    #
    # If enabled, gateways can only be used by devices under the same tenant.
    force_gws_private=false


    # Gateway backend configuration.
    [regions.gateway.backend]

      # The enabled backend type.
      enabled="mqtt"

      # MQTT configuration.
      [regions.gateway.backend.mqtt]

        # Event topic template.
        event_topic="cn470/gateway/+/event/+"

        # Command topic template.
        command_topic="cn470/gateway/{{ gateway_id }}/command/{{ command }}"

        # MQTT server (e.g. scheme://host:port where scheme is tcp, ssl or ws)
        server="tcp://mosquitto:1883"

        # Connect with the given username (optional)
        username=""

        # Connect with the given password (optional)
        password=""

        # Quality of service level
        #
        # 0: at most once
        # 1: at least once
        # 2: exactly once
        #
        # Note: an increase of this value will decrease the performance.
        # For more information: https://www.hivemq.com/blog/mqtt-essentials-part-6-mqtt-quality-of-service-levels
        qos=0

        # Clean session
        #
        # Set the "clean session" flag in the connect message when this client
        # connects to an MQTT broker. By setting this flag you are indicating
        # that no messages saved by the broker for this client should be delivered.
        clean_session=false

        # Client ID
        #
        # Set the client id to be used by this client when connecting to the MQTT
        # broker. A client id must be no longer than 23 characters. When left blank,
        # a random id will be generated.
        client_id=""

        # CA certificate file (optional)
        #
        # Use this when setting up a secure connection (when server uses ssl://...)
        # but the certificate used by the server is not trusted by any CA certificate
        # on the server (e.g. when self generated).
        ca_cert=""

        # TLS certificate file (optional)
        tls_cert=""

        # TLS key file (optional)
        tls_key=""


    # Gateway channel configuration.
    #
    # Note: this configuration is only used in case the gateway is using the
    # ChirpStack Concentratord daemon. In any other case, this configuration 
    # is ignored.
    [[regions.gateway.channels]]
      frequency=470300000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]

    [[regions.gateway.channels]]
      frequency=470500000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]

    [[regions.gateway.channels]]
      frequency=470700000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]

    [[regions.gateway.channels]]
      frequency=470900000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]

    [[regions.gateway.channels]]
      frequency=471100000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12] 

    [[regions.gateway.channels]]
      frequency=471300000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]
    
    [[regions.gateway.channels]]
      frequency=471500000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]

    [[regions.gateway.channels]]
      frequency=471500000
      bandwidth=125000
      modulation="LORA"
      spreading_factors=[7, 8, 9, 10, 11, 12]


  # Region specific network configuration.
  [regions.network]
    
    # Installation margin (dB) used by the ADR engine.
    #
    # A higher number means that the network-server will keep more margin,
    # resulting in a lower data-rate but decreasing the chance that the
    # device gets disconnected because it is unable to reach one of the
    # surrounded gateways.
    installation_margin=10

    # RX window (Class-A).
    #
    # Set this to:
    # 0: RX1 / RX2
    # 1: RX1 only
    # 2: RX2 only
    rx_window=0

    # RX1 delay (1 - 15 seconds).
    rx1_delay=1

    # RX1 data-rate offset
    rx1_dr_offset=0

    # RX2 data-rate
    rx2_dr=0

    # RX2 frequency (Hz)
    rx2_frequency=505300000

    # Prefer RX2 on RX1 data-rate less than.
    #
    # Prefer RX2 over RX1 based on the RX1 data-rate. When the RX1 data-rate
    # is smaller than the configured value, then the Network Server will
    # first try to schedule the downlink for RX2, failing that (e.g. the gateway
    # has already a payload scheduled at the RX2 timing) it will try RX1.
    rx2_prefer_on_rx1_dr_lt=0

    # Prefer RX2 on link budget.
    #
    # When the link-budget is better for RX2 than for RX1, the Network Server will first
    # try to schedule the downlink in RX2, failing that it will try RX1.
    rx2_prefer_on_link_budget=false

    # Downlink TX Power (dBm)
    #
    # When set to -1, the downlink TX Power from the configured band will
    # be used.
    #
    # Please consult the LoRaWAN Regional Parameters and local regulations
    # for valid and legal options. Note that the configured TX Power must be
    # supported by your gateway(s).
    downlink_tx_power=-1

    # ADR is disabled.
    adr_disabled=false

    # Minimum data-rate.
    min_dr=0

    # Maximum data-rate.
    max_dr=5


    # Rejoin-request configuration (LoRaWAN 1.1)
    [regions.network.rejoin_request]

      # Request devices to periodically send rejoin-requests.
      enabled=false

      # The device must send a rejoin-request type 0 at least every 2^(max_count_n + 4)
      # uplink messages. Valid values are 0 to 15.
      max_count_n=0

      # The device must send a rejoin-request type 0 at least every 2^(max_time_n + 10)
      # seconds. Valid values are 0 to 15.
      #
      # 0  = roughly 17 minutes
      # 15 = about 1 year
      max_time_n=0
    

    # Class-B configuration.
    [regions.network.class_b]

      # Ping-slot data-rate. 
      ping_slot_dr=0

      # Ping-slot frequency (Hz)
      #
      # set this to 0 to use the default frequency plan for the configured region
      # (which could be frequency hopping).
      ping_slot_frequency=0

The same as you sir. Although I added the CN470.toml and starts the network server successfully.


Here is the logs of chirpstack/chirpstack:4.0.0-rc.2

Aug 26 11:39:56.416  INFO chirpstack::gateway::backend: Setting up gateway backend for region region_name=cn470 region_common_name=CN470
Aug 26 11:39:56.416  INFO chirpstack::gateway::backend::mqtt: Starting MQTT consumer loop
Aug 26 11:39:56.416  INFO chirpstack::gateway::backend::mqtt: Connected to MQTT broker region_name=kr920
Aug 26 11:39:56.416  INFO chirpstack::gateway::backend::mqtt: Subscribing to gateway event topic region_name=kr920 event_topic=kr920/gateway/+/event/+
Aug 26 11:39:56.416  INFO chirpstack::gateway::backend::mqtt: Connecting to MQTT broker region_name=cn470 server_uri=tcp://mosquitto:1883 clean_session=false client_id=80b653143a48df26
Aug 26 11:39:56.616  INFO chirpstack::gateway::backend::mqtt: Starting MQTT consumer loop
Aug 26 11:39:56.616  INFO chirpstack::gateway::backend: Setting up gateway backend for region region_name=in865 region_common_name=IN865
Aug 26 11:39:56.616  INFO chirpstack::gateway::backend::mqtt: Connected to MQTT broker region_name=cn470

I already commented on this in an other topic, I’ll look into this, I think this was an error at my side…

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.