1 GKrellM_SNMP FAQ: 2 ================= 3 4 > I've downloaded v0.9 of GKrellM_SNMP, and it seams like i'm missing 5 > crypto libs... Where can i get them? 6 7 The libcrypto is part of OpenSSL. 8 Which libs is libsnmp compiled against? 9 Try 'ldd /usr/lib/libsnmp.so' YMMV 10 Mine is compiled staticly -- so I don't need to link against any lib. 11 12 13 > I have problems with GKrellM SNMP v0.9. (I use it on GKrellM 0.10.5) 14 > Your sample connections are working, but my custom OID won't. 15 16 There is some broken hardware and some ASN.1 types aren't implemented, yet. 17 Please report the offending OID's and I'll see if there's a workaround 18 possible. 19 20 21 > /usr/local/lib/libsnmp.a(mib.o): In function snmp_parse_oid': 22 > /root/gzipped/ucd-snmp-4.2.2/snmplib/mib.c(.text+0x8738): multiple 23 > definition of snmp_parse_oid' 24 > gkrellm_snmp.o(.text+0xb10): first defined here 25 26 Try to change the name of my function. Run 27 mv gkrellm_snmp.c gkrellm_snmp.c.orig 28 sed -e 's/snmp_parse_oid/my_snmp_parse_oid/g' 29 gkrellm_snmp.c.orig >gkrellm_snmp.c 30 31