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

    How can I tell my pfsense box a route to my upstream gateway?

    Scheduled Pinned Locked Moved Problems Installing or Upgrading pfSense Software
    31 Posts 5 Posters 12.1k 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.
    • DerelictD Offline
      Derelict LAYER 8 Netgate
      last edited by

      You are way overcomplicating things, man.

      I'll get fancy later, but right now my goals are just to pass basic tests, have PC1 ping PC2 and vice versa, but I can't even get from one pfsense nic to the other.
      Another, non-pfsense firewall/router upstream at 192.168.101.1 255.255.255.0 GW Public WAN IP via modem bridge
      pfsense WANIP 192.168.101.3 /24 (also tried /32) GW 192.168.101.1 (or no GW specified in pfsense GUI - I've tried both ways no difference).
      pfsense LANIP 192.168.102.1 /24  (also tried /32) no GW specified in pfsense GUI
      PC1 (Wan side (bogon) on 192.168.101.2 255.255.255.0 GW 192.168.101.1
      PC2 (Lan side (bogon) on 192.168.102.2 255.255.255.0 GW 192.168.102.1

      In UNBRIDGED mode:
      PC1 can NOT ping pfWANIP 101.3
      PC2 CAN      ping pfWANIP 101.3
      Note that tracert reports only 1 hop there, it doesn't say 102.1 is the first hop and then 101.3 as I (incorrectly?) would expect.

      pfSense is a firewall.  You cannot ping its WAN interface from OUTSIDE (meaning from 192.168.101.0/24) unless you PASS ICMP TRAFFIC INTO WAN with destination WAN address.  This is done with a rule on the WAN interface.  There is a default PASS IP ANY ANY rule on LAN so it CAN ping the WAN ip.

      If you want to just route traffic between two pfSense interfaces (like 192.168.101.0/24 and 192.168.102.0/24) you are going to want to put PASS IP ANY ANY rules on WAN and LAN and disable NAT.

      How does your non-pfSense router at 192.168.101.1 know how to get to 192.168.102.0/24?  How do any devices on 192.168.101.0/24 know how to get to 192.168.102.0/24?

      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
      • stephenw10S Online
        stephenw10 Netgate Administrator
        last edited by

        @bangheaduntildone:

        @stephenw10:

        If you've disabled NAT then you'll have to add a route back to the upstream router as you found.

        HOW can I add an upstream route?

        Sorry I phrased that in a particularly ambiguous way.  ::) What I meant was you have to add a route to the pfSense LAN side subnet on the upstream WAN side router otherwise it won't have a route and won't be able respond to pings etc. You had already done that.

        I think almost everything you're seeing is related to the fact that pfSense is continually sending arp requests for 192.168.101.1. You haven't said if you're seeing the arp replies in the packet capture. If you aren't then why isn't the up stream router sending them? If you are then why is pfSense asking repeatedly, especially when it already has the MAC in it's arp table?

        You definitely don't have to bridge WAN and LAN.

        ARP is not a routable protocol so looking for a routing problem is probably not the right way to go.  ;)

        If you switch back to automatic outbound NAT and allow pfSense to NAT between WAN and LAN does it work? If the arp problem still exists then it still won't be able to reach the upstream gateway. If it does work then start looking for an IP routing problem when NAT is disabled.

        I might be tempted to start again here. Set pfSense up in it's default configuration, firewall and NAT, and ensure that everything is working there first.

        Steve

        1 Reply Last reply Reply Quote 0
        • B Offline
          bennyc
          last edited by

          @bangheaduntildone:

          How can I tell my pfsense box a route to my upstream gateway?

          I think there is no need to. By default behaviour of TCP/IP: a request to something outside it's subnet will be sent to the default gw of the local config.
          So, your pc will send that to pfSense, and if pfSense does not know it it will pass it on to it's default gateway. And that GW, is responsable for passing it on the upstream network you are trying to reach.
          That is, if it is running in FW mode. No bridging, you don't want a switch I suppose.

          As Derelict already said, pfSense is a FW and you need to add rules if you want icmp (or parts of it -what is better practice-) through it.
          On top of that, if you are using nat, most probably your pc on the wan side wil not know the internal (lan) subnet, as it should, it only knows the ip of the wan adapter. If you should want that, you need to add a route in the pc connected to WAN side.

          If you want the box to be a router, not a fw, you might want to avoid WAN as tittle of your IF (you can name it what you want), and disable NAT for that IF.

          HTH? If I totally misunderstood the problem, a drawing might help understand better what the goal of the setup is (not sure I fully understood)

          4x XG-7100 (2xHA), 1x SG-4860, 1x SG-2100
          1x PC Engines APU2C4, 1x PC Engines APU1C4

          1 Reply Last reply Reply Quote 0
          • B Offline
            bangheaduntildone
            last edited by

            @stephenw10:

            I might be tempted to start again here. Set pfSense up in it's default configuration, firewall and NAT, and ensure that everything is working there first.

            Steve

            I've actually formatted and reinstalled a few times at this point. 32bit, 64 bit, no luck.

            @stephenw10:

            Sorry I phrased that in a particularly ambiguous way.  ::) What I meant was you have to add a route to the pfSense LAN side subnet on the upstream WAN side router otherwise it won't have a route and won't be able respond to pings etc. You had already done that.

            Correct (and thanks for reading what I posted before replying )

            Routing List
            Destination IP Subnet Mask Gateway Interface Metric Route Mode Type
            192.168.102.0 255.255.255.0   192.168.103.1 LAN 5 Transport Manual
            192.168.102.22 255.255.255.255 192.168.102.1 LAN 3 Transport Manual

            I've also added (as part of testing) this line which didn't help:
            192.168.103.1 255.255.255.255 192.168.102.1 LAN 5 Transport Manual

            @stephenw10:

            You definitely don't have to bridge WAN and LAN.

            ARP is not a routable protocol so looking for a routing problem is probably not the right way to go.  ;)

            Yrah, I've been chasing my tail on this for a while on this so imaginary straws are about all I've got left.

            @stephenw10:

            I think almost everything you're seeing is related to the fact that pfSense is continually sending arp requests for 192.168.101.1. You haven't said if you're seeing the arp replies in the packet capture. If you aren't then why isn't the up stream router sending them? If you are then why is pfSense asking repeatedly, especially when it already has the MAC in it's arp table?

            I'll have to figure out how to get them to show up in the pfsense packet capture - I'm not seeing anything when I try - Arp or otherwise for the WAN/OTHER side. Even with packet filtering and NAT all off. This is despite the fact that I CAN manually send and ARP request by IP and get the correct mac back from either side.

            Let me ask this from another direction though:
            Why would the configuration work as expected/desired when in bridged mode but not when unbridged?

            That fact makes me think it is not the upstream router…

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

              Dude.  ARP does not cross router ports.  ARP is a broadcast protocol.  Routers don't forward broadcasts.  WTF are you trying to do?  Stop overthinking it.

              Routing List
              Destination IP    Subnet Mask    Gateway    Interface    Metric    Route Mode    Type
              192.168.102.0  255.255.255.0      192.168.103.1  LAN  5  Transport  Manual
              192.168.102.22    255.255.255.255  192.168.102.1  LAN  3  Transport  Manual
              192.168.103.1  255.255.255.255  192.168.102.1  LAN  5  Transport  Manual

              How do you expect to get to the 192.168.102.1 AND 192.168.103.1 over the LAN interface?

              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
              • B Offline
                bangheaduntildone
                last edited by

                @Derelict:

                Dude.  ARP does not cross router ports.  ARP is a broadcast protocol.  Routers don't forward broadcasts.  WTF are you trying to do?  Stop overthinking it.

                Thanks, but Steve already pointed that out.

                @Derelict:

                Routing List
                Destination IP    Subnet Mask    Gateway    Interface    Metric    Route Mode    Type
                192.168.102.0  255.255.255.0      192.168.103.1  LAN  5  Transport  Manual
                192.168.102.22    255.255.255.255  192.168.102.1  LAN  3  Transport  Manual
                192.168.103.1  255.255.255.255  192.168.102.1  LAN  5  Transport  Manual

                How do you expect to get to the 192.168.102.1 AND 192.168.103.1 over the LAN interface?

                I put full details in my original post - including how I already HAD an always pass any to any from any rule - as well as having disable packet filtering entirely via the System/Advanced/Fw/nat checkbox. I always put in the upstream router rules and how they corrected the actual routing issues as I see them.

                In the most recent reinstall test I moved the pfsense WAN side to 103.1 from 101.3, in case the upstream 101.1 gateway was interfering in some fashion. That third entry, as I pointed out, was added as I grasp at straws.

                Again, if I put it in bridge mode, then it does work, so that's the behavior I'd like to focus on.

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

                  There is no need to grasp at straws. You need to un-fuck your network and you apparently need help to do so.  Draw a diagram of what you're trying to do complete with interface IP addresses and netmasks.

                  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
                  • B Offline
                    bangheaduntildone
                    last edited by

                    @Derelict:

                    There is no need to grasp at straws. You need to un-fuck your network and you apparently need help to do so.  Draw a diagram of what you're trying to do complete with interface IP addresses and netmasks.

                    Here's a fresh install, new IPs, same issues.

                    [PC1]–[UpstreamRouter]
                                I
                              [PFsenseDMZ]
                    [PC2]–[PFsenseLAN1]

                    UR:UpstreamRouter 10.10.10.1  255.255.255.0 (static)
                    PC1 on DMZ      10.10.10.20 255.255.255.0 (dhcp via UR gw 10.10.10.1)

                    PFsenseDMZ  192.168.1.1 255.255.255.0  UpGW 10.10.10.1
                    PFsenseLAN1  192.168.2.1 255.255.255.0  No GW
                    PC2 on LAN2  192.168.2.2 255.255.255.0  (dhcp via pfsense gw 192.168.2.1)

                    In bridge mode, everyone can ping everyone else.
                    Unbridged, PC2 can ping only to pfWAN, not PC1 or UR and PC1 can ping to UR but not PC2 or ANY PF Nic.

                    PFSense has a floating, quick "Apply the action immediately on match.", allow any from any to any rule applied. The "Disable all packet filtering" checkbox is also checked and NAT is set to manaual with all rules disabled. There are no blocking rules in place - at least none visible via the GUI. The bogon and RFC network non-exclusions are checked.

                    There are no pfsense routes in the gui. The ones I assume are automatic don't appear to work unbridged and if I try to manual add them it complains of IP conflict vs the IP GW. I'd be glad to input a route there if someone can provide the complete IP data (w.x.y.z and subnet slash value that SHOULD work).

                    I'm also glad to run any command lines and post that. To repeat the obvious, bridging DMZ-LAN lets ping and arp work. Unbridged, arp works but ping does not.

                    Again, bridged, it works. Unbridged it does not. This seems like a key detail to me. I'd also welcome an explanation that explains BOTH why that fixes it and simultaneously explains why the automatic routes don't.

                    Interface, Gateway and FWRules screenshots follow.

                    1_interfaces.PNG
                    1_interfaces.PNG_thumb
                    2_Gateways.PNG
                    2_Gateways.PNG_thumb
                    3_FWrules.PNG
                    3_FWrules.PNG_thumb

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

                      Why the hell are you messing around with FLOATING RULES!?!

                      That's not in any walkthrough I know of.

                      STOP OVERTHINKING IT and put your pass rule on LAN.

                      That's not a diagram.  Draw one in crayon and take a picture if you have to.

                      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
                      • B Offline
                        bangheaduntildone
                        last edited by

                        @Derelict:

                        Why the hell are you messing around with FLOATING RULES!?!

                        That's not in any walkthrough I know of.

                        STOP OVERTHINKING IT and put your pass rule on LAN.

                        That's not a diagram.  Draw one in crayon and take a picture if you have to.

                        The floating rule was to eliminate the other tabs as concerns.
                        In any case, I do have pass any any on both wan/dmz and lan. See attached.

                        NetPic.png
                        NetPic.png_thumb
                        3_FWrules.PNG
                        3_FWrules.PNG_thumb

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

                          Your diagram has pfSense with DMZ and LAN interfaces, and no interface IP addresses, yet your screenshot has WAN and LAN interfaces?  Which is it?

                          Annotate your diagram with IP addresses and subnet masks of the various interfaces and make it as matchymatchy with what your screenshots say as possible so people know what they heck you're trying to do.

                          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
                          • stephenw10S Online
                            stephenw10 Netgate Administrator
                            last edited by

                            When you've bridged the LAN and WAN and you have completely open firewall rules your downstream clients are effectively talking directly to your upstream router. That clearly removes whatever arp issue is causing problems.

                            Steve

                            1 Reply Last reply Reply Quote 0
                            • B Offline
                              bangheaduntildone
                              last edited by

                              @stephenw10:

                              When you've bridged the LAN and WAN and you have completely open firewall rules your downstream clients are effectively talking directly to your upstream router. That clearly removes whatever arp issue is causing problems.

                              Steve

                              My thought exactly, Steve. I just don't know what else to try on the pfsense box to resolve that. It's as if it is ignoring the default gateway or has some other hidden automatic route somehow or there is a hidden filter still being applied (despite the disable packet filtering being checked). Any thoughts on how I can diagnose that diagnose that?

                              @Derelict:

                              Your diagram has pfSense with DMZ and LAN interfaces, and no interface IP addresses, yet your screenshot has WAN and LAN interfaces?  Which is it?

                              Annotate your diagram with IP addresses and subnet masks of the various interfaces and make it as matchymatchy with what your screenshots say as possible so people know what they heck you're trying to do.

                              Here's a new diagram with the IPs on the diagram itself rather than in the comment.

                              I haven't renamed interfaces from the default for the GUI. The "WAN" from the pfsense screenshots is the DMZ.

                              Green lines are working links. The red line is a link that works only in bridged mode and the yellow line within the pfsense box is where I suspect there is an issue.

                              NetPic2.png
                              NetPic2.png_thumb

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

                                You have the pfSenseDMZ interface set with an interface address of 192.168.1.1/24.  You are expecting it to be able to send traffic to 10.10.10.1.  You can't do that.  The gateway for an interface MUST be on the same subnet/segment as the interface itself.

                                This is basic IP routing / subnetting.

                                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
                                • B Offline
                                  bangheaduntildone
                                  last edited by

                                  @Derelict:

                                  You have the pfSenseDMZ interface set with an interface address of 192.168.1.1/24.  You are expecting it to be able to send traffic to 10.10.10.1.  You can't do that.  The gateway for an interface MUST be on the same subnet/segment as the interface itself.

                                  This is basic IP routing / subnetting.

                                  Actually it's a typo in the pic since I've wiped and reset it a number of times. The pfsense DMZ side IP is 10.10.10.2
                                  Corrected pic attached.

                                  NetPic2b.png
                                  NetPic2b.png_thumb

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

                                    So what's not working?

                                    What is it you want to have happen?  Be specific and let's work one thing at a time.

                                    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
                                    • B Offline
                                      bangheaduntildone
                                      last edited by

                                      @Derelict:

                                      So what's not working?

                                      What is it you want to have happen?  Be specific and let's work one thing at a time.

                                      For starters, I want PC1 1.10.10.20 to be able to ping the DMZ/WAN IP 10.10.10.2 on the pfsense box when it is NOT in bridged mode. If it is bridged, I can ping it. If not I can't. Bridged, or not, I can ARP from either side.

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

                                        Start from scratch on pfSense.  Enable your WAN (DMZ) interface as 10.10.10.2/24.  Create a gateway of 10.10.10.1. Uncheck block private networks.

                                        Set your LAN interface to 192.168.2.2/24.

                                        Edit your firewall rules on WAN/DMZ.  Add a pass rule for IPv4 ICMP any Source any Dest WAN address.

                                        DON'T DO ANYTHING ELSE!  10.10.10.1 and 10.10.10.20 will be able to ping 10.10.10.2.

                                        See screen shot.  You won't have the block private rule….

                                        ![Screen Shot 2015-01-11 at 8.58.10 PM.png](/public/imported_attachments/1/Screen Shot 2015-01-11 at 8.58.10 PM.png)
                                        ![Screen Shot 2015-01-11 at 8.58.10 PM.png_thumb](/public/imported_attachments/1/Screen Shot 2015-01-11 at 8.58.10 PM.png_thumb)

                                        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
                                        • B Offline
                                          bangheaduntildone
                                          last edited by

                                          Done and done.

                                          At first I could only ping the LAN side. I had DHCP setup as well and despite giving LAN a .2 address, it was handing out .1 as the GW. I tried putting in .2 as the dhcp server gw, ipconfig/renew'ed and I STILL got .1 as a GW. I switched to static with .3 for PC2 on the LAN and .2 as it's GW, I could then ping both LAN and DMZ side.

                                          I can NOT ping the upstream GW at 10.10.10.1.
                                          (PC1, on DMZ 10.10.10.20) can NOT ping 10.10.10.2 either.)

                                          So DHCP oddity aside, the same behavior I've seen in every test to date on this system.

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

                                            Why are you making this so goddamn complicated?  Why are you trying to ping the LAN side?  Did you REALLY wipe pfSense and start from scratch?

                                            This was to test ONE thing.  Pinging 10.10.10.2 from 10.10.10.1 and 10.10.10.20.  Can you now do that or not?

                                            There are some problems with the way you are trying to do this which we will get to later if you just follow along, step by step, and not get all clicky clicky.

                                            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
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.