SNMP adapters usually need to reference information in Management Information Bases (MIBs). You can set a preference in the c8-server.conf file to specify where those MIBs should be read from.
Net-snmp uses the "MIBDIRS" environment variable to specify which directories to read when loading MIBs at startup. You can set a value to tell the server to add directories to that MIBDIRS environment variable.
The section of c8-server.conf relevant to these preferences is in the "SybaseC8/Adapters" section and looks similar to:
<section name="SNMP"> <!-- The semi-colon separated list of folders with MIBS for SNMP --> <preference name="MIBDIRS" value="C:\Program Files\SybaseC8\Server\bin\mibs"></preference> </section>
The preference "SNMP"/"MIBDIRS" allows you to load additional MIBs; if the MIBDIRS preference is set, then its value will be concatenated to the semicolon-separated list of directories of the existing "MIBDIRS" environment variable. (If the "MIBDIRS" environment variable does not exist, it will be created.)
If this preferences section does not exist, then by default the server will load the MIBs in the directories specified in the MIBDIRS environment variable.