Can't join mDot to LoRa network
- This topic has 0 replies, 1 voice, and was last updated 9 years, 9 months ago by .
 
Viewing 1 post (of 1 total)
	
Viewing 1 post (of 1 total)
	
- You must be logged in to reply to this topic.
 
Hello
I have done everything from:
Getting Started with LoRa Conduit mLinux (LoRa Configuration)
to get connection from my mDot to Conduit. I have upgrading software of Conduit and mDot firmware and still can’t connect. I don’t know what I am doing wrong. My lora-network-server.conf looks like:
{
	“db”: “/var/config/lora/lora-network-server.db”,
	“backupInterval”: 21600,    /* DB write interval (seconds) */
	“lora”: {
		“frequencyBand”: “868”, /* US=”915″, EU=”868″ */
		“maxTxPower”: 14,       /* Max Tx power (dBm), -6 to 26 */
		“nodeQueueSize”: 16,
		“nodeResetTime”: 10,
		“nodeLostTime”: 600,
		“frequencyEU”: 867500000, /* center freq for extra EU channels (Hz) */
		“timeToPktFwd”: 100,
		“netID”: “010203”      /* netID for beacon packets */
	},
	“udp”: {
		“upstreamPort”: 1780, /* ports for LoRa network communication */
		“downstreamPort”: 1782,
		“appPort”: 1784 /* port for user-developed application use */
	},
	“addressRange”: {
		“start”: “00:00:00:01”, /* address range used for mDots */
		“end”: “FF:FF:FF:FE”
	},
	“network”: {
		“public”: false,    /* set to false for private LoRa network with mDots + Conduit */
		“leasetime”: 1440,  /* time until mDot join expires (minutes) */
		“name”: “myNetworkName”, /* configure network security */
		“passphrase”: “myNetworkPassword”
	},
	“mqtt” : {
		“enabled”: true, /* set to true to publish/subscribe to MQTT server for packets */
		“host”: “127.0.0.1”,
		“port”: 1883
	},
	“log” : {
		“console” : true,
		“syslog” : true,
		“level” : 30, /* error=10, warn=20, info=30, debug=50, trace=60, max=100 */
		“path”: “/var/log/lora-network-server.log”
	}
}
Commands written to mDot was:
at+ni=1,myNetworkName
at+nk=1,myNetworkPassword
at&w
atz
at+join
The reultat is:
Joion error – Failed to join network
I have writen my own c++ programs on mDot in mbed. J haven’t join my network yet. There are nothing about connection in logs on Conduit. Help me solve the problem because I got stuck.