lorawan-stack-migrate

module
v0.8.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 12, 2022 License: Apache-2.0

README

lorawan-stack-migrate

Migrate devices from other LoRaWAN Network Servers to The Things Stack.

IMPORTANT: ttn-lw-migrate is compatible with The Things Stack versions 3.12.0 or newer. Trying to import the devices into earlier versions of The Things Stack will fail, due to breaking API changes.

Installation

Binaries are available on GitHub.

Support

Support for different sources is done by creating Source plugins. List available sources with:

$ ttn-lw-migrate sources

Usage

The ttn-lw-migrate examples below export the devices in a devices.json file. You will need to import the devices to The Things Stack using this file.

Console Instructions

Navigate to your application, click Import End Devices, select The Things Stack (JSON) from the list of available formats, upload the devices.json file and click Create end devices.

CLI Instructions
$ ttn-lw-cli end-devices create --application-id test-app < devices.json

The Things Network Stack V2

Configuration

Configure with environment variables, or command-line arguments. See --help for more details:

$ export TTNV2_APP_ID="my-ttn-app"                    # TTN App ID
$ export TTNV2_APP_ACCESS_KEY="ttn-account-v2.a..."   # TTN App Access Key (needs `devices` permissions)
$ export FREQUENCY_PLAN_ID="EU_863_870_TTN"           # Frequency Plan for exported devices

See Frequency Plans for the list of frequency plans available on The Things Stack. For example, to use United States 902-928 MHz, FSB 1, you need to specify the US_902_928_FSB_1 frequency plan ID.

Private The Things Network Stack V2 deployments are also supported, and require extra configuration. See ttn-lw-migrate device --help for more details. For example, to override the discovery server address:

$ export TTNV2_DISCOVERY_SERVER_ADDRESS="discovery.thethings.network:1900"
Notes
  • The export process will halt if any error occurs.
  • Execute commands with the --dry-run flag to verify whether the outcome will be as expected.
  • Payload formatters are not exported. See Payload Formatters.
  • For ABP devices, use the --ttnv2.resets-to-frequency-plan flag to configure the factory preset frequencies of the device, so that it can keep working with The Things Stack. The list of uplink frequencies is inferred from the Frequency Plan.
  • Device sessions (AppSKey, NwkSKey, DevAddr, FCntUp and FCntDown) are exported by default. You can disable this by using the --ttnv2.with-session=false flag. It is recommended that you do not export session keys for devices that can instead re-join on The Things Stack.
  • IMPORTANT: The migration from The Things Network Stack V2 to The Things Stack is one-way. Note that it is crucial that devices are handled by one Network Server at a time. The commands below will clear both the root keys (AppKey, if any) and the session (AppSKey, NwkSKey and DevAddr) from The Things Network Stack V2 after exporting the devices. Make sure you understand the ramifications of this. Note that having the session keys present on both Network Servers is not supported, and you will most likely encounter uplink/downlink traffic issues and/or a corrupted device MAC state.
Export Devices

To export a single device using its Device ID (e.g. mydevice):

# dry run first, verify that no errors occur
$ ttn-lw-migrate device --source ttnv2 "mydevice" --dry-run --verbose > devices.json
# export device
$ ttn-lw-migrate device --source ttnv2 "mydevice" > devices.json

In order to export a large number of devices, create a file named device_ids.txt with one device ID per line:

mydevice
otherdevice
device3
device4
device5

And then export with:

# dry run first, verify that no errors occur
$ ttn-lw-migrate devices --source ttnv2 "mydevice" --dry-run --verbose < device_ids.txt > devices.json
# export devices
$ ttn-lw-migrate devices --source ttnv2 < device_ids.txt > devices.json
Export Applications

Similarly, to export all devices of application my-app-id:

# dry run first, verify that no errors occur
$ ttn-lw-migrate application --source ttnv2 "my-app-id" --dry-run --verbose > devices.json
# export devices
$ ttn-lw-migrate application --source ttnv2 "my-app-id" > devices.json

ChirpStack

Configuration

Configure with environment variables, or command-line arguments. See --help for more details:

$ export CHIRPSTACK_API_URL="localhost:8080"    # ChirpStack Application Server URL
$ export CHIRPSTACK_API_TOKEN="7F0as987e61..."  # Generate from ChirpStack GUI
$ export JOIN_EUI="0101010102020203"            # JoinEUI for exported devices
$ export FREQUENCY_PLAN_ID="EU_863_870"         # Frequency Plan for exported devices

See Frequency Plans for the list of frequency plans available on The Things Stack. For example, to use United States 902-928 MHz, FSB 1, you need to specify the US_902_928_FSB_1 frequency plan ID.

NOTE: JoinEUI and FrequencyPlanID are required because ChirpStack does not store these fields.

Notes
  • ABP devices without an active session are successfully exported from ChirpStack, but cannot be imported into The Things Stack.
  • MaxEIRP may not be always set properly.
  • ChirpStack payload formatters also accept a variables parameter. This will always be null on The Things Stack.
Export Devices

To export a single device using its DevEUI (e.g. 0102030405060708):

$ ttn-lw-migrate device --source chirpstack "0102030405060708" > devices.json

In order to export a large number of devices, create a file named device_euis.txt with one DevEUI per line:

0102030405060701
0102030405060702
0102030405060703
0102030405060704
0102030405060705
0102030405060706

And then export with:

$ ttn-lw-migrate device --source chirpstack < device_euis.txt > devices.json
Export Applications

Similarly, to export all devices of application chirpstack-app-1:

$ ttn-lw-migrate application --source chirpstack "chirpstack-app-1" > devices.json

In order to export multiple applications, create a file named application_names.txt with one Application name per line:

chirpstack-app-1
chirpstack-app-2
chirpstack-app-3

And export with:

$ ttn-lw-migrate application --source chirpstack < application_names.txt > devices.json

Development Environment

Requires Go version 1.16 or higher. Download Go.

Building from source
$ git clone https://github.com/TheThingsNetwork/lorawan-stack-migrate.git
$ cd lorawan-stack-migrate/
$ go install go.thethings.network/lorawan-stack-migrate/cmd/ttn-lw-migrate
$ $(go env GOPATH)/bin/ttn-lw-migrate --help
Development

Initialize the development environment using make:

$ make init

For development/testing purposes, the binary can be executed directly using go run:

$ go run ./cmd/ttn-lw-migrate

It is also possible to use go build.

Releasing

Snapshot releases

Releases are created using goreleaser. First, install GoReleaser:

$ go install github.com/goreleaser/goreleaser@v1.2.5

The command to build a release snapshot from your branch is:

$ goreleaser --snapshot --rm-dist

Note: You will at least need to have rpm and snapcraft in your PATH.

This will compile binaries for all supported platforms, deb, rpm, Snapcraft packages, as well as release archives in dist.

Note: The operating system and architecture represent the name of the directory in dist in which the binaries are placed. For example, the binaries for Darwin x64 (macOS) will be located at dist/darwin_amd64.

Release from master
  1. Create a release/${version} branch off the master branch.
$ git checkout master
$ git checkout -b release/${version}
  1. Update the CHANGELOG.md file as explained below:
  • Change the Unreleased section to the new version and add date obtained via date +%Y-%m-%d (e.g. ## [1.0.0] - 2020-10-18)
    • Check if we didn't forget anything important
    • Remove empty subsections
    • Update the list of links in the bottom of the file
    • Add new Unreleased section:
      ## [Unreleased]
      
      ### Added
      
      ### Changed
      
      ### Deprecated
      
      ### Removed
      
      ### Fixed
      
      ### Security
      
  1. Create a pull request targeting master.
  2. Once this PR is approved and merged, checkout the latest master branch locally.
  3. Create a version tag, and push to GitHub:
$ git tag -s -a "v${version}" -m "ttn-lw-migrate v${version}"
$ git push origin "v${version}"
  1. CI will automatically start building and pushing to package managers. When this is done, you'll find a new release on the releases page.
  2. Edit the release notes on the GitHub releases page, typically copied from CHANGELOG.md.

Directories

Path Synopsis
cmd
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL