On Wed, Sep 03, 2008 at 12:01:18PM -0700, Need Help wrote: > I can not figure out which SNMP command will allow me to query one complete > row of data from a table only. > > For example, assume my table has 10 rows in it with 20 columns for each > row.. How can I query row #7 to get all 20 columns of data?
I don't believe there is an obvious way to solve this obvious problem: you can walk a table easily by column, but not by row. If you know the index, you can snmpget col1.7 col2.7 col3.7 col4.7 etc. and I think they can be put in a single request. You and everybody else wishes it were trivial to do what you're asking. Steve -- Stephen J Friedl | Security Consultant | UNIX Wizard | +1 714 544-6561 www.unixwiz.net | Tustin, Calif. USA | Microsoft MVP | [EMAIL PROTECTED] ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
