How to connect a Microchip LoRa modem to a Multitech mLinux conduit

Home Forums mDot/xDot How to connect a Microchip LoRa modem to a Multitech mLinux conduit

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #12191
    Louis Croisez
    Participant

    Hello,
    I am currently playing with connecting some Mdots with my LoRa Multitech gateway, and all is coherent.
    I own also a Microchip LoRa modem, driven by an Arduino-like board.
    In this Arduino sketch, I must enter a network key and an application key, which I don’t know.
    Could you give me a way to know these keys?
    I tried to do this on the Conduit:

    $ lora-query --node-config xx:xx:xx:xx
    

    which returns me following parameters:
    Net Addr
    Dev EUI
    Class
    App EUI
    AppKey
    Net Session Key
    Data Session Key

    The “AppKey” seems to be always the same, so I suppose this is the application key that I need to know. But The “Net Session Key” parameter is changing on each JOIN of the Mdot.
    Where could I find the Network key that I need ?

    #12192
    Jason Reiss
    Keymaster

    It should be the AppEUI and AppKey settings from an already joined mote.
    AppEUI – NetworkEUI
    AppKey – NetworkKey

    You can also get them from the network server process
    > nc -u localhost 6677
    config

    These will be generated from Network Name and Passphrase on startup.
    Otherwise these values could be provided in hex format if desired.

    See “network” { “eui”: “”, “key”: “” }

    #12210
    Louis Croisez
    Participant

    I am reading chapter 6.3 from LoRaWAN standards, and I try to understand it well.
    As concern my LoRa+Arduino case, I must enter two 512bit keys. I suppose that it is in fact the NwkSKey and the AppSKey, two sessions keys which are the result of the {DevEUI/AppEUI/AppKey} personalization.

    This means that I have to do something on my gateway to produce a new couple of {NwkSKey/AppSKey}, that should “register”, or “activate” my new device.

    I must do this by hand because the Microchip device does not share the same API like other Multitech systems.

    But the question is: how can I activate my new device by hand?

    #12211
    Louis Croisez
    Participant

    sorry, my mistake: do not read 512bit keys, but 128bit keys instead.

    #12214
    Bryan Tran
    Moderator
    #12215
    Louis Croisez
    Participant

    Hello Bryan,
    thank you very much for answering me.

    I just read the post you mentioned.
    Just a last question:
    is it absolutely required to configure network[“public”]=true, for RN2483 module to join and emit successfully?

    #12221
    Bryan Tran
    Moderator

    Hi Louis,

    You do need to set it to true.

    Thank you,

    BT

    #12444
    Louis Croisez
    Participant

    I wonder what is the actual impact of this network[“public”]=true parameter?
    Does this mean that the LoRa communication is not fully encrypted?
    What is changed in the LoRa communication when putting this param to true?

    #12445
    Bryan Tran
    Moderator
    #12446
    Jason Reiss
    Keymaster
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.