How can i configure inputs.snmp section

My MIB file like this

KASHYA-MIB DEFINITIONS ::= BEGIN
    IMPORTS
    enterprises
        FROM RFC1155-SMI
    OBJECT-TYPE
        FROM RFC-1212;


    kashya OBJECT IDENTIFIER ::= { enterprises 21658 }

    kashyaRegids OBJECT IDENTIFIER ::= { kashya 1 }

    kashyaCommon OBJECT IDENTIFIER ::= { kashya 2 }

    kashyaProducts OBJECT IDENTIFIER ::= { kashya 3 }

    kBX OBJECT IDENTIFIER ::= { kashyaProducts 1 }

    trapInfo OBJECT IDENTIFIER ::= { kBX 1 }

    dateAndTime OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Date and time that trap was sent."
        ::= { trapInfo 1 }

    eventID OBJECT-TYPE
        SYNTAX              INTEGER
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Unique event identifier."
        ::= { trapInfo 2 }

    siteName OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Name of site where event occurred."
        ::= { trapInfo 3 }

    eventLevel OBJECT-TYPE
        SYNTAX              INTEGER
			     {
			     info(1),
			     warning(2),
			     warning-off(3),
			     error(4),
			     error-off(5),
			     critical(6)
			     }
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Value |	Meaning
				------+--------
				1     |	info
				2     |	warning
				3     |	warning-off
				4     |	error
				5     |	error-off
				6     | critical
			    "
        ::= { trapInfo 4 }

    eventTopic OBJECT-TYPE
        SYNTAX              INTEGER
			     {	     
			     site(1),
			     k-box(2),	     
			     group(3),
			     host(4),
			     management(5),
			     generic(6)
			     }
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Value |	Meaning
				------+--------
				1     |	site
				2     |	k-box
				3     |	group
				4     |	host
				5     |	management
				6     |	generic
			    "
        ::= { trapInfo 5 }

    hostName OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Host name."
        ::= { trapInfo 6 }

    kboxName OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Name of K-Box."
        ::= { trapInfo 7 }

    volumeName OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Volume name."
        ::= { trapInfo 8 }

    groupName OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Group name."
        ::= { trapInfo 9 }

    eventSummary OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "Short description of event."
        ::= { trapInfo 10 }

    eventDescription OBJECT-TYPE
        SYNTAX              OCTET STRING
        ACCESS              read-only
        STATUS              mandatory
        DESCRIPTION         "More detailed description of event."
        ::= { trapInfo 11 }


--
-- Trap definitions
--
	
		info TRAP-TYPE 
			ENTERPRISE kBX
			VARIABLES { dateAndTime, eventID, siteName, eventLevel, eventTopic, hostName, groupName, kboxName, volumeName, eventSummary, eventDescription }
			DESCRIPTION "An informative event, non critical condition"
			::=  1

		warning TRAP-TYPE 
			ENTERPRISE kBX
			VARIABLES { dateAndTime, eventID, siteName, eventLevel, eventTopic, hostName, groupName, kboxName, volumeName, eventSummary, eventDescription }
            DESCRIPTION "A warning, indicating a non critical problem"
			::=  2

		error TRAP-TYPE 
			ENTERPRISE kBX
			VARIABLES { dateAndTime, eventID, siteName, eventLevel, eventTopic, hostName, groupName, kboxName, volumeName, eventSummary, eventDescription }
			DESCRIPTION "An error, indicating a critical problem"
			::=  3


END


And my Telegraf.conf file like this:

[[inputs.snmp]]
   agents = [ "IP address:161" ]
   timeout = "10s"
   retries = 3
   version = 2


   community = "public"
#   ## SNMPv3 auth parameters
#   sec_name = "admin"
#   auth_protocol = "SHA"      # Values: "MD5", "SHA", ""
#   auth_password = "12345678"
#   sec_level = "authNoPriv"   # Values: "noAuthNoPriv", "authNoPriv", "authPriv"
#   #context_name = ""
#   priv_protocol = "AES"         # Values: "DES", "AES", ""
#   priv_password = "12345678"



#FORTINET-FORTIGATE-MIB::fgVdTable
  name = "test"
  [[inputs.snmp.field]]
    oid = "SNMPv2-MIB::sysUpTime.0"
    name = "uptime"
  conversion = "float(2)"
  [[inputs.snmp.field]]
    name = "hostName"
    oid = "1.3.6.1.4.1.21658.3.1.1.6"
  [[inputs.snmp.field]]
    name = "kboxName"
    oid = "EMC-RP-MIB::kboxName.0"
  [[inputs.snmp.field]]
    name = "volumeName"
    oid = "3.1.1.1"
  [[inputs.snmp.field]]
    name = "groupName"
    oid = "3.1.1.1"
  [[inputs.snmp.field]]
    name = "eventSummary"
    oid = "1.3.6.1.4.1.21658"
  [[inputs.snmp.field]]
    name = "eventDescription"
    oid = "EMC-RP-MIB::eventDescription.0"
  [[inputs.snmp.field]]
    name = "dateAndTime"
    oid = "EMC-RP-MIB::dateAndTime.0"
  [[inputs.snmp.field]]
    oid = "EMC-RP-MIB::eventID.0"
    name = "eventID"
  [[inputs.snmp.field]]
    oid = "EMC-RP-MIB::siteName.1"
    name = "siteName"

  [[inputs.snmp.field]]
    oid = "EMC-RP-MIB::eventLevel"
    name = "eventLevel"

  [[inputs.snmp.field]]
    name = "eventTopic"
    oid = "EMC-RP-MIB::eventTopic.0"

As a result of this configuration, only sysUpTime appears. Other biglists are not coming, I tried for testing purposes. how exactly should i organize my telegraf file according to my mib file?

Thank in advance

Hi, I see some wrong OIDs in the config. volumeName and groupName have the same for example. Also eventSummary just has the enterprises OID.

Tell me what do you get as output by running telegraf --test on this config?
Also, what do you get if you do snmpget for the OIDs that not work?

Thank you for your reply,

I know these fileds its wrong.

When I run this command (snmpwalk IP address -c public -v1 -m /usr/share/snmp/mibs/KASHYA-MIB.mib) , output is like this:

RFC1155-SMI::mgmt.1.1.1.0 = STRING: "RecoverPoint 5.3.SP2.P4(m.154)"
RFC1155-SMI::mgmt.1.1.2.0 = OID: RFC1155-SMI::enterprises.8072.3.2.10
RFC1155-SMI::mgmt.1.1.3.0 = Timeticks: (5841826) 16:13:38.26
RFC1155-SMI::mgmt.1.1.4.0 = STRING: "theContact"
RFC1155-SMI::mgmt.1.1.5.0 = STRING: "RecoverPoint-0x540ad018c3693475-RPA1"
RFC1155-SMI::mgmt.1.1.6.0 = STRING: "TEST-EMC"
RFC1155-SMI::mgmt.1.1.7.0 = INTEGER: 72
RFC1155-SMI::mgmt.1.1.8.0 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.2.1 = OID: RFC1155-SMI::internet.6.3.11.3.1.1
RFC1155-SMI::mgmt.1.1.9.1.2.2 = OID: RFC1155-SMI::internet.6.3.15.2.1.1
RFC1155-SMI::mgmt.1.1.9.1.2.3 = OID: RFC1155-SMI::internet.6.3.10.3.1.1
RFC1155-SMI::mgmt.1.1.9.1.2.4 = OID: RFC1155-SMI::internet.6.3.1
RFC1155-SMI::mgmt.1.1.9.1.2.5 = OID: RFC1155-SMI::internet.6.3.16.2.2.1
RFC1155-SMI::mgmt.1.1.9.1.2.6 = OID: RFC1155-SMI::mgmt.1.49
RFC1155-SMI::mgmt.1.1.9.1.2.7 = OID: RFC1155-SMI::mgmt.1.4
RFC1155-SMI::mgmt.1.1.9.1.2.8 = OID: RFC1155-SMI::mgmt.1.50
RFC1155-SMI::mgmt.1.1.9.1.2.9 = OID: RFC1155-SMI::internet.6.3.13.3.1.3
RFC1155-SMI::mgmt.1.1.9.1.2.10 = OID: RFC1155-SMI::mgmt.1.92
RFC1155-SMI::mgmt.1.1.9.1.3.1 = STRING: "The MIB for Message Processing and Dispatching."
RFC1155-SMI::mgmt.1.1.9.1.3.2 = STRING: "The management information definitions for the SNMP User-based Security Model."
RFC1155-SMI::mgmt.1.1.9.1.3.3 = STRING: "The SNMP Management Architecture MIB."
RFC1155-SMI::mgmt.1.1.9.1.3.4 = STRING: "The MIB module for SNMPv2 entities"
RFC1155-SMI::mgmt.1.1.9.1.3.5 = STRING: "View-based Access Control Model for SNMP."
RFC1155-SMI::mgmt.1.1.9.1.3.6 = STRING: "The MIB module for managing TCP implementations"
RFC1155-SMI::mgmt.1.1.9.1.3.7 = STRING: "The MIB module for managing IP and ICMP implementations"
RFC1155-SMI::mgmt.1.1.9.1.3.8 = STRING: "The MIB module for managing UDP implementations"
RFC1155-SMI::mgmt.1.1.9.1.3.9 = STRING: "The MIB modules for managing SNMP Notification, plus filtering."
RFC1155-SMI::mgmt.1.1.9.1.3.10 = STRING: "The MIB module for logging SNMP Notifications."
RFC1155-SMI::mgmt.1.1.9.1.4.1 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.2 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.3 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.4 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.5 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.6 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.7 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.8 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.9 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.1.9.1.4.10 = Timeticks: (1) 0:00:00.01
RFC1155-SMI::mgmt.1.2.1.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.2.2.1.1.1 = INTEGER: 1
RFC1155-SMI::mgmt.1.2.2.1.1.2 = INTEGER: 2
RFC1155-SMI::mgmt.1.2.2.1.2.1 = STRING: "lo"
RFC1155-SMI::mgmt.1.2.2.1.2.2 = STRING: "VMware VMXNET3 Ethernet Controller"
RFC1155-SMI::mgmt.1.2.2.1.3.1 = INTEGER: 24
RFC1155-SMI::mgmt.1.2.2.1.3.2 = INTEGER: 6
RFC1155-SMI::mgmt.1.2.2.1.4.1 = INTEGER: 65536
RFC1155-SMI::mgmt.1.2.2.1.4.2 = INTEGER: 1500
RFC1155-SMI::mgmt.1.2.2.1.5.1 = Gauge32: 10000000
RFC1155-SMI::mgmt.1.2.2.1.5.2 = Gauge32: 4294967295
RFC1155-SMI::mgmt.1.2.2.1.6.1 = ""
RFC1155-SMI::mgmt.1.2.2.1.6.2 = Hex-STRING: 00 50 56 AE 08 A5 
RFC1155-SMI::mgmt.1.2.2.1.7.1 = INTEGER: 1
RFC1155-SMI::mgmt.1.2.2.1.7.2 = INTEGER: 1
RFC1155-SMI::mgmt.1.2.2.1.8.1 = INTEGER: 1
RFC1155-SMI::mgmt.1.2.2.1.8.2 = INTEGER: 1
RFC1155-SMI::mgmt.1.2.2.1.9.1 = Timeticks: (0) 0:00:00.00
RFC1155-SMI::mgmt.1.2.2.1.9.2 = Timeticks: (0) 0:00:00.00
RFC1155-SMI::mgmt.1.2.2.1.10.1 = Counter32: 1729535751
RFC1155-SMI::mgmt.1.2.2.1.10.2 = Counter32: 2434836183
RFC1155-SMI::mgmt.1.2.2.1.11.1 = Counter32: 6529132
RFC1155-SMI::mgmt.1.2.2.1.11.2 = Counter32: 3160166
RFC1155-SMI::mgmt.1.2.2.1.12.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.12.2 = Counter32: 1
RFC1155-SMI::mgmt.1.2.2.1.13.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.13.2 = Counter32: 238
RFC1155-SMI::mgmt.1.2.2.1.14.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.14.2 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.15.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.15.2 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.16.1 = Counter32: 1729535751
RFC1155-SMI::mgmt.1.2.2.1.16.2 = Counter32: 1229619382
RFC1155-SMI::mgmt.1.2.2.1.17.1 = Counter32: 6529132
RFC1155-SMI::mgmt.1.2.2.1.17.2 = Counter32: 2513327
RFC1155-SMI::mgmt.1.2.2.1.18.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.18.2 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.19.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.19.2 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.20.1 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.20.2 = Counter32: 0
RFC1155-SMI::mgmt.1.2.2.1.21.1 = Gauge32: 0
RFC1155-SMI::mgmt.1.2.2.1.21.2 = Gauge32: 0
RFC1155-SMI::mgmt.1.2.2.1.22.1 = OID: ccitt.0
RFC1155-SMI::mgmt.1.2.2.1.22.2 = OID: ccitt.0
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.1 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.3 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.6 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.9 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.14 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.15 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.16 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.182 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.183 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.190 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.193 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.1.2.1.10.178.0.199 = INTEGER: 2
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.1 = Hex-STRING: 00 09 0F 09 00 04 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.3 = Hex-STRING: 00 0C 29 65 4D 24 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.6 = Hex-STRING: 00 0C 29 5C A3 A1 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.9 = Hex-STRING: 7C D3 0A 5E CE 10 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.14 = Hex-STRING: F4 CE 46 A6 87 A0 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.15 = Hex-STRING: F4 CE 46 A6 7B C8 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.16 = Hex-STRING: F4 CE 46 A6 80 4C 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.182 = Hex-STRING: 00 50 56 AE 1D 69 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.183 = Hex-STRING: 00 50 56 AE 14 2A 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.190 = Hex-STRING: 00 50 56 88 43 75 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.193 = Hex-STRING: 00 50 56 88 41 AB 
RFC1155-SMI::mgmt.1.3.1.1.2.2.1.10.178.0.199 = Hex-STRING: 00 50 56 88 54 6F 
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.1 = IpAddress: 10.178.0.1
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.3 = IpAddress: 10.178.0.3
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.6 = IpAddress: 10.178.0.6
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.9 = IpAddress: 10.178.0.9
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.14 = IpAddress: 10.178.0.14
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.15 = IpAddress: 10.178.0.15
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.16 = IpAddress: 10.178.0.16
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.182 = IpAddress: 10.178.0.182
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.183 = IpAddress: 10.178.0.183
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.190 = IpAddress: 10.178.0.190
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.193 = IpAddress: 10.178.0.193
RFC1155-SMI::mgmt.1.3.1.1.3.2.1.10.178.0.199 = IpAddress: 10.178.0.199
RFC1155-SMI::mgmt.1.4.1.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.2.0 = INTEGER: 64
RFC1155-SMI::mgmt.1.4.3.0 = Counter32: 9534059
RFC1155-SMI::mgmt.1.4.4.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.5.0 = Counter32: 21
RFC1155-SMI::mgmt.1.4.6.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.7.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.8.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.9.0 = Counter32: 9517953
RFC1155-SMI::mgmt.1.4.10.0 = Counter32: 9049063
RFC1155-SMI::mgmt.1.4.11.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.12.0 = Counter32: 24
RFC1155-SMI::mgmt.1.4.13.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.14.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.15.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.16.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.17.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.18.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.19.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.20.1.1.10.178.0.180 = IpAddress: 10.178.0.180
RFC1155-SMI::mgmt.1.4.20.1.1.10.178.0.181 = IpAddress: 10.178.0.181
RFC1155-SMI::mgmt.1.4.20.1.1.127.0.0.1 = IpAddress: 127.0.0.1
RFC1155-SMI::mgmt.1.4.20.1.2.10.178.0.180 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.20.1.2.10.178.0.181 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.20.1.2.127.0.0.1 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.20.1.3.10.178.0.180 = IpAddress: 255.255.255.255
RFC1155-SMI::mgmt.1.4.20.1.3.10.178.0.181 = IpAddress: 255.255.255.0
RFC1155-SMI::mgmt.1.4.20.1.3.127.0.0.1 = IpAddress: 255.0.0.0
RFC1155-SMI::mgmt.1.4.20.1.4.10.178.0.180 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.20.1.4.10.178.0.181 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.20.1.4.127.0.0.1 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0
RFC1155-SMI::mgmt.1.4.21.1.1.10.178.0.0 = IpAddress: 10.178.0.0
RFC1155-SMI::mgmt.1.4.21.1.2.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.21.1.2.10.178.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.21.1.3.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.21.1.3.10.178.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.21.1.7.0.0.0.0 = IpAddress: 10.178.0.1
RFC1155-SMI::mgmt.1.4.21.1.7.10.178.0.0 = IpAddress: 0.0.0.0
RFC1155-SMI::mgmt.1.4.21.1.8.0.0.0.0 = INTEGER: 4
RFC1155-SMI::mgmt.1.4.21.1.8.10.178.0.0 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.21.1.9.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.21.1.9.10.178.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0
RFC1155-SMI::mgmt.1.4.21.1.11.10.178.0.0 = IpAddress: 255.255.255.0
RFC1155-SMI::mgmt.1.4.21.1.13.0.0.0.0 = OID: ccitt.0
RFC1155-SMI::mgmt.1.4.21.1.13.10.178.0.0 = OID: ccitt.0
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.1 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.3 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.6 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.9 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.14 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.15 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.16 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.182 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.183 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.190 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.193 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.1.2.10.178.0.199 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.1 = Hex-STRING: 00 09 0F 09 00 04 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.3 = Hex-STRING: 00 0C 29 65 4D 24 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.6 = Hex-STRING: 00 0C 29 5C A3 A1 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.9 = Hex-STRING: 7C D3 0A 5E CE 10 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.14 = Hex-STRING: F4 CE 46 A6 87 A0 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.15 = Hex-STRING: F4 CE 46 A6 7B C8 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.16 = Hex-STRING: F4 CE 46 A6 80 4C 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.182 = Hex-STRING: 00 50 56 AE 1D 69 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.183 = Hex-STRING: 00 50 56 AE 14 2A 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.190 = Hex-STRING: 00 50 56 88 43 75 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.193 = Hex-STRING: 00 50 56 88 41 AB 
RFC1155-SMI::mgmt.1.4.22.1.2.2.10.178.0.199 = Hex-STRING: 00 50 56 88 54 6F 
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.1 = IpAddress: 10.178.0.1
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.3 = IpAddress: 10.178.0.3
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.6 = IpAddress: 10.178.0.6
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.9 = IpAddress: 10.178.0.9
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.14 = IpAddress: 10.178.0.14
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.15 = IpAddress: 10.178.0.15
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.16 = IpAddress: 10.178.0.16
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.182 = IpAddress: 10.178.0.182
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.183 = IpAddress: 10.178.0.183
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.190 = IpAddress: 10.178.0.190
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.193 = IpAddress: 10.178.0.193
RFC1155-SMI::mgmt.1.4.22.1.3.2.10.178.0.199 = IpAddress: 10.178.0.199
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.1 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.3 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.6 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.9 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.14 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.15 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.16 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.182 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.183 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.190 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.193 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.22.1.4.2.10.178.0.199 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.23.0 = Counter32: 0
RFC1155-SMI::mgmt.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.178.0.1 = IpAddress: 0.0.0.0
RFC1155-SMI::mgmt.1.4.24.4.1.1.10.178.0.0.255.255.255.0.0.0.0.0.0 = IpAddress: 10.178.0.0
RFC1155-SMI::mgmt.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.178.0.1 = IpAddress: 0.0.0.0
RFC1155-SMI::mgmt.1.4.24.4.1.2.10.178.0.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0
RFC1155-SMI::mgmt.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.4.1.3.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.178.0.1 = IpAddress: 10.178.0.1
RFC1155-SMI::mgmt.1.4.24.4.1.4.10.178.0.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0
RFC1155-SMI::mgmt.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.4.1.5.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 4
RFC1155-SMI::mgmt.1.4.24.4.1.6.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.4.1.7.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.178.0.1 = OID: ccitt.0
RFC1155-SMI::mgmt.1.4.24.4.1.9.10.178.0.0.255.255.255.0.0.0.0.0.0 = OID: ccitt.0
RFC1155-SMI::mgmt.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.4.1.10.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.4.1.11.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.12.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.13.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.14.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.15.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.178.0.1 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.4.1.16.10.178.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.6.0 = Gauge32: 5
RFC1155-SMI::mgmt.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.7.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: 4
RFC1155-SMI::mgmt.1.4.24.7.1.8.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3
RFC1155-SMI::mgmt.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.9.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.10.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.11.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
RFC1155-SMI::mgmt.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.7.1.12.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0
RFC1155-SMI::mgmt.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256
RFC1155-SMI::mgmt.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.13.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.14.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.15.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.16.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
RFC1155-SMI::mgmt.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.178.0.1 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.7.1.17.1.4.10.178.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.80.86.255.254.174.8.165.128.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
RFC1155-SMI::mgmt.1.4.25.0 = INTEGER: 2
RFC1155-SMI::mgmt.1.4.26.0 = INTEGER: 64
RFC1155-SMI::mgmt.1.4.31.1.1.3.1 = Counter32: 9523254
RFC1155-SMI::mgmt.1.4.31.1.1.3.2 = Counter32: 50
RFC1155-SMI::mgmt.1.4.31.1.1.5.1 = Counter32: 4184781595
RFC1155-SMI::mgmt.1.4.31.1.1.5.2 = Counter32: 3728
RFC1155-SMI::mgmt.1.4.31.1.1.7.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.7.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.8.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.8.2 = Counter32: 50
RFC1155-SMI::mgmt.1.4.31.1.1.9.1 = Counter32: 21
RFC1155-SMI::mgmt.1.4.31.1.1.9.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.10.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.10.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.11.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.11.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.12.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.12.2 = Counter32: 50
RFC1155-SMI::mgmt.1.4.31.1.1.14.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.14.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.15.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.15.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.16.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.16.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.17.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.17.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.18.1 = Counter32: 9507154
RFC1155-SMI::mgmt.1.4.31.1.1.18.2 = Counter32: 50
RFC1155-SMI::mgmt.1.4.31.1.1.20.1 = Counter32: 9038201
RFC1155-SMI::mgmt.1.4.31.1.1.20.2 = Counter32: 110
RFC1155-SMI::mgmt.1.4.31.1.1.22.1 = Counter32: 24
RFC1155-SMI::mgmt.1.4.31.1.1.22.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.23.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.23.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.25.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.25.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.26.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.26.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.27.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.27.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.28.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.28.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.29.1 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.29.2 = Counter32: 0
RFC1155-SMI::mgmt.1.4.31.1.1.30.1 = Counter32: 9038177
RFC1155-SMI::mgmt.1.4.31.1.1.30.2 = Counter32: 110
RFC1155-SMI::mgmt.1.4.31.1.1.32.1 = Counter32: 2950199743
RFC1155-SMI::mgmt.1.4.31.1.1.32.2 = Counter32: 7416
RFC1155-SMI::mgmt.1.4.31.1.1.34.1 = Counter32: 10
RFC1155-SMI::mgmt.1.4.31.1.1.34.2 = Counter32: 1
RFC1155-SMI::mgmt.1.4.31.1.1.36.1 = Counter32: 360
RFC1155-SMI::mgmt.1.4.31.1.1.36.2 = Counter32: 72
.
.
.
.

All of them did not fit below I am sharing a txt containing them all.
Snmpget results.txt (374.9 KB)

Here it just gives the output. For example, I don’t know which oid to use for hostName or eventID.

That’s not what I asked, please put telegraf output and for example the result of doing snmpget for 1.3.6.1.4.1.21658.3.1.1.6, which is what you specified as OID for hostName.

Sorry for my late reply,

Like this?

And I don’t know which oid is hostName.

I look the EMC Recovery Point snmp or mib file and I find the KASHYA-MIB.mib file in the community.

No, actually running the command: telegraf --test and also snmpget -v 2c -c public <IP address> 1.3.6.1.4.1.21658.3.1.1.6

telegraf --test output:

root@grafana:/usr/share/snmp/mibs# telegraf --test
2023-01-26T10:46:01Z I! Using config file: /etc/telegraf/telegraf.conf
2023-01-26T10:46:01Z I! Starting Telegraf 1.25.0
2023-01-26T10:46:01Z I! Available plugins: 228 inputs, 9 aggregators, 26 processors, 21 parsers, 57 outputs, 2 secret-stores
2023-01-26T10:46:01Z I! Loaded inputs: cpu disk diskio kernel mem processes snmp swap system
2023-01-26T10:46:01Z I! Loaded aggregators:
2023-01-26T10:46:01Z I! Loaded processors:
2023-01-26T10:46:01Z I! Loaded secretstores:
2023-01-26T10:46:01Z W! Outputs are not used in testing mode!
2023-01-26T10:46:01Z I! Tags enabled: host=grafana
> system,host=grafana load1=0,load15=0.08,load5=0.06,n_cpus=2i,n_unique_users=1i,n_users=4i 1674729962000000000
> system,host=grafana uptime=68001i 1674729962000000000
> system,host=grafana uptime_format="18:53" 1674729962000000000
> swap,host=grafana free=4294963200i,total=4294963200i,used=0i,used_percent=0 1674729962000000000
> swap,host=grafana in=0i,out=0i 1674729962000000000
> kernel,host=grafana boot_time=1674661961i,context_switches=59548716i,entropy_avail=256i,interrupts=28839542i,processes_forked=228613i 1674729962000000000
> diskio,host=grafana,name=loop4 io_time=64i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1120256i,read_time=44i,reads=71i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop5 io_time=44i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=358400i,read_time=24i,reads=54i,weighted_io_time=4i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=sr0 io_time=92i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=4259840i,read_time=76i,reads=108i,weighted_io_time=28i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop1 io_time=36i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1096704i,read_time=30i,reads=52i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop6 io_time=28i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=344064i,read_time=19i,reads=43i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop8 io_time=688i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=4249600i,read_time=4070i,reads=3857i,weighted_io_time=1408i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop10 io_time=28i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=352256i,read_time=15i,reads=45i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop11 io_time=24i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1095680i,read_time=32i,reads=53i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop12 io_time=2936i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=22285312i,read_time=17788i,reads=21467i,weighted_io_time=7264i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop13 io_time=4i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1024i,read_time=0i,reads=1i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop0 io_time=40i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=346112i,read_time=11i,reads=42i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop2 io_time=1828i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=7832576i,read_time=2833i,reads=7353i,weighted_io_time=76i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop3 io_time=20i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=345088i,read_time=14i,reads=44i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=sda io_time=314732i,iops_in_progress=0i,merged_reads=7210i,merged_writes=270105i,read_bytes=1470129152i,read_time=22445i,reads=24081i,weighted_io_time=113460i,write_bytes=4739493888i,write_time=602531i,writes=590657i 1674729962000000000
> diskio,host=grafana,name=sda2 io_time=314700i,iops_in_progress=0i,merged_reads=7210i,merged_writes=270105i,read_bytes=1467409408i,read_time=22393i,reads=23883i,weighted_io_time=113460i,write_bytes=4739493888i,write_time=602531i,writes=590657i 1674729962000000000
> diskio,host=grafana,name=loop7 io_time=60i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1119232i,read_time=42i,reads=70i,weighted_io_time=4i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=sda1 io_time=60i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=380928i,read_time=17i,reads=93i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> diskio,host=grafana,name=loop9 io_time=2164i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=15437824i,read_time=4657i,reads=14075i,weighted_io_time=1524i,write_bytes=0i,write_time=0i,writes=0i 1674729962000000000
> disk,device=sda2,fstype=ext4,host=grafana,mode=rw,path=/ free=26791153664i,inodes_free=2912850i,inodes_total=3276800i,inodes_used=363950i,total=52518420480i,used=23026294784i,used_percent=46.22134513379403 1674729962000000000
> mem,host=grafana active=1798750208i,available=7204114432i,available_percent=86.3359933869271,buffered=251002880i,cached=1950085120i,commit_limit=8467099648i,committed_as=3394588672i,dirty=274432i,free=5229944832i,high_free=0i,high_total=0i,huge_page_size=2097152i,huge_pages_free=0i,huge_pages_total=0i,inactive=957902848i,low_free=0i,low_total=0i,mapped=456007680i,page_tables=8298496i,shared=1695744i,slab=262008832i,sreclaimable=157265920i,sunreclaim=104742912i,swap_cached=0i,swap_free=4294963200i,swap_total=4294963200i,total=8344276992i,used=913244160i,used_percent=10.944557100340324,vmalloc_chunk=0i,vmalloc_total=35184372087808i,vmalloc_used=24551424i,write_back=0i,write_back_tmp=0i 1674729962000000000
> aaaaaaaaaa,agent_host=IP,host=grafana Fiziksel\ Memory="Virtual memory",hostName="hostname-3.18+b1",uptime=412.68 1674729962000000000
> processes,host=grafana blocked=0i,dead=0i,idle=97i,paging=0i,running=0i,sleeping=182i,stopped=0i,total=279i,total_threads=501i,unknown=0i,zombies=0i 1674729962000000000
> cpu,cpu=cpu0,host=grafana usage_guest=0,usage_guest_nice=0,usage_idle=100,usage_iowait=0,usage_irq=0,usage_nice=0,usage_softirq=0,usage_steal=0,usage_system=0,usage_user=0 1674729962000000000
> cpu,cpu=cpu1,host=grafana usage_guest=0,usage_guest_nice=0,usage_idle=94.00000000023283,usage_iowait=0,usage_irq=0,usage_nice=0,usage_softirq=0,usage_steal=0,usage_system=3.999999999996362,usage_user=1.999999999998181 1674729962000000000
> cpu,cpu=cpu-total,host=grafana usage_guest=0,usage_guest_nice=0,usage_idle=97.00000000011642,usage_iowait=0,usage_irq=0,usage_nice=0,usage_softirq=0,usage_steal=0,usage_system=1.999999999998181,usage_user=0.9999999999990905 1674729962000000000

snmpget -v 2c -c public 1.3.6.1.4.1.21658.3.1.1.6 OUTPUT:

root@grafana:/usr/share/snmp/mibs# snmpget -v 2c -c public ıp 1.3.6.1.4.1.21658.3.1.1.6
SNMPv2-SMI::enterprises.21658.3.1.1.6 = No Such Object available on this agent at this OID

I don’t see any snmp result data in that output? Can you also test with adding --debug? Are you sure you are using the correct config file?

The snmpget output shows that you will never get any data in the hostName field as the given OID does not exist. Try again for the other OIDs you provided in the config and fix them.

root@grafana:/usr/share/snmp/mibs# telegraf --test --config /etc/telegraf/telegraf.conf
2023-01-26T11:18:20Z I! Starting Telegraf 1.25.0
2023-01-26T11:18:20Z I! Available plugins: 228 inputs, 9 aggregators, 26 processors, 21 parsers, 57 outputs, 2 secret-stores
2023-01-26T11:18:20Z I! Loaded inputs: cpu disk diskio kernel mem processes snmp swap system
2023-01-26T11:18:20Z I! Loaded aggregators:
2023-01-26T11:18:20Z I! Loaded processors:
2023-01-26T11:18:20Z I! Loaded secretstores:
2023-01-26T11:18:20Z W! Outputs are not used in testing mode!
2023-01-26T11:18:20Z I! Tags enabled: host=grafana
> system,host=grafana load1=0,load15=0.02,load5=0,n_cpus=2i,n_unique_users=1i,n_users=4i 1674731901000000000
> system,host=grafana uptime=69940i 1674731901000000000
> system,host=grafana uptime_format="19:25" 1674731901000000000
> diskio,host=grafana,name=loop6 io_time=28i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=344064i,read_time=19i,reads=43i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=sr0 io_time=92i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=4259840i,read_time=76i,reads=108i,weighted_io_time=28i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=sda2 io_time=322972i,iops_in_progress=0i,merged_reads=7210i,merged_writes=277605i,read_bytes=1467515904i,read_time=22396i,reads=23889i,weighted_io_time=115592i,write_bytes=4860149760i,write_time=620256i,writes=607780i 1674731901000000000
> diskio,host=grafana,name=loop10 io_time=28i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=352256i,read_time=15i,reads=45i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop2 io_time=1828i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=7832576i,read_time=2833i,reads=7353i,weighted_io_time=76i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop3 io_time=20i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=345088i,read_time=14i,reads=44i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> disk,device=sda2,fstype=ext4,host=grafana,mode=rw,path=/ free=26775896064i,inodes_free=2912837i,inodes_total=3276800i,inodes_used=363963i,total=52518420480i,used=23041552384i,used_percent=46.25197215399545 1674731901000000000
> diskio,host=grafana,name=loop5 io_time=44i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=358400i,read_time=24i,reads=54i,weighted_io_time=4i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop7 io_time=60i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1119232i,read_time=42i,reads=70i,weighted_io_time=4i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> kernel,host=grafana boot_time=1674661961i,context_switches=61230967i,entropy_avail=256i,interrupts=29650468i,processes_forked=234880i 1674731901000000000
> diskio,host=grafana,name=sda1 io_time=60i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=380928i,read_time=17i,reads=93i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop1 io_time=36i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1096704i,read_time=30i,reads=52i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> swap,host=grafana free=4294963200i,total=4294963200i,used=0i,used_percent=0 1674731901000000000
> diskio,host=grafana,name=loop4 io_time=64i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1120256i,read_time=44i,reads=71i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> swap,host=grafana in=0i,out=0i 1674731901000000000
> diskio,host=grafana,name=loop8 io_time=688i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=4249600i,read_time=4070i,reads=3857i,weighted_io_time=1408i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop11 io_time=24i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1095680i,read_time=32i,reads=53i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop13 io_time=4i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=1024i,read_time=0i,reads=1i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop0 io_time=40i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=346112i,read_time=11i,reads=42i,weighted_io_time=0i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=sda io_time=323004i,iops_in_progress=0i,merged_reads=7210i,merged_writes=277605i,read_bytes=1470235648i,read_time=22449i,reads=24087i,weighted_io_time=115592i,write_bytes=4860149760i,write_time=620256i,writes=607780i 1674731901000000000
> diskio,host=grafana,name=loop9 io_time=2164i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=15437824i,read_time=4657i,reads=14075i,weighted_io_time=1524i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> diskio,host=grafana,name=loop12 io_time=2936i,iops_in_progress=0i,merged_reads=0i,merged_writes=0i,read_bytes=22285312i,read_time=17788i,reads=21467i,weighted_io_time=7264i,write_bytes=0i,write_time=0i,writes=0i 1674731901000000000
> mem,host=grafana active=1804783616i,available=7200083968i,available_percent=86.28769125117749,buffered=253775872i,cached=1961570304i,commit_limit=8467099648i,committed_as=3411546112i,dirty=286720i,free=5211906048i,high_free=0i,high_total=0i,huge_page_size=2097152i,huge_pages_free=0i,huge_pages_total=0i,inactive=969142272i,low_free=0i,low_total=0i,mapped=457535488i,page_tables=8294400i,shared=1695744i,slab=263139328i,sreclaimable=157913088i,sunreclaim=105226240i,swap_cached=0i,swap_free=4294963200i,swap_total=4294963200i,total=8344276992i,used=917024768i,used_percent=10.989864896373756,vmalloc_chunk=0i,vmalloc_total=35184372087808i,vmalloc_used=24256512i,write_back=0i,write_back_tmp=0i 1674731901000000000
> processes,host=grafana blocked=0i,dead=0i,idle=79i,paging=0i,running=0i,sleeping=182i,stopped=0i,total=261i,total_threads=483i,unknown=0i,zombies=0i 1674731901000000000
> aaaaaaaaaa,agent_host=IP,host=grafana Fiziksel\ Memory="Virtual memory",hostName="hostname-3.18+b1",uptime=2351.9 1674731901000000000
> cpu,cpu=cpu0,host=grafana usage_guest=0,usage_guest_nice=0,usage_idle=98.00000000098953,usage_iowait=0,usage_irq=0,usage_nice=0,usage_softirq=0,usage_steal=0,usage_system=2.0000000000563887,usage_user=0 1674731901000000000
> cpu,cpu=cpu1,host=grafana usage_guest=0,usage_guest_nice=0,usage_idle=94.11764705899137,usage_iowait=0,usage_irq=0,usage_nice=0,usage_softirq=0,usage_steal=0,usage_system=1.9607843137438479,usage_user=3.9215686275099872 1674731901000000000
> cpu,cpu=cpu-total,host=grafana usage_guest=0,usage_guest_nice=0,usage_idle=96.96969696978606,usage_iowait=1.0101010101110293,usage_irq=0,usage_nice=0,usage_softirq=0,usage_steal=0,usage_system=1.0101010101095937,usage_user=1.0101010101095937 1674731901000000000

You see my telegraf.conf up there.
And I found KASHYA-MIB.mib file on the internet. But i can’t use it right.

The oid of the hostName should be KASHYA-MIB::hostName.0 according to the KASHYA-MIB.mib file given to us.

How can I use the KASHYA-MIB.mib file? Is my telegraf.conf file wrong? (snmp section)