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

    Gateway down - no notification received via SMTP

    Scheduled Pinned Locked Moved General pfSense Questions
    38 Posts 9 Posters 9.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.
    • P
      phaze75 @Gertjan
      last edited by phaze75

      @Gertjan said in Gateway down - no notification received via SMTP:

      My ISP is quiet tolerant, but hosting a mail server locally is impossible : port 25 is blocked for incoming connection. Outgoing 25 is only allowed to the ISP mail servers. In Europe, most ISP's handle this way.

      I agree regarding to ISP's private contracts. I am lucky. ISP's business contracts have to enable the full IP port range, otherwise companies could not host their SMTP servers on premise. So there will be others too hosting on premise SMTP servers behind pfsense firewalls who could use that feature... 😉

      1 Reply Last reply Reply Quote 0
      • F
        fabrizior
        last edited by

        It might be nice (for the rest of us) to receive an email once the gateway is back online, simply stating the gateway was down at <datetime> for #h:#m.
        perhaps an event on the gateway up event with some log analysis to calc the duration?

        Any way to do that without an external NMS watching everything?

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

          @Gertjan said in Gateway down - no notification received via SMTP:

          Outgoing 25 is only allowed to the ISP mail servers. In Europe, most ISP's handle this way.

          That is not just EU, most consumer lines are the same way in the US. And even if your isp doesn't block - most major players block you sending them mail if your IP is listed as being dynamic.

          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

          P 1 Reply Last reply Reply Quote 1
          • P
            phaze75 @johnpoz
            last edited by phaze75

            @johnpoz said in Gateway down - no notification received via SMTP:

            That is not just EU, most consumer lines are the same way in the US. And even if your isp doesn't block - most major players block you sending them mail if your IP is listed as being dynamic.

            Aren't there any business users of pfsense using business lines that are not blocked by the ISP? I did not understand that pfsense was only for home users using consumer lines.

            By the way: since almost 8 years our business is extensively using the on-premise SMTP server via a dynamic IP address including a DynDNS setup. In all those years there has never been an occasion where one of our emails has been blocked. And we have also communicated to major players.

            1 Reply Last reply Reply Quote 0
            • P
              phaze75 @Gertjan
              last edited by

              What is now to do with the result of this long controversial discussion that even contains a potential solution from @Gertjan (see below)? Is this now taken care of? Do I need to submit a bug report/feature request?

              @Gertjan said in Gateway down - no notification received via SMTP:

              ....
              	if (!$gateway['action_disable']) {
              		$params .= "-C \"{$alarm_cmd}\" ";	/* Command to run on alarm */
              		notify_all_remote("WAN went down !");
              	}
              ....
              

              Works for me ^^
              I ripped out the WAN cable - counted to 35, put it back in ....
              The logs mentioned a mail being send - several, actually - my DynDNS's also kicked in.

              1 Reply Last reply Reply Quote 0
              • GertjanG
                Gertjan
                last edited by

                It's just a feature request.
                These belong here : pfSense redmine feature requests.

                Btw, this :

                 		notify_all_remote("WAN went down !");
                

                isn't really perfect.
                A setup can have more then one WAN interface. It should at least mention which interface.
                I didn't check if this part of the code only executes ones, or could execute several times.
                And of course, the feature would make sense if a local mail server is available. IMHO : this is very rare.

                No "help me" PM's please. Use the forum, the community will thank you.
                Edit : and where are the logs ??

                1 Reply Last reply Reply Quote 0
                • stephenw10S
                  stephenw10 Netgate Administrator
                  last edited by stephenw10

                  In 2.4 you can set a failover group as the default gateway so you should be able to send an email as long as one WAN is still up. Though I've never tested that.

                  Steve

                  1 Reply Last reply Reply Quote 1
                  • F
                    fleish
                    last edited by fleish

                    Sorry for resurrecting an older thread, but I wanted to point out another use case for this type of alert that I don't see mentioned here: pfSense high availability (HA) firewall pairs. I've just encountered an issue where an "incorrect" outbound NAT rule rendered the gateway down on the inactive/backup firewall which went unnoticed until I logged into the unit and tried to access the internet. I finally tracked down the issue to an outbound NAT rule configured on the WAN interface to NAT traffic to an IP alias bound to the loopback interface. The problem with the rule was it was supposed to be scoped to specific hosts on a LAN interface, but that was mistakenly left off so it was applied to "any" source. On the active firewall, this NAT rule was seemingly ignored and the ICMP tests of the gateway IP came from the unique IP assigned to the WAN interface of the active/master firewall and therefore succeeded (and good thing too, or I would have lost remote access to the network completely). However, on the inactive/backup firewall the ICMP tests were being manipulated by the NAT rule and were attempting to be sourced from the IP alias, which of course didn't work because the firewall was the backup unit.

                    A notification about this would have been nice and helped me to track down the failure faster since it related to a firewall change from several days prior. My external monitoring did not detect the issue since inbound ICMP was not impacted by the outbound NAT rule.

                    1 Reply Last reply Reply Quote 1
                    • stephenw10S
                      stephenw10 Netgate Administrator
                      last edited by

                      It would be difficult to add some sort of alert that didn't get triggered incorrectly in some setups. Some people run all sorts of weird setups!

                      F 1 Reply Last reply Reply Quote 0
                      • F
                        fleish @stephenw10
                        last edited by

                        @stephenw10 Fair point. I just figure it would be helpful for an admin to get an alert that their gateway was marked down by their firewall. I'll probably implement something in nagios or the like to catch this in the future if it's not possible to do it in pfSense directly without hacking files.

                        1 Reply Last reply Reply Quote 0
                        • stephenw10S
                          stephenw10 Netgate Administrator
                          last edited by

                          Ah, you should be able to do that easily enough. In fact it will do that by default. It does assume the system is able to send the alert though.

                          F 1 Reply Last reply Reply Quote 0
                          • F
                            fleish @stephenw10
                            last edited by

                            @stephenw10 Oh, maybe I misread the thread I thought it wasn't sending the alerts. I'll give it a try once I have my LAN smtp server setup.

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