Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Troubleshooting
  3. Signing: no active verification session?

Signing: no active verification session?

Scheduled Pinned Locked Moved Troubleshooting
36 Posts 3 Posters 4.2k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T tomkxy

    So, I repeated the test again, if GW and node are on soft sign it works. If I put either GW or node on soft sign, while the other is using ATSHA204, signing fails
    To verify my setup I switched to development branch. There I could run the node on soft signing while the GW is using ATSHA204.

    AnticimexA Offline
    AnticimexA Offline
    Anticimex
    Contest Winner
    wrote on last edited by
    #22

    @tomkxy Hm, ok, so with the updates from PR, soft and atsha signing are not compatible? I need to check into that.
    Out of curiosity, when you checked from development branch, was the ATSHA node using the code from the PR or was it also from development branch? Just so I know if the issue is in the soft signing implementation or both backends.

    Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

    T 1 Reply Last reply
    0
    • AnticimexA Anticimex

      @tomkxy Hm, ok, so with the updates from PR, soft and atsha signing are not compatible? I need to check into that.
      Out of curiosity, when you checked from development branch, was the ATSHA node using the code from the PR or was it also from development branch? Just so I know if the issue is in the soft signing implementation or both backends.

      T Offline
      T Offline
      tomkxy
      wrote on last edited by
      #23

      @Anticimex said:

      @tomkxy Hm, ok, so with the updates from PR, soft and atsha signing are not compatible? I need to check into that.
      Out of curiosity, when you checked from development branch, was the ATSHA node using the code from the PR or was it also from development branch? Just so I know if the issue is in the soft signing implementation or both backends.

      I ran the test with node and gateway on PR code:
      One test both on soft signing -> ok
      One test node on soft signing, GW on ATSH204 -> failed

      Then I repeated with both node and GW on development branch:

      • node soft sign, GW on ATSHA204 -> OK
      AnticimexA 1 Reply Last reply
      0
      • T tomkxy

        @Anticimex said:

        @tomkxy Hm, ok, so with the updates from PR, soft and atsha signing are not compatible? I need to check into that.
        Out of curiosity, when you checked from development branch, was the ATSHA node using the code from the PR or was it also from development branch? Just so I know if the issue is in the soft signing implementation or both backends.

        I ran the test with node and gateway on PR code:
        One test both on soft signing -> ok
        One test node on soft signing, GW on ATSH204 -> failed

        Then I repeated with both node and GW on development branch:

        • node soft sign, GW on ATSHA204 -> OK
        AnticimexA Offline
        AnticimexA Offline
        Anticimex
        Contest Winner
        wrote on last edited by
        #24

        @tomkxy I think I found the problem. Mistake by me.
        Try to change the following two lines (106 & 107) in MySigningAtsha204Soft.cpp:
        memset(_signing_current_inbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
        memset(_signing_current_outbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
        to
        memset(_signing_current_inbound_nonce, 0xAA, 32);
        memset(_signing_current_outbound_nonce, 0xAA, 32);

        Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

        T 1 Reply Last reply
        0
        • AnticimexA Anticimex

          @tomkxy I think I found the problem. Mistake by me.
          Try to change the following two lines (106 & 107) in MySigningAtsha204Soft.cpp:
          memset(_signing_current_inbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
          memset(_signing_current_outbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
          to
          memset(_signing_current_inbound_nonce, 0xAA, 32);
          memset(_signing_current_outbound_nonce, 0xAA, 32);

          T Offline
          T Offline
          tomkxy
          wrote on last edited by
          #25

          @Anticimex said:

          @tomkxy I think I found the problem. Mistake by me.
          Try to change the following two lines (106 & 107) in MySigningAtsha204Soft.cpp:
          memset(_signing_current_inbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
          memset(_signing_current_outbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
          to
          memset(_signing_current_inbound_nonce, 0xAA, 32);
          memset(_signing_current_outbound_nonce, 0xAA, 32);

          I made the changes. Still not working.

          AnticimexA 1 Reply Last reply
          0
          • T tomkxy

            @Anticimex said:

            @tomkxy I think I found the problem. Mistake by me.
            Try to change the following two lines (106 & 107) in MySigningAtsha204Soft.cpp:
            memset(_signing_current_inbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
            memset(_signing_current_outbound_nonce, 0x00, NONCE_NUMIN_SIZE_PASSTHROUGH);
            to
            memset(_signing_current_inbound_nonce, 0xAA, 32);
            memset(_signing_current_outbound_nonce, 0xAA, 32);

            I made the changes. Still not working.

            AnticimexA Offline
            AnticimexA Offline
            Anticimex
            Contest Winner
            wrote on last edited by
            #26

            @tomkxy Hm. I have rewritten the code to be easier to read. Could you please clean out the changes from my PR (restore to "pristine" development) and then reapply the PR from github?
            If possible, also include the verbose logs from both ends so that we can confirm that they agree upon which nonce to use for a message.

            Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

            1 Reply Last reply
            0
            • T Offline
              T Offline
              tomkxy
              wrote on last edited by
              #27

              @Anticimex said:

              @tomkxy Hm. I have rewritten the code to be easier to read. Could you please clean out the changes from my PR (restore to "pristine" development) and then reapply the PR from github?
              If possible, also include the verbose logs from both ends so that we can confirm that they agree upon which nonce to use for a message.

              I cannot promise that I am able to do that today.

              AnticimexA 1 Reply Last reply
              0
              • T tomkxy

                @Anticimex said:

                @tomkxy Hm. I have rewritten the code to be easier to read. Could you please clean out the changes from my PR (restore to "pristine" development) and then reapply the PR from github?
                If possible, also include the verbose logs from both ends so that we can confirm that they agree upon which nonce to use for a message.

                I cannot promise that I am able to do that today.

                AnticimexA Offline
                AnticimexA Offline
                Anticimex
                Contest Winner
                wrote on last edited by Anticimex
                #28

                @tomkxy That's ok, No big rush on this. I suspect it is just a matter of the soft and atsha backends are not in agreement on the nonce data. I have not changed the algorithms so I would not expect them to be incompatible.

                Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                T 1 Reply Last reply
                0
                • AnticimexA Anticimex

                  @tomkxy That's ok, No big rush on this. I suspect it is just a matter of the soft and atsha backends are not in agreement on the nonce data. I have not changed the algorithms so I would not expect them to be incompatible.

                  T Offline
                  T Offline
                  tomkxy
                  wrote on last edited by
                  #29

                  @Anticimex said:

                  @tomkxy That's ok, No big rush on this. I suspect it is just a matter of the soft and atsha backends are not in agreement on the nonce data. I have not changed the algorithms so I would not expect them to be incompatible.

                  Can I use the same pull request? I just fetched this one (https://github.com/mysensors/Arduino/pull/454)

                  OK?

                  AnticimexA 1 Reply Last reply
                  0
                  • T tomkxy

                    @Anticimex said:

                    @tomkxy That's ok, No big rush on this. I suspect it is just a matter of the soft and atsha backends are not in agreement on the nonce data. I have not changed the algorithms so I would not expect them to be incompatible.

                    Can I use the same pull request? I just fetched this one (https://github.com/mysensors/Arduino/pull/454)

                    OK?

                    AnticimexA Offline
                    AnticimexA Offline
                    Anticimex
                    Contest Winner
                    wrote on last edited by
                    #30

                    @tomkxy yes, just make sure it applies cleanly. I forced pushed some updates.

                    Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                    T 1 Reply Last reply
                    0
                    • AnticimexA Anticimex

                      @tomkxy yes, just make sure it applies cleanly. I forced pushed some updates.

                      T Offline
                      T Offline
                      tomkxy
                      wrote on last edited by
                      #31

                      @Anticimex said:

                      @tomkxy yes, just make sure it applies cleanly. I forced pushed some updates.

                      I sent you a chat message

                      AnticimexA 1 Reply Last reply
                      0
                      • T tomkxy

                        @Anticimex said:

                        @tomkxy yes, just make sure it applies cleanly. I forced pushed some updates.

                        I sent you a chat message

                        AnticimexA Offline
                        AnticimexA Offline
                        Anticimex
                        Contest Winner
                        wrote on last edited by
                        #32

                        @tomkxy So I noticed. Let's iron out the details in the chat, and report here when we sort it for documentation purposes.

                        Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                        1 Reply Last reply
                        0
                        • T Offline
                          T Offline
                          tomkxy
                          wrote on last edited by
                          #33

                          Here are the log files. They are not in sync from the beginning. Further there re message from a node 27 which can be ignored. Best is probably to work from the end.

                          Node log

                          Starting sensor (RNNNAS, 2.0.0-beta)
                          Radio init successful.
                          Signing required
                          Skipping security for command 3 type 15
                          send: 32-32-0-0 s=255,c=3,t=15,pt=0,l=2,sg=0,st=ok:
                          Waiting for GW to send signing preferences...
                          Skipping security for command 3 type 15
                          read: 0-0-32 s=255,c=3,t=15,pt=0,l=2,sg=0:
                          Mark node 0 as one that require signed messages
                          Mark node 0 as one that do not require whitelisting
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:F0E3953E5E27A57274D53B6F0B2C4098EBD0F6A84345DE7135
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000560011FF322E302E302D62657461
                          Current nonce: F0E3953E5E27A57274D53B6F0B2C4098EBD0F6A84345DE7135AAAAAAAAAAAAAA
                          HMAC: DC73D1128E9B00E6E0FFA12AE46CBBD6BE0F3103FDFDE2D718A52AC530A852F9
                          Signature in message: 0173D1128E9B00E6E0FFA12AE46CBB
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=0,t=17,pt=0,l=10,sg=1,st=ok:2.0.0-beta
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:E574F30C89052CFEA25ACB6D9B3B4E8CA0D462DF4770ECF72F
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 20000E2306FF00
                          Current nonce: E574F30C89052CFEA25ACB6D9B3B4E8CA0D462DF4770ECF72FAAAAAAAAAAAAAA
                          HMAC: 556E870FC4662534A18B29FB7A48440B7C745E15FF82EA34E806F9C372B6FDA9
                          Signature in message: 016E870FC4662534A18B29FB7A48440B7C745E15FF82EA34
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=6,pt=1,l=1,sg=1,st=ok:0
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:10C33355BD231F7BB5E53E7E39372DE1C3053161AE04D74494
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 20008E030BFF53656E736562656E646572204D6963726F
                          Current nonce: 10C33355BD231F7BB5E53E7E39372DE1C3053161AE04D74494AAAAAAAAAAAAAA
                          HMAC: F272ECC9E1B27FF3C089905712EDF1793D146865CE2AF9252D27FAFF953BA64F
                          Signature in message: 0172ECC9E1B27FF3
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=11,pt=0,l=17,sg=1,st=ok:Sensebender Micro
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:3B91B8117E813E6F0E12221791A78309559E5052097A420E8A
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 20001E030CFF312E35
                          Current nonce: 3B91B8117E813E6F0E12221791A78309559E5052097A420E8AAAAAAAAAAAAAAA
                          HMAC: 23E348148A34E8BE86788E5AA5F45F8F675089068DA52BC6C4C27D0B8DCA70C3
                          Signature in message: 01E348148A34E8BE86788E5AA5F45F8F675089068DA5
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=12,pt=0,l=3,sg=1,st=ok:1.5
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=0,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:694B1F7903CB8A6854DAF8509AA451207AD040D71966A3453D
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 200006001F00
                          Current nonce: 694B1F7903CB8A6854DAF8509AA451207AD040D71966A3453DAAAAAAAAAAAAAA
                          HMAC: 6013C5AA4FDD7E2F61EAA2C3F2716BCEEFB56292BA66BC98A43517E458EF235B
                          Signature in message: 0113C5AA4FDD7E2F61EAA2C3F2716BCEEFB56292BA66BC98A4
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=0,c=0,t=31,pt=0,l=0,sg=1,st=ok:
                          Init complete, id=32, parent=0, distance=1
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:13F0B25E5D9A117DA1146AFA7494C90FA33FA03B128B0CE3E1
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: 13F0B25E5D9A117DA1146AFA7494C90FA33FA03B128B0CE3E1AAAAAAAAAAAAAA
                          HMAC: 5F71BF42F9C80CC00B5319226D836566CD4F95123E96258FF8E2E3400863547E
                          Signature in message: 0171BF42F9C80CC00B5319226D836566CD4F95123E96258FF8
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          ------------- End request time ------------
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:8FBD6C07C7957826D2BAF13CDD7A82D8082180FD4F0796F6B4
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: 8FBD6C07C7957826D2BAF13CDD7A82D8082180FD4F0796F6B4AAAAAAAAAAAAAA
                          HMAC: 6FAC958E93696F29B508B534322FC0237EB1740405F2A7AA2A518FBF4883896D
                          Signature in message: 01AC958E93696F29B508B534322FC0237EB1740405F2A7AA2A
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          ------------- End request time ------------
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:6BB69A71C65A24D7077B9B2A2E65D51B3861A56CF777BBD6B6
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: 6BB69A71C65A24D7077B9B2A2E65D51B3861A56CF777BBD6B6AAAAAAAAAAAAAA
                          HMAC: 3E2DE76DD7349510C9CAE6F072875D7D7C380BBDD00C65339BF25898F44A180B
                          Signature in message: 012DE76DD7349510C9CAE6F072875D7D7C380BBDD00C65339B
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          ------------- End request time ------------
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:B7CD5773148E8916C98B5BB16265F17811F8091A560A3535EB
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: B7CD5773148E8916C98B5BB16265F17811F8091A560A3535EBAAAAAAAAAAAAAA
                          HMAC: 46959641C93642F85E13499948DC33F1CE3B1B0DE5D8DEC8F5D04ECBA2A28552
                          Signature in message: 01959641C93642F85E13499948DC33F1CE3B1B0DE5D8DEC8F5
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          ------------- End request time ------------
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:43AADEA58D5CC9AF0A58FE4A763CEE560CB751BCF31BAD7F4C
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: 43AADEA58D5CC9AF0A58FE4A763CEE560CB751BCF31BAD7F4CAAAAAAAAAAAAAA
                          HMAC: 1217705F14F7482ACEEC510ADD5EB2CBB329B3FA475486182644D5EC98DDB619
                          Signature in message: 0117705F14F7482ACEEC510ADD5EB2CBB329B3FA4754861826
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          ------------- End request time ------------
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:90E1C960135A6C130C95D8DCDA63C583905F58BC0C0AC6734C
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: 90E1C960135A6C130C95D8DCDA63C583905F58BC0C0AC6734CAAAAAAAAAAAAAA
                          HMAC: 5DE257A17035F53D20CE18F57BF0E0E60142F56690BB8BB9F4184632241E2015
                          Signature in message: 01E257A17035F53D20CE18F57BF0E0E60142F56690BB8BB9F4
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          ------------- End request time ------------
                          ------------- Start request time ------------
                          Skipping security for command 3 type 16
                          send: 32-32-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=ok:
                          Nonce requested from 0. Waiting...
                          Skipping security for command 3 type 17
                          read: 0-0-32 s=255,c=3,t=17,pt=6,l=25,sg=0:5FB2B52B80BA2BD2B7F657B3754594C84B14811B6067EEB626
                          Nonce received from 0. Proceeding with signing...
                          Signing backend: ATSHA204Soft
                          Message to process: 2000060301FF
                          Current nonce: 5FB2B52B80BA2BD2B7F657B3754594C84B14811B6067EEB626AAAAAAAAAAAAAA
                          HMAC: 00AE0409E50F471F7B4154A4492D72FA382EEA40257DD408D2EB9E1B012A35EF
                          Signature in message: 01AE0409E50F471F7B4154A4492D72FA382EEA40257DD408D2
                          Message signed
                          Message to send has been signed
                          send: 32-32-0-0 s=255,c=3,t=1,pt=0,l=0,sg=1,st=ok:
                          

                          Log file from gateway:

                          
                          0;255;3;0;9;Starting gateway (RNNGAA, 2.0.0-beta)
                          0;255;3;0;9;Radio init successful.
                          0;255;3;0;9;Init complete, id=0, parent=0, distance=0
                          0;255;3;0;9;Attempting MQTT connection...
                          0;255;3;0;9;MQTT connected
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: B44451C64C562F11BDCF41F7F3EEF39816265188B34FD45E96216B85148A12AA
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:B44451C64C562F11BDCF41F7F3EEF39816265188B34FD45E96
                          0;255;3;0;9;Signature in message: 0191F99D82163BDAF73FFD91B6984D59A5F564BF45ECBBABCE
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: B44451C64C562F11BDCF41F7F3EEF39816265188B34FD45E96AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: EB8162E2FCAD9359B19B383A711A5E64A964A25F965162BF74BBFB4EB59836E2
                          0;255;3;0;9;Signature bad: 018162E2FCAD9359B19B383A711A5E64A964A25F965162BF74
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;read: 27-27-0 s=2,c=1,t=1,pt=7,l=5,sg=0:62.49
                          0;255;3;0;9;Sending message on topic: GW1_out/27/2/1/0/1
                          0;255;3;0;9;read: 27-27-0 s=1,c=1,t=0,pt=7,l=5,sg=0:34.11
                          0;255;3;0;9;Sending message on topic: GW1_out/27/1/1/0/0
                          0;255;3;0;9;read: 27-27-0 s=0,c=1,t=4,pt=7,l=5,sg=0:1020.15
                          0;255;3;0;9;Sending message on topic: GW1_out/27/0/1/0/4
                          0;255;3;0;9;read: 27-27-0 s=0,c=1,t=5,pt=0,l=6,sg=0:stable
                          0;255;3;0;9;Sending message on topic: GW1_out/27/0/1/0/5
                          0;255;3;0;9;read: 27-27-0 s=10,c=1,t=38,pt=7,l=5,sg=0:4.123
                          0;255;3;0;9;Sending message on topic: GW1_out/27/10/1/0/38
                          0;255;3;0;9;read: 27-27-0 s=10,c=1,t=39,pt=7,l=5,sg=0:0.000000
                          0;255;3;0;9;Sending message on topic: GW1_out/27/10/1/0/39
                          0;255;3;0;9;read: 27-27-0 s=11,c=1,t=38,pt=7,l=5,sg=0:9.978
                          0;255;3;0;9;Sending message on topic: GW1_out/27/11/1/0/38
                          0;255;3;0;9;read: 27-27-0 s=255,c=3,t=0,pt=1,l=1,sg=0:88
                          0;255;3;0;9;Sending message on topic: GW1_out/27/255/3/0/0
                          0;255;3;0;9;read: 27-27-0 s=13,c=1,t=8,pt=7,l=5,sg=0:0.40
                          0;255;3;0;9;Sending message on topic: GW1_out/27/13/1/0/8
                          0;255;3;0;9;read: 27-27-0 s=13,c=1,t=9,pt=7,l=5,sg=0:0.60
                          0;255;3;0;9;Sending message on topic: GW1_out/27/13/1/0/9
                          0;255;3;0;9;read: 27-27-0 s=12,c=1,t=10,pt=7,l=5,sg=0:328.68
                          0;255;3;0;9;Sending message on topic: GW1_out/27/12/1/0/10
                          0;255;3;0;9;read: 27-27-0 s=12,c=1,t=24,pt=7,l=5,sg=0:36.80
                          0;255;3;0;9;Sending message on topic: GW1_out/27/12/1/0/24
                          0;255;3;0;9;read: 27-27-0 s=14,c=1,t=6,pt=7,l=5,sg=0:0.00
                          0;255;3;0;9;Sending message on topic: GW1_out/27/14/1/0/6
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 9BEBE9A04F339CE85808EBF1B5E8BC7BD611CC3B5C0A638DF2A548B398BF059E
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:9BEBE9A04F339CE85808EBF1B5E8BC7BD611CC3B5C0A638DF2
                          0;255;3;0;9;Signature in message: 012C3605DF4F03AD69833FCC101EA1BF0E5750483F4E2107F6
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: 9BEBE9A04F339CE85808EBF1B5E8BC7BD611CC3B5C0A638DF2AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 681C6D87947BC2574D48FFCAC370BECD30789EAEB7C2BFBAD562B2ED7DCAE10F
                          0;255;3;0;9;Signature bad: 011C6D87947BC2574D48FFCAC370BECD30789EAEB7C2BFBAD5
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 15
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=15,pt=0,l=2,sg=0:
                          0;255;3;0;9;Mark node 32 as one that require signed messages
                          0;255;3;0;9;Mark node 32 as one that do not require whitelisting
                          0;255;3;0;9;Informing node 32 that we require signatures
                          0;255;3;0;9;Informing node 32 that we do not require whitelisting
                          0;255;3;0;9;Skipping security for command 3 type 15
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=15,pt=0,l=2,sg=0,st=ok:
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: F0E3953E5E27A57274D53B6F0B2C4098EBD0F6A84345DE7135D3A4AEC3E13960
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:F0E3953E5E27A57274D53B6F0B2C4098EBD0F6A84345DE7135
                          0;255;3;0;9;Signature in message: 0173D1128E9B00E6E0FFA12AE46CBB
                          0;255;3;0;9;Message to process: 2000560011FF322E302E302D62657461
                          0;255;3;0;9;Current nonce: F0E3953E5E27A57274D53B6F0B2C4098EBD0F6A84345DE7135AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: CBC7FC088614695AD92A5A4A32CA832C6D00041CF63D1AF78F353FD6E0D9D949
                          0;255;3;0;9;Signature bad: 01C7FC088614695AD92A5A4A32CA83
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: E574F30C89052CFEA25ACB6D9B3B4E8CA0D462DF4770ECF72FB75DED8D5F68BC
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:E574F30C89052CFEA25ACB6D9B3B4E8CA0D462DF4770ECF72F
                          0;255;3;0;9;Signature in message: 016E870FC4662534A18B29FB7A48440B7C745E15FF82EA34
                          0;255;3;0;9;Message to process: 20000E2306FF00
                          0;255;3;0;9;Current nonce: E574F30C89052CFEA25ACB6D9B3B4E8CA0D462DF4770ECF72FAAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 5E2D30821345709074EB96B09CC0C7408E1291AC5C921432DD83A29919734767
                          0;255;3;0;9;Signature bad: 012D30821345709074EB96B09CC0C7408E1291AC5C921432
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 10C33355BD231F7BB5E53E7E39372DE1C3053161AE04D744948C093BFA5776C8
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:10C33355BD231F7BB5E53E7E39372DE1C3053161AE04D74494
                          0;255;3;0;9;Signature in message: 0172ECC9E1B27FF3
                          0;255;3;0;9;Message to process: 20008E030BFF53656E736562656E646572204D6963726F
                          0;255;3;0;9;Current nonce: 10C33355BD231F7BB5E53E7E39372DE1C3053161AE04D74494AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 82CCF6912389FCE5896B4867B82879414D80FE3FBAC1C6365E0B6303F7DADB56
                          0;255;3;0;9;Signature bad: 01CCF6912389FCE5
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 3B91B8117E813E6F0E12221791A78309559E5052097A420E8A3AB9EDED6F5D56
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:3B91B8117E813E6F0E12221791A78309559E5052097A420E8A
                          0;255;3;0;9;Signature in message: 01E348148A34E8BE86788E5AA5F45F8F675089068DA5
                          0;255;3;0;9;Message to process: 20001E030CFF312E35
                          0;255;3;0;9;Current nonce: 3B91B8117E813E6F0E12221791A78309559E5052097A420E8AAAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: ACFBD53ADA240C2FF69FF474887A750BEC719180D3A30B132AF241E94D8CF15B
                          0;255;3;0;9;Signature bad: 01FBD53ADA240C2FF69FF474887A750BEC719180D3A3
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=0,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 694B1F7903CB8A6854DAF8509AA451207AD040D71966A3453D7D5772649E35E9
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:694B1F7903CB8A6854DAF8509AA451207AD040D71966A3453D
                          0;255;3;0;9;Signature in message: 0113C5AA4FDD7E2F61EAA2C3F2716BCEEFB56292BA66BC98A4
                          0;255;3;0;9;Message to process: 200006001F00
                          0;255;3;0;9;Current nonce: 694B1F7903CB8A6854DAF8509AA451207AD040D71966A3453DAAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 786E3B4757AA9BA51BB69546A59AC2E07B4FD696E79A72BF4DBD14530CBDFB21
                          0;255;3;0;9;Signature bad: 016E3B4757AA9BA51BB69546A59AC2E07B4FD696E79A72BF4D
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 13F0B25E5D9A117DA1146AFA7494C90FA33FA03B128B0CE3E1ED939BDD46DD66
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:13F0B25E5D9A117DA1146AFA7494C90FA33FA03B128B0CE3E1
                          0;255;3;0;9;Signature in message: 0171BF42F9C80CC00B5319226D836566CD4F95123E96258FF8
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: 13F0B25E5D9A117DA1146AFA7494C90FA33FA03B128B0CE3E1AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 7C9BD8227613765CC0A7D20E5C76396F6B380BB4D6A4199CDAB76C4D5CFF5C43
                          0;255;3;0;9;Signature bad: 019BD8227613765CC0A7D20E5C76396F6B380BB4D6A4199CDA
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;read: 27-27-0 s=13,c=1,t=8,pt=7,l=5,sg=0:0.13
                          0;255;3;0;9;Sending message on topic: GW1_out/27/13/1/0/8
                          0;255;3;0;9;read: 27-27-0 s=13,c=1,t=9,pt=7,l=5,sg=0:0.40
                          0;255;3;0;9;Sending message on topic: GW1_out/27/13/1/0/9
                          0;255;3;0;9;read: 27-27-0 s=12,c=1,t=10,pt=7,l=5,sg=0:225.00
                          0;255;3;0;9;Sending message on topic: GW1_out/27/12/1/0/10
                          0;255;3;0;9;read: 27-27-0 s=12,c=1,t=24,pt=7,l=5,sg=0:0.02
                          0;255;3;0;9;Sending message on topic: GW1_out/27/12/1/0/24
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 8FBD6C07C7957826D2BAF13CDD7A82D8082180FD4F0796F6B4E49547312D56B7
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:8FBD6C07C7957826D2BAF13CDD7A82D8082180FD4F0796F6B4
                          0;255;3;0;9;Signature in message: 01AC958E93696F29B508B534322FC0237EB1740405F2A7AA2A
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: 8FBD6C07C7957826D2BAF13CDD7A82D8082180FD4F0796F6B4AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 2C52B5D52BDA0030F2BC63D2CE6EB6CF7ED83AB9F35DCEA61147FB3429B03170
                          0;255;3;0;9;Signature bad: 0152B5D52BDA0030F2BC63D2CE6EB6CF7ED83AB9F35DCEA611
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 26-26-0 s=1,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 53FB5496D3358338CE2D5082FAC5D043DE6D4E0D607275D2F3908F0F1AF8CB73
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-26-26 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:53FB5496D3358338CE2D5082FAC5D043DE6D4E0D607275D2F3
                          0;255;3;0;9;Signature in message: 012C20F0DC9CF89B84455FA90271B4823E60DF9D
                          0;255;3;0;9;Message to process: 1A002EE100014879D04101
                          0;255;3;0;9;Current nonce: 53FB5496D3358338CE2D5082FAC5D043DE6D4E0D607275D2F3AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 1D593C273D7167F9756DCA5CE4AF8005D7E5B8D6B95CF2C3B0C10A839E057FC3
                          0;255;3;0;9;Signature bad: 01593C273D7167F9756DCA5CE4AF8005D7E5B8D6
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 26-26-0 s=2,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 3081C0AF2996E0041CC85171727DB5F96A8201CF0BCC0D92FE3CC33C2A7B9705
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-26-26 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:3081C0AF2996E0041CC85171727DB5F96A8201CF0BCC0D92FE
                          0;255;3;0;9;Signature in message: 01395A6873A0741CFD612BEC59D9E865888C6C29
                          0;255;3;0;9;Message to process: 1A002EE10102905B3A4201
                          0;255;3;0;9;Current nonce: 3081C0AF2996E0041CC85171727DB5F96A8201CF0BCC0D92FEAAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 137DD0BB67606DDBF1F16854BFE720BB29C6ED1BFDD421430688DFC08F0813AF
                          0;255;3;0;9;Signature bad: 017DD0BB67606DDBF1F16854BFE720BB29C6ED1B
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 6BB69A71C65A24D7077B9B2A2E65D51B3861A56CF777BBD6B6B626B2A3942FAF
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:6BB69A71C65A24D7077B9B2A2E65D51B3861A56CF777BBD6B6
                          0;255;3;0;9;Signature in message: 012DE76DD7349510C9CAE6F072875D7D7C380BBDD00C65339B
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: 6BB69A71C65A24D7077B9B2A2E65D51B3861A56CF777BBD6B6AAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: A7FC0A4823BBE2F65EFC0F872743D808BB3DE432CCDEED33353C46B6D50736DD
                          0;255;3;0;9;Signature bad: 01FC0A4823BBE2F65EFC0F872743D808BB3DE432CCDEED3335
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;read: 22-22-0 s=3,c=1,t=0,pt=7,l=5,sg=0:31.0
                          0;255;3;0;9;Sending message on topic: GW1_out/22/3/1/0/0
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: B7CD5773148E8916C98B5BB16265F17811F8091A560A3535EB6113A76207EE59
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:B7CD5773148E8916C98B5BB16265F17811F8091A560A3535EB
                          0;255;3;0;9;Signature in message: 01959641C93642F85E13499948DC33F1CE3B1B0DE5D8DEC8F5
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: B7CD5773148E8916C98B5BB16265F17811F8091A560A3535EBAAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: 218006AFDB5D1A909B39808D0F79E620974D2B7A291A929FD4524C0D3E5BEF9E
                          0;255;3;0;9;Signature bad: 018006AFDB5D1A909B39808D0F79E620974D2B7A291A929FD4
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          0;255;3;0;9;Skipping security for command 3 type 16
                          0;255;3;0;9;read: 32-32-0 s=255,c=3,t=16,pt=0,l=0,sg=0:
                          0;255;3;0;9;Signing backend: ATSHA204
                          0;255;3;0;9;SHA256: 43AADEA58D5CC9AF0A58FE4A763CEE560CB751BCF31BAD7F4CCAEEC0925C60AA
                          0;255;3;0;9;Transmittng nonce
                          0;255;3;0;9;Skipping security for command 3 type 17
                          0;255;3;0;9;send: 0-0-32-32 s=255,c=3,t=17,pt=6,l=25,sg=0,st=ok:43AADEA58D5CC9AF0A58FE4A763CEE560CB751BCF31BAD7F4C
                          0;255;3;0;9;Signature in message: 0117705F14F7482ACEEC510ADD5EB2CBB329B3FA4754861826
                          0;255;3;0;9;Message to process: 2000060301FF
                          0;255;3;0;9;Current nonce: 43AADEA58D5CC9AF0A58FE4A763CEE560CB751BCF31BAD7F4CAAAAAAAAAAAAAA
                          0;255;3;0;9;HMAC: DD7AADA9C207653FF0E5184E006CCB4707837275511EC2136773AEFE80C89AB9
                          0;255;3;0;9;Signature bad: 017AADA9C207653FF0E5184E006CCB4707837275511EC21367
                          0;255;3;0;9;Signature verification failed!
                          0;255;3;0;9;verify fail
                          
                          1 Reply Last reply
                          0
                          • AnticimexA Offline
                            AnticimexA Offline
                            Anticimex
                            Contest Winner
                            wrote on last edited by
                            #34

                            I believe we sorted this through chat/github. Thanks for finding the issue and helping out with testing!

                            Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                            1 Reply Last reply
                            1
                            • T Offline
                              T Offline
                              tomkxy
                              wrote on last edited by
                              #35

                              @anticimex Thanks to your excellent working, it is working now.

                              1 Reply Last reply
                              0
                              • AnticimexA Offline
                                AnticimexA Offline
                                Anticimex
                                Contest Winner
                                wrote on last edited by Anticimex
                                #36

                                :+1:

                                Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                                1 Reply Last reply
                                0
                                Reply
                                • Reply as topic
                                Log in to reply
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes


                                19

                                Online

                                11.7k

                                Users

                                11.2k

                                Topics

                                113.1k

                                Posts


                                Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                • Login

                                • Don't have an account? Register

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • MySensors
                                • OpenHardware.io
                                • Categories
                                • Recent
                                • Tags
                                • Popular