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

IPSec local network subnet size and NAT size error

Scheduled Pinned Locked Moved IPsec
22.012.6
8 Posts 3 Posters 1.7k 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.
  • C
    ceAxe
    last edited by ceAxe Jun 17, 2022, 6:59 AM Jun 17, 2022, 6:57 AM

    Hello,

    We are getting this error when trying to save our IPSec phase 2.
    5a3b1b15-7ff8-46b4-ae47-d315da620544-bild.png

    I found this on the bug-tracker: https://redmine.pfsense.org/issues/12851

    Like the author of #12851 we heavily used IPSec phase 2 entries like this in Pfsense 2.5.x but now with 2.6 we can no longer create new phase 2 entries like this.

    My questions are,

    1. Why was this not working propperly as stated by Jim Pringles?
    2. What should i do as workaround, disable the check in the php code since we never have had any issues with this setup (40+ ipsec tunnels working great)?

    Edit: Additional background.
    We use several local networks inside 192.168.0.0/16 (for example 192.168.4.0/24, 192.168.236.0/24, 192.168.238.0/24 etc) and we want all of these to be able to use the ipsec phase 2 to reach the other side. The other side does not allow us to use a /16 block so we are forced to use /24 as NAT.

    M 1 Reply Last reply Jun 20, 2022, 2:11 PM Reply Quote 0
    • M
      mamawe @ceAxe
      last edited by Jun 20, 2022, 2:11 PM

      @ceaxe said in IPSec local network subnet size and NAT size error:
      [...]

      1. What should i do as workaround, disable the check in the php code since we never have had any issues with this setup (40+ ipsec tunnels working great)?

      I used NAT/BINAT translation type Address with success.
      With some VPN peers it is possible to open a phase 2 using only a single address instead of a whole subnet. If this does not work, you have to renegotiate with the admin of the VPN peer that your side of the VPN traffic selectors shall be only one address.

      D 1 Reply Last reply Jun 20, 2022, 5:07 PM Reply Quote 0
      • D
        Derelict LAYER 8 Netgate @mamawe
        last edited by Derelict Jun 20, 2022, 5:08 PM Jun 20, 2022, 5:07 PM

        @mamawe As far as I know that type of NAT has never been valid on an IPsec tunnel. You can do 1:1 or Many:1 but not Many:Some_Other_Size_Many.

        If it worked for you it was simply by coincidence/accident.

        WebGUI validation of the same was added here:

        https://github.com/pfsense/pfsense/commit/253b9b62f9f0454550dc8b829e3cbc0b05e6b9e7

        The proper solution is to use either a subnet of the same size for 1:1 NAT or use an address.

        https://docs.netgate.com/pfsense/en/latest/vpn/ipsec/phase-2-nat.html#nat-types

        Chattanooga, Tennessee, USA
        A comprehensive network diagram is worth 10,000 words and 15 conference calls.
        DO NOT set a source address/port in a port forward or firewall rule unless you KNOW you need it!
        Do Not Chat For Help! NO_WAN_EGRESS(TM)

        M 1 Reply Last reply Jun 22, 2022, 6:17 AM Reply Quote 0
        • C
          ceAxe
          last edited by ceAxe Jun 21, 2022, 6:16 AM Jun 21, 2022, 6:14 AM

          Thanks for the replies.
          We have previously done different subnet sizes and then manually added BNAT 1:1 NAT rules to get the routing correct.

          For example this Phase2,
          52e5efb5-2f47-46c7-ac04-6e460bf08131-bild.png
          With these 1:1 nat rules NAT our local networks.
          c2b37506-da31-48dd-a986-e72b85e3d3b2-bild.png

          I understand now that our setup only worked since we manually created BINAT 1:1 rules for our different subnets.

          Is it possible to tell ipsec phase 2 we manually want to create the nat rules?
          For example changing my initial setup to this,
          a5133056-2cea-49e6-9119-1d2338efe535-bild.png

          Would i be able to manually create BINAT 1:1 NAT rules for 10.200.1.0/24 <=> 192.168.4.0/24 ?

          D 1 Reply Last reply Jun 21, 2022, 11:16 AM Reply Quote 0
          • D
            Derelict LAYER 8 Netgate @ceAxe
            last edited by Jun 21, 2022, 11:16 AM

            @ceaxe You can do anything you like but the NAT in the IPsec tunnel definition has to be 1:1 BINAT or Many:1 (Overload).

            If the NAT entry is not set in the Phase 2 definition the traffic is not interesting to IPsec so that NAT rule in the second example will not work.

            Chattanooga, Tennessee, USA
            A comprehensive network diagram is worth 10,000 words and 15 conference calls.
            DO NOT set a source address/port in a port forward or firewall rule unless you KNOW you need it!
            Do Not Chat For Help! NO_WAN_EGRESS(TM)

            C 1 Reply Last reply Jun 21, 2022, 12:26 PM Reply Quote 0
            • C
              ceAxe @Derelict
              last edited by Jun 21, 2022, 12:26 PM

              @derelict ok so if i understand your reply correctly i have to set a Ipsec NAT/BINAT translation or else ipsec will not process any additional NAT rules i may create in Firewall -> NAT?

              D 1 Reply Last reply Jun 21, 2022, 1:31 PM Reply Quote 0
              • D
                Derelict LAYER 8 Netgate @ceAxe
                last edited by Jun 21, 2022, 1:31 PM

                @ceaxe Right. Because without the NAT set in the IPsec P2, traffic in at least one direction will not match the traffic selector and will not be placed into IPsec.

                Chattanooga, Tennessee, USA
                A comprehensive network diagram is worth 10,000 words and 15 conference calls.
                DO NOT set a source address/port in a port forward or firewall rule unless you KNOW you need it!
                Do Not Chat For Help! NO_WAN_EGRESS(TM)

                1 Reply Last reply Reply Quote 0
                • M
                  mamawe @Derelict
                  last edited by Jun 22, 2022, 6:17 AM

                  @derelict said in IPSec local network subnet size and NAT size error:

                  @mamawe As far as I know that type of NAT has never been valid on an IPsec tunnel. You can do 1:1 or Many:1 but not Many:Some_Other_Size_Many.

                  Maybe it wasn't clear from my answer.
                  I used Many:1-NAT and 1 address for our side of the VPN traffic selector.

                  The last two sentences referred to the peer VPN gateway.

                  Some implementations allow to negotiate a smaller traffic selector in phase 2 as was configured (1 address instead of a subnet). With these you don't have to change anything at the peer VPN gateway.
                  If the peer VPN gateway insists on using the correct traffic selector, you have to have the peer VPN configuration changed.

                  1 Reply Last reply Reply Quote 0
                  1 out of 8
                  • First post
                    1/8
                    Last post
                  Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.
                    This community forum collects and processes your personal information.
                    consent.not_received