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

    Our Sites become unavailable randomly

    Scheduled Pinned Locked Moved General pfSense Questions
    106 Posts 13 Posters 22.9k 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.
    • W
      wheemer
      last edited by

      Yeah that's because I rebooted both our PFSense boxes already.

      We have customers sending us files all day long, so when it's down it has to be back up right away.

      Nothing I try in the GUI has any affect, entering Persistent Carp Maintenance mode does not bring it up.

      I even tried resetting states.

      1 Reply Last reply Reply Quote 0
      • johnpozJ
        johnpoz LAYER 8 Global Moderator
        last edited by

        so did you do a sniff on wan and lan when it was down?

        Was the firewall showing any blocks?

        An intelligent man is sometimes forced to be drunk to spend time with his fools
        If you get confused: Listen to the Music Play
        Please don't Chat/PM me for help, unless mod related
        SG-4860 24.11 | Lab VMs 2.8, 24.11

        1 Reply Last reply Reply Quote 0
        • W
          wheemer
          last edited by

          I am unfamiliar with how to sniff network traffic.

          At the time of the problem there was nothing showing as blocked, however I unchecked " Log packets matched from the default block rules put in the ruleset"

          Now when I look there is a few lines:

          block/1000106024
          Jun 4 10:50:29 WAN Block private networks from WAN block 192.168/16 (1000106024) Icon Reverse Resolve with DNS Icon Easy Rule: Add to Block List 192.168.1.112:5351 Icon Reverse Resolve with DNS Icon Easy Rule: Pass this traffic 224.0.0.1:5350 UDP

          192.168.1.112 is the internal IP of our main PFSense box.

          1 Reply Last reply Reply Quote 0
          • S
            Supermule Banned
            last edited by

            I believe so. You volunteer to test?

            @cmb:

            You also can't bring down a system with a few Mbps DDoS IF it's sized and configured accordingly to handle that kind of resource exhaustion attack.

            1 Reply Last reply Reply Quote 0
            • W
              wheemer
              last edited by

              Our main site is down again… How do I sniff the connection?

              1 Reply Last reply Reply Quote 0
              • W
                wheemer
                last edited by

                When entering persistent carp maintenance mode I would expect the site to come back up right away. However that doesn't work.

                If I physically power off box one then the site comes back immediately when box two takes over.

                1 Reply Last reply Reply Quote 0
                • T
                  tim.mcmanus
                  last edited by

                  @wheemer:

                  When entering persistent carp maintenance mode I would expect the site to come back up right away. However that doesn't work.

                  If I physically power off box one then the site comes back immediately when box two takes over.

                  Is there a chance the physical NIC is starting to fail.  Is it always the same server, same interface that fails?  Is it possible to clone the questionable server onto different hardware?

                  I can give you some suggestions for setting up a packet sniffer.  It's not too tough if the hardware you are using now supports port mirroring.  If it does not, I can recommend a piece of hardware that will do it for you that is relatively inexpensive ($50).  It would be a temporary thing, but you could always reuse the hardware in a similar fashion for other things.

                  1 Reply Last reply Reply Quote 0
                  • W
                    wheemer
                    last edited by

                    There no chance it's hardware related in my opinion.

                    The fact is it's only port 80 that is being blocked, sometimes for one IP and at times two public IPs have port 80 blocked.

                    Everything else works just fine, I can RDP through, FTP connections unaffected, etc. Our connection out is also not affected.

                    1 Reply Last reply Reply Quote 0
                    • C
                      cmb
                      last edited by

                      @wheemer:

                      There no chance it's hardware related in my opinion.

                      Given the symptoms, I agree, there's no way a hardware failure would discriminate between diff types of traffic. I'm thinking based on the description thus far that it's actually the server returning the RST, but a packet capture will prove that one way or another.

                      @wheemer:

                      How do I sniff the connection?

                      Diagnostics>Packet Capture. Choose interface WAN, count 0, click Start. Let it run for a minute or so while you attempt to load something from the Internet that isn't working. Click Stop, then download the capture. Repeat the same process but for interface LAN. If those are sub-20 MB, you can email them to me (cmb at pfsense dot org) as attachments with a link to this thread and I'll take a look. If they're bigger than that, upload them somewhere and send a URL via PM here is fine.

                      1 Reply Last reply Reply Quote 0
                      • johnpozJ
                        johnpoz LAYER 8 Global Moderator
                        last edited by

                        or you can just ssh to pfsense and do a tcpdump on both your wan and lan at the same time..  write those to a file for later viewing

                        This way you get dump going at same time both on the wan and the lan.  If you need the actual command tell me what your interfaces are for your wan and lan, are they em0, re0 and em1, etc. etc.

                        something like

                        tcpdump -i em0 -w wancap.pcap

                        hit cntrl c to stop the capture.

                        An intelligent man is sometimes forced to be drunk to spend time with his fools
                        If you get confused: Listen to the Music Play
                        Please don't Chat/PM me for help, unless mod related
                        SG-4860 24.11 | Lab VMs 2.8, 24.11

                        1 Reply Last reply Reply Quote 0
                        • W
                          wheemer
                          last edited by

                          em1 is our WAN and em0 is our LAN

                          1 Reply Last reply Reply Quote 0
                          • johnpozJ
                            johnpoz LAYER 8 Global Moderator
                            last edited by

                            so ssh into pfsense twice
                            in one of the shells cd to /tmp

                            tcpdump -i em1 -w wancap.pcap

                            On second shell cd /tmp

                            tcpdump -i em0 -w lancap.pcap

                            then after a few minutes after you have tested trying to get to your site cntrl c both of those - download the files to your fav sniffer wireshark for example and take a look see.

                            Or I happy to take a look at them as well.

                            An intelligent man is sometimes forced to be drunk to spend time with his fools
                            If you get confused: Listen to the Music Play
                            Please don't Chat/PM me for help, unless mod related
                            SG-4860 24.11 | Lab VMs 2.8, 24.11

                            1 Reply Last reply Reply Quote 0
                            • C
                              cmb
                              last edited by

                              If you do it via SSH (which is handy because you can run both simultaneously) I'd make that:

                              tcpdump -i em0 -s 0 -w lancap.pcap
                              

                              adding the '-s 0' so it grabs the entire frame and not just the first 96 bytes. Probably won't matter either way in this case, but not capturing so long that it's necessary to trim the frames and it could prove helpful to have it all.

                              1 Reply Last reply Reply Quote 0
                              • N
                                NOYB
                                last edited by

                                What sort of disk is being used (HDD, SSD, USB Flash, Flash Card, etc.) and age?  Maybe something got corrupted.

                                I use USB Flash drive (on the second one now).  When the first one started going bad weird things would start to happen with pfSense until is was rebooted.  Bunch of disk errors would be "fixed" and things would be fine for a few weeks.  Wash, rinse, repeat.

                                Have you tried reinstall?

                                Make config backup to restore after the reinstallation.  Unless the config is simple enough to redo by hand.

                                If you have spare disk you could swap that into the machine for the reinstall so as to retain the current install in case things go badly.

                                1 Reply Last reply Reply Quote 0
                                • johnpozJ
                                  johnpoz LAYER 8 Global Moderator
                                  last edited by

                                  valid point cmb, always hate it when missing details in the capture.. But just looking to see if traffic is being forwarded doesn't really matter the snap length..  But yes I agree always better to grab it all.

                                  An intelligent man is sometimes forced to be drunk to spend time with his fools
                                  If you get confused: Listen to the Music Play
                                  Please don't Chat/PM me for help, unless mod related
                                  SG-4860 24.11 | Lab VMs 2.8, 24.11

                                  1 Reply Last reply Reply Quote 0
                                  • W
                                    wheemer
                                    last edited by

                                    The install is running off 6 18gig 10000 rpm scsi drives that are raid 5.

                                    I did re install with another server and different hard drives, same issue.

                                    After the last drop yesterday I disabled PFBlockerNG, we have had no issues since then. This morning I actually uninstalled PFBlockerNG.

                                    Will update if things change.

                                    1 Reply Last reply Reply Quote 0
                                    • W
                                      wheemer
                                      last edited by

                                      I keep seeing this in the log:

                                      Jun 4 19:09:59 WAN Block private networks from WAN block 192.168/16 (1000001584) Icon Reverse Resolve with DNS Icon Easy Rule: Add to Block List 192.168.1.112:5351 Icon Reverse Resolve with DNS Icon Easy Rule: Pass this traffic 224.0.0.1:5350 UDP

                                      192.168.1.112 is the IP of our main PFSense box. Any idea how to get rid of it?

                                      1 Reply Last reply Reply Quote 0
                                      • johnpozJ
                                        johnpoz LAYER 8 Global Moderator
                                        last edited by

                                        Well that is multicast traffic I believe bonjour on port 5350 - or NAT-PMP status announcements.

                                        You have UPnP enabled on pfsense?

                                        6 18gig drives in a raid 5??  WTF??  For a firewall?

                                        How old are those drives?  Why would you not just run 2 in a mirror?  Not like you need space, etc..

                                        An intelligent man is sometimes forced to be drunk to spend time with his fools
                                        If you get confused: Listen to the Music Play
                                        Please don't Chat/PM me for help, unless mod related
                                        SG-4860 24.11 | Lab VMs 2.8, 24.11

                                        1 Reply Last reply Reply Quote 0
                                        • W
                                          wheemer
                                          last edited by

                                          Yes we have UPNP enabled, not sure why it would be blocking it's own traffic?

                                          We have a bunch of these older servers with 6 18 gig hd in them. Since they are old and we have a lot of them I figure why not since it's the most reliable way to run them.

                                          I had thought progress was made since it seemed to stay up all weekend long. However yesterday as I was away from the office the problem returned. There seems to be nothing in the logs at all during the time it happened.

                                          1 Reply Last reply Reply Quote 0
                                          • C
                                            cmb
                                            last edited by

                                            @wheemer:

                                            Yes we have UPNP enabled, not sure why it would be blocking it's own traffic?

                                            Because you have your WAN and LAN interconnected somewhere, which is bad. Block private networks on WAN is blocking it because it's a private source IP on WAN. Fix your network so WAN and LAN aren't on the same broadcast domain.

                                            That could be contributing to the problem you're seeing, or potentially the cause of it depending on what other network brokenness you have. But given no useful data gathered yet again at the last instance of the problem, there's no telling.

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