• Tags
  • Documentation
  • Order
  • Register
  • Login
Duet3D Logo Duet3D
  • Tags
  • Documentation
  • Order
  • Register
  • Login

The problem of connecting DuetWiFi to modern routers.

Scheduled Pinned Locked Moved Unsolved
General Discussion
5
24
872
Loading More Posts
  • 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.
  • undefined
    i0n1zeD
    last edited by i0n1zeD 29 Aug 2020, 09:27

    I am a longtime owner of DuetWiFi since version 1.02 🙂
    And he was always pleased.

    But now is the time to update my router.
    And then the problems began.

    In my new router, there is no way to select the TKIP
    There is only a standard set (WPA\WPA2\WPA3 and mixes of it)
    I spent 24 hours trying to connect. I have tried various combinations of protocols, network names and passwords, and all have not been successful.

    This problem has been troubling the community for many years, why is it still impossible to decide in 2020 that the wonderful DuetWIFi cannot work with modern routers?

    Screenshot_1.png

    1 Reply Last reply Reply Quote 0
    • undefined
      Veti
      last edited by 29 Aug 2020, 09:53

      what router do you have? you might be able to put openwrt on it.

      undefined 1 Reply Last reply 29 Aug 2020, 09:56 Reply Quote 0
      • undefined
        i0n1zeD
        last edited by 29 Aug 2020, 09:54

        This post is deleted!
        1 Reply Last reply Reply Quote 0
        • undefined
          i0n1zeD @Veti
          last edited by 29 Aug 2020, 09:56

          @Veti Unfortunately, there are no third-party firmware for it yet 😞

          1 Reply Last reply Reply Quote 0
          • undefined
            dc42 administrators
            last edited by 29 Aug 2020, 09:57

            WPA2 PSK should work.

            Duet WiFi hardware designer and firmware engineer
            Please do not ask me for Duet support via PM or email, use the forum
            http://www.escher3d.com, https://miscsolutions.wordpress.com

            undefined 1 Reply Last reply 29 Aug 2020, 10:00 Reply Quote 0
            • undefined
              i0n1zeD @dc42
              last edited by 29 Aug 2020, 10:00

              @dc42 I tried it with WPA2 and WPA\WPA2 does not connect 😞

              undefined 1 Reply Last reply 29 Aug 2020, 10:15 Reply Quote 0
              • undefined
                dc42 administrators
                last edited by 29 Aug 2020, 10:02

                What reason does the Duet give for failing to connect?

                Duet WiFi hardware designer and firmware engineer
                Please do not ask me for Duet support via PM or email, use the forum
                http://www.escher3d.com, https://miscsolutions.wordpress.com

                1 Reply Last reply Reply Quote 0
                • undefined
                  dc42 administrators
                  last edited by 29 Aug 2020, 10:05

                  PS also, does it connect if you set the router to No Encryption? Perhaps the failure has nothing to do with encryption.

                  Duet WiFi hardware designer and firmware engineer
                  Please do not ask me for Duet support via PM or email, use the forum
                  http://www.escher3d.com, https://miscsolutions.wordpress.com

                  1 Reply Last reply Reply Quote 0
                  • undefined
                    i0n1zeD @i0n1zeD
                    last edited by i0n1zeD 29 Aug 2020, 10:15

                    @dc42
                    Screenshot_2.png

                    @dc42 said in The problem of connecting DuetWiFi to modern routers.:

                    PS also, does it connect if you set the router to No Encryption? Perhaps the failure has nothing to do with encryption.

                    When the network is open, there are no connection problems, everything is fine.

                    But this is not an option to leave the network open for me, I live in a very large house.

                    1 Reply Last reply Reply Quote 0
                    • undefined
                      Veti
                      last edited by Veti 29 Aug 2020, 10:45

                      looking at the code it seems CCMP is supported. i have connected several esp8266 boards to my network which forces ccmp.

                      /**
                      * Return the encryption type of the networks discovered during the scanNetworks
                      * @param i specify from which network item want to get the information
                      * @return encryption type (enum wl_enc_type) of the specified item on the networks scanned list
                      */
                      uint8_t ESP8266WiFiScanClass::encryptionType(uint8_t i) {
                      struct bss_info* it = reinterpret_cast<struct bss_info*>(_getScanInfoByIndex(i));
                      if(!it) {
                      return -1;
                      }
                      switch(it->authmode) {
                      case AUTH_OPEN:
                      return ENC_TYPE_NONE;
                      case AUTH_WEP:
                      return ENC_TYPE_WEP;
                      case AUTH_WPA_PSK:
                      return ENC_TYPE_TKIP;
                      case AUTH_WPA2_PSK:
                      return ENC_TYPE_CCMP;
                      case AUTH_WPA_WPA2_PSK:
                      return ENC_TYPE_AUTO;
                      default:
                      return -1;
                      }
                      }
                      1 Reply Last reply Reply Quote 0
                      • undefined
                        Veti
                        last edited by 29 Aug 2020, 10:47

                        the duet has very weak antennas. it could be that the new router wireless signal is weaker and its not enough for the duet.

                        try moving closer to the router for a test.

                        undefined 1 Reply Last reply 29 Aug 2020, 10:49 Reply Quote 0
                        • undefined
                          i0n1zeD @Veti
                          last edited by 29 Aug 2020, 10:49

                          @Veti I wrote above that without encryption, everything connects perfectly.

                          And yes, the router is 2 meters line of sight from the printer.

                          1 Reply Last reply Reply Quote 0
                          • undefined
                            Veti
                            last edited by 29 Aug 2020, 10:51

                            can you tell use the model of the router?

                            undefined 1 Reply Last reply 29 Aug 2020, 10:53 Reply Quote 0
                            • undefined
                              i0n1zeD @Veti
                              last edited by i0n1zeD 29 Aug 2020, 10:53

                              @Veti MI Ax1800
                              I would leave the network open and whitelist, but part of my smart home uses 2.4 and cannot work with a network without encryption.

                              undefined 1 Reply Last reply 29 Aug 2020, 16:49 Reply Quote 0
                              • undefined
                                i0n1zeD
                                last edited by 29 Aug 2020, 10:54

                                This post is deleted!
                                1 Reply Last reply Reply Quote 0
                                • undefined
                                  Veti
                                  last edited by Veti 29 Aug 2020, 11:00

                                  enable ssh on the router and you can have a look at the wireless config. but i would suspect that tkip is enabled

                                  https://forum.openwrt.org/t/add-support-for-xiaomi-ax1800-wifi-6-router/66911

                                  edit: from the dump in the post

                                  nv_wifi_enc=mixed-psk

                                  undefined 1 Reply Last reply 29 Aug 2020, 11:30 Reply Quote 0
                                  • undefined
                                    Veti
                                    last edited by 29 Aug 2020, 11:04

                                    question in the picture you posted. you called your network Bazzinga, but in the log you are trying to connect to a DuetWiFi network

                                    undefined 1 Reply Last reply 29 Aug 2020, 11:12 Reply Quote 0
                                    • undefined
                                      i0n1zeD @Veti
                                      last edited by 29 Aug 2020, 11:12

                                      @Veti The screen with the settings was for the sake of example, as one of attempts to change the name and password.

                                      They were always the same when trying, of course.

                                      I will try to change the region on my router.

                                      undefined 1 Reply Last reply 29 Aug 2020, 11:32 Reply Quote 0
                                      • undefined
                                        i0n1zeD @Veti
                                        last edited by 29 Aug 2020, 11:30

                                        @Veti said in The problem of connecting DuetWiFi to modern routers.:

                                        enable ssh on the router and you can have a look at the wireless config. but i would suspect that tkip is enabled
                                        https://forum.openwrt.org/t/add-support-for-xiaomi-ax1800-wifi-6-router/66911
                                        edit: from the dump in the post
                                        nv_wifi_enc=mixed-psk

                                        Yes, I did it, changed the region to EU.
                                        And I also saw "nv_wifi_enc = mixed-psk"

                                        But that didn't solve the problem.

                                        1 Reply Last reply Reply Quote 0
                                        • undefined
                                          droftarts administrators @i0n1zeD
                                          last edited by 29 Aug 2020, 11:32

                                          @i0n1zeD see my reply to this thread. There is a possible bug in the Expressif SDK used to build the Duet WiFi firmware, that seems to cause issues with newer routers. @dc42 is looking at it.

                                          Ian

                                          Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                                          undefined 1 Reply Last reply 29 Aug 2020, 14:02 Reply Quote 1
                                          4 out of 24
                                          • First post
                                            4/24
                                            Last post
                                          Unless otherwise noted, all forum content is licensed under CC-BY-SA