Multi-Gateway

Helium LoRaWAN Network

How to Add a Gateway

This is a public gateway aggregator for the EU868 region only. Anyone with a compatible LoRaWAN gateway can connect to the Helium network through this server. Simply point your gateway's packet forwarder at:

server_address: gateway.sattrack.co.uk
port: 1700

A keypair is auto-provisioned on first connection and your gateway will appear as a new Hotspot on the Helium network. Each gateway must have a unique Gateway EUI — check your packet forwarder config and replace the default with your concentrator's actual EUI. You can subscribe to email alerts for any gateway using the Subscribe button in the table below.

Total Gateways
0
Connected
0
Uplinks
Downlinks
Region MAC Gateway Name Connected Last Uplink Uplinks Downlinks On-Chain Alerts

No gateways connected yet. Point your LoRa gateways at this server to see them here.

Onboard Gateway

Connect Wallet

Connect a Solana wallet that will own this hotspot. You need the browser extension version of Phantom or Solflare — the mobile app won't work here.

Issue Entity

Create the on-chain entity for this hotspot. This registers the gateway's public key on the Helium network.

Assert Location

Click the map to set your gateway's location, or enter coordinates manually.

Complete Onboarding

Submit the onboard transaction to register and assert location on the Helium IoT network.

If you prefer to onboard via command line, use the helium-onboarding-cli tool. You'll need a Solana keypair file with SOL for transaction fees.

# Install the Helium onboarding CLI
npm install -g @helium/onboarding-cli

# Issue the entity (register the hotspot)
helium-onboarding issue \
  --gateway \
  --owner <YOUR_SOLANA_ADDRESS>


# Onboard with location assertion
helium-onboarding onboard \
  --gateway \
  --owner <YOUR_SOLANA_ADDRESS> \
  --lat <LATITUDE> --lng <LONGITUDE> \
  --elevation 0 --gain 1.2

See the Helium Docs for full CLI reference and options.