in reply to SNMP Libraries

if you have it installed, try
perl -MNet::SNMP -le"print for keys %INC"

If you don't, you can take a look at the Makefile.PL on the search.cpan.org

but the best way is to read the README file which has a section called REQUIREMENTS that lists the requirements.

Update: if you want to know which shared object (.so) files are required by a Net::SNMP, this might help if you have it installed:

ldd /path/to/Net/SNMP.so (if it exists at all)

Replies are listed 'Best First'.
Re^2: SNMP Libraries
by mlhii (Acolyte) on Jul 09, 2004 at 19:54 UTC
    thanks. this helped