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

    Policy based routing, multi-WAN and gateway on same subnet

    Scheduled Pinned Locked Moved Routing and Multi WAN
    39 Posts 6 Posters 7.6k 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
      makz
      last edited by

      Yep, differents VLAN

      In fact, we have a lot of VLAN the intervlan routing are done by the core switches and we have a vlan named INTERCO

      In all vlan, the default gateway are the core switchs.

      All core switches have a default route to the pfsense vIP (10.10.8.12).

      Like that, pfsense get all packets destinated of internet in his INTERCO interface and the filtering is done on this interface.

      My rule is done in INTERCO interface.

      I didn't included the core switching part in my diagram to keep it simple.

      1 Reply Last reply Reply Quote 0
      • DerelictD
        Derelict LAYER 8 Netgate
        last edited by

        Looks like you kept it even simpler by not including a diagram at all.

        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
          makz
          last edited by

          Hello,

          I've included coreswitching part and some more informations on this diagram

          As seen in older screenshots, two gateway are configured on WAN interface (192.168.0.1 & 192.168.0.5), my rule "Matching source 10.10.3.50 -> Gateway 192.168.0.1" is done in INTERCO interface and it's on top of the rule list.

          Thank you.

          ![Screenshot from 2016-12-12 10-19-54.png](/public/imported_attachments/1/Screenshot from 2016-12-12 10-19-54.png)
          ![Screenshot from 2016-12-12 10-19-54.png_thumb](/public/imported_attachments/1/Screenshot from 2016-12-12 10-19-54.png_thumb)
          ![Untitled Diagram (5).png](/public/imported_attachments/1/Untitled Diagram (5).png)
          ![Untitled Diagram (5).png_thumb](/public/imported_attachments/1/Untitled Diagram (5).png_thumb)

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

            Hello,

            I'm back with some news !

            Today i've configured a little freebsd router to try my setup on a vanilla bsd.

            My basic setup work well on this vanilla router.

            pass out quick on $int_if route-to ($ext_if 192.168.0.1) inet from $bck_srv
            pass in quick on $int_if route-to ($ext_if 192.168.0.1) inet from $bck_srv
            

            Now i know this is not a freebsd issue but more a pfsense issue.

            I've read the pf rules generated by pfsense and i saw some hidden rules

            pass out  route-to ( lagg0_vlan2000 192.168.0.5 ) from 192.168.0.10 to !192.168.0.0/24 tracker 1000008011 keep state allow-opts label "let out anything from firewall host itself"
            pass out  route-to ( lagg0_vlan2000 192.168.0.5 ) from 192.168.0.12 to !192.168.0.0/24 tracker 1000008012 keep state allow-opts label "let out anything from firewall host itself"
            

            I've removed those rules from pf and magic it work !

            So,

            I saw in the bug tracker, if i place my rule in "Floating rules" this should disable the hidden rule <https: 1823="" redmine.pfsense.org="" issues="">This still won't work … Here is all my "route-to" rules from my non working pf configuration

            pfctl -sa | grep route-to
            pass out route-to (lagg0_vlan2000 192.168.0.5) inet from 192.168.0.10 to ! 192.168.0.0/24 flags S/SA keep state allow-opts label "let out anything from firewall host itself"
            pass out route-to (lagg0_vlan2000 192.168.0.5) inet from 192.168.0.12 to ! 192.168.0.0/24 flags S/SA keep state allow-opts label "let out anything from firewall host itself"
            pass out quick on lagg0_vlan1008 route-to (lagg0_vlan2000 192.168.0.1) inet from <backup_servers> to any flags S/SA keep state label "USER_RULE: TEST ROUTING"
            pass in quick on lagg0_vlan1008 route-to (lagg0_vlan2000 192.168.0.1) inet from <backup_servers> to any flags S/SA keep state label "USER_RULE: TEST ROUTING"</backup_servers></backup_servers>
            

            I've tried to inverse the rules (my rule before the hidden rule), this still won't work

            I've also tried to remove the route-to argument to the hidden rule

            pass out  from 192.168.0.10 to !192.168.0.0/24 tracker 1000008011 keep state allow-opts label "let out anything from firewall host itself"
            pass out  from 192.168.0.12 to !192.168.0.0/24 tracker 1000008012 keep state allow-opts label "let out anything from firewall host itself"
            

            and this work great !

            For now i have some questions …

            What is the purpose of this hidden rule ?
            Can i disable it permanently ?
            Can i just remove the route-to argument permanently ?
            Is there any option to bypass this rule for some cases ?

            Thank you !

            Have a great day.</https:>

            1 Reply Last reply Reply Quote 0
            • G
              gslongo
              last edited by

              A bug related to this has been opened here : https://redmine.pfsense.org/issues/7033

              Can it be analysed by a developper ?

              //EDIT: Also found user having same issue here : https://redmine.pfsense.org/issues/6625

              1 Reply Last reply Reply Quote 0
              • jimpJ
                jimp Rebel Alliance Developer Netgate
                last edited by

                The floating rules do not "disable" the hidden rule, they override it. When you make your floating rules, be sure to check "quick" and that the rules will match the traffic going to your other gateway. The hidden rules do not have quick, so a quick rule will match and the non-quick rule will never be processed.

                Post the exact floating rules you made and it should be fairly easy to tell why they aren't working.

                Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                Need help fast? Netgate Global Support!

                Do not Chat/PM for help!

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

                  @jimp:

                  The floating rules do not "disable" the hidden rule, they override it. When you make your floating rules, be sure to check "quick" and that the rules will match the traffic going to your other gateway. The hidden rules do not have quick, so a quick rule will match and the non-quick rule will never be processed.

                  Post the exact floating rules you made and it should be fairly easy to tell why they aren't working.

                  Hello, thank you for the response, but … there's a but ...

                  My floating rule have the "quick" option, you can see it in my screenshot on the bugtracker (i repost it here in attachment)

                  Here's the block of rules with the hidden one and mine

                  pass out inet all flags S/SA keep state allow-opts label "let out anything IPv4 from firewall host itself"
                  pass out inet6 all flags S/SA keep state allow-opts label "let out anything IPv6 from firewall host itself"
                  pass out route-to (lagg0_vlan2000 192.168.0.5) inet from 192.168.0.10 to ! 192.168.0.0/24 flags S/SA keep state allow-opts label "let out anything from firewall host itself"
                  pass out route-to (lagg0_vlan2000 192.168.0.5) inet from 192.168.0.12 to ! 192.168.0.0/24 flags S/SA keep state allow-opts label "let out anything from firewall host itself"
                  pass in quick on lagg0_vlan1007 proto tcp from any to (lagg0_vlan1007) port = https flags S/SA keep state label "anti-lockout rule"
                  pass in quick on lagg0_vlan1007 proto tcp from any to (lagg0_vlan1007) port = http flags S/SA keep state label "anti-lockout rule"
                  pass in quick on lagg0_vlan1007 proto tcp from any to (lagg0_vlan1007) port = rsh-spx flags S/SA keep state label "anti-lockout rule"
                  anchor "userrules/*" all
                  pass in quick on lagg0_vlan1008 inet from <backup_servers>to <negate_networks>flags S/SA keep state label "NEGATE_ROUTE: Negate policy routing for destination"
                  pass in quick on lagg0_vlan1008 route-to (lagg0_vlan2000 192.168.0.1) inet from <backup_servers>to any flags S/SA keep state label "USER_RULE: TEST ROUTING"
                  pass out quick on lagg0_vlan1008 inet from <backup_servers>to <negate_networks>flags S/SA keep state label "NEGATE_ROUTE: Negate policy routing for destination"
                  pass out quick on lagg0_vlan1008 route-to (lagg0_vlan2000 192.168.0.1) inet from <backup_servers>to any flags S/SA keep state label "USER_RULE: TEST ROUTING"</backup_servers></negate_networks></backup_servers></backup_servers></negate_networks></backup_servers> 
                  

                  And when i don't patch the filter.inc to remove the hidden rule, my traffic is routed to the default gateway as explained before.

                  [root@backup ~]# traceroute 8.8.8.8
                  traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 60 byte packets
                   1  gateway (10.10.3.1)  0.541 ms  1.298 ms  1.264 ms
                   2  192.168.0.5 (192.168.0.5)  0.406 ms  0.404 ms  0.350 ms
                  
                  

                  2665af6955eeb7bb48c0472ca4926722.png
                  2665af6955eeb7bb48c0472ca4926722.png_thumb

                  1 Reply Last reply Reply Quote 0
                  • jimpJ
                    jimp Rebel Alliance Developer Netgate
                    last edited by

                    Do not set a gateway on those

                    Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                    Need help fast? Netgate Global Support!

                    Do not Chat/PM for help!

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

                      @jimp:

                      Do not set a gateway on those

                      Hi,
                      Thank you for your reply

                      Not sure I understand well
                      On which rules ? Because we do not find where to modify the hidden rules.
                      And if you mean on the floating rules, then where to set the gateway if not in advanced options of these rules?

                      Thank you for advance

                      1 Reply Last reply Reply Quote 0
                      • jimpJ
                        jimp Rebel Alliance Developer Netgate
                        last edited by

                        Use a static route

                        Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                        Need help fast? Netgate Global Support!

                        Do not Chat/PM for help!

                        1 Reply Last reply Reply Quote 0
                        • jimpJ
                          jimp Rebel Alliance Developer Netgate
                          last edited by

                          Or policy route on LAN rules

                          Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                          Need help fast? Netgate Global Support!

                          Do not Chat/PM for help!

                          1 Reply Last reply Reply Quote 0
                          • G
                            gslongo
                            last edited by

                            @jimp:

                            Or policy route on LAN rules

                            Hi Jim,

                            Static routes are not possible in that case
                            We already tried same rule on LAN interface but same behavior. And if I understand well the solution shoud be a floating rule ? But then why it is not working in that case ?
                            We tried every possible scenarios (I think) this is why at the end we opened a bug on the bug tracker.

                            Thank you!

                            1 Reply Last reply Reply Quote 0
                            • jimpJ
                              jimp Rebel Alliance Developer Netgate
                              last edited by

                              You need both.
                              Policy route on LAN rule, quick out floating rule.

                              Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                              Need help fast? Netgate Global Support!

                              Do not Chat/PM for help!

                              1 Reply Last reply Reply Quote 0
                              • G
                                gslongo
                                last edited by

                                @jimp:

                                You need both.
                                Policy route on LAN rule, quick out floating rule.

                                I'm sorry to say that but already tried :-( Just validated right now again..
                                The most strange is the floating route matches because packet count get incremented… But traceroute shows routing path is not correct...
                                So as a summary :

                                Floating rule quick in+out with gateway option
                                LAN rule with gateway option

                                Is that right ?

                                1 Reply Last reply Reply Quote 0
                                • jimpJ
                                  jimp Rebel Alliance Developer Netgate
                                  last edited by

                                  No. Just exactly what I wrote.

                                  Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                                  Need help fast? Netgate Global Support!

                                  Do not Chat/PM for help!

                                  1 Reply Last reply Reply Quote 0
                                  • G
                                    gslongo
                                    last edited by

                                    @jimp:

                                    No. Just exactly what I wrote.

                                    :o

                                    I'm sorry to ask again but your answers are very short and not clear to me :-[ I'm not inside your head  ;D

                                    Could you please just describe what should work ? Because it seems what we tested here is according what you suggested ?

                                    Thanks!

                                    1 Reply Last reply Reply Quote 0
                                    • jimpJ
                                      jimp Rebel Alliance Developer Netgate
                                      last edited by

                                      Pass rule on LAN with gateway set.
                                      Floating quick pass out on WAN without gateway set.

                                      Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                                      Need help fast? Netgate Global Support!

                                      Do not Chat/PM for help!

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

                                        @jimp:

                                        Pass rule on LAN with gateway set.
                                        Floating quick pass out on WAN without gateway set.

                                        Hello, i tried that but still not working, maybe i miss something but i don't know what, screenshots in attachments

                                        anchor "userrules/*" all
                                        pass out quick on lagg0_vlan2000 reply-to (lagg0_vlan2000 192.168.0.5) inet from <backup_servers> to any flags S/SA keep state label "USER_RULE: TEST ROUTING"
                                        pass in quick on openvpn inet all flags S/SA keep state label "USER_RULE: TEMP"
                                        pass in quick on openvpn inet from any to (self) flags S/SA keep state label "USER_RULE: TEMP"
                                        pass in quick on lagg0_vlan2000 reply-to (lagg0_vlan2000 192.168.0.5) inet proto tcp from any to (self) port = https flags S/SA keep state label "USER_RULE: Easy Rule: Passed from Firewall Log View"
                                        pass in quick on lagg0_vlan2000 reply-to (lagg0_vlan2000 192.168.0.5) inet proto tcp from <itop_public_ip> to (self) port = rsh-spx flags S/SA keep state label "USER_RULE"
                                        pass in quick on lagg0_vlan2000 reply-to (lagg0_vlan2000 192.168.0.5) inet proto tcp from <itop_public_ip> to (self) port = https flags S/SA keep state label "USER_RULE"
                                        pass in quick on lagg0_vlan2000 reply-to (lagg0_vlan2000 192.168.0.5) inet proto tcp from any to (self) port = rsh-spx flags S/SA keep state label "USER_RULE: Easy Rule: Passed from Firewall Log View"
                                        pass in quick on lagg0_vlan1007 inet proto carp from any to (self) keep state label "USER_RULE: CARP ALLOWED"
                                        pass in quick on lagg0_vlan1007 inet proto pfsync from any to (self) keep state label "USER_RULE: PFSYNC ALLOWED"
                                        pass in quick on lagg0_vlan2010 inet proto tcp from any to (self) port = http flags S/SA keep state label "USER_RULE: WEB INTERFACE"
                                        pass in quick on lagg0_vlan2010 inet proto tcp from any to (self) port = https flags S/SA keep state label "USER_RULE: WEB INTERFACE"
                                        pass in quick on lagg0_vlan2010 inet proto tcp from any to (self) port = rsh-spx flags S/SA keep state label "USER_RULE: SSH"
                                        pass in quick on lagg0_vlan2010 inet proto icmp from any to (self) keep state label "USER_RULE"
                                        pass in quick on lagg0_vlan2010 inet from any to <hq_lans> flags S/SA keep state label "USER_RULE: oldlan2hqlans"
                                        block drop in quick on lagg0_vlan2010 inet from any to <lans_rfc1918> label "USER_RULE: LAST RULE-1"
                                        pass in quick on lagg0_vlan1008 inet from <backup_servers> to <negate_networks> flags S/SA keep state label "NEGATE_ROUTE: Negate policy routing for destination"
                                        pass in quick on lagg0_vlan1008 route-to (lagg0_vlan2000 192.168.0.1) inet from <backup_servers> to any flags S/SA keep state label "USER_RULE: TEST ROUTING"</backup_servers></negate_networks></backup_servers></lans_rfc1918></hq_lans></itop_public_ip></itop_public_ip></backup_servers>
                                        

                                        I also tried to disable the auto generated reply-to on the floating rule but still not working

                                        [root@backup ~]# traceroute 8.8.8.8
                                        traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 60 byte packets
                                         1  gateway (10.10.3.1)  1.169 ms  1.115 ms  1.074 ms
                                         2  192.168.0.5 (192.168.0.5)  0.459 ms  0.432 ms  0.399 ms^C
                                        

                                        Thank you in advance.

                                        lan_rule.png
                                        lan_rule.png_thumb
                                        floating_rule.png
                                        floating_rule.png_thumb

                                        1 Reply Last reply Reply Quote 0
                                        • jimpJ
                                          jimp Rebel Alliance Developer Netgate
                                          last edited by

                                          Hmm, that same style rule works when I use it. Try checking "Disable reply-to" on that rule as well.

                                          Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                                          Need help fast? Netgate Global Support!

                                          Do not Chat/PM for help!

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

                                            @jimp:

                                            Hmm, that same style rule works when I use it. Try checking "Disable reply-to" on that rule as well.

                                            As said in the latest message, i already tried this disabling the automatic reply-to. Still not working.

                                            thank you.

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