Template:FAQ:Compiling 07

From Net-SNMP Wiki
Revision as of 13:00, 17 October 2010 by Magfr (Talk | contribs) (Mention that 5.7+ allows compiling without any mib modules at all.)

Jump to: navigation, search

In order to reduce the memory footprint (for instance, to embed the snmpd into a device), the following configure options could be used.

 '--disable-debugging'

This turns off the compilation of all debugging statements.

 '--enable-mini-agent' '--with-out-mib-modules=examples/ucdDemoPublic'

This creates an agent with just the essential MIB modules included. As of Net-SNMP 5.7 you could use

 '--with-out-mib-modules=default_modules'

to reduce the size a little further. NOTE: If you need additional MIB modules, then simply add them using the option '--with-mib-modules=...' but this will of course increase the memory footprint.

 '--with-transports=UDP'

This option specifies the transport domains to include. For a simple standalone agent, just UDP should be sufficient. (Although the 'disman' and 'agentx' modules may require the Callback, TCP and/or Unix transport domains as well).

 '--without-kmem-usage'

This can be used in order to omit the code that operates on the /dev/kmem interface. Clearly, this option cannot be used when one of the configured MIB modules depends on it.

 '--with-mibdirs=' and '--with-mibs='

These options tell the agent not to load any MIB modules. This doesn't affect the size of libraries or application binaries, but will reduce the memory footprint during runtime.

 '--disable-mib-loading'

This can be used in order to omit the code that loads and parses the MIB files altogether. This will reduce both the runtime memory footprint, and the binary sizes.

 '--without-opaque-special-types'

This disables an extension (double, float and signed 64-bit types) to the snmp protocol that isn't strictly necessary. This option disables the extension and all the code that operate on it.

Once the agent (snmpd) has been linked, you might also try running 'strip snmpd' to remove un-necessary debug/symbol information.