Exchange 2010 RBL Check
Exchange 2010 RBL Check
Hi Guys, anyone point me in the direction to fix ERROR: No response from BL server (alarm) on the Blacklist status check in Nagios XI? I set this up with the monitoring wizard and haven't fiddled with the settings at all.
-
sreinhardt
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: Exchange 2010 RBL Check
This check actually runs against external webservers not your exchange server. Does the nagios server have access to the internet?
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.
Re: Exchange 2010 RBL Check
Thanks I appreciate that, I'm aware of how an RBL check works and the box does have access to the internet.
-
sreinhardt
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: Exchange 2010 RBL Check
OK, lets go ahead and just verify that you can connect to the majority of the systems. This is assuming you are using the default black list providers in the check. If you have added more, please included them and let me know what modifications have been made.
#/tmp/rbls
#/tmp/test-rbls.sh
#execute with
Please return the output contained in rbl-results. There will be some that change names or are unreachable. The specific part you are failing on looks like:
#/tmp/rbls
Code: Select all
zen.spamhaus.org
bl.spamcop.net
dnsbl.ahbl.org
dnsbl.njabl.org
dnsbl.sorbs.net
virbl.dnsbl.bit.nl
rbl.efnet.org
phishing.rbl.msrbl.net
0spam.fusionzero.com
list.dsbl.org
multihop.dsbl.org
unconfirmed.dsbl.org
will-spam-for-food.eu.org
blacklist.spambag.org
blackholes.brainerd.net
blackholes.uceb.org
spamsources.dnsbl.info
map.spam-rbl.com
ns1.unsubscore.com
psbl.surriel.com
l2.spews.dnsbl.sorbs.net
bl.csma.biz sbl.csma.biz
dynablock.njabl.org
no-more-funn.moensted.dk
ubl.unsubscore.com
dnsbl-1.uceprotect.net
dnsbl-2.uceprotect.net
dnsbl-3.uceprotect.net
spamguard.leadmon.net
opm.blitzed.org
bl.spamcannibal.org
rbl.schulte.org
dnsbl.ahbl.org
virbl.dnsbl.bit.nl
combined.rbl.msrbl.netCode: Select all
for site in `cat /tmp/rbls`; do
echo "checking $site"
ping -c 1 $site | grep PING -A 1
doneCode: Select all
chmod +x /tmp/test-rbls.sh
/tmp/test-rbls.sh > /tmp/rbl-resultsCode: Select all
# Just in case of problems, let's not hang Nagios
$SIG{'ALRM'} = sub {
print ("ERROR: No response from BL server (alarm)\n");
exit $ERRORS{"UNKNOWN"};
};
alarm($TIMEOUT);Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.