Timeout from the host

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Kukkurloom
Posts: 11
Joined: Thu Jul 04, 2019 2:00 am

Timeout from the host

Post by Kukkurloom »

Hello boys and girls!

I am quite a beginner in Nagios monitoring system and I was adding check_hpjd plugin to monitor different services of my printer (toner etc), but unfortunately it does not work. It gives me: Timeout from host: [IP]. When I ping this IP address it responds with any issues and now im stuck with that issue, could you please help me to get on a right path where can I fix this issue.

Thank you all,
Have a nice holiday aswell! :)
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Timeout from the host

Post by benjaminsmith »

Have a nice holiday aswell! :)
Thank you!

What model printer are you monitoring? What happens you run your check command directly from the terminal in /usr/local/nagios/libexec?

For example,

Code: Select all

./check_hpjd -H <ip address> -C public -p 161
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Kukkurloom
Posts: 11
Joined: Thu Jul 04, 2019 2:00 am

Re: Timeout from the host

Post by Kukkurloom »

Hello Benjamin!

Thank you for your reply, I ran the command in terminal and got the same timeout error:

Code: Select all

[root@nagios libexec]# ./check_hpjd -H [IP] -C public -p 161
 : Timeout from host [IP]
In regards with the printer type, we have different printers in the office, I ran that command pinging printer which model is: HP Color LaserJet CP5225n also tried the same with printer HP LaserJet Pro MFP M127fn

Edit:

I did a quick Zenmap scan to check whether there may be issues with open/closed ports and I can see that jetdirect (which is being used by that plugin) is on port 9100, should I change the port from 161 to 9100?

Edit #2:

Ran the same command as mentioned above with port 9100

Code: Select all

[root@nagios libexec]# ./check_hpjd -H [IP] -C public -p 9100
: Timeout from host [IP]
Still a timeout...

Thank you for your help,
All the best,
Kukkurloom!
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Timeout from the host

Post by benjaminsmith »

Hell Kukkurloom,

Did you enable SNMP on the printer? Try running an SNMPWalk from the Nagios server to see if you can reach the printer.

Code: Select all

snmpwalk -v 2c -c communitystring <printer ip address>
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Kukkurloom
Posts: 11
Joined: Thu Jul 04, 2019 2:00 am

Re: Timeout from the host

Post by Kukkurloom »

Hello benjaminsmith!

I apologize for my late reply, but I ran the desired command:

Code: Select all

[root@nagios ~]# snmpwalk -v 2c -c communitystring [IP]
Timeout: No Response from [IP]
Edit #1:

I had a small progress, but now it gives me an error:

snmpget: Failure in sendto (Invalid argument) : Timeout from host [IP]

If I run service service snmpd status command it say its active and running.

Best wishes,
Kukkurloom.
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Timeout from the host

Post by benjaminsmith »

Hi @kukkurloom,

Are you able to ping the device and get a response?

Code: Select all

ping <ip address>
If that works, then try running the snmpwalk command using version 1 as the printer may not support v2.

Code: Select all

snmpwalk -v1 -c communitystring <ip addresss>
Let me know if you're able to get a response.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Kukkurloom
Posts: 11
Joined: Thu Jul 04, 2019 2:00 am

Re: Timeout from the host

Post by Kukkurloom »

Hello benjaminsmith,
Thank you very much for your help! :)

Here are the results of the usual pinging session:

Code: Select all

Pinging [IP] with 32 bytes of data:
Reply from [IP]: bytes=32 time<1ms TTL=255
Reply from [IP]: bytes=32 time<1ms TTL=255
Reply from [IP]: bytes=32 time<1ms TTL=255
Reply from [IP]: bytes=32 time<1ms TTL=255

Ping statistics for [IP]:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
Edit #1: Ran the same ping command in Nagios terminal aswell:

Code: Select all

[root@nagios libexec]# ping [IP]
PING [IP] ([IP]) 56(84) bytes of data.
64 bytes from [IP]: icmp_seq=1 ttl=254 time=6.54 ms
64 bytes from [IP]: icmp_seq=2 ttl=254 time=6.37 ms
64 bytes from [IP]: icmp_seq=3 ttl=254 time=12.8 ms
64 bytes from [IP]: icmp_seq=4 ttl=254 time=6.39 ms
64 bytes from [IP]: icmp_seq=5 ttl=254 time=12.9 ms
64 bytes from [IP]: icmp_seq=6 ttl=254 time=6.26 ms
64 bytes from [IP]: icmp_seq=7 ttl=254 time=12.9 ms
64 bytes from [IP]: icmp_seq=8 ttl=254 time=6.26 ms
64 bytes from [IP]: icmp_seq=9 ttl=254 time=6.25 ms
64 bytes from [IP]: icmp_seq=10 ttl=254 time=6.17 ms
64 bytes from [IP]: icmp_seq=11 ttl=254 time=6.28 ms
64 bytes from [IP]: icmp_seq=12 ttl=254 time=12.9 ms
--- [IP] ping statistics ---
12 packets transmitted, 12 received, 0% packet loss, time 11015ms
rtt min/avg/max/mdev = 6.174/8.523/12.984/3.122 ms

And here are the results of the second snmpwalk:

Code: Select all

[root@nagios ~]# snmpwalk -v1 -c communitystring [IP]
Timeout: No Response from [IP]

Edit #2: Also did ran the ./check_hpjd plugin directly from the directory:

Code: Select all

[root@nagios libexec]# ./check_hpjd [IP] -C public -p 161
snmpget: Failure in sendto (Invalid argument) : Timeout from host [IP]
Edit #3: Wandered around a little bit and checked the status of SNMPD and it gave me error like this, maybe this is the reason it wont work?:

Code: Select all

Jul 24 10:55:02 nagios snmpd[7412]: Warning: no access control information configured.
                                                 (Config search path: /etc/snmp:/usr/share/snmp:/usr/lib64/snmp)
                                                 It's unlikely this agent can serve any useful purpose in this state....

Edit #4: Checked from the printer administration page perhaps something maybe SNMP is disabled or smth. but:

Code: Select all

SNMP: 	Enabled
SNMP Version: 	v1


Edit #5: Sorry for so many edits, but I had some progress, when I run snmpwalk now then I get ALOT of text giving me ALOT of information about the printer, but in the web interface it still says the same error: snmpget: Failure in sendto (Invalid argument) : Timeout from host [IP]

Best wishes,
Kukkurloom.
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Timeout from the host

Post by benjaminsmith »

Hello,
Sorry for so many edits, but I had some progress, when I run snmpwalk now then I get ALOT of text giving me ALOT of information about the printer, but in the web interface it still says the same error:
That sounds like the snmpwalk is working. Can you post the output of snmpwalk?

From the plugin source code, here are the OIDs being used by check_hpjd.
#define HPJD_LINE_STATUS ".1.3.6.1.4.1.11.2.3.9.1.1.2.1"
#define HPJD_PAPER_STATUS ".1.3.6.1.4.1.11.2.3.9.1.1.2.2"
#define HPJD_INTERVENTION_REQUIRED ".1.3.6.1.4.1.11.2.3.9.1.1.2.3"
#define HPJD_GD_PERIPHERAL_ERROR ".1.3.6.1.4.1.11.2.3.9.1.1.2.6"
#define HPJD_GD_PAPER_OUT ".1.3.6.1.4.1.11.2.3.9.1.1.2.8"
#define HPJD_GD_PAPER_JAM ".1.3.6.1.4.1.11.2.3.9.1.1.2.9"
#define HPJD_GD_TONER_LOW ".1.3.6.1.4.1.11.2.3.9.1.1.2.10"
#define HPJD_GD_PAGE_PUNT ".1.3.6.1.4.1.11.2.3.9.1.1.2.11"
#define HPJD_GD_MEMORY_OUT ".1.3.6.1.4.1.11.2.3.9.1.1.2.12"
#define HPJD_GD_DOOR_OPEN ".1.3.6.1.4.1.11.2.3.9.1.1.2.17"
#define HPJD_GD_PAPER_OUTPUT ".1.3.6.1.4.1.11.2.3.9.1.1.2.19"
#define HPJD_GD_STATUS_DISPLAY ".1.3.6.1.4.1.11.2.3.9.1.1.3"
From the terminal on Nagios, run the following snmpwalk command on the status OID and post the output.

Code: Select all

snmpwalk <ip-address> -c public -v 1 -OQa .1.3.6.1.4.1.11.2.3.9.1.1.3
Let us know if you're able to connect to the printer.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Kukkurloom
Posts: 11
Joined: Thu Jul 04, 2019 2:00 am

Re: Timeout from the host

Post by Kukkurloom »

Hello benjamin!
Thank you for your reply!

Ran the command you asked me to and the result is:

Code: Select all

[root@nagios ~]# snmpwalk [IP] -c public -v 1 -OQa .1.3.6.1.4.1.11.2.3.9.1.1.3
SNMPv2-SMI::enterprises.11.2.3.9.1.1.3.0 = "PowerSave on."
The result of a usual snmpwalk with the same IP aadress:

Code: Select all

snmpwalk -v1 -c public [IP]
SNMPv2-MIB::sysDescr.0 = STRING: HP ETHERNET MULTI-ENVIRONMENT,SN:[SN],FN:[FN],SVCID:[ID],PID:HP Color LaserJet CP5225n
SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.11.2.3.9.1
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (86929065) 10 days, 1:28:10.65
SNMPv2-MIB::sysContact.0 = STRING: IT 
SNMPv2-MIB::sysName.0 = STRING: 3rdFloorHP
SNMPv2-MIB::sysLocation.0 = STRING: HP Color LaserJet CP5225n
SNMPv2-MIB::sysServices.0 = INTEGER: 72
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORID.1 = OID: SNMPv2-MIB::snmpMIB
SNMPv2-MIB::sysORID.2 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance
SNMPv2-MIB::sysORID.3 = OID: SNMP-MPD-MIB::snmpMPDCompliance
SNMPv2-MIB::sysORID.4 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance
SNMPv2-MIB::sysORID.5 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmMIBCompliance
SNMPv2-MIB::sysORDescr.1 = STRING: The MIB Module from SNMPv2 entities
SNMPv2-MIB::sysORDescr.2 = STRING: SNMP Management Architecture MIB
SNMPv2-MIB::sysORDescr.3 = STRING: Message Processing and Dispatching MIB
SNMPv2-MIB::sysORDescr.4 = STRING: USM User MIB
SNMPv2-MIB::sysORDescr.5 = STRING: VACM MIB
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.2 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.3 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.4 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.5 = Timeticks: (0) 0:00:00.00
IF-MIB::ifNumber.0 = INTEGER: 2
IF-MIB::ifIndex.1 = INTEGER: 1
IF-MIB::ifIndex.2 = INTEGER: 2
IF-MIB::ifDescr.1 = STRING: LOOPBACK
IF-MIB::ifDescr.2 = STRING: Ethernet
IF-MIB::ifType.1 = INTEGER: softwareLoopback(24)
IF-MIB::ifType.2 = INTEGER: ethernetCsmacd(6)
IF-MIB::ifMtu.1 = INTEGER: 1500
IF-MIB::ifMtu.2 = INTEGER: 1500
IF-MIB::ifSpeed.1 = Gauge32: 0
IF-MIB::ifSpeed.2 = Gauge32: 10000000
IF-MIB::ifPhysAddress.1 = STRING:
IF-MIB::ifPhysAddress.2 = STRING: ac:e2:d3:49:bb:a1
IF-MIB::ifAdminStatus.1 = INTEGER: up(1)
IF-MIB::ifAdminStatus.2 = INTEGER: up(1)
IF-MIB::ifOperStatus.1 = INTEGER: up(1)
IF-MIB::ifOperStatus.2 = INTEGER: up(1)
IF-MIB::ifLastChange.1 = Timeticks: (0) 0:00:00.00
IF-MIB::ifLastChange.2 = Timeticks: (548) 0:00:05.48
IF-MIB::ifInOctets.1 = Counter32: 309620722
IF-MIB::ifInOctets.2 = Counter32: 2918254166
IF-MIB::ifInUcastPkts.1 = Counter32: 3271387
IF-MIB::ifInUcastPkts.2 = Counter32: 298347
IF-MIB::ifInNUcastPkts.1 = Counter32: 0
IF-MIB::ifInNUcastPkts.2 = Counter32: 9582167
IF-MIB::ifInDiscards.1 = Counter32: 0
IF-MIB::ifInDiscards.2 = Counter32: 0
IF-MIB::ifInErrors.1 = Counter32: 0
IF-MIB::ifInErrors.2 = Counter32: 0
IF-MIB::ifInUnknownProtos.1 = Counter32: 0
IF-MIB::ifInUnknownProtos.2 = Counter32: 22858
IF-MIB::ifOutOctets.1 = Counter32: 312454090
IF-MIB::ifOutOctets.2 = Counter32: 148119409
IF-MIB::ifOutUcastPkts.1 = Counter32: 3271387
IF-MIB::ifOutUcastPkts.2 = Counter32: 335662
IF-MIB::ifOutNUcastPkts.1 = Counter32: 0
IF-MIB::ifOutNUcastPkts.2 = Counter32: 37266
IF-MIB::ifOutDiscards.1 = Counter32: 0
IF-MIB::ifOutDiscards.2 = Counter32: 0
IF-MIB::ifOutErrors.1 = Counter32: 0
IF-MIB::ifOutErrors.2 = Counter32: 0
IF-MIB::ifOutQLen.1 = Gauge32: 0
IF-MIB::ifOutQLen.2 = Gauge32: 0
IF-MIB::ifSpecific.1 = OID: SNMPv2-SMI::zeroDotZero
IF-MIB::ifSpecific.2 = OID: SNMPv2-SMI::zeroDotZero
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.40.54 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.6 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.19 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.31 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.34 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.49 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.93 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.100 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.212 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.41.222 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.42.11 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.47.160 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.47.172 = INTEGER: 2
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.40.54 = Hex-STRING: 00 50 56 A8 E0 91
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.6 = Hex-STRING: 90 61 AE FD 8D 6F
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.19 = Hex-STRING: 50 7B 9D 9E F8 61
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.31 = Hex-STRING: 88 B1 11 39 36 27
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.34 = Hex-STRING: E4 A4 71 6E 3B 10
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.49 = Hex-STRING: 84 A9 3E AD DF 5B
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.93 = Hex-STRING: D0 50 99 90 CC 00
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.100 = Hex-STRING: 10 E7 C6 1F 97 75
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.212 = Hex-STRING: 68 EC C5 51 A6 12
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.41.222 = Hex-STRING: 00 24 9B 2C D4 45
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.42.11 = Hex-STRING: 9C EB E8 67 32 88
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.47.160 = Hex-STRING: 58 0A 20 87 97 4F
SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.47.172 = Hex-STRING: 58 0A 20 87 95 DA
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.40.54 = IpAddress: 192.168.40.54
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.6 = IpAddress: 192.168.41.6
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.19 = IpAddress: 192.168.41.19
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.31 = IpAddress: 192.168.41.31
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.34 = IpAddress: 192.168.41.34
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.49 = IpAddress: 192.168.41.49
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.93 = IpAddress: 192.168.41.93
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.100 = IpAddress: 192.168.41.100
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.212 = IpAddress: 192.168.41.212
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.41.222 = IpAddress: 192.168.41.222
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.42.11 = IpAddress: 192.168.42.11
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.47.160 = IpAddress: 192.168.47.160
SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.47.172 = IpAddress: 192.168.47.172
IP-MIB::ipForwarding.0 = INTEGER: notForwarding(2)
IP-MIB::ipDefaultTTL.0 = INTEGER: 64
IP-MIB::ipInReceives.0 = Counter32: 9792396
IP-MIB::ipInHdrErrors.0 = Counter32: 0
IP-MIB::ipInAddrErrors.0 = Counter32: 10751
IP-MIB::ipForwDatagrams.0 = Counter32: 0
IP-MIB::ipInUnknownProtos.0 = Counter32: 0
IP-MIB::ipInDiscards.0 = Counter32: 0
IP-MIB::ipInDelivers.0 = Counter32: 9778433
IP-MIB::ipOutRequests.0 = Counter32: 251764
IP-MIB::ipOutDiscards.0 = Counter32: 0
IP-MIB::ipOutNoRoutes.0 = Counter32: 1
IP-MIB::ipReasmTimeout.0 = INTEGER: 64 seconds
IP-MIB::ipReasmReqds.0 = Counter32: 6436
IP-MIB::ipReasmOKs.0 = Counter32: 3218
IP-MIB::ipReasmFails.0 = Counter32: 0
IP-MIB::ipFragOKs.0 = Counter32: 4136
IP-MIB::ipFragFails.0 = Counter32: 0
IP-MIB::ipFragCreates.0 = Counter32: 1056
IP-MIB::ipAdEntAddr.[IP] = IpAddress: [IP]
IP-MIB::ipAdEntIfIndex.[IP] = INTEGER: 2
IP-MIB::ipAdEntNetMask. [IP] = IpAddress: 0.0.0.0
IP-MIB::ipAdEntBcastAddr. [IP] = INTEGER: 1
IP-MIB::ipAdEntReasmMaxSize. [IP] = INTEGER: 1500
IP-MIB::ip.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.1.127.0.0.1 = IpAddress: 127.0.0.1
IP-MIB::ip.21.1.1.192.168.40.0 = IpAddress: 192.168.40.0
IP-MIB::ip.21.1.2.0.0.0.0 = INTEGER: 2
IP-MIB::ip.21.1.2.127.0.0.1 = INTEGER: 1
IP-MIB::ip.21.1.2.192.168.40.0 = INTEGER: 2
IP-MIB::ip.21.1.3.0.0.0.0 = INTEGER: 1
IP-MIB::ip.21.1.3.127.0.0.1 = INTEGER: 0
IP-MIB::ip.21.1.3.192.168.40.0 = INTEGER: 0
IP-MIB::ip.21.1.4.0.0.0.0 = INTEGER: -1
IP-MIB::ip.21.1.4.127.0.0.1 = INTEGER: -1
IP-MIB::ip.21.1.4.192.168.40.0 = INTEGER: -1
IP-MIB::ip.21.1.5.0.0.0.0 = INTEGER: -1
IP-MIB::ip.21.1.5.127.0.0.1 = INTEGER: -1
IP-MIB::ip.21.1.5.192.168.40.0 = INTEGER: -1
IP-MIB::ip.21.1.6.0.0.0.0 = INTEGER: -1
IP-MIB::ip.21.1.6.127.0.0.1 = INTEGER: -1
IP-MIB::ip.21.1.6.192.168.40.0 = INTEGER: -1
IP-MIB::ip.21.1.7.0.0.0.0 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.7.127.0.0.1 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.7.192.168.40.0 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.8.0.0.0.0 = INTEGER: 4
IP-MIB::ip.21.1.8.127.0.0.1 = INTEGER: 3
IP-MIB::ip.21.1.8.192.168.40.0 = INTEGER: 3
IP-MIB::ip.21.1.9.0.0.0.0 = INTEGER: 2
IP-MIB::ip.21.1.9.127.0.0.1 = INTEGER: 2
IP-MIB::ip.21.1.9.192.168.40.0 = INTEGER: 2
IP-MIB::ip.21.1.10.0.0.0.0 = INTEGER: -1
IP-MIB::ip.21.1.10.127.0.0.1 = INTEGER: -1
IP-MIB::ip.21.1.10.192.168.40.0 = INTEGER: -1
IP-MIB::ip.21.1.11.0.0.0.0 = IpAddress: 255.255.255.255
IP-MIB::ip.21.1.11.127.0.0.1 = IpAddress: 255.255.255.255
IP-MIB::ip.21.1.11.192.168.40.0 = IpAddress: 255.255.255.255
IP-MIB::ip.21.1.12.0.0.0.0 = INTEGER: -1
IP-MIB::ip.21.1.12.127.0.0.1 = INTEGER: -1
IP-MIB::ip.21.1.12.192.168.40.0 = INTEGER: -1
IP-MIB::ip.21.1.13.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
IP-MIB::ip.21.1.13.127.0.0.1 = OID: SNMPv2-SMI::zeroDotZero
IP-MIB::ip.21.1.13.192.168.40.0 = OID: SNMPv2-SMI::zeroDotZero
IP-MIB::ipNetToMediaIfIndex.2.192.168.40.54 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.6 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.19 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.31 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.34 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.49 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.93 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.100 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.212 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.41.222 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.42.11 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.47.160 = INTEGER: 2
IP-MIB::ipNetToMediaIfIndex.2.192.168.47.172 = INTEGER: 2
IP-MIB::ipNetToMediaPhysAddress.2.192.168.40.54 = STRING: 0:50:56:a8:e0:91
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.6 = STRING: 90:61:ae:fd:8d:6f
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.19 = STRING: 50:7b:9d:9e:f8:61
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.31 = STRING: 88:b1:11:39:36:27
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.34 = STRING: e4:a4:71:6e:3b:10
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.49 = STRING: 84:a9:3e:ad:df:5b
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.93 = STRING: d0:50:99:90:cc:0
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.100 = STRING: 10:e7:c6:1f:97:75
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.212 = STRING: 68:ec:c5:51:a6:12
IP-MIB::ipNetToMediaPhysAddress.2.192.168.41.222 = STRING: 0:24:9b:2c:d4:45
IP-MIB::ipNetToMediaPhysAddress.2.192.168.42.11 = STRING: 9c:eb:e8:67:32:88
IP-MIB::ipNetToMediaPhysAddress.2.192.168.47.160 = STRING: 58:a:20:87:97:4f
IP-MIB::ipNetToMediaPhysAddress.2.192.168.47.172 = STRING: 58:a:20:87:95:da
IP-MIB::ipNetToMediaNetAddress.2.192.168.40.54 = IpAddress: 192.168.40.54
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.6 = IpAddress: 192.168.41.6
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.19 = IpAddress: 192.168.41.19
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.31 = IpAddress: 192.168.41.31
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.34 = IpAddress: 192.168.41.34
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.49 = IpAddress: 192.168.41.49
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.93 = IpAddress: 192.168.41.93
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.100 = IpAddress: 192.168.41.100
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.212 = IpAddress: 192.168.41.212
IP-MIB::ipNetToMediaNetAddress.2.192.168.41.222 = IpAddress: 192.168.41.222
IP-MIB::ipNetToMediaNetAddress.2.192.168.42.11 = IpAddress: 192.168.42.11
IP-MIB::ipNetToMediaNetAddress.2.192.168.47.160 = IpAddress: 192.168.47.160
IP-MIB::ipNetToMediaNetAddress.2.192.168.47.172 = IpAddress: 192.168.47.172
IP-MIB::ipNetToMediaType.2.192.168.40.54 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.6 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.19 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.31 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.34 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.49 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.93 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.100 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.212 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.41.222 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.42.11 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.47.160 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.2.192.168.47.172 = INTEGER: dynamic(3)
IP-MIB::ipRoutingDiscards.0 = Counter32: 0
IP-MIB::ipv4InterfaceReasmMaxSize.1 = INTEGER: 1500
IP-MIB::ipv4InterfaceReasmMaxSize.2 = INTEGER: 1500
IP-MIB::ipv4InterfaceEnableStatus.1 = INTEGER: up(1)
IP-MIB::ipv4InterfaceEnableStatus.2 = INTEGER: up(1)
IP-MIB::ipv6InterfaceReasmMaxSize.1 = Gauge32: 1500 octets
IP-MIB::ipv6InterfaceReasmMaxSize.2 = Gauge32: 1500 octets
IP-MIB::ipv6InterfaceIdentifier.1 = STRING:
IP-MIB::ipv6InterfaceIdentifier.2 = STRING:
IP-MIB::ipv6InterfaceEntry.4.1 = ""
IP-MIB::ipv6InterfaceEntry.4.2 = Hex-STRING: AC E2 D3 49 BB A1
IP-MIB::ipv6InterfaceEnableStatus.1 = INTEGER: up(1)
IP-MIB::ipv6InterfaceEnableStatus.2 = INTEGER: up(1)
IP-MIB::ipv6InterfaceReachableTime.1 = Gauge32: 23081 milliseconds
IP-MIB::ipv6InterfaceReachableTime.2 = Gauge32: 26074 milliseconds
IP-MIB::ipv6InterfaceRetransmitTime.1 = Gauge32: 0 milliseconds
IP-MIB::ipv6InterfaceRetransmitTime.2 = Gauge32: 0 milliseconds
IP-MIB::ipSystemStatsInReceives.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInReceives.ipv6 = Counter32: 5076134
IP-MIB::ipSystemStatsHCInReceives.ipv4 = Counter64: 0
IP-MIB::ipSystemStatsHCInReceives.ipv6 = Counter64: 5076134
IP-MIB::ipSystemStatsInOctets.ipv4 = Counter32: 3227893125
IP-MIB::ipSystemStatsInOctets.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCInOctets.ipv4 = Counter64: 3227893301
IP-MIB::ipSystemStatsHCInOctets.ipv6 = Counter64: 0
IP-MIB::ipSystemStatsInHdrErrors.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInHdrErrors.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsInNoRoutes.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInNoRoutes.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsInAddrErrors.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInAddrErrors.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsInUnknownProtos.ipv4 = Counter32: 22858
IP-MIB::ipSystemStatsInUnknownProtos.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsInTruncatedPkts.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInTruncatedPkts.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsInForwDatagrams.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInForwDatagrams.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCInForwDatagrams.ipv4 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsHCInForwDatagrams.ipv6 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsReasmReqds.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsReasmReqds.ipv6 = Counter32: 1001
IP-MIB::ipSystemStatsReasmOKs.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsReasmOKs.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsReasmFails.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsReasmFails.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsInDiscards.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInDiscards.ipv6 = Counter32: 5066437
IP-MIB::ipSystemStatsInDelivers.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInDelivers.ipv6 = Counter32: 3371672
IP-MIB::ipSystemStatsHCInDelivers.ipv4 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsHCInDelivers.ipv6 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsOutRequests.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsOutRequests.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCOutRequests.ipv4 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsHCOutRequests.ipv6 = Wrong Type (should be Counter64): Counter32: 240
IP-MIB::ipSystemStatsOutNoRoutes.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsOutNoRoutes.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsOutForwDatagrams.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsOutForwDatagrams.ipv6 = Counter32: 1980
IP-MIB::ipSystemStatsHCOutForwDatagrams.ipv4 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsHCOutForwDatagrams.ipv6 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipSystemStatsOutDiscards.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsOutDiscards.ipv6 = Counter32: 3960
IP-MIB::ipSystemStatsOutFragReqds.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsOutFragReqds.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsOutFragOKs.ipv4 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipSystemStatsOutFragOKs.ipv6 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipSystemStatsOutFragFails.ipv4 = Counter32: 460597047
IP-MIB::ipSystemStatsOutFragFails.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsOutFragCreates.ipv4 = Wrong Type (should be Counter32): Counter64: 460597244
IP-MIB::ipSystemStatsOutFragCreates.ipv6 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipSystemStatsOutTransmits.ipv4 = Counter32: 5671439
IP-MIB::ipSystemStatsOutTransmits.ipv6 = Counter32: 1721789
IP-MIB::ipSystemStatsHCOutTransmits.ipv4 = Counter64: 5671439
IP-MIB::ipSystemStatsHCOutTransmits.ipv6 = Counter64: 1721789
IP-MIB::ipSystemStatsOutOctets.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsOutOctets.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCOutOctets.ipv4 = Counter64: 0
IP-MIB::ipSystemStatsHCOutOctets.ipv6 = Counter64: 0
IP-MIB::ipSystemStatsInMcastPkts.ipv4 = Counter32: 30043
IP-MIB::ipSystemStatsInMcastPkts.ipv6 = Counter32: 23162
IP-MIB::ipSystemStatsHCInMcastPkts.ipv4 = Counter64: 30043
IP-MIB::ipSystemStatsHCInMcastPkts.ipv6 = Counter64: 23162
IP-MIB::ipSystemStatsInMcastOctets.ipv4 = Counter32: 0
IP-MIB::ipSystemStatsInMcastOctets.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCInMcastOctets.ipv4 = Counter64: 0
IP-MIB::ipSystemStatsHCInMcastOctets.ipv6 = Counter64: 0
IP-MIB::ipSystemStatsOutMcastPkts.ipv4 = Counter32: 3910729
IP-MIB::ipSystemStatsOutMcastPkts.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCOutMcastPkts.ipv4 = Counter64: 3910729
IP-MIB::ipSystemStatsHCOutMcastPkts.ipv6 = Counter64: 0
IP-MIB::ipSystemStatsOutMcastOctets.ipv4 = Counter32: 7223
IP-MIB::ipSystemStatsOutMcastOctets.ipv6 = Counter32: 0
IP-MIB::ipSystemStatsHCOutMcastOctets.ipv4 = Counter64: 7223
IP-MIB::ipSystemStatsHCOutMcastOctets.ipv6 = Counter64: 0
IP-MIB::ipSystemStatsInBcastPkts.ipv4 = Wrong Type (should be Counter32): INTEGER: 0
IP-MIB::ipSystemStatsInBcastPkts.ipv6 = Wrong Type (should be Counter32): INTEGER: 0
IP-MIB::ipSystemStatsHCInBcastPkts.ipv4 = Wrong Type (should be Counter64): INTEGER: 0
IP-MIB::ipSystemStatsHCInBcastPkts.ipv6 = Wrong Type (should be Counter64): INTEGER: 0
IP-MIB::ipIfStatsInReceives.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInReceives.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInReceives.ipv6.1 = Counter32: 3264719
IP-MIB::ipIfStatsInReceives.ipv6.2 = Counter32: 1811415
IP-MIB::ipIfStatsHCInReceives.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCInReceives.ipv4.2 = Counter64: 0
IP-MIB::ipIfStatsHCInReceives.ipv6.1 = Counter64: 3264719
IP-MIB::ipIfStatsHCInReceives.ipv6.2 = Counter64: 1811415
IP-MIB::ipIfStatsInOctets.ipv4.1 = Counter32: 309620722
IP-MIB::ipIfStatsInOctets.ipv4.2 = Counter32: 2918280128
IP-MIB::ipIfStatsInOctets.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInOctets.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCInOctets.ipv4.1 = Counter64: 309620722
IP-MIB::ipIfStatsHCInOctets.ipv4.2 = Counter64: 2918280484
IP-MIB::ipIfStatsHCInOctets.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCInOctets.ipv6.2 = Counter64: 0
IP-MIB::ipIfStatsInHdrErrors.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInHdrErrors.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInHdrErrors.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInHdrErrors.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsInNoRoutes.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInNoRoutes.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInNoRoutes.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInNoRoutes.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsInAddrErrors.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInAddrErrors.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInAddrErrors.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInAddrErrors.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsInUnknownProtos.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInUnknownProtos.ipv4.2 = Counter32: 22858
IP-MIB::ipIfStatsInUnknownProtos.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInUnknownProtos.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsInTruncatedPkts.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInTruncatedPkts.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInTruncatedPkts.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInTruncatedPkts.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsInForwDatagrams.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInForwDatagrams.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInForwDatagrams.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInForwDatagrams.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCInForwDatagrams.ipv4.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCInForwDatagrams.ipv4.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsReasmReqds.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsReasmReqds.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsReasmReqds.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsReasmReqds.ipv6.2 = Counter32: 1001
IP-MIB::ipIfStatsReasmOKs.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsReasmOKs.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsReasmOKs.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsReasmOKs.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsReasmFails.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsReasmFails.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsReasmFails.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsReasmFails.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsInDiscards.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInDiscards.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInDiscards.ipv6.1 = Counter32: 3264719
IP-MIB::ipIfStatsInDiscards.ipv6.2 = Counter32: 1801718
IP-MIB::ipIfStatsInDelivers.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInDelivers.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInDelivers.ipv6.1 = Counter32: 3264719
IP-MIB::ipIfStatsInDelivers.ipv6.2 = Counter32: 106953
IP-MIB::ipIfStatsHCInDelivers.ipv4.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCInDelivers.ipv4.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCInDelivers.ipv6.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCInDelivers.ipv6.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsOutRequests.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutRequests.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsOutRequests.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutRequests.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCOutRequests.ipv4.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCOutRequests.ipv4.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCOutRequests.ipv6.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCOutRequests.ipv6.2 = Wrong Type (should be Counter64): Counter32: 240
IP-MIB::ipIfStatsEntry.22.1.1 = Counter32: 0
IP-MIB::ipIfStatsEntry.22.1.2 = Counter32: 0
IP-MIB::ipIfStatsEntry.22.2.1 = Counter32: 0
IP-MIB::ipIfStatsEntry.22.2.2 = Counter32: 0
IP-MIB::ipIfStatsOutForwDatagrams.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutForwDatagrams.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsOutForwDatagrams.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutForwDatagrams.ipv6.2 = Counter32: 1980
IP-MIB::ipIfStatsHCOutForwDatagrams.ipv4.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCOutForwDatagrams.ipv4.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.1 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.2 = Wrong Type (should be Counter64): Counter32: 0
IP-MIB::ipIfStatsOutDiscards.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutDiscards.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsOutDiscards.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutDiscards.ipv6.2 = Counter32: 3960
IP-MIB::ipIfStatsOutFragReqds.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutFragReqds.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsOutFragReqds.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutFragReqds.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsOutFragOKs.ipv4.1 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipIfStatsOutFragOKs.ipv4.2 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipIfStatsOutFragOKs.ipv6.1 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipIfStatsOutFragOKs.ipv6.2 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipIfStatsOutFragFails.ipv4.1 = Counter32: 312454090
IP-MIB::ipIfStatsOutFragFails.ipv4.2 = Counter32: 148156021
IP-MIB::ipIfStatsOutFragFails.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutFragFails.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsOutFragCreates.ipv4.1 = Wrong Type (should be Counter32): Counter64: 312454090
IP-MIB::ipIfStatsOutFragCreates.ipv4.2 = Wrong Type (should be Counter32): Counter64: 148156419
IP-MIB::ipIfStatsOutFragCreates.ipv6.1 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipIfStatsOutFragCreates.ipv6.2 = Wrong Type (should be Counter32): Counter64: 0
IP-MIB::ipIfStatsOutTransmits.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutTransmits.ipv4.2 = Counter32: 5671439
IP-MIB::ipIfStatsOutTransmits.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutTransmits.ipv6.2 = Counter32: 1721789
IP-MIB::ipIfStatsHCOutTransmits.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutTransmits.ipv4.2 = Counter64: 5671439
IP-MIB::ipIfStatsHCOutTransmits.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutTransmits.ipv6.2 = Counter64: 1721789
IP-MIB::ipIfStatsOutOctets.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutOctets.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsOutOctets.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutOctets.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCOutOctets.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutOctets.ipv4.2 = Counter64: 0
IP-MIB::ipIfStatsHCOutOctets.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutOctets.ipv6.2 = Counter64: 0
IP-MIB::ipIfStatsInMcastPkts.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInMcastPkts.ipv4.2 = Counter32: 30043
IP-MIB::ipIfStatsInMcastPkts.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInMcastPkts.ipv6.2 = Counter32: 23162
IP-MIB::ipIfStatsHCInMcastPkts.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCInMcastPkts.ipv4.2 = Counter64: 30043
IP-MIB::ipIfStatsHCInMcastPkts.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCInMcastPkts.ipv6.2 = Counter64: 23162
IP-MIB::ipIfStatsInMcastOctets.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsInMcastOctets.ipv4.2 = Counter32: 0
IP-MIB::ipIfStatsInMcastOctets.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsInMcastOctets.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCInMcastOctets.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCInMcastOctets.ipv4.2 = Counter64: 0
IP-MIB::ipIfStatsHCInMcastOctets.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCInMcastOctets.ipv6.2 = Counter64: 0
IP-MIB::ipIfStatsOutMcastPkts.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutMcastPkts.ipv4.2 = Counter32: 3910729
IP-MIB::ipIfStatsOutMcastPkts.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutMcastPkts.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCOutMcastPkts.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutMcastPkts.ipv4.2 = Counter64: 3910729
IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.2 = Counter64: 0
IP-MIB::ipIfStatsOutMcastOctets.ipv4.1 = Counter32: 0
IP-MIB::ipIfStatsOutMcastOctets.ipv4.2 = Counter32: 7223
IP-MIB::ipIfStatsOutMcastOctets.ipv6.1 = Counter32: 0
IP-MIB::ipIfStatsOutMcastOctets.ipv6.2 = Counter32: 0
IP-MIB::ipIfStatsHCOutMcastOctets.ipv4.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutMcastOctets.ipv4.2 = Counter64: 7223
IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.1 = Counter64: 0
IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.2 = Counter64: 0
IP-MIB::ipIfStatsInBcastPkts.ipv4.1 = Wrong Type (should be Counter32): INTEGER: 0
IP-MIB::ipIfStatsInBcastPkts.ipv4.2 = Wrong Type (should be Counter32): INTEGER: 0
IP-MIB::ipIfStatsInBcastPkts.ipv6.1 = Wrong Type (should be Counter32): INTEGER: 0
IP-MIB::ipIfStatsInBcastPkts.ipv6.2 = Wrong Type (should be Counter32): INTEGER: 0
IP-MIB::ipIfStatsHCInBcastPkts.ipv4.1 = Wrong Type (should be Counter64): INTEGER: 0
IP-MIB::ipIfStatsHCInBcastPkts.ipv4.2 = Wrong Type (should be Counter64): INTEGER: 0
IP-MIB::ipIfStatsHCInBcastPkts.ipv6.1 = Wrong Type (should be Counter64): INTEGER: 0
IP-MIB::ipIfStatsHCInBcastPkts.ipv6.2 = Wrong Type (should be Counter64): INTEGER: 0
IP-MIB::ipAddressSpinLock.1.3.1.4.127.0.0.1 = INTEGER: 1
IP-MIB::ipAddressSpinLock.1.3.1.4.[IP] = INTEGER: 2
IP-MIB::ipAddressSpinLock.1.4.1.4.127.0.0.1 = INTEGER: 1
IP-MIB::ipAddressSpinLock.1.4.1.4.[IP] = INTEGER: 1
IP-MIB::ipAddressSpinLock.1.6.1.4.127.0.0.1 = INTEGER: 2
IP-MIB::ipAddressSpinLock.1.6.1.4.[IP] = INTEGER: 2
IP-MIB::ipAddressSpinLock.1.7.1.4.127.0.0.1 = INTEGER: 1
IP-MIB::ipAddressSpinLock.1.7.1.4.[IP] = INTEGER: 1
IP-MIB::ipAddressSpinLock.1.8.1.4.127.0.0.1 = INTEGER: 0
IP-MIB::ipAddressSpinLock.1.8.1.4.[IP] = INTEGER: 0
IP-MIB::ipAddressSpinLock.1.9.1.4.127.0.0.1 = INTEGER: 0
IP-MIB::ipAddressSpinLock.1.9.1.4.[IP] = INTEGER: 0
IP-MIB::ipAddressType.ipv6.".".192.168.40.54 = Wrong Type (should be INTEGER): Hex-STRING: 00 50 56 A8 E0 91
IP-MIB::ipAddressType.ipv6.".".192.168.41.6 = Wrong Type (should be INTEGER): Hex-STRING: 90 61 AE FD 8D 6F
IP-MIB::ipAddressType.ipv6.".".192.168.41.19 = Wrong Type (should be INTEGER): Hex-STRING: 50 7B 9D 9E F8 61
IP-MIB::ipAddressType.ipv6.".".192.168.41.31 = Wrong Type (should be INTEGER): Hex-STRING: 88 B1 11 39 36 27
IP-MIB::ipAddressType.ipv6.".".192.168.41.34 = Wrong Type (should be INTEGER): Hex-STRING: E4 A4 71 6E 3B 10
IP-MIB::ipAddressType.ipv6.".".192.168.41.49 = Wrong Type (should be INTEGER): Hex-STRING: 84 A9 3E AD DF 5B
IP-MIB::ipAddressType.ipv6.".".192.168.41.93 = Wrong Type (should be INTEGER): Hex-STRING: D0 50 99 90 CC 00
IP-MIB::ipAddressType.ipv6.".".192.168.41.100 = Wrong Type (should be INTEGER): Hex-STRING: 10 E7 C6 1F 97 75
IP-MIB::ipAddressType.ipv6.".".192.168.41.212 = Wrong Type (should be INTEGER): Hex-STRING: 68 EC C5 51 A6 12
IP-MIB::ipAddressType.ipv6.".".192.168.41.222 = Wrong Type (should be INTEGER): Hex-STRING: 00 24 9B 2C D4 45
IP-MIB::ipAddressType.ipv6.".".192.168.42.11 = Wrong Type (should be INTEGER): Hex-STRING: 9C EB E8 67 32 88
IP-MIB::ipAddressType.ipv6.".".192.168.47.160 = Wrong Type (should be INTEGER): Hex-STRING: 58 0A 20 87 97 4F
IP-MIB::ipAddressType.ipv6.".".192.168.47.172 = Wrong Type (should be INTEGER): Hex-STRING: 58 0A 20 87 95 DA
IP-MIB::ipAddressPrefix.ipv6.".".192.168.40.54 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.6 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.19 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.31 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.34 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.49 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.93 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.100 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.212 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.41.222 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.42.11 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.47.160 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressPrefix.ipv6.".".192.168.47.172 = Wrong Type (should be OBJECT IDENTIFIER): INTEGER: 0
IP-MIB::ipAddressOrigin.ipv6.".".192.168.40.54 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.6 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.19 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.31 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.34 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.49 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.93 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.100 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.212 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.41.222 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.42.11 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.47.160 = INTEGER: 3
IP-MIB::ipAddressOrigin.ipv6.".".192.168.47.172 = INTEGER: 3
IP-MIB::ipAddressStatus.ipv6.".".192.168.40.54 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.6 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.19 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.31 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.34 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.49 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.93 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.100 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.212 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.41.222 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.42.11 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.47.160 = INTEGER: 0
IP-MIB::ipAddressStatus.ipv6.".".192.168.47.172 = INTEGER: 0
IP-MIB::ipNetToPhysicalNetAddressType.1 = INTEGER: unknown(0)
IP-MIB::ipNetToPhysicalNetAddressType.2 = INTEGER: unknown(0)
IP-MIB::ipNetToPhysicalNetAddress.1 = Wrong Type (should be OCTET STRING): INTEGER: 0
IP-MIB::ipNetToPhysicalNetAddress.2 = Wrong Type (should be OCTET STRING): INTEGER: 0
IP-MIB::ipNetToPhysicalPhysAddress.1 = Wrong Type (should be OCTET STRING): INTEGER: 0
IP-MIB::ipNetToPhysicalPhysAddress.2 = Wrong Type (should be OCTET STRING): INTEGER: 0
IP-MIB::ipNetToPhysicalLastUpdated.1 = Wrong Type (should be Timeticks): INTEGER: 0
IP-MIB::ipNetToPhysicalLastUpdated.2 = Wrong Type (should be Timeticks): INTEGER: 0
IP-MIB::ipNetToPhysicalType.1 = INTEGER: 0
IP-MIB::ipNetToPhysicalType.2 = INTEGER: 0
IP-MIB::ipNetToPhysicalState.1 = INTEGER: 0
IP-MIB::ipNetToPhysicalState.2 = INTEGER: 0
IP-MIB::ipNetToPhysicalRowStatus.1 = INTEGER: 0
IP-MIB::ipNetToPhysicalRowStatus.2 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.9.ipv4 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.9.ipv6 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.10.ipv4 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.10.ipv6 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.11.ipv4 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.11.ipv6 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.12.ipv4 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.12.ipv6 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.13.ipv4 = INTEGER: 0
IP-MIB::ipNetToPhysicalEntry.13.ipv6 = INTEGER: 0
IP-MIB::ipDefaultRouterTable.0 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.2.1 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.2.2 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.3.1 = INTEGER: 1000
IP-MIB::ipv6RouterAdvertSpinLock.1.3.2 = INTEGER: 1000
IP-MIB::ipv6RouterAdvertSpinLock.1.4.1 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.4.2 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.5.1 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.5.2 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.6.1 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.6.2 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.7.1 = INTEGER: 1500
IP-MIB::ipv6RouterAdvertSpinLock.1.7.2 = INTEGER: 1500
IP-MIB::ipv6RouterAdvertSpinLock.1.8.1 = INTEGER: 23081
IP-MIB::ipv6RouterAdvertSpinLock.1.8.2 = INTEGER: 26074
IP-MIB::ipv6RouterAdvertSpinLock.1.9.1 = INTEGER: 4000
IP-MIB::ipv6RouterAdvertSpinLock.1.9.2 = INTEGER: 4000
IP-MIB::ipv6RouterAdvertSpinLock.1.10.1 = INTEGER: 64
IP-MIB::ipv6RouterAdvertSpinLock.1.10.2 = INTEGER: 64
IP-MIB::ipv6RouterAdvertSpinLock.1.11.1 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.11.2 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.12.1 = INTEGER: 0
IP-MIB::ipv6RouterAdvertSpinLock.1.12.2 = INTEGER: 0
IP-MIB::icmpInMsgs.0 = Counter32: 21835
IP-MIB::icmpInErrors.0 = Counter32: 0
IP-MIB::icmpInDestUnreachs.0 = Counter32: 4
IP-MIB::icmpInTimeExcds.0 = Counter32: 0
IP-MIB::icmpInParmProbs.0 = Counter32: 0
IP-MIB::icmpInSrcQuenchs.0 = Counter32: 0
IP-MIB::icmpInRedirects.0 = Counter32: 0
IP-MIB::icmpInEchos.0 = Counter32: 21831
IP-MIB::icmpInEchoReps.0 = Counter32: 0
IP-MIB::icmpInTimestamps.0 = Counter32: 0
IP-MIB::icmpInTimestampReps.0 = Counter32: 0
IP-MIB::icmpInAddrMasks.0 = Counter32: 0
IP-MIB::icmpInAddrMaskReps.0 = Counter32: 0
IP-MIB::icmpOutMsgs.0 = Counter32: 21837
IP-MIB::icmpOutErrors.0 = Counter32: 0
IP-MIB::icmpOutDestUnreachs.0 = Counter32: 6
IP-MIB::icmpOutTimeExcds.0 = Counter32: 0
IP-MIB::icmpOutParmProbs.0 = Counter32: 0
IP-MIB::icmpOutSrcQuenchs.0 = Counter32: 0
IP-MIB::icmpOutRedirects.0 = Counter32: 0
IP-MIB::icmpOutEchos.0 = Counter32: 0
IP-MIB::icmpOutEchoReps.0 = Counter32: 21831
IP-MIB::icmpOutTimestamps.0 = Counter32: 0
IP-MIB::icmpOutTimestampReps.0 = Counter32: 0
IP-MIB::icmpOutAddrMasks.0 = Counter32: 0
IP-MIB::icmpOutAddrMaskReps.0 = Counter32: 0
IP-MIB::icmp.27.1.2.1 = Counter32: 21835
IP-MIB::icmp.27.1.2.2 = Counter32: 24324
IP-MIB::icmp.27.1.3.1 = Counter32: 0
IP-MIB::icmp.27.1.3.2 = Counter32: 13
IP-MIB::icmp.27.1.4.1 = Counter32: 21837
IP-MIB::icmp.27.1.4.2 = Counter32: 9
IP-MIB::icmp.27.1.5.1 = Counter32: 0
IP-MIB::icmp.27.1.5.2 = Counter32: 0
IP-MIB::icmp.28.1.3.1.0 = Counter32: 0
IP-MIB::icmp.28.1.3.1.3 = Counter32: 4
IP-MIB::icmp.28.1.3.1.4 = Counter32: 0
IP-MIB::icmp.28.1.3.1.5 = Counter32: 0
IP-MIB::icmp.28.1.3.1.8 = Counter32: 21831
IP-MIB::icmp.28.1.3.1.9 = Counter32: 0
IP-MIB::icmp.28.1.3.1.10 = Counter32: 0
IP-MIB::icmp.28.1.3.1.11 = Counter32: 0
IP-MIB::icmp.28.1.3.1.12 = Counter32: 0
IP-MIB::icmp.28.1.3.1.13 = Counter32: 0
IP-MIB::icmp.28.1.3.1.14 = Counter32: 0
IP-MIB::icmp.28.1.3.1.15 = Counter32: 0
IP-MIB::icmp.28.1.3.1.16 = Counter32: 0
IP-MIB::icmp.28.1.3.1.17 = Counter32: 0
IP-MIB::icmp.28.1.3.1.18 = Counter32: 0
IP-MIB::icmp.28.1.3.2.1 = Counter32: 2
IP-MIB::icmp.28.1.3.2.2 = Counter32: 0
IP-MIB::icmp.28.1.3.2.3 = Counter32: 0
IP-MIB::icmp.28.1.3.2.4 = Counter32: 0
IP-MIB::icmp.28.1.3.2.128 = Counter32: 1
IP-MIB::icmp.28.1.3.2.129 = Counter32: 0
IP-MIB::icmp.28.1.3.2.130 = Counter32: 0
IP-MIB::icmp.28.1.3.2.131 = Counter32: 1970
IP-MIB::icmp.28.1.3.2.132 = Counter32: 4635
IP-MIB::icmp.28.1.3.2.133 = Counter32: 0
IP-MIB::icmp.28.1.3.2.134 = Counter32: 0
IP-MIB::icmp.28.1.3.2.135 = Counter32: 3117
IP-MIB::icmp.28.1.3.2.136 = Counter32: 14586
IP-MIB::icmp.28.1.3.2.137 = Counter32: 0
IP-MIB::icmp.28.1.4.1.0 = Counter32: 21831
IP-MIB::icmp.28.1.4.1.3 = Counter32: 6
IP-MIB::icmp.28.1.4.1.4 = Counter32: 0
IP-MIB::icmp.28.1.4.1.5 = Counter32: 0
IP-MIB::icmp.28.1.4.1.8 = Counter32: 0
IP-MIB::icmp.28.1.4.1.9 = Counter32: 0
IP-MIB::icmp.28.1.4.1.10 = Counter32: 0
IP-MIB::icmp.28.1.4.1.11 = Counter32: 0
IP-MIB::icmp.28.1.4.1.12 = Counter32: 0
IP-MIB::icmp.28.1.4.1.13 = Counter32: 0
IP-MIB::icmp.28.1.4.1.14 = Counter32: 0
IP-MIB::icmp.28.1.4.1.15 = Counter32: 0
IP-MIB::icmp.28.1.4.1.16 = Counter32: 0
IP-MIB::icmp.28.1.4.1.17 = Counter32: 0
IP-MIB::icmp.28.1.4.1.18 = Counter32: 0
IP-MIB::icmp.28.1.4.2.1 = Counter32: 0
IP-MIB::icmp.28.1.4.2.2 = Counter32: 0
IP-MIB::icmp.28.1.4.2.3 = Counter32: 0
IP-MIB::icmp.28.1.4.2.4 = Counter32: 0
IP-MIB::icmp.28.1.4.2.128 = Counter32: 0
IP-MIB::icmp.28.1.4.2.129 = Counter32: 0
IP-MIB::icmp.28.1.4.2.130 = Counter32: 0
IP-MIB::icmp.28.1.4.2.131 = Counter32: 8
IP-MIB::icmp.28.1.4.2.132 = Counter32: 0
IP-MIB::icmp.28.1.4.2.133 = Counter32: 0
IP-MIB::icmp.28.1.4.2.134 = Counter32: 0
IP-MIB::icmp.28.1.4.2.135 = Counter32: 0
IP-MIB::icmp.28.1.4.2.136 = Counter32: 0
IP-MIB::icmp.28.1.4.2.137 = Counter32: 0
TCP-MIB::tcpRtoAlgorithm.0 = INTEGER: vanj(4)
TCP-MIB::tcpRtoMin.0 = INTEGER: 1000 milliseconds
TCP-MIB::tcpRtoMax.0 = INTEGER: 60000 milliseconds
TCP-MIB::tcpMaxConn.0 = INTEGER: 128
TCP-MIB::tcpActiveOpens.0 = Counter32: 3669
TCP-MIB::tcpPassiveOpens.0 = Counter32: 24967
TCP-MIB::tcpAttemptFails.0 = Counter32: 899
TCP-MIB::tcpEstabResets.0 = Counter32: 2653
TCP-MIB::tcpCurrEstab.0 = Gauge32: 6
TCP-MIB::tcpInSegs.0 = Counter32: 3490015
TCP-MIB::tcpOutSegs.0 = Counter32: 1736745
TCP-MIB::tcpRetransSegs.0 = Counter32: 1336
TCP-MIB::tcpConnState.0.0.0.0.80.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnState.0.0.0.0.515.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnState.0.0.0.0.3910.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnState.0.0.0.0.3911.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnState.0.0.0.0.8080.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnState.0.0.0.0.9100.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnState.0.0.0.0.9107.0.0.0.0.0 = INTEGER: listen(2)
TCP-MIB::tcpConnLocalAddress.0.0.0.0.80.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalAddress.0.0.0.0.515.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalAddress.0.0.0.0.3910.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalAddress.0.0.0.0.3911.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalAddress.0.0.0.0.8080.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalAddress.0.0.0.0.9100.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalAddress.0.0.0.0.9107.0.0.0.0.0 = IpAddress: 0.0.0.0
TCP-MIB::tcpConnLocalPort.0.0.0.0.80.0.0.0.0.0 = INTEGER: 80
TCP-MIB::tcpConnLocalPort.0.0.0.0.515.0.0.0.0.0 = INTEGER: 515
TCP-MIB::tcpConnLocalPort.0.0.0.0.3910.0.0.0.0.0 = INTEGER: 3910
TCP-MIB::tcpConnLocalPort.0.0.0.0.3911.0.0.0.0.0 = INTEGER: 3911
TCP-MIB::tcpConnLocalPort.0.0.0.0.8080.0.0.0.0.0 = INTEGER: 8080
TCP-MIB::tcpConnLocalPort.0.0.0.0.9100.0.0.0.0.0 = INTEGER: 9100
TCP-MIB::tcpConnLocalPort.0.0.0.0.9107.0.0.0.0.0 = INTEGER: 9107
Image

Had to delete some lines, had max 60 000 character limit. :)

Best wishes,
Kukkurloom
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Timeout from the host

Post by benjaminsmith »

Hello,
[root@nagios ~]# snmpwalk [IP] -c public -v 1 -OQa .1.3.6.1.4.1.11.2.3.9.1.1.3
SNMPv2-SMI::enterprises.11.2.3.9.1.1.3.0 = "PowerSave on."
Making progress as you are connecting to the printer from the Nagios server. You should be able to run the plugin and get valid return. Go to the plugin directory /usr/local/nagios/libexec, and run the following command as nagios user.

Code: Select all

./check_hpjd -H <ip_address> -C public
There's also the SNMP printer check plugin available on the Nagios Exchange.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked