| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | SNMP::Util 1.8 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SNMP::Util contains Snmp modules to perform snmp set, get, walk, next, walk_hash etc. SYNOPSIS use SNMP::Util; ## Documentation (POD) =head1 NAME Perl SNMP utilities - SNMP::Util - Version 1.8 This Perl library is a set of utilities for configuring and monitoring SNMP based devices. This library requires the UCD port of SNMP and the SNMP.pm module writted by Joe Marzot. Whats New in This Release: · Includes patches from tyoshida |
||||||||||||||
| 2 | pbsw-SNMP 0.9 |
mac | Tools->Developer Tools | Free |
View Detail
|
|||||||||
pbsw-SNMP is a set of classes for sending and receiving SNMP (Simple Network Management Protocol) messages. Includes BER (Basic Encoding Rules) encoding/decoding. (Does not currently include MIB parsing). Handles SNMPv1 Get-Request, Get-Next-Request, and Set-Request PDUs. Can encode and decode the following BER types: Sequence, Integer, Octet String, Object Identifier, Ip Address, Counter, Gauge, TimeTicks, Opaque, NULL. |
||||||||||||||
| 3 | Unbrowse SNMP 1.2 |
windows | Network Internet->Network Management Tools | $99.00 |
View Detail
|
|||||||||
Work with SNMP MIBs using a spreadsheet like interface. Compile complex private MIBs or install prebuilt MIB packages of all top vendors. Monitor SNMP Traps passively without making risky configuration changes to routers. New release adds innovations like Trap Speak. New SNMP Trap Features: * Free features available * Zero-Touch passive trap monitor * Monitor SNMPv1, v2, v3 traps * Traps from all VLANs and ports * TRAP, NOTIFY, INFORM support * Automatic OID to Name conversion * Customize using Trap Profiles * New Trap Speak technology * SPAN ports and Network TAP support * Open multiple windows and more Common Features: Spreadsheet like MIB walker, Save and open old mib browsing sessions, automatic mib loading, MyMibs allow you to create custom mib views, excellent printing support, discover agents and agent implementation, all versions supported. Works full blown for 30 days after which power features are disabled. Free features allow most mib browsing, compiling, walking tasks. SNMP v3 supported - DES and AES 128. IPv6 support. Top value for money. |
||||||||||||||
| 4 | SNMP::NPAdmin 1.0 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SNMP::NPAdmin is a high-level API to query printers via SNMP. SYNOPSIS # object-oriented $p= SNMP::NPAdmin->new( printer => porky, community => corpslp ); printf "Your printer, %s, does%s support PCL.n", $printer, ( $p->pcl() ? "" : " not"); # procedural $p= npa_connect( printer => porky, community => corpslp ); printf "Your printer, %s, does%s support PCL.n", $printer, ( npa_pcl( $p) ? "" : " not"); The SNMP::NPAdmin package is a complete port of a SNMP/printer utility called npadmin that provides a high-level interface to query printers via SNMP without specific knowledge of SNMP MIBs or the printers vendor-specific configuration. The original npadmin was written in C++ by Ben Woodard who continues to maintain it on SourceForge. The primary objective in this port is to have a maintainable and extensible version of the same functionality that the original npadmin provides. It is not optimized for performance at all; it is optimized for extensibility and maintainability. The original npadmin is very much extremely performance, the idea being to query many printers very quickly, especially since SNMP can be quite slow. To be fair, SNMP::NPAdmin might even be slow by Perl standards due to the extensive use of run-time compilation through the AUTOLOAD subroutine. I dont necessarily believe this since a programmer/sys-admin frequently will not use all of the available methods/subroutines which would typically be compiled during startup; given that only a few methods/subroutines will be called, then only a few will be compiled during the processs lifetime. Probably the difference in speed due to this will be insignificant either way. The design was chosen in order to get as much information into a maintainable table format and make the logic as generic as possible; not for speed. So this is your choice. If you have some unsupported printers and you want to be able to modify the code to support them then use SNMP::NPAdmin. If you need to support a lot of printers continuously with this kind of utility then you should use Ben Woodards npadmin. |
||||||||||||||
| 5 | SNMP::BridgeQuery 0.61 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
BridgeQuery is a Perl extension for retrieving bridge tables. SYNOPSIS use SNMP::BridgeQuery; use SNMP::BridgeQuery qw(querymacs queryports queryat); $fdb = queryfdb(host => $address, comm => $community); unless (exists $fdb->{error}) { ($fdb->{$mac} = "n/a") unless (exists $fdb->{$mac}); print "This MAC address was found on port: ".$fdb->{$mac}."n"; } BridgeQuery polls a device which responds to SNMP Bridge Table queries and generates a hash reference with each polled MAC address as the key and the associated port as the value. The specific MIBs that are polled are described in RFC1493. SNMP::BridgeQuery requires Net::SNMP in order to function. (Checked for during perl Makefile.PL) Devices can be switches, bridges, or most anything that responds as a OSI Layer 2 component. Layer 3 devices do not generally respond and will cause an error. If an error is generated, it will return a hash reference with a single element (error) which can be tested for. Two other functions (querymacs & queryports) can be explicitly exported. They work the same way as queryfdb, but they return MAC addresses or ports (respectively) with the SNMP MIB as the hash key. A newly added function (queryat) can be used on layer 3 switches to poll the Address Translation Tables. This is similar to the data returned by the queryfdb function, but it returns the IP address of the device and the associated interface (separated by a pipe |) with the MAC address as the key. On a layer 3 switch, this interface probably does not correspond to a physical port, but more likely refers to a vlan ID. Using this function on a layer 2 device will generate a trapped error. |
||||||||||||||
| 6 | Mon::SNMP 0.11 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Mon::SNMP is a Perl module created to decode SNMP trap. SYNOPSIS use Mon::SNMP; $trap = new Mon::SNMP; $trap->buffer($snmptrap); %traphash = $trap->decode; $error = $trap->error; Mon::SNMP provides methods to decode SNMP trap PDUs. It is based on Graham Barrs Convert::BER module, and its purpose is to provide SNMP trap handling to "mon". METHODS new creates a new Mon::SNMP object. buffer ( buffer ) Assigns a raw SNMP trap message to the object. decode Decodes a SNMP trap message, and returns a hash of the variable assignments for the SNMP header and trap protocol data unit of the associated message. The hash consists of the following members: version => SNMP version (1) community => community string ent_OID => enterprise OID of originating agent agentaddr => IP address of originating agent generic_trap => /COLDSTART|WARMSTART|LINKDOWN|LINKUP|AUTHFAIL|EGPNEIGHBORLOSS|ENTERPRISESPECIFIC/ specific_trap => specific trap type (integer) timeticks => timeticks (integer) varbindlist => { oid1 => value, oid2 => value, ... } |
||||||||||||||
| 7 | SNMP Watcher 1.0 |
mac | Network Communication->Network Administration | Free |
View Detail
|
|||||||||
SNMP Watcher is a tool for retrievinginformation using the Simple NetworkManagement Protocol (SNMP). SNMP is astandard protocol for monitoring andcontrolling network components. It can be usedto query network components for informationabout their configuration, activity, and errors. This program queries SNMP agents over TCP/IP and AppleTalk. |
||||||||||||||
| 8 | Unbrowse SNMP 1.5 |
windows | Network Internet->Network Management Tools | $99.00 |
View Detail
|
|||||||||
Work with SNMP MIBs using a spreadsheet like interface. Compile complex private MIBs or install prebuilt MIB packages of all top vendors. Monitor SNMP Traps passively without making risky configuration changes to routers. Our latest release offers a scripting interface and SNMPv3 admin tools Trap Monitor Features: * Many more free features including SNMPv3 trap reception * Zero-Touch passive trap monitor * Monitor SNMPv1, v2, v3 traps * Traps from all VLANs and ports * TRAP, NOTIFY, INFORM support * Automatic OID to Name conversion * Customize using Trap Profiles * New Trap Speak technology * SPAN ports and Network TAP support * Open multiple windows and more SNMPv3 Admin Features: * USM (User Management) Wizard * VACM (View Management) Wizard * Easiest way to manage SNMPv3 users on your routers * All auth and priv protocols supported (MD5, SHA, DES, AES-128) Common Features: Spreadsheet like MIB walker, Save and open old mib browsing sessions, automatic mib loading, MyMibs allow you to create custom mib views, excellent printing support, discover agents and agent implementation, all versions supported. Works full blown for 30 days after which power features are disabled. Free features allow most mib browsing, compiling, walking tasks. SNMP v3 supported - DES and AES 128. IPv6 support. Top value for money. |
||||||||||||||
| 9 | SNMP::Monitor 0.1012 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SNMP::Monitor is a Perl package for monitoring remote hosts via SNMP. SYNOPSIS require SNMP::Monitor; # Read a configuration file my $config = SNMP::Monitor->Configuration("/etc/snmpmon/config"); # Create a new monitor my $monitor = SNMP::Monitor->new($config); # Start monitoring (endless loop, never returns) $monitor->Loop(); The SNMP::Monitor module is a package for checking and watching arbitrary values via SNMP. Events can be triggered, Logging can be done, whatever you want. The package is based on the SNMP package, but it is merely created for system administrators and not for programmers. |
||||||||||||||
| 10 | SNMP::Multi 2.1 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SNMP::Multi is a Perl module to perform SNMP operations on multiple hosts simultaneously. SYNOPSIS use SNMP::Multi; my $req = SNMP::Multi::VarReq->new ( nonrepeaters => 1, hosts => [ qw/ router1.my.com router2.my.com / ], vars => [ [ sysUpTime ], [ ifInOctets ], [ ifOutOctets ] ], ); die "VarReq: $SNMP::Multi::VarReq::errorn" unless $req; my $sm = SNMP::Multi->new ( Method => bulkwalk, MaxSessions => 32, PduPacking => 16, Community => public, Version => 2c, Timeout => 5, Retries => 3, UseNumeric => 1, # Any additional options for SNMP::Session::new() ... ) or die "$SNMP::Multi::errorn"; $sm->request($req) or die $sm->error; my $resp = $sm->execute() or die "Execute: $SNMP::Multi::errorn"; print "Got response for ", (join , $resp->hostnames()), "n"; for my $host ($resp->hosts()) { print "Results for $host: n"; for my $result ($host->results()) { if ($result->error()) { print "Error with $host: ", $result->error(), "n"; next; } print "Values for $host: ", (join , $result->values()); for my $varlist ($result->varlists()) { print map { "t" . $_->fmt() . "n" } @$varlist; } print "n"; } } The SNMP::Multi package provides a mechanism to perform SNMP operations on several hosts simultaneously. SNMP::Multi builds on G. Marzots SNMP Perl interface to the UC-Davis SNMP libraries, using asynchronous SNMP operations to send queries/sets to multiple hosts simultaneously. Results from all hosts are compiled into a single object, which offers methods to access the data in aggregate, or broken down by host or the individual request. SNMP::Multi supports SNMP GET, SET, GETNEXT, GETBULK and BULKWALK requests. It also performs PDU packing in order to improve network efficiency, when packing is possible. |
||||||||||||||
| 11 | SNMP-Check 0.1.2 |
linux | System->Networking | Free |
View Detail
|
|||||||||
SNMP-Check project gets Host/Router information via snmp and displays it. |
||||||||||||||
| 12 | Adventnet SNMP Utilities 4 |
windows | Utilities->Misc Utilities | Free |
View Detail
|
|||||||||
AdventNet SNMP Utilities offers a comprehensive development toolkit for SNMP-based network management applications. These tools can be used for device, element, application, and system management. The tools can communicate and interact with any SNMP-enabled device. Also it is very helpful for debugging and testing. The SNMP Utilities has a simple and intuitive graphic user interface that allows you to perform various functions in a mouse-click. AdventNet SNMP Utilities provides off-the-shelf components for trap and table handling along with basic SNMP operations, such as SNMP GET, SNMP GETNEXT, SNMP GETBULK, and SNMP SET. These tools can be used to manage SNMPv1, SNMPv2c, and SNMPv3 agents (i.e. the tools are multi-lingual) and talk to managed devices using any of the three versions of the SNMP protocols at the same time.AdventNet SNMP Utilities completely supports SNMPv3, as it is compliant with RFC 3411, 3412, 3413, 3414, and 3415. It also supports co-existence, notification filtering, and proxy forwarding; thus confirming to the RFC 2573 and 2576. The following tools can communicate and interact with any SNMP-enabled device. * MibBrowser - used to view and operate on data available through a SNMP agent on a managed device. * SNMP Decoder - used to view the decoded output of the debug information. * Trap Viewer - used to parse and view the received traps. * Proxy Forwarder Configuration tool - tool for configuring USM user tables and VACM entries for SNMPv3 agent. * WebServer and SAS Server - facilitates the use of SNMP management applets. * Proxy Forwarder - used to translate SNMPv3 request for SNMPv1 and v2c agents. * i18NEditor - used for internationalization. MibBrowser and TrapViewer are available both as applications and applets. While the applications can be used as standalone executables, the applets can be remotely accessed via a web browser with the Java plug-in in any Java enabled web browser. |
||||||||||||||
| 13 | Bacula SNMP Subagent 1.4 |
linux | System->Monitoring | Free |
View Detail
|
|||||||||
Bacula SNMP Subagent project provides indexed Bacula statistics via SNMP output. Data, query, and graph templates are provided for Cacti. Whats New in This Release: · Common functions were moved to a separate Perl library. · CounterXX should now be Integer32. |
||||||||||||||
| 14 | Bind9 SNMP Subagent 1.7 |
linux | System->Networking | Free |
View Detail
|
|||||||||
Bind9 SNMP Subagent provides indexed BIND 9 statistics via SNMP output. Data, query, and graph templates are provided for Cacti. Whats New in This Release: · The duplicate %CFG variable (both in the library and script) has been removed. · This release supports BIND 9 views. · There are major documentation updates. |
||||||||||||||
| 15 | Unbrowse SNMP 1.5.1 |
windows | Network Tools->Miscellaneous Network Tools | $99 |
View Detail
|
|||||||||
Free Features A full fledged SNMP v1/v2/v3 MIB Browser with advanced spreadsheet like views. Support for SNMP v1/v2 Support for IPv4/IPv6 Support for SNMPv3 including DES and AES-128 Throttles allow you to control Instant and automatic MIB loading Flexible MIB compiler Spreadsheet like MIB Walker allows you to GET / GETBULK or SET values Create and Delete table rows Trap Receiver is FREE for upto a small number of traps Trap Speak will occasionally speak out a prompt to consider purchase SNMPv3 USM Manager Power Features Innovative features for admins and developers who use SNMP on a daily basis. MyMIBS - Using MyMIBS you can drag and drop frequently used objects from different MIBS to create a MyMIB. You can the work with the MyMIB instead of individual modules. Agent Discovery - Automatically discover all agents in your network. Agent Implementation Discovery - Scan the agent via brute force or via sysORTable and figure out all the implemented MIB modules. You can then create a MyMIB that represents the entire agent MIB. Import from snmpwalk - Convert plain snmpwalk output (from Cisco command line or via the Net-SNMP tool) into a fully resolved easy to read spreadsheet format. This tool alone can save your support staff hours of pain. HTML output in various formats. You can choose from a selection of styles or write your own stylesheet. Scripting and Support. You can access Unbrowse SNMP functionality via VBScript or Ruby. Power feature users will also get priority support from us. Real time charts to track MIB variables SNMPv3 VACM View Editor SNMPv3 USM Manager create users |
||||||||||||||
| 16 | GKrellm SNMP Monitor 1.0 |
linux | System->Monitoring | Free |
View Detail
|
|||||||||
GKrellm SNMP Monitor project is a plugin for GKrellM that lets you easily monitor SNMP vars. Some examples are server load via UCD-SNMP daemon or ambient temperature via router environment MIB. |
||||||||||||||
| 17 | SNMP Status 0.5 |
mac | Network Communication->Network Administration | Free |
View Detail
|
|||||||||
SNMP Status monitors a SNMP device like AirPort routers and displays the traffic of a connected interface in the menubar. Sometimes the SNMP "Community" is called "password". There is no password is the Community "public". If the counters as producer-independent IF MIB objects or as Apples AIRPORT-BASESTATION-3-MIB are present select one the relevant interface over the names and the details are automatically filled out. If the equipment manufacturer its own MIB used one must indicate the counters numerically. Whats New in This Release: · Values have adjustable label, color and scale. · Device selection detects Airport routers via Rendevouz. |
||||||||||||||
| 18 | SNMP::Persist 0.05 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SNMP::Persist is a Perl module for the SNMP pass_persist threaded backend. SYNOPSIS use SNMP::Persist qw(&define_oid &start_persister &define_subtree); use strict; use warnings; #define base oid to host the subtree define_oid(".1.3.6.1.4.1.2021.248"); #start the thread serving answers start_persister(); #set first application number #loop forever to update the values while(1) { my %subtree; my $gameName; my $index=1; #set first application number foreach $gameName ("game1", "game2") { #for each application $subtree{"1." . $index}=["INTEGER",$index]; #set game index data pair $subtree{"2." . $index}=["STRING",$gameName]; #set game name data pair $subtree{"3." . $index}=["Counter32", 344.2 ]; #set total memory data pair $index++; #next application } #new values have arrived - notify the subtree controller define_subtree(%subtree); #dont update for next 5 minutes sleep(300); } |
||||||||||||||
| 19 | SNMP Manager 1.68 |
windows | Network Internet->Other | $100 |
View Detail
|
|||||||||
|
||||||||||||||
| 20 | AdRem SNMP Manager 1.0 |
windows | Network Internet->Network Management Tools | $595 |
View Detail
|
|||||||||
AdRem SNMP Manager is an integrated SNMP administration console that provides IT professionals with the remote view and control of devices (firewalls, routers, switches, printers, etc). The solution supports SNMP v1, v2, and v3, allowing users to perform key tasks, such as SNMP node discovery, trap receiving/forwarding as well as MIB viewing, compiling, loading, editing, and walking. The program s SNMP View Editor provides an easy way to display derived values and freely customize SNMP views. |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
