in reply to limiting number of snmp requests
#!/usr/bin/perl use warnings; use strict; my @oids = (1 .. 370); while (@oids) { print "Starting iteration\n"; my @process = splice @oids, 0, 50; print "probe $_\n" for @process; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: limiting number of snmp requests
by karlgoethebier (Abbot) on Nov 09, 2015 at 21:52 UTC | |
|
Re^2: limiting number of snmp requests
by t_rex_joe (Sexton) on Nov 10, 2015 at 19:44 UTC |