Gateway down - no notification received via SMTP
-
Under System/Advanced/Notifications you're sure you did not check the first box "Disable SMTP"? Sometimes this happens because you think check a box enables something.
-
@mrsunfire
No.
-
Do you see notifications when the WAN comes back up?
Do you see gateway alarms logged when the WAN is down? If you just disable the WAN removing the gateway monitor on it I don't believe you will see an alert.
Steve
-
@stephenw10 said in Gateway down - no notification received via SMTP:
Do you see notifications when the WAN comes back up?
No.
Do you see gateway alarms logged when the WAN is down?
Yes, see my first post. The first line of the log contains the gateway alarm.
If you just disable the WAN removing the gateway monitor on it I don't believe you will see an alert.
That is clear. I just disabled the WAN manually to prove that SMTP (test) notifications can still be sent by pfsense even if the WAN adapter is down/disabled.
I suspect there might be an issue of pfsense preventing a gateway alarm to trigger the corresponding SMTP notification.
-
You don't have gateway action disabled in the gateway setup?
Though I would still expect the alarm to trigger an alert in that case. Not sure I've ever tested that though.
Steve
-
@stephenw10 said in Gateway down - no notification received via SMTP:
You don't have gateway action disabled in the gateway setup?
No. See below.
-
@stephenw10 So, where do we go from here? Should I file a bug?
-
I guess this is it :
@phaze75 said in Gateway down - no notification received via SMTP:I suspect pfsense did not try to send an email at all (bug?)
I took a look at what happens when a gateway (WAN) goes down.
I'm pretty sure that there are no mail notifications attempts in that case. -
This is kind of been a gray area for a while - I am not aware of any docs that spell out what triggers a notification.
Would be a nice if there was some doc listing what exactly will trigger a smtp notification... Better yet would be a way to toggle different notifications on or off..
Notification of wan down is prob never thought of since more than likely smtp notification would be going to outside smtp server. I just use a "free" outside monitoring service that send me email when it can not ping my wan IP..
-
@phaze75
/etc/inc/gwlb.inc - line https://github.com/pfsense/pfsense/blob/30335336358db3bcdc0ede634a4f81b7f3273c7b/src/etc/inc/gwlb.inc#L120
addnotify_all_remote("WAN went down (and when I receive this, it will be up again !)");
This part of the file will now look like :
.... 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. I received also :
Notifications in this message: 1
11:22:06 WAN went down (and when I receive this, it will be up again !)
Btw : I'm not advising you to mess up your pfSense ;) @johnpoz said in [Gateway down \- no notification received via SMTP](/post/840825): > Would be a nice if there was some doc listing what exactly will trigger a smtp notification... Better yet would be a way to toggle different notifications on or off.. +1 !
-
@Gertjan said in Gateway down - no notification received via SMTP:
Btw : I'm not advising you to mess up your pfSense ;)
Fiddling around with the code/scripts will bring me exactly there. So I will refrain from leaving the standard. Thanks anyway!
-
If you just want an easy way to get notified when your wan goes offline - other than your users screaming at you ;) There are many a FREE place that will do this for you..
-
@johnpoz said in Gateway down - no notification received via SMTP:
your wan goes offline
Yeah !! Sending a mail with WAN down means : receiving the mail when WAN comes up. Rather useless.
-
@Gertjan said in Gateway down - no notification received via SMTP:
Yeah !! Sending a mail with WAN down means : receiving the mail when WAN comes up. Rather useless.
Guys, am I writing in Chinese? I am repeating myself (see the quote of my second post below) when I tell you that the pfsense's LAN interface, the SMTP-Server, the Mail-Server and all Email-Clients are all in the same private LAN, that continue to work even with the WAN down. So no, it is not useless, because I would instantly receive pfsense's email notification within my private LAN, if pfsense would just send it. So simple, no strings attached.
@phaze75 said in Gateway down - no notification received via SMTP:
Hmm, why? The LAN interface (still up) and the SMTP server are in the same private subnet. I even configured the static IP of the SMTP server instead of the FQDN to prevent any DNS related issues.
-
Non, not Chinese, I understood that part : pfSense can deliver to a local mail on server just fine.
What I do understand just know : your mail box is also on LAN.
I saw your "mail server", and was things "oh, that would be a mail forwarder".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.
-
@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...
-
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?
-
@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.
-
@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.
-
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.