<div dir="ltr"><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Clever one :)<br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Thanks<br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 16 May 2016 at 13:14, Henrik Størner <span dir="ltr"><<a href="mailto:henrik@hswn.dk" target="_blank">henrik@hswn.dk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div text="#000000" bgcolor="#FFFFFF">
    Hi,<span class=""><br>
    <br>
    <div>Den 13-05-2016 kl. 17:13 skrev Ron
      Cohen:<br>
    </div>
    <blockquote type="cite">
      <div dir="ltr">
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Hello
          there...<br>
        </div>
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">we have
          here a pretty big production environments, and even bigger
          non-production.  <br>
        </div>
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">I've
          configured xymon for both, but the guys that do the actual
          monitoring objected to have alerts coming from non-production
          servers, since those are mostly non-crucial - they don't want
          to see any of those reds on their screens.<br>
        </div>
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">I
          played for some time with the alert propagating, but  it won't
          do, so sadly I disabled all the non-prod clients.<br>
        </div>
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">The
          obvious solution (unless there's a simpler one) is to start
          another xymon on different port and different URL. the problem
          is that it requires a firewall setting, which is a major
          headache to make.<br>
        </div>
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">what i
          thought of, is to do routing at the bb port, so incoming
          clients will be routed according to the IP origin to the prod
          and non-prod xymond (say ports 1985 & 1986).<br>
        </div>
        <div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">It is
          not difficult to implement,  but before pythonizing it, i
          wonder if there is an existing solution within xymon which i
          missed, or anyone else already done it?<br>
        </div>
      </div>
    </blockquote></span>
    Xymon doesn't have a built-in solution to this - at least not that I
    can think of.<br>
    <br>
    You could do it with firewall rules on the Xymon server, though. I
    suppose your non-prod servers are on another IP network (if not, the
    rules will be a bit messy)? With a Linux-based Xymon server you
    would setup some iptables redirection rules like<br>
    <pre>iptables -t nat -A PREROUTING -p tcp -s ${NONPRODNETWORK} --dport 1984 -j REDIRECT --to-ports 1985</pre>
    where NONPRODNETWORK is the IP network for your non-prod servers
    ("<a href="http://192.168.10.0/24" target="_blank">192.168.10.0/24</a>" or whatever). Xymon requests sent from the
    non-prod servers to port 1984 on the Xymon server will then
    transparently be modified to hit port 1985 on the Xymon server.<br>
    <br>
    <br>
    Regards,<br>
    Henrik<br>
    <br>
  </div>

<br>_______________________________________________<br>
Xymon mailing list<br>
<a href="mailto:Xymon@xymon.com">Xymon@xymon.com</a><br>
<a href="http://lists.xymon.com/mailman/listinfo/xymon" rel="noreferrer" target="_blank">http://lists.xymon.com/mailman/listinfo/xymon</a><br>
<br></blockquote></div><br></div>