Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    WPA_Supplicant

    Scheduled Pinned Locked Moved General pfSense Questions
    39 Posts 5 Posters 4.2k Views
    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.
    • A
      AiC0315 @stephenw10
      last edited by

      @stephenw10
      I updated my test machine to 23.09.RC with the exact same config as 2.7.0 and 23.09.RC pulled an IP immediately.

      1 Reply Last reply Reply Quote 0
      • stephenw10S
        stephenw10 Netgate Administrator
        last edited by

        Ok, that's good. That would have been far more difficult to fix!

        Is there a set of instructions for how you set this up?

        A 2 Replies Last reply Reply Quote 0
        • A
          AiC0315 @stephenw10
          last edited by

          @stephenw10

          All thats required is to clone the mac address of the certs on the WAN interface. Point the earlyshellcmd to where my files are. Make the wpa_supplicant in my files executable. And add the shellcmd I posted earlier. Thats basically it.
          To me it seems something is different in 2.7.0 than in 23.05.01. Could it be the wpa_supplicant files located at var/run/wpa_supplicant.pid and /usr/sbin/wpa_cli? I will post my my wpa_supplicant.conf below.

          eapol_version=1
          ap_scan=0
          fast_reauth=1
          network={
          ca_cert="/root/WPA/Certs/CA.pem"
          client_cert="/root/WPA/Certs/Client.pem"
          eap=TLS
          eapol_flags=0
          identity="XX:XX:XX:XX:XX:XX" # Internet (ONT) interface MAC address must match this value
          key_mgmt=IEEE8021X
          phase1="allow_canned_success=1"
          private_key="/root/WPA/Certs/PrivateKey.pem
          }

          My files are located at /root/WPA. This is the working config using pfsense plus.

          Thanks again for your help

          1 Reply Last reply Reply Quote 0
          • A
            AiC0315 @stephenw10
            last edited by

            @stephenw10
            Heres a link to a dsl thread that has some info in it.

            ATT Bypass

            1 Reply Last reply Reply Quote 0
            • stephenw10S
              stephenw10 Netgate Administrator
              last edited by

              But you had to copy wpa_suplicant itself into /root? That isn't present by default. Where did you copy it from?

              wpa_supplicant is on the system but you're running a modified version maybe?

              A 1 Reply Last reply Reply Quote 0
              • A
                AiC0315 @stephenw10
                last edited by

                @stephenw10
                I got that version of wpa_supplicant from the link i posted. Sorry I posted that probably at the same time you were responding

                1 Reply Last reply Reply Quote 0
                • stephenw10S
                  stephenw10 Netgate Administrator
                  last edited by

                  Ah OK. So you're using the version from that attachment I assume.

                  Those posts are all from right around the time 2.7 was released. You might try just using the included wpa_supplicant version.That has those patches:
                  https://github.com/pfsense/FreeBSD-src/tree/RELENG_2_7_0/contrib/wpa/src/l2_packet

                  1 Reply Last reply Reply Quote 0
                  • GPz1100G
                    GPz1100 @AiC0315
                    last edited by GPz1100

                    @AiC0315 There was talk on the discord channel about changes in the new openssl breaking wpa_supplicant/att 802.1x use.

                    I don't recall off the top of my in which versionof pf openssl was updated (2.7/23.01 or 23.05.x, or 23.09).

                    In any event, the fix was to allow reverting back to a less secure usage (tls1) for environment in which wpa_supplicant is executed.

                    I've pasted the relevant lines to pastebin from the chat.

                    https://pastebin.com/bxg7qda4

                    This is a quote of https://discord.com/channels/886329492438671420/927008236584984587/1162122299445616650 from user "D" in the #pfsense channel.

                    Note you still need to be using the wpa_supplicant binary with the vlan0 patch.

                    Note2: The whole mac cloning is a non issue. You DON'T have to clone it. But what is important is the mac in the wpa_supplicant.conf file match the mac of the wan interface. So long as the two are the same, you will have connectivity. If they don't match, 802.1x auth will take place but you'll never get a dhcp ip.

                    1 Reply Last reply Reply Quote 0
                    • stephenw10S
                      stephenw10 Netgate Administrator
                      last edited by

                      @GPz1100 said in WPA_Supplicant:

                      https://pastebin.com/bxg7qda4

                      Mmm, that looks like it's only for the change to OpenSSL 3, which isn't in 2.7 (yet). Or in 23.05.1. 🤔

                      GPz1100G 1 Reply Last reply Reply Quote 0
                      • GPz1100G
                        GPz1100 @stephenw10
                        last edited by GPz1100

                        @stephenw10 ^^I believe it was 23.09 that introduced the new openssl.

                        It's unclear why the OP was unsuccessful with 2.70, given it does include the vlan0 patched wpa_supplicant with the same wpa_supplicant.conf

                        @AiC0315 said in WPA_Supplicant:

                        Failed to connect to non-global ctrl_ifname: (nil) error: No such file or directory

                        This error suggests a missing conf parameter in wpa_supplicant.conf, specifically

                        ctrl_interface=DIR=/var/run/wpa_supplicant

                        This goes ABOVE the "network={" array.

                        A Z 3 Replies Last reply Reply Quote 1
                        • A
                          AiC0315 @GPz1100
                          last edited by

                          @GPz1100

                          I'll add that parameter when i have time and see what happens.

                          Thank you both for helping me try to figure this out

                          1 Reply Last reply Reply Quote 0
                          • A
                            AiC0315 @GPz1100
                            last edited by

                            @GPz1100
                            Had time to mess with this last night. using this config.

                            ctrl_interface=DIR=/var/run/wpa_supplicant

                            eapol_version=1
                            ap_scan=0
                            fast_reauth=1
                            network={
                            ca_cert="/root/WPA/Certs/CA.pem"
                            client_cert="/root/WPA/Certs/Client.pem"
                            eap=TLS..
                            eapol_flags=0
                            identity="XX:XX:XX:XX:XX:XX" # Internet (ONT) interface MAC address must match this value
                            key_mgmt=IEEE8021X
                            phase1="allow_canned_success=1"
                            private_key="/root/WPA/Certs/PrivateKey.pem"
                            }
                            Works perfectly on 23.05.1 but does not get an IP on 2.7.0. Im using the wpa_supplicant posted on the dslforum link.
                            At this point I'm about to give up. Now I just have to dercide if I want to pay for plus from here on out

                            GPz1100G 1 Reply Last reply Reply Quote 0
                            • stephenw10S
                              stephenw10 Netgate Administrator
                              last edited by

                              You tried using the included wpa_supplicant? 2.7 should have the patch to accept vlan0 by default.

                              A 1 Reply Last reply Reply Quote 0
                              • GPz1100G
                                GPz1100 @AiC0315
                                last edited by

                                @AiC0315 Where/when are you initializing wpa_supplicant?

                                A 1 Reply Last reply Reply Quote 0
                                • A
                                  AiC0315 @stephenw10
                                  last edited by

                                  @stephenw10
                                  Yes, I used the wpa_supplicant file posted in the dslreports post

                                  stephenw10S 1 Reply Last reply Reply Quote 0
                                  • A
                                    AiC0315 @GPz1100
                                    last edited by

                                    @GPz1100
                                    /sbin/ifconfig igb0 ether "XX:XX:XX:XX:XX:XX" && /root/WPA/wpa_supplicant -B -Dwired -i igb0 -c /root/WPA/wpa_supplicant.conf -P/var/run/wpa_supplicant.pid && sleep 10 && /usr/sbin/wpa_cli logon. (early shellcmd)

                                    wpa_cli logoff && sleep 10 && wpa_cli logon (shellcmd)

                                    GPz1100G 1 Reply Last reply Reply Quote 0
                                    • GPz1100G
                                      GPz1100 @AiC0315
                                      last edited by

                                      @AiC0315

                                      What's the result of wpa_cli status in shell?

                                      It should look something like this.
                                      dc9b29c1-30e2-4d5f-84e4-2a0b296811b7-image.png

                                      A 1 Reply Last reply Reply Quote 0
                                      • A
                                        AiC0315 @GPz1100
                                        last edited by

                                        @GPz1100
                                        Thanks,
                                        I will take a look when I am able to install 2.7.0 back on my machine.

                                        1 Reply Last reply Reply Quote 0
                                        • stephenw10S
                                          stephenw10 Netgate Administrator @AiC0315
                                          last edited by

                                          @AiC0315 said in WPA_Supplicant:

                                          Yes, I used the wpa_supplicant file posted in the dslreports post

                                          Yes I meant did you try the default wpa_supplicant version that's included in 2.7?

                                          A 1 Reply Last reply Reply Quote 0
                                          • Z
                                            zC @GPz1100
                                            last edited by

                                            @GPz1100 said in WPA_Supplicant:

                                            @stephenw10 ^^I believe it was 23.09 that introduced the new openssl.

                                            It's unclear why the OP was unsuccessful with 2.70, given it does include the vlan0 patched wpa_supplicant with the same wpa_supplicant.conf

                                            @AiC0315 said in WPA_Supplicant:

                                            Failed to connect to non-global ctrl_ifname: (nil) error: No such file or directory

                                            This error suggests a missing conf parameter in wpa_supplicant.conf, specifically

                                            ctrl_interface=DIR=/var/run/wpa_supplicant

                                            This goes ABOVE the "network={" array.

                                            What about

                                            Failed to connect to non-global ctrl-ifname: (nil) error: Success

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.