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

    OpenVPN Not working after update

    Scheduled Pinned Locked Moved OpenVPN
    19 Posts 4 Posters 7.0k 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.
    • JKnottJ
      JKnott @Gertjan
      last edited by

      @gertjan

      Other than making the changes described in that sticky article, I did nothing else, so I have no idea what's causing those errors. I'm thinking about running the wizard again from scratch. I had tried restoring, but it still had the same ciphers as after I made the changes, not the ones that were there originally.

      BTW, disabling IPv6 is not an option, ever.

      PfSense running on Qotom mini PC
      i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
      UniFi AC-Lite access point

      I haven't lost my mind. It's around here...somewhere...

      GertjanG JKnottJ 2 Replies Last reply Reply Quote 0
      • GertjanG
        Gertjan @JKnott
        last edited by Gertjan

        @jknott said in OpenVPN Not working after update:

        I'm thinking about running the wizard again from scratch.

        Don't.
        OpenVPN, like a web or mail server can not, and will never really integrate with a web GUI to collect the settings.
        This is pfSense, so you have to use the GUI. But always keep an eye on this file :

        a1825fa7-298b-4e1d-a955-a82dde354c6d-image.png

        This file contains the OpenVPN server settings.
        Like :

        dev ovpns1
        verb 1
        dev-type tun
        dev-node /dev/tun1
        writepid /var/run/openvpn_server1.pid
        #user nobody
        #group nobody
        script-security 3
        daemon
        keepalive 10 60
        ping-timer-rem
        persist-tun
        persist-key
        proto udp4
        auth SHA256
        up /usr/local/sbin/ovpn-linkup
        down /usr/local/sbin/ovpn-linkdown
        client-connect /usr/local/sbin/openvpn.attributes.sh
        client-disconnect /usr/local/sbin/openvpn.attributes.sh
        local 192.168.10.3
        tls-server
        server 192.168.3.0 255.255.255.0
        server-ipv6 2001:dead:beef:3::/64
        client-config-dir /var/etc/openvpn/server1/csc
        tls-verify "/usr/local/sbin/ovpn_auth_verify tls 'xxx-yyy-vvv.net' 1"
        lport 1194
        management /var/etc/openvpn/server1/sock unix
        max-clients 10
        push "dhcp-option DOMAIN xxx-yyy-vvv.net"
        push "dhcp-option DNS 192.168.3.1"
        push "block-outside-dns"
        push "register-dns"
        push "dhcp-option NTP 192.168.1.1"
        push "redirect-gateway def1"
        push "redirect-gateway ipv6"
        client-to-client
        remote-cert-tls client
        capath /var/etc/openvpn/server1/ca
        cert /var/etc/openvpn/server1/cert 
        key /var/etc/openvpn/server1/key 
        dh /etc/dh-parameters.2048
        tls-crypt /var/etc/openvpn/server1/tls-crypt 
        data-ciphers AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305
        data-ciphers-fallback AES-256-GCM
        allow-compression asym
        persist-remote-ip
        float
        topology subnet
        status /var/log/openvpn.status
        
        status-version 1
        

        The last two line are part of the custom config.

        My open config file is what is considered at an 'off the mill' basic OpenVPN server file.
        One exception : because I have a working IPv6, I create an IPv4 and IPv6 tunnel - because 'why not'.

        No need to know what all the option mean, but their usage can now be explained with the help of the OpenVPN server FAQ. Their doc doesn't care about 'pfSense GUI'.
        Some option are mutual exclusive, or don't work well together.
        Some are depreciated , some are right from the bleeding dev edge.
        OpenVPN is daunting. The typical example of an open source project where everybody wanted his options and gadgets. I understand why the No knobs and Wheels "Wireguard" was created.

        Example : this one : "Auth digest algorithm" :

        auth SHA256
        

        is needed - if it's not there, a warnings shows up :

        ******* WARNING *******: '--auth none' was specified. This means no authentication will be performed on received packets, meaning you CANNOT trust that the data received by the remote side have NOT been manipulated. PLEASE DO RECONSIDER THIS SETTING!
        

        But when it's present

        WARNING: 'auth' is used inconsistently, local='auth [null-digest]', remote='auth SHA256'
        

        Because the default AES-25-CGM crypto has already a ""Auth digest algorithm" build in.

        Just to name one.

        Another one, when connected :

        WARNING: 'keysize' is used inconsistently, local='keysize 256', remote='keysize 128'
        

        or, the keysize option isn't even present in my OpenVPN server config neither client config file. I use AES-25-CGM on both sides ....
        Its usage is part of the [Deprecated Options in OpenVPN] list.(https://community.openvpn.net/openvpn/wiki/DeprecatedOptions).
        Still, OpenVPN 2.5.4 is complaining it's there - or not there. Whatever.

        No "help me" PM's please. Use the forum, the community will thank you.
        Edit : and where are the logs ??

        1 Reply Last reply Reply Quote 0
        • JKnottJ
          JKnott @JKnott
          last edited by

          @jknott

          I am trying to completely remove the OpenVPN config, so that I can start completely from scratch. However, I keep running into "Cannot disable an OpenVPN instance while the interface is assigned. Remove the interface assignment first." Where is it assigned? I have removed the assignment under rules/openvpn.

          After all this frustration, I'm getting to the point where I am seriously considering Wireguard.

          PfSense running on Qotom mini PC
          i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
          UniFi AC-Lite access point

          I haven't lost my mind. It's around here...somewhere...

          S 1 Reply Last reply Reply Quote 0
          • S
            SteveITS Galactic Empire @JKnott
            last edited by

            @jknott Is it assigned in Interfaces/Interface Assignments?

            Pre-2.7.2/23.09: Only install packages for your version, or risk breaking it. Select your branch in System/Update/Update Settings.
            When upgrading, allow 10-15 minutes to restart, or more depending on packages and device speed.
            Upvote 👍 helpful posts!

            JKnottJ 1 Reply Last reply Reply Quote 0
            • JKnottJ
              JKnott @SteveITS
              last edited by

              @steveits

              No, that's for actual interfaces, such as NICs, VLANs, etc. No mention at all of VPNs in there.

              PfSense running on Qotom mini PC
              i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
              UniFi AC-Lite access point

              I haven't lost my mind. It's around here...somewhere...

              JKnottJ 1 Reply Last reply Reply Quote 0
              • JKnottJ
                JKnott @JKnott
                last edited by

                @jknott

                My mistake. I was looking under the wrong area.

                PfSense running on Qotom mini PC
                i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
                UniFi AC-Lite access point

                I haven't lost my mind. It's around here...somewhere...

                GertjanG 1 Reply Last reply Reply Quote 0
                • GertjanG
                  Gertjan @JKnott
                  last edited by

                  @jknott

                  Yeah, that's (2.6.0) new.

                  When you want to disable an OpenVPN server instance : check the disable box you get this :

                  d2006623-7b4c-4b49-bc18-7bda10237143-image.png

                  Now, you have to delete or re assign the interface first :

                  efc47cda-2011-46ad-a1ee-91fcd51d7f74-image.png

                  and when done (and saved) you can go back to OpenVPN server instance an shutting it down.

                  Btw, strange, how little do I know.
                  More logic, for me, is :
                  First I stop all processes that uses an interface. (dns mail server web server whatever server)
                  Then I remove the interface.
                  This is the other way around.
                  There must be a reason why it evolved like this.

                  No "help me" PM's please. Use the forum, the community will thank you.
                  Edit : and where are the logs ??

                  JKnottJ 1 Reply Last reply Reply Quote 0
                  • JKnottJ
                    JKnott @Gertjan
                    last edited by

                    @gertjan

                    I know about disabling a server. However, I have completely stripped out all OpenVPN config and will try again today, if I have time. After making those changes, even restoring a previous pfsense config didn't resolve the problem. This is the second time a pfsense upgrade caused me problems with OpenVPN. What made the first time even more "fun" was I could no longer use my second Internet connection for testing. It's through the same modem and works fine, unless I want to do much more than ping my firewall. So, I now have to test by tethering with my phone. However, I can or at least could get pfsense working by connecting my ThinkPad to my LAN. I pfsense configured to allow OpenVPN connections on any interface.

                    PfSense running on Qotom mini PC
                    i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
                    UniFi AC-Lite access point

                    I haven't lost my mind. It's around here...somewhere...

                    GertjanG 1 Reply Last reply Reply Quote 0
                    • GertjanG
                      Gertjan @JKnott
                      last edited by

                      @jknott said in OpenVPN Not working after update:

                      So, I now have to test by tethering with my phone

                      All I have to do, is switching the Wifi on my phone to Off.
                      At that moment I use my 4G/5G data carrier, and with the help of : OpenVPN Connect I connect to my pfSense as a "road warrior".
                      Lately, it isn't the IPv4 port 1194 UDP that kicks in, it's the IPv6 UDP port 1194 that is used.
                      This way, I will know it works from an 'unknown' distant IP address, which means I can access my pfSense from everywhere.

                      I'm pretty sure you know all this, why should you have to tether ?
                      No mobile network available where you are ?

                      No "help me" PM's please. Use the forum, the community will thank you.
                      Edit : and where are the logs ??

                      JKnottJ 1 Reply Last reply Reply Quote 0
                      • JKnottJ
                        JKnott @Gertjan
                        last edited by

                        @gertjan said in OpenVPN Not working after update:

                        I'm pretty sure you know all this, why should you have to tether ?
                        No mobile network available where you are ?

                        My Internet connection is via cable modem. For testing, I use my cell phone. I can tether using either WiFi or USB. I don't know what is causing the problem with using my 2nd connection through the cable modem. It used to work fine. Then, after an update, I could no longer use it. When my laptop is connected to the 2nd port on the modem, I have a usual connection to the Internet, but now neither OpenVPN nor ssh work. Ping still does though. I can see the incoming connections, but get no response from pfsense. The IPv4 addresses are on a similar, but different subnet. Given I see the incoming traffic, it's obvious my ISP is not blocking it. My cell and Internet are with the same company, but the cell subnet is completely different from that on my Internet connections. Regardless, I should still be able to set up an OpenVPN connection, when both pfsense and my notebook are on the same LAN. That still worked after that update that killed my usual test connection.

                        PfSense running on Qotom mini PC
                        i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
                        UniFi AC-Lite access point

                        I haven't lost my mind. It's around here...somewhere...

                        JKnottJ 1 Reply Last reply Reply Quote 0
                        • JKnottJ
                          JKnott @JKnott
                          last edited by

                          @jknott

                          I'm about ready to give up. I completely removed all the OpenVPN settings and recreated it. I also removed all the config on my ThinkPad and recreated the connection. All the certificates and keys are correct. When I try to connect, this is what I get in the log:

                          Feb 24 16:34:01 openvpn 36285 Initialization Sequence Completed
                          Feb 24 16:36:56 openvpn 36285 tls-crypt unwrap error: packet too short
                          Feb 24 16:36:56 openvpn 36285 TLS Error: tls-crypt unwrapping failed from [AF_INET6]::ffff:172.16.0.40:44802 (via ::ffff:172.16.0.1%igb1)
                          Feb 24 16:36:58 openvpn 36285 tls-crypt unwrap error: packet too short
                          Feb 24 16:36:58 openvpn 36285 TLS Error: tls-crypt unwrapping failed from [AF_INET6]::ffff:172.16.0.40:44802 (via ::ffff:172.16.0.1%igb1)
                          Feb 24 16:37:02 openvpn 36285 tls-crypt unwrap error: packet too short
                          Feb 24 16:37:02 openvpn 36285 TLS Error: tls-crypt unwrapping failed from [AF_INET6]::ffff:172.16.0.40:44802 (via ::ffff:172.16.0.1%igb1)
                          Feb 24 16:37:10 openvpn 36285 tls-crypt unwrap error: packet too short
                          Feb 24 16:37:10 openvpn 36285 TLS Error: tls-crypt unwrapping failed from [AF_INET6]::ffff:172.16.0.40:44802 (via ::ffff:172.16.0.1%igb1)
                          Feb 24 16:37:26 openvpn 36285 tls-crypt unwrap error: packet too short
                          Feb 24 16:37:26 openvpn 36285 TLS Error: tls-crypt unwrapping failed from [AF_INET6]::ffff:172.16.0.40:44802 (via ::ffff:172.16.0.1%igb1)

                          On the client, Wireshark shows only 5 lines of "P_CONTROL_HARD_RESET_CLIENT_V2" and nothing in reply from the server.

                          Again, I had working OpenVPN prior to this week. However, since the last time it worked, I upgraded to 2.6.0 and made the changes listed in the sticky at the top, so I'm not sure what the issue is.

                          PfSense running on Qotom mini PC
                          i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
                          UniFi AC-Lite access point

                          I haven't lost my mind. It's around here...somewhere...

                          GertjanG 1 Reply Last reply Reply Quote 0
                          • GertjanG
                            Gertjan @JKnott
                            last edited by

                            @jknott
                            Compared to my openvpn server settings - see above - how is your different ?

                            I use Remote Access TLS/SSL ( no user password, just certs).
                            I have a IPv4 and a IPv6 tunnel, because, why not.

                            https://www.test-domaine.fr/openvpn-server.png

                            The certs are created ..... way back, as per jimp's Netgate OpenVPN server.

                            I use pfSense 2.6.0, so my OpenVPN server vertsion is 2.5.4. Assure jourself your OpenVPN client are also recent, not some 2.4.x series.

                            The cyphers should be : HEADS UP: OpenVPN deprecating shared key mode, requires TLS, deprecating cipher selection

                            Btw :
                            These :

                            2022-02-25 04:17:41.830847+01:00 	openvpn 	37962 	tls-crypt unwrap error: packet too short
                            2022-02-25 04:17:41.830878+01:00 	openvpn 	37962 	TLS Error: tls-crypt unwrapping failed from [AF_INET]146.88.240.4:37537
                            2022-02-25 10:03:34.546556+01:00 	openvpn 	37962 	tls-crypt unwrap error: packet too short
                            2022-02-25 10:03:34.546594+01:00 	openvpn 	37962 	TLS Error: tls-crypt unwrapping failed from [AF_INET]185.200.116.50:40380
                            

                            are just IP's that connected to my IPv4 and don't use the correct tls ... so harmless.

                            Was this you :

                            [AF_INET6]::ffff:172.16.0.40:44802
                            

                            ?

                            Coming in over some IPv4 converted to IPv6 ....
                            My WAN is IPv4 only, and :

                            5fcb2a6c-b1d6-4e56-b4ff-fa118aa3814e-image.png

                            which is the default WAN firewall rule I guess.

                            No "help me" PM's please. Use the forum, the community will thank you.
                            Edit : and where are the logs ??

                            JKnottJ 1 Reply Last reply Reply Quote 0
                            • JKnottJ
                              JKnott @Gertjan
                              last edited by

                              @gertjan said in OpenVPN Not working after update:

                              I use Remote Access TLS/SSL ( no user password, just certs).
                              I have a IPv4 and a IPv6 tunnel, because, why not.

                              Same here. Actually SSL/TLS.

                              I use pfSense 2.6.0, so my OpenVPN server vertsion is 2.5.4. Assure jourself your OpenVPN client are also recent, not some 2.4.x series.

                              This may be the problem.
                              openvpn-2.4.3-5.7.1.x86_64

                              This is the current version in OpenSUSE. Are there changes in the new version (again) that cause earlier versions to fail?

                              PfSense running on Qotom mini PC
                              i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
                              UniFi AC-Lite access point

                              I haven't lost my mind. It's around here...somewhere...

                              GertjanG 1 Reply Last reply Reply Quote 0
                              • GertjanG
                                Gertjan @JKnott
                                last edited by

                                @jknott said in OpenVPN Not working after update:

                                Are there changes in the new version (again) that cause earlier versions to fail?

                                There are always some pesky minor changes, that's why "just updating" pfSense == updating OpenVPN creates "OpenVPN Not working after update".

                                The "OpenVPN server" is just a process that listens on a port, typically UDP/1194. That's just a firewall rule, no nat needed.

                                When the connection doesn't work, that is because the 'client' doesn't understand the 'server', or the other way around.

                                No "help me" PM's please. Use the forum, the community will thank you.
                                Edit : and where are the logs ??

                                1 Reply Last reply Reply Quote 0
                                • JKnottJ JKnott referenced this topic on
                                • First post
                                  Last post
                                Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.