<div dir="ltr">Yes all of your "or" expressions should be in parenthesis, not brackets, what you're saying with the brackets is "match any character contained within the brackets", so the '|' isn't being interpreted as an "or" but just as a pipe character to match. So the regular expression ^db[11|12|12 ...] is saying "match any phrase that starts with db and has 1 or 1 or | or 1 or 2 ... as a second character, so <a href="http://db1.bo3.example.com">db1.bo3.example.com</a> certainly matches. <br>
<div><br></div><div>Thanks,</div><div>Larry Barber</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Apr 9, 2013 at 1:28 PM, Betsy Schwartz <span dir="ltr"><<a href="mailto:betsy.schwartz@gmail.com" target="_blank">betsy.schwartz@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">heh and as soon as I sent that whole LONG thing, someone on my team points out a clue which leads to <br><div class="im">
HOST=%^db[11|12|13|21|22|23|31|32|33|61|62].bo3.*<br><br></div>which is of course not a well-formed regexp. I dont' see why it would match <a href="http://db1.bo3.example.com" target="_blank">db1.bo3.example.com</a>, but it's certainly mucked up. <br>

<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" target="_blank">http://lists.xymon.com/mailman/listinfo/xymon</a><br>
<br></blockquote></div><br></div>