From: Schwimmer, E. E *H. <EE...@hs...> - 2007-03-21 14:34:14
|
[45-48] is definitely going to give you problems, since it is an invalid regex. If you have a range in a regex, it has to range from low to high (5-4 is high to low); ranges in a regex can, unfortunately, only have single digit arguments (i.e. 2-8, a-z, etc). =20 What you want is: "Fa0/4[5-8]". One problem in cases like this is when you want a range of interfaces that spans a 10s-digit boundry, ie ports 38-42. In this case you would have to use a compound regex: "Fa0/3[8-9]|Fa0/40-2]". Hope this helps, -Eric > -----Original Message----- > From: dev...@li... [mailto:devmon-support- > bo...@li...] On Behalf Of Thomas > Sent: Tuesday, March 20, 2007 2:54 PM > To: dev...@li... > Subject: Re: [Devmon] devmon crash on templates >=20 > I have had this problem also. If I specify Fa0/[45-48] it hangs witht > the error >=20 > [07-03-20@19:50:37] Missing repeater data for ifName for if_load msg > Invalid [] range "5-4" in regex; marked by <-- HERE in > m/^(Fa0/41|Fa0/[45-4 <-- HERE 8]|Po[3-4])$/ >=20 > changing the bb-hosts file to Fa0/4[5-8] works however. >=20 > Schwimmer, Eric E *HS wrote: > > Hrm. A malformed template definitely shouldn't cause devmon to crash. > > If you can reproduce the error, would you mind running devmon with the > > --debug and -vvv flags and sending the last few pertinent lines to me? > > > > Thanks! > > -Eric > > > > > >> -----Original Message----- > >> From: dev...@li... > >> > > [mailto:devmon-support- > > > >> bo...@li...] On Behalf Of Marganne, Etienne > >> Sent: Friday, March 02, 2007 5:40 AM > >> To: dev...@li... > >> Subject: [Devmon] devmon crash on templates > >> > >> Hello all, > >> > >> > >> > >> I tried and made work Devmon by yesterday after experiencing some > >> > > still > > > >> unidentified issues I have come to make it work properly. I must say > >> > > to > > > >> the originators of this tool that it is really a good one (maybe one > >> > > of > > > >> the best for Hobbit). > >> > >> > >> > >> This morning is started writing some templates which can be available > >> > > to > > > >> people who need them and I experience another crash. While I was > >> > > writing > > > >> templates, devmon main daemon (the master one) crashed silently. I > >> > > guess > > > >> the error comes from the fact that it experienced an unexpected token > >> while reading the "being written" template files. > >> > >> > >> > >> Has anyone already seen such event? Do we really need to stop and > >> > > restart > > > >> devmon when importing a new template? > >> > >> > >> > >> Etienne Marganne > >> > >> TI Automotive. > >> > >> The information contained in this transmission may contain privileged > >> > > and > > > >> confidential information. It is intended only for the use of the > >> > > person(s) > > > >> named above. If you are not the intended recipient, you are hereby > >> notified that any review, dissemination, distribution or duplication > >> > > of > > > >> this communication is strictly prohibited. If you are not the intended > >> recipient, please contact the sender by reply email and destroy all > >> > > copies > > > >> of the original message. > >> > >> > > > > ------------------------------------------------------------------------ > - > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys-and earn cash > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V > > _______________________________________________ > > Devmon-support mailing list > > Dev...@li... > > https://lists.sourceforge.net/lists/listinfo/devmon-support > > >=20 >=20 > ------------------------------------------------------------------------ - > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V > _______________________________________________ > Devmon-support mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devmon-support |