I haven't worked with nearly as many servers as you are talking about with perl and snmp, although I have queried 100-120 servers over the WAN.

In my experience due to the fact that udp is not guaranteed delivery, querying SNMP over the WAN is NOT advisable. Often these packets get dropped for packets with higher priority (particularly on a WAN link that is heavily burdened.)

What I had to do was create staging servers, if you will, that do the snmp queries over the lan and store the responses into a repository of some sort. I use XML. I then use a TCP connection over the WAN links to ship the XML data to my central server, where I process the results from teh snmp queries.

---- ---- ---- | |___W_A_N___| |__S_N_M_P___| | | | T C P | | U D P | | ---- ---- ---- Central Staging Queried Server Server Server

Obviously the Staging Server can just be a Win32 Service or daemon of some type running on an existing piece of hardware.

HTH.

-----
Of all the things I've lost in my life, its my mind I miss the most.

In reply to Re: SNMP Scanning method by AcidHawk
in thread SNMP Scanning method by meetraz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.