snmp

Java application monitoring via SNMP

Java application and monitoring via SNMP. I want to do possibilities to monitoring my Java application via SNMP. I think, i should write to MIB messages from my application. Is it right? And how it usually implemented this? Thanks! ...

Implementing SNMP agent on embedded system

I am currently developing an embedded uP based appliance which can be remotely controlled via ethernet from a PC using its own SNMP manager software. I have implemented all the private commands, i.e. using a private community password and under the enterprise tree OID (1.3.6.1.4.1.MY_PEN...etc) So from that point of view the unit is wor...

Static vs Dynamic Properties of SNMPv3

I'm looking into implementing SNMPv3 as a requirement for monitoring a specific device on the network. As it is now, our project consists of a number of different Java classes that represent each device to be monitored on the network. Within each of these classes are a number of device-specific attributes that are needed in properly mon...

Cacti Graphs for DS1 interfaces on Adtrans?

I'm trying to get Cacti to Graph DS1 interfaces on an Adtran Total Access Router. The IfInOctets on DS1 interfaces don't seem to increment. Adtran tech support is pretty useless, since none of them have ever used Cacti, apparently. However they have a gauge that tracks 15 minutes worth of octets for EFM groups in historical buckets. ...

weird answer from a switch using SNMP for geting info about interfaces / ports

Hello :> I've just started using SNMP a week ago. I'm creating a java program that is supposed to collect information from a switch. I used the following mibs IF-MIB, BRIDGE-MIB My goal was to link the physical ports with the interfaces. When I "snmpwalked" ifName I got 26 different interfaces. [Vl1, Vl53, Gi0/1, Gi0/2, Gi0/3, Gi0/4...

sending traps from a Java application.

What is the quickest simplest way to send a trap from a Java application? Thanks in Advance! ...

Retrieving information from a switch via VLAN

On the turtorials of cisco information from switches are retrieved by using as public@VLANID as the community string. So that one can retrieve inforamtion specifically for a certain vlan. I am making a java program to retrieve information, and I would prefer avoiding reconnecting to the switch several times. Hence I would want to avoid u...

How can i create a snmp trap handlers using c# ?

How can i create a snmp trap handlers using c# ? For receiving info from the UPS which is connected directly to the LAN network with its own IP address Thanks. ...

Send trap v2 in Java

How can i send snmpv2 traps from Java application. I tried to do example on snmp4j, but it didn't work. Thanks a lot! ...

How to move an entire subtree under a table?

I have an existing MIB which has multiple OBJECT IDENTIFIERs, many scalaras under these OBJECT IDENTIFIERs and multple tables. Now I have a requirement to move this entire subtree under a main table as we need to support a single MIB for multiple physical systems with each system implementing its own part of subtree. How will my MIB loo...

Perl Net::SNMP returns noSuchName when snmpwalk works

I am new to perl, but I am trying to write a plug-in for nagios. I have a simple get request that fails, but if I try the same request with snmpwalk it works. My code is: #!/usr/bin/perl -w use strict; use Net::SNMP; my $host = '10.10.10.203'; my $community = 'myComm'; my $session; my $error; my $response = undef; ($s...

Accessing routing table via SNMP

Which MIB do I need if I am trying to find the routing table of a Linksys WRT54G with openWRT installed on it? ...

What does MIBCC.EXE exactly do ?

Hi What does MIBCC.EXE do exactly ? Please tell me what does it do ? In some document I read that it means "The SNMP MIB Compiler" I cant understand its mean . Can you say a example of its work ? Thnaks ...

As a software developer what is your SNMP suite that easy to integrate into your software

Well, altough the S of the SNMP stands for Simple, yet, so far I haven't experienced it that way. And now that I am about to deploy my software on around around 180 remote Linux servers and wants to monitor the servers and configure my daemons all from a centralized point. I simply want you to recommend me the library which you'll confi...

JBoss Monitoring with Cacti

Hi all! If there is anyone out there who has experience with monitoring JBoss with Cacti, I need help! I used this template posted on the Cacti forums. It has 3 template graphs, and 2 of those graphs are working really well. For some reason though, the third graph (Transaction Manager) isn't working. I'm get 0's for all the values. I...

Fetching entire branch of MIB

Hi all, I'm still quite new to SNMP and I was wondering how I would go about getting an entire branch of a MIB with as few queries as possible. My approach: Use GETBULK messages to get pow(2,tries) entries at a time and then stop when I get an object that don't match as a child of the object specified by my OID Why do I need it: I'm tr...

SNMP: Create custom OID

I need custom OIDs for monitoring some of my software states. But I just can't understand: how can I create custom OID (like .1.3.6.1.4.1.30891.100.103) in Windows XP system? I need few of them to write there some info and read it when needed but I have no idea how to create them in the system. ...

SNMP monitoring tool(s) for full network monitoring with hookable alerting/notifications

I'm looking for a full network monitoring tool that is able to understand the SNMP protocol (for MySQL), preferably an open-source solution. We specifically want to be able to hook into the alerting mechanism so we can have it forward alerts and notifications to our internal logging and alerting tools. Are there any suggestions? The n...

Trying to Envoke SNMP-Get from GWT Project

I'm working on a implementing a SNMP into a GWT project. I need to do an SNMP get and display the results in my GWT application. But GWT does not allow this (not supported by run time). So I was thinking of maybe writing a separate java program to do this for me, and then write a text file which GWT can read from. So I guess what I'm r...

Check ports with SNMP (net-snmp)

Hello, Is there a way to monitor server ports using SNMP (I'm using net-snmp-python to check this with python). So far I've checked pretty simple with "nc" command, however I want to see if I can do this with SNMP. Thank you for your answers and patience. ...