RE: Porting Net-SNMP to the Kenati embedded Linux environment.

2004-08-19 Thread William R. Buckley
I do not necessarily expect changes to the code of ./configure, instead believing the greatest benefit would derive from the creation of applicable documentation. It was not easy to port Net-SNMP to Kenati linux, though it seems that I am most of the way there, thanks to the help of a number of pe

subagent prob

2004-08-19 Thread deepa chakkunni
hi all, i was trying with subagent daemon tutorial. I have added the mib'NET-SNMP-TUTORIAL.mib' in /usr/local/share/snmp/mibs/ and executed the command export MIBS=ALL. I hav added master agentx in my conf file. The example deamon is successfully created. Still my snmpget is saying 'no object

agentxTimeout and PING Interval

2004-08-19 Thread Kurapati M-G19456
Title: Message Hello list,   1.  As per AGENTX, AGENTX_OPEN message contains a field 'timeout'.  This value has to be filled in by the SubAgent.  Based on this value SNMP Agent should wait for a response from a SubAgent.   Is this understanding correct?   In NET-SNMP, agentxTimeou

Re: mailing list suggestion

2004-08-19 Thread Jeff Tuttle - Allison Royce
How would one filter and classify a list of messages from an index list of emails via a web mail interface without having to open each one individually and preview the "well populated" headers. -Original message- From: Robert Story (Users) [EMAIL PROTECTED] Date: Thu, 19 Aug 2004 18:16:5

Re: question about valid table columns

2004-08-19 Thread Users
On Tue, 10 Aug 2004 12:30:34 +0200 Froese wrote: FD> I use the variable 'valid_columns' of the netsnmp_table_registration_info FD> structure in my mib file (generated with mib2c.array-user.conf, use FD> NET-SNMP version 5.1.1) for disabling a column in my table. FD> It works fine, but I want to di

Re: mailing list suggestion

2004-08-19 Thread Users
On Tue, 17 Aug 2004 12:24:17 +0100 Dave wrote: DS> There are plenty of other headers that can be used to filter on, DS> and I'd tend to agree with those who regard this as unnecessary clutter. Me three... -- Robert Story; NET-SNMP Junkie Archive:

Re: containers

2004-08-19 Thread Users
On Wed, 18 Aug 2004 09:50:26 +0100 Dave wrote: DS> > I am confused what this container list stores. DS> [...] DS> The global variable 'containers' is used to hold the list of these DS> "container factories" - so that an appropriate example can be returned DS> when required. DS> DS> Is that reaso

Net-SNMP 5.1.2 Solaris binaries available

2004-08-19 Thread Users
See the download page for details: http://sourceforge.net/project/showfiles.php?group_id=12694 -- Robert Story; NET-SNMP Junkie Archive: You are lost in a twisty maze of little standards, a

Policy for commiting mibs?

2004-08-19 Thread Gary Clark
Hello, Is there a policy for commiting MIBS to persistence in net-snmp. At the moment all SET actions are followed by a COMMIT. I then cycle through the columns of the row and insert them into the persistence file. Not really what I should be doing. Only when a selected field is set (i.e FLAG_COMM

Re: Running net-snmp as solaris snmp sub-agent

2004-08-19 Thread C Wells
You created both a new .reg and a new .rsrc file and put them in /etc/snmpd/conf/ ? You have a /usr/lib/libz.so.1 file ? What rev of netsnmp ? You can email me those .r* files and I can proof them for you off the list. --- Jack C <[EMAIL PROTECTED]> wrote: > Hello all, > > I follwed the directi

net-snmp & IPV6

2004-08-19 Thread David Goodenough
I am in the process of upgrading my internal network to include IPV6, and I already have snmpd (from the Debian unstable package of the same name) installed. I have IPV6 configured on one of the interfaces on a test machine, and I tried with snmpwalk to see if there were any IPV6 data available.

Running net-snmp as solaris snmp sub-agent

2004-08-19 Thread Jack C
Hello all, I follwed the directions in the README.Solaris for using net-snmp as a sub-agent. However, I can't get it to work. The solaris-specific items (the ones that were there before) still work the same,  but no new items have arrived. (IE no process things, etc). I feel like a real newbi

Re: Sub-nodes in a Table

2004-08-19 Thread Dave Shield
> My doubt is: is it ok to have sub-nodes in a table? No. Mib2c may not complain, but this is not valid. What you need to do is define *two* tables: > myTable > | > |-column1 > |-column2 > |-column5 indexed by "myIndex" (as before), and

Sub-nodes in a Table

2004-08-19 Thread Sileno Rocco
Hi, First of all, I apologize about my english (I'm brazilian). Well, on my work, I received a MIB with a table, and inside the table there are two nodes that have sub-nodes (a sub-tree inside a table). Ex: myTable | |-column1 |-column2 |-col

Re: Porting Net-SNMP to the Kenati embedded Linux environment.

2004-08-19 Thread Dave Shield
> OTOH, some of your other complaints indeed are due to the way > configure.in is written by the Net-SNMP team. However, it's of > course up to the developers to decide whether they share your > comments and, even if so, whether/when they find time to change > code. You're free to submit patches to

Re: Please guide me!!

2004-08-19 Thread Dave Shield
> Yesterday, I mailed a query to the list but didn't get any response..In > case, it is missed I am resending the mail contents again. Please reply > soon.. No. You are not paying anything towards the support of this package, and it is not my job to do so either. I support this package in my fr

Please guide me!!

2004-08-19 Thread Tina Agarwal
Hi Dave, Yesterday, I mailed a query to the list but didn't get any response..In case, it is missed I am resending the mail contents again. Please reply soon.. a)I have created a snmp v2 group using the command:: "snmpvacm -v2c -c public 10.254.24.227 createSec2Group 3 myGroup RWGroup" which

Re: Porting Net-SNMP to the Kenati embedded Linux environment.

2004-08-19 Thread Thomas Anders
[EMAIL PROTECTED] wrote: In one case, the complainant noted that ./configure was a product of another group. This is news to me, so perhaps my complaints about its behavior should be directed elsewhere. If that is the case, then please, a request to the core developers for information about this

Re: how to implements xxx_get_first_data_point and next_data_point

2004-08-19 Thread Dave Shield
> put_index_data get_next_data_point(.) { I hope that's a cut-n-paste error. The "get_next_data_point" routine needs to return a "netsnmp_variable_list *" value. > counter++; > snmp_set_var(put_index_data, counter, sizeof(int)); Try snmp_set_var_value(put_index_data, &counter,

Re: Is it the nature of getnext to return the nearest available object even it's completely different table or ....

2004-08-19 Thread Dave Shield
> Is it the nature of getnext to return whatever the "immediate" next object? Yes. That's exactly what GetNext *MUST* do. See the specifications, or almost any half-way decent book on SNMP. Dave --- SF.Net email is sponsored by Shop4tech.co

Re: No response to mib browser

2004-08-19 Thread Dave Shield
> 4 Then I run the snmpdsdk project,it print the following information > No log handling enabled - turning on stderr logging > Warning: no access control information configured. That's a Bad Sign. If there's no access control information set up, then the agent will not respond to *ANY* request fo

C++ compile problem in dlmod environement

2004-08-19 Thread Trang Nguyen
Hi,   I am trying to compile a mib module as a shared object to be used as a plugin for the standard agent. The source code is written in C++ and uses the old ucd-snmp api. I am getting the compilation error:   'header_generic' undeclared. This is typically declared in mibgroup/util_funcs.h

RE: different returned result from command line walk to the walk launched from MG-SOFT MIB browser

2004-08-19 Thread Jim Su
Hi Greeting: I found something interesting. For the same scenario I reported earlier. Different version caused the behavior of snmpwalk different. snmpwalk -v1 -c public localhost table2 returned the entire table's items. But snmpwalk -c public localhost table2 returned the

how to change context or local engineID in snmpV3

2004-08-19 Thread Sanjay Madan
Hi All ,   Can anybody tell me how to change context or local  engineID in snmpV3 ?     WIth Regards;Sanjay Madan

how to implements xxx_get_first_data_point and next_data_point

2004-08-19 Thread 唐 垠
I am developing linux snmp agent using net-snmp 5.1.1 and i am really new to snmp agent.Now i am implementing a simple table ,just for studying.After use mib2c with mib2c.iterate.conf as a config file, i got two .h file and one .c file: myTable.c , myTable.h, myTable_columns.h.Then implement me