Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Test URLs for SNMP Agents

Tags:

url

snmp

agents

I am trying to find a list of URLs for SNMP agents which I could make use of for testing purposes.

Up till now I have made use of the NET-SNMP test url - > test.net-snmp.org. I've also made use of Verax Simulator to simulate a particular agent.

Still, does anyone know of any other URLs please?

like image 274
John Smith Avatar asked Jul 24 '15 10:07

John Smith


People also ask

How to test network devices using SNMP Test Tool?

Click on the Test network devices using SNMP icon . This will bring up the SNMP Test Tool tab. Enter the network device details in the bottom left window. Enter the name of the device you wish to monitor (for example, Cisco router).

What is an SNMP agent?

SNMP agents are featured on the operating systems of devices you purchase, enabling activities from SNMP switch monitoring to wider SNMP network management. To account for differences in device hardware or software, SNMP serves as a shared language, meaning devices can communicate within a single, multi-vendor environment.

What are the best SNMP managers and SNMP monitoring tools?

SolarWinds Network Performance Monitor (NPM) tops my list of SNMP managers and SNMP monitoring tools. A few features of SolarWinds NPM push it to first place, including its automatic device discovery tool and interactive, dynamic dashboards.

What is the default SNMP protocol and IP address for devices?

[community string]: By default most SNMP enabled devices uses "public". You may have changed it through the administration tool used to configure the device. [SNMP version]: SNMP protocol version, "1" or "2c". Most devices supports "2c". [IP]: IP address of the device.


2 Answers

demo.snmplabs.com on port 161 (ie default) is an SNMP agent that is open to internet.

It is actually an agent simulator that listens on other ports too; more info at http://snmpsim.sourceforge.net/public-snmp-simulator.html.

snmpwalk -v2c -c public demo.snmplabs.com system

gives this output:

SNMPv2-MIB::sysDescr.0 = STRING: SunOS zeus.snmplabs.com 4.1.3_U1 1 sun4m
SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.20408
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (288233061) 33 days, 8:38:50.61
SNMPv2-MIB::sysContact.0 = STRING: SNMP Laboratories, [email protected]
SNMPv2-MIB::sysName.0 = STRING: zeus.snmplabs.com
SNMPv2-MIB::sysLocation.0 = STRING: Moscow, Russia
SNMPv2-MIB::sysServices.0 = INTEGER: 72
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (288233113) 33 days, 8:38:51.13
SNMPv2-MIB::sysORID.1 = OID: SNMPv2-SMI::enterprises.20408.1.1
SNMPv2-MIB::sysORDescr.1 = STRING: New system description
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (12) 0:00:00.12
like image 154
k1eran Avatar answered Sep 21 '22 21:09

k1eran


snmp.live.gambitcommunications exports a simulated Cisco 7513

% snmpwalk -v 2c -c public snmp.live.gambitcommunications.com system
SNMPv2-MIB::sysDescr.0 = STRING: Cisco Internetwork Operating System Software ..IOS (tm) RSP Software (RSP-JSV56I-M), Version 12.1(7), RELEASE SOFTWARE (fc1)..Copyright (c) 1986-2001 by cisco Systems, Inc...Compiled Fri 23-Feb-01 05:14 by kellythw
SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.9.1.46
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (3546371854) 410 days, 11:01:58.54
SNMPv2-MIB::sysContact.0 = STRING: [email protected]
SNMPv2-MIB::sysName.0 = STRING: cisco-7513
SNMPv2-MIB::sysLocation.0 = STRING: 
SNMPv2-MIB::sysServices.0 = INTEGER: 78
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00
like image 20
Gambit Support Avatar answered Sep 24 '22 21:09

Gambit Support