RE: Help Please

2014-03-21 Thread Srinivasa Rao Katta
own time. Thanks, Srinivas Srinivasa Rao Katta(System Administrator), skatt...@hotmail.com, > Date: Thu, 20 Mar 2014 21:58:46 +0100 > From: h...@hlangeveld.nl > To: skatt...@hotmail.com > Subject: Re: Help Please > > Hi Srinivas, > > On Solaris, having an

Re: Help Please

2013-09-03 Thread Niels Baggesen
Den 03-09-2013 20:29, Srinivasa Rao Katta skrev: Now,/usr/local/sbin/snmpd was running fine on the server and it was build by V5-7 patch and it was not showing hard disk zfs volumes on net-snmp server. It was showing cpu,memory and swap and nics except zfs file systems. Good. So, it just does

Re: Help Please

2013-08-29 Thread Niels Baggesen
Den 29-08-2013 00:40, Srinivasa Rao Katta skrev: > Gone to net-snmp web site and downloaded the following source tar ball; > > net-snmp_V5-7-patches_snapshot_20130828_0403.tar.gz > > I have extracted the net-snmp_V5-7-patches_snapshot_20130828_0403.tar > under my existing net-snmp-5.7.2 source roo

Re: Help Please

2013-08-28 Thread Niels Baggesen
On Fri, Aug 23, 2013 at 12:50:14PM -0400, Srinivasa Rao Katta wrote: > Niels, > > Thanks for the information. > > I run the "/usr/local/sbin/snmpd -Dall" on the cmd line prompt and Please > find attached /var/log/snmpd.log for output. > > I set the following 64 bit lib path before to run the

Re: Help Please

2013-08-22 Thread Niels Baggesen
Den 23-08-2013 00:01, Srinivasa Rao Katta skrev: > > Niels, > > Thanks for the information. > > Please find attached text file,Which has gdb information. > > Please let me know,If You have any questions or concerns. I sure have concerns about the fact that gdb does not work on that system :-( Tha

Re: Help Please

2013-08-22 Thread Niels Baggesen
Den 22-08-2013 12:16, Srinivasa Rao Katta skrev: > As per your advise,I have compiled net-snmp 5.7.2 with "--with-cc="gcc > -m64" option and now I was not getting following error mesg in the > /var/log/snmpd.log file; [snip] > Here is the new /var/log/snmpd.log information; > > root@M5000

Re: Help Please

2013-08-21 Thread Niels Baggesen
Den 21-08-2013 21:16, Srinivasa Rao Katta skrev: > File system /Zones3 was 3.0 TB size. > > Could you please let me know,How can I fix this problem. You should compile net-snmp as a 64-bit application when you have such large file systems. Try option "--with-cc="gcc -m64" to configure. > Net-snm

Re: Re: Help please, need to access a row column value from inside the agent

2007-01-30 Thread Dave Shield
On 30/01/07, Vinicius Pacheco <[EMAIL PROTECTED]> wrote: > printf("value = %f" , data2->data.floatVal); printf("value = %f" , *data2->data.floatVal); floatVal is a *pointer* to the value, not the value itself. (Same for integers) > Other question: In what place in the union the ASN_IPADDRESS is

Re: Re: Help please, need to access a row column value from inside the agent

2007-01-30 Thread Vinicius Pacheco
Thanks again Dave, Now it´s almost perfect, but I´m having some trouble accessing the value when it is not a string. For example, when the value type is ASN_OCTET_STR this works: - netsnmp_table_data_set_storage *data1 = netsnmp_table_data_set_find_column( (netsnmp_table_data_set_storage *

Re: Re: Help please, need to access a row column value from inside the agent

2007-01-30 Thread Dave Shield
On 29/01/07, Vinicius Pacheco <[EMAIL PROTECTED]> wrote: > Thanks for the previous answer, but when I compiled the agent with you > suggestions, I got the following error: > -- > "warning: passing argument 1 of 'netsnmp_table_data_set_fin

Re: Re: Help please, need to access a row column value from inside the agent

2007-01-29 Thread Vinicius Pacheco
Hi Dave, Thanks for the previous answer, but when I compiled the agent with you suggestions, I got the following error: -- "warning: passing argument 1 of 'netsnmp_table_data_set_find_column' from incompatible pointer type" -This warn

Re: Help please, need to access a row column value from inside the agent

2007-01-29 Thread Dave Shield
On 25/01/07, Vinicius Pacheco <[EMAIL PROTECTED]> wrote: >I need help accessing an especific row column value using for that > a given row. > I want to be able to, using the row obtained from last line of > the code, access any given column value. > Something like: > value = row->column[2