Re: ifTable and ifXTable

2010-09-06 Thread Thomas Anders
Shoma S Achar wrote: > Could anyone please let me know if ifTable and ifXTable are implemented > in net-snmp-5.5? What platform are you running? See http://www.net-snmp.org/docs/README.agent-mibs.html http://www.net-snmp.org/wiki/index.php/IF-MIB_rewrite +Thomas --

Re: ifTable and ifXTable

2010-09-06 Thread Shoma S Achar
I m running on the Linux Platform. When i checked these links found that ifTable and ifXTable are mfd styles. *ifTable (new)L 5.2 M if-mib/ifTable/** *ifXTable L 5.2 M if-mib/ifXTable/** So it means that we should implement the get/set

SNMP v2 trap - how to spoof the source address?

2010-09-06 Thread Dennis Perisa
Hi folks, [I have had difficulty searching the mail archives so apologies if this has been answered previously] Consider the following: Routers send their syslog messages to a FreeBSD syslog server which runs a parsing script to detect BGP up/down events. On detection of such events, the script

Installing Perl SNMP support on Windows

2010-09-06 Thread Vinod Nanjaiah
Hi! As per the Perl README file (http://www.net-snmp.org/docs/perl-SNMP-README.html), I am trying to install perl support for snmp. But, on running win32\nmakeperl.bat, it is exiting with the following error. Make the Perl SNMP modules. NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visu

Re: Installing Perl SNMP support on Windows

2010-09-06 Thread Bart Van Assche
On Mon, Sep 6, 2010 at 12:50 PM, Vinod Nanjaiah wrote: > As per the Perl README file ( > http://www.net-snmp.org/docs/perl-SNMP-README.html), I am trying > > to install perl support for snmp. > > But, on running win32\nmakeperl.bat, it is exiting with the following > error. > > > > Make the Perl

RE: Installing Perl SNMP support on Windows

2010-09-06 Thread Vinod Nanjaiah
Just to add to this, I am running net-snmp-5.4.3 as suggested by Bart Van Assche Thank you, Vinod From: Vinod Nanjaiah Sent: Monday, September 06, 2010 4:21 PM To: 'net-snmp-users@lists.sourceforge.net' Subject: Installing Perl SNMP support on Windows Hi! As per the Perl README file (http://www

Re: Installing Perl SNMP support on Windows

2010-09-06 Thread Bart Van Assche
On Mon, Sep 6, 2010 at 12:55 PM, Vinod Nanjaiah wrote: > Just to add to this, I am running net-snmp-5.4.3 as suggested by Bart Van > Assche > [ ... ] > As far as I know version 5.4.3 builds fine, so there might be a problem with the setup of the PC you are using for building Net-SNMP. Bart. --

RE: Installing Perl SNMP support on Windows

2010-09-06 Thread Vinod Nanjaiah
On Mon, Sep 6, 2010 at 12:55 PM, Vinod Nanjaiah mailto:vinod_nanja...@mindtree.com>> wrote: Just to add to this, I am running net-snmp-5.4.3 as suggested by Bart Van Assche [ ... ] As far as I know version 5.4.3 builds fine, so there might be a problem with the setup of the PC you are using for

Cooperation of net-snmp and java-agent using standard snmp protocol

2010-09-06 Thread Michala Srnova
Hi, I have created an snmp agent using Java Dynamic Management Kit. This agent should work with standard snmp protocol v1 and v2c. It is working. I have tested it by manager created in Java as well. Now I would like to make some cooperation between netsnmp and this agent. Then I could send standa

Re: Cooperation of net-snmp and java-agent using standard snmp protocol

2010-09-06 Thread Max
You could use the proxy statement which is documented in the snmpd.conf man page. On 9/6/10, Michala Srnova wrote: > Hi, > > I have created an snmp agent using Java Dynamic Management Kit. This > agent should work with standard snmp protocol v1 and v2c. It is > working. I have tested it by manage

Limiting monitor

2010-09-06 Thread Luiz Gustavo
Gentlemen, I am trying to monitor traffic using this: monitor -i -r 120 -o IfDescr.1 "oops" IfInOctets.1 < 10 monitor -i -r 120 -o IfDescr.1 "oops" IfInOctets.1 > 50 Yet, so far, I am unable to receive any traps from the machine. However with this: monitor -D -r 120 -o IfDescr "oops" If

Re: Installing Perl SNMP support on Windows

2010-09-06 Thread Bart Van Assche
On Mon, Sep 6, 2010 at 1:04 PM, Vinod Nanjaiah wrote: > > > On Mon, Sep 6, 2010 at 12:55 PM, Vinod Nanjaiah < > vinod_nanja...@mindtree.com> wrote: > > Just to add to this, I am running net-snmp-5.4.3 as suggested by Bart Van > Assche > [ ... ] > > > As far as I know version 5.4.3 builds fine,

Re: MIBDIRS Environment variable

2010-09-06 Thread Owen Orakwue
Thanks Wes. I will like be able set MIBDIRS environment variable in my shell...this is in the documentation...has anybody tried it? Thanks. -Owen From: Wes Hardaker To: Owen Orakwue Cc: Net-snmp-users@lists.sourceforge.net Sent: Fri, September 3, 2010 12:37:0

Re: MIBDIRS Environment variable

2010-09-06 Thread Lee
On 9/6/10, Owen Orakwue wrote: > Thanks Wes. I will like be able set MIBDIRS environment variable in my > shell...this is in the documentation...has anybody tried it? Yes. I use this with cygwin: export MIBS=ALL export S="/usr/local/share/snmp/mibs" export MIBDIRS="$S;$S/cisco" Regard