On ons, 2008-01-16 at 15:09 -0800, Dan Miller (Kromos) wrote: > I tried going back and using my old UCD V4.1 modules, and configured > net-snmp for UCD compatibility: > ./configure --with-mib-modules=ip3Mib --enable-ucd-snmp-compatibility > > Once I resolved a couple of header-file discrepancies (which only involved > adding a couple of headers to the include sequence), it built without error. > After make finished, I also ran "make install", which also ran without > error, though that doesn't seem to have copied a new snmpd anywhere. > > However, when I now run the agent/snmpd script, it runs a program called > lt-snmpd ... what is this??
That is the uninstalled snmpd. It is named lt-snmpd for libtool-snmpd and that is in turn due to the fact that libtool have to make some magic to make lt-snmpd run. Since you haven't given an prefix argument the default of /usr/local is used. Do you have write permission in /usr/local/sbin? If that is the case then there should be an snmpd there. Otherwhise you could do make prefix=/tmp/myprefix exec_prefix=/tmp/myprefix install This should install and, critically, relink the binaries under /tmp/myprefix. > Whatever it is, it appears to be running, and it's periodically polling our > ethernet drivers, but I cannot talk to it with external snmp managers. Is > this lt-snmpd the actual snmpd ??? As suggested above - kind of. It should work the same, so this suggests that you have some kind of configuration issue as well. > there's another snmpd in agent/.libs, > but when I try to run that, I get numerous errors about missing libraries. > I don't know where this leaves me... ??? Uninstalled :-) Try to install. /MF ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
