Yep, it's all there. For some reason, I don't think php is compiled ucd-snmp properly and I don't know why.
[root ucd-snmp-4.2]# nm /usr/lib/apache/php/snmp.so|grep add_var
U snmp_add_var
That tells me it's not compiling everything. Whereas if I do
[root ucd-snmp-4.2]# nm /usr/lib/libsnmp.so|grep add_var
00028ab8 T snmp_add_var
000286ac T snmp_pdu_add_variable
000286e8 T snmp_varlist_add_variable
I think the compile script with php for snmp isn't working right.
Chauncey Thorn wrote:
I'm going to assume you're running Linux, if so check to make sure the you have the lib path for ucd-snmp in your /etc/ld.so.conf .
add the path and type
$ su
ldconfig
CT