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

    Multiple subnets

    Scheduled Pinned Locked Moved HA/CARP/VIPs
    11 Posts 4 Posters 14.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.
    • M
      MadDog2K
      last edited by

      Hello,

      I'm currently looking into pfSense, to replace our 2 FreeBSD 6.1 firewalls (fail-over).
      The setup is however not straight forward:

      I have a WAN interface and a LAN interface.
      The WAN interface currently has multiple subnets routed to it's IP. (VIP from CARP, but doesn't matter).
      The LAN interface has various IP aliases (CARP interfaces actually - for fail-over) with always 1 ip from the routed subnets configured to act as gateway for the machines behind it.

      How can I accomplish this with pfSense ?
      Cause I can only find a way to assign one subnet to an interface…
      I guess I could create various OPT interfaces and put every subnet in a different VLAN, but that's not very usefull I think.

      1 Reply Last reply Reply Quote 0
      • H
        hoba
        last edited by

        Have a look at interfaces>virtual IPs. Also the CARP tutorial should be helpful: http://pfsense.com/mirror.php?section=tutorials/carp/carp-cluster-new.htm

        1 Reply Last reply Reply Quote 0
        • M
          MadDog2K
          last edited by

          @hoba:

          Have a look at interfaces>virtual IPs. Also the CARP tutorial should be helpful: http://pfsense.com/mirror.php?section=tutorials/carp/carp-cluster-new.htm

          Thx, but I already tried that :>
          For the first subnet, this works ok.

          However, since I need more subnets, I need to add another one.
          This gives me the following error :

          Firewall: Virtual IP Address: Edit

          The following input errors were detected:

          Sorry, we could not locate an interface with a matching subnet for 1.2.2.1/29. Please add an ip in this subnet on a real interface.

          That is technically correct, since I don't have an ip from 1.2.2.x/29 configured yet on an interface. And CARP depends on this.
          I just cannot find a method to add this 2nd subnet to my LAN-interface.

          The problem is thus that I need multiple subnets on my LAN interface, so eventually I can add more CARP interfaces.
          But CARP is just step 2.

          I've noticed after some reading that 'IP Aliases' will be implemented in pfSense 1.1 … would this fix my problem ? (Running 1.0.1)
          Is there a method to do this manually (and save on reboot :>)

          1 Reply Last reply Reply Quote 0
          • H
            hoba
            last edited by

            You could try to add this using hidden config.xml commands (see http://faq.pfsense.com/index.php?action=artikel&cat=10&id=38&artlang=en&highlight=hidden ) but this still wouldn't let you save the carp IPs that are on the 2nd subnet as the webgui doesn't know about it. However if you edit the config.xml manually and enter the CARP IPs for the second subnet and upload it it might work. However, this of course is unsupported.

            1 Reply Last reply Reply Quote 0
            • M
              MadDog2K
              last edited by

              Many thanks ! :>

              Do you happen to have any idea if pfSense 1.1 will have support for what I need ?

              1 Reply Last reply Reply Quote 0
              • M
                MadDog2K
                last edited by

                @hoba:

                You could try to add this using hidden config.xml commands (see http://faq.pfsense.com/index.php?action=artikel&cat=10&id=38&artlang=en&highlight=hidden ) but this still wouldn't let you save the carp IPs that are on the 2nd subnet as the webgui doesn't know about it. However if you edit the config.xml manually and enter the CARP IPs for the second subnet and upload it it might work. However, this of course is unsupported.

                The link on that page gives me a forbidden … when I look higher in the repository, there is no conf.default/ directory.

                1 Reply Last reply Reply Quote 0
                • H
                  hoba
                  last edited by

                  I was talking about downloading the config.xml from diagnostics>backup/restore, then editing it to add the custom options that you can't create with the webgui and adding the interface alias commands as shellcommand or maybe even filter reload items. Then upload the customized config.xml again at diagnostics>backup/restore.

                  1 Reply Last reply Reply Quote 0
                  • M
                    MadDog2K
                    last edited by

                    @hoba:

                    I was talking about downloading the config.xml from diagnostics>backup/restore, then editing it to add the custom options that you can't create with the webgui and adding the interface alias commands as shellcommand or maybe even filter reload items. Then upload the customized config.xml again at diagnostics>backup/restore.

                    Ah, ok. Thanks, I will try this.

                    1 Reply Last reply Reply Quote 0
                    • O
                      Owen
                      last edited by

                      MadDog2k,

                      Have you had any success with this suggestion, or found an alternate workaround?

                      1 Reply Last reply Reply Quote 0
                      • M
                        MadDog2K
                        last edited by

                        Have not been able to try this yet.

                        Hope to do so this week :)

                        1 Reply Last reply Reply Quote 0
                        • T
                          tetard
                          last edited by

                          Here's how I solved this problem for our office (migrating a legacy 4.9 firewall with ipfw to pfSense).

                          The first thing I noticed is the lack of support for alias IPs (in the traditional definition of the concept, i.e. "ifconfig xxx0 1.2.3.4/27 alias").

                          So I went around the forums, and didn't find a good solution that wouldn't confuse CARP or require sticking a custom startup script in /usr/local/etc/rc.d/

                          One solution I did come up with, and that I have used before with success in NAT-before-tunnel IPSEC encapsulations, is as follows:

                          1. create Virtual IP of type "proxy arp" on the inside interface (Firewall -> Virtual IPs), for example "172.31.31.1/32" (what we use)
                          2. create a an advanced outbound NAT rule of the type: nat on EXT_IF inet from 172.31.31.0/24 to any -> (EXT_IF) round-robin
                          3. the tricky bit: route add 172.31.31.0/24 -iface INT_IF

                          Now the last part is tricky because the forms don't support -iface sis0 (the inside IF).  Looking in the CVS code:

                          http://cvstrac.pfsense.com/chngview?cn=10696
                          http://cvstrac.pfsense.com/rlog?f=pfSense/usr/local/www/system_routes.php

                          … this was introduced, then rolled back:

                          http://cvstrac.pfsense.com/chngview?cn=10869

                          Scott's explanation:

                          "Remove interface gateway option. It doesnt do what I wanted, and the same can be achieved by plugging in the next hop gateway."

                          Well, it would have done what I wanted :)  Additionally, I am missing an example for the scenario described in the above commit message -- I am doubting about the correct way to go about doing this kind of forwarding with PF, through the pfSense interface...

                          So in the meantime I have an rc.d script doing "route add 172.31.31.0/24 -iface sis0" and everybody's happy.  Hope the input helps, and hope real IP aliases will be introduced sometime in the future.

                          Phil

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