Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

Let's say we have web servers that are behind a firewall. There are some IP limitations rules applied to the firewall, for several ports / protocols :

  • SSH, SFTP, SSH
  • Some Web applications (specific port, for instance http://www.application-example.com:8080/)

These are settings, and sometimes they get messed up for X reasons (human interventions or system failure, etc ...)

Is there any service, that offers monitoring capabilities, that send alerts when these restrictions are not working ?

(For the opposite, we have service like Pingdom or IPLabel, that alert if your site is Down. Unfortunatly, we cannot do the opposite with PingDom service)

share|improve this question

closed as not constructive by SvW, Alex, Michael Hampton, mdpc, Ward Jan 4 at 20:32

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

If I understand your question correct, you want to get an alert if a port is not closed anymore because someone on the server messed up with the config files.

What you can do is install a host based intrusion detection system (like tripwire) which keeps track of the config files and alerts you if they change.

An other possibility is to test if the ports are open from outside with a monitoring system like nagios that does a portscan to your host and reports any change. See here for nmap with nagios.

share|improve this answer

Icinga seems to be what you actually need with appropriate plugins (and configuration).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.