KnoAll / cacti-template

Cacti Graphing system install, update, backup and restore scripts, and virtual appliance template
http://www.kevinnoall.com
GNU General Public License v3.0
15 stars 6 forks source link

No graph on 1.2.7 #71

Closed ycry008 closed 4 years ago

ycry008 commented 4 years ago

When on 1.2.5 there is no graph. Perform update using script with --fix-permissions to 1.2.7, nothing. No files is being write to /var/www/html/cacti/rra/(New device)

What I done so far. Update date/time on system. Also on /etc/php.ini.

ycry008 commented 4 years ago

[root@cactitemplate cacti]# ls -all | grep rra drwxrwsr-x. 5 cacti apache 52 Oct 13 21:02 rra

[root@cactitemplate rra]# pwd /var/www/html/cacti/rra [root@cactitemplate rra]# ls -all drwxrwsr-x. 2 cacti apache 4096 Jan 3 2019 3 drwxrwsr-x. 2 cacti apache 6 Oct 13 21:04 4 (nothing in here) - i noticed the modify time change every 5-10 minutes

RRDtool Command:

/bin/rrdtool graph - \ --imgformat=PNG \ --start='-86400' \ --end='-300' \ --pango-markup \ --title='SW3560G - LRE stats' \ --vertical-label='-dBm' \ --slope-mode \ --base=1000 \ --height=120 \ --width=500 \ --tabwidth '30' \ --rigid \ --alt-autoscale-max \ --lower-limit='0' \ COMMENT:"From 2019/10/12 21\:26\:12 To 2019/10/13 21\:21\:12\c" \ COMMENT:" \n" \ --color BACK#F3F3F3 \ --color CANVAS#FDFDFD \ --color SHADEA#CBCBCB \ --color SHADEB#999999 \ --color FONT#000000 \ --color AXIS#2C4D43 \ --color ARROW#2C4D43 \ --color FRAME#2C4D43 \ --border 1 --font TITLE:11:'Arial' \ --font AXIS:8:'Arial' \ --font LEGEND:8:'Courier' \ --font UNIT:8:'Arial' \ --font WATERMARK:6:'Arial' \ --slope-mode \ --watermark 'Generated by Cacti®' \ DEF:a='/var/www/html/cacti/rra/4/90.rrd':'tx_power_switch':AVERAGE \ DEF:b='/var/www/html/cacti/rra/4/90.rrd':'tx_power_cpe':AVERAGE \ CDEF:cdefa='a,-10,/' \ CDEF:cdefe='b,-10,/' \ LINE2:cdefa#00CF00FF:'Downlink TX Power' \ GPRINT:cdefa:LAST:'Current\:%8.2lf %s' \ GPRINT:cdefa:AVERAGE:'Average\:%8.2lf %s' \ GPRINT:cdefa:MAX:'Maximum\:%8.2lf %s\n' \ LINE1:cdefe#002A97FF:'Uplink TX Power ' \ GPRINT:cdefe:LAST:'Current\:%8.2lf %s' \ GPRINT:cdefe:AVERAGE:'Average\:%8.2lf %s' \ GPRINT:cdefe:MAX:'Maximum\:%8.2lf %s'

RRDtool Says: ERROR: opening '/var/www/html/cacti/rra/4/90.rrd': No such file or directory

ycry008 commented 4 years ago

Cannot access log from GUI also, got this message "FATAL: YOU DO NOT HAVE ACCESS TO THIS AREA OF CACTI"

KnoAll commented 4 years ago

What are you running cacti on? from the virtual appliance? were there any errors or messages in the upgrade script?

ycry008 commented 4 years ago

I am using the virtual appliance. During the upgrade I saw this error (image below in red text) message when I use the GUI to finish the installation. Capture

KnoAll commented 4 years ago

None of those indicate anything that would cause what you are seeing. When you did the upgrade to 1.2.7, did you run cacti.upgrade.sh without --fix-permissions and then run it again with?

What happens if you run it without any switches?

Also can you do: ls -al /var/www/html/cacti/rra and report the result back here.

ycry008 commented 4 years ago

I noticed that version 1.2.5 wasn't working so I perform the upgrade without the --fix-permissions first to version 1.2.7, which is not working also. Then I perform using --fix-permissions to fix permissions on folder 4 and 5, which not working also.

[root@cactitemplate ~]# ls -al /var/www/html/cacti/rra total 12 drwxrwsrwx. 6 cacti apache 60 Oct 13 21:41 . drwxrwsr-x. 19 cacti apache 4096 Sep 29 11:57 .. drwxrwsr-x. 2 cacti apache 4096 Jan 3 2019 3 drwxrwsrwx. 2 cacti apache 6 Oct 13 21:26 4 drwxrwsr-x. 2 cacti apache 6 Oct 13 21:42 5 drwxrwsr-x. 2 cacti apache 6 Jan 4 2019 archive -rwxrwxr-x. 1 cacti apache 170 Sep 29 11:57 .htaccess

What do you mean run without any switches?

KnoAll commented 4 years ago

Can do show one level deeper to a device that isnt working. ls -al /var/www/html/cacti/rra/4 or /5

Also, it looks as though you are logged in as root?

ycry008 commented 4 years ago

Login as cacti

[cacti@cactitemplate ~]$ ls -al /var/www/html/cacti/rra/4 total 0 drwxrwsrwx. 2 cacti apache 6 Oct 13 21:26 . drwxrwsrwx. 6 cacti apache 60 Oct 13 21:41 .. [cacti@cactitemplate ~]$ ls -al /var/www/html/cacti/rra/5 total 0 drwxrwsr-x. 2 cacti apache 6 Oct 13 21:42 . drwxrwsrwx. 6 cacti apache 60 Oct 13 21:41 ..

log in as root

[root@cactitemplate ~]# ls -al /var/www/html/cacti/rra/4 total 0 drwxrwsrwx. 2 cacti apache 6 Oct 13 21:26 . drwxrwsrwx. 6 cacti apache 60 Oct 13 21:41 .. [root@cactitemplate ~]# ls -al /var/www/html/cacti/rra/5 total 0 drwxrwsr-x. 2 cacti apache 6 Oct 13 21:42 . drwxrwsrwx. 6 cacti apache 60 Oct 13 21:41 ..

KnoAll commented 4 years ago

Interesting, it does not appear to be permissions. As you can see it is very permissive to the cacti and apache users.

For the log issue, check the settings of the user you are logged in as. Does it look like this? image

ycry008 commented 4 years ago

hmm, maybe it something to do with the user settings, i was messing around and now it working for the log, but the issue now is the graph is not working. I will revert back to 1.2.5 and try again using the --fix-permission.

Do you think this might be related to vmware workstation 15.5.0 build-14665864? or maybe the naming of the interface?

image

KnoAll commented 4 years ago

have you tried running snmpwalk from the console to the target to see what you get?

ycry008 commented 4 years ago

no, i haven't but it working for my MRTG server so i assume it should be working also. Do you know the snmpwalk command? My device is a cisco switch. image Should this mean it working?

KnoAll commented 4 years ago

If you click into either of those what does it show at the top of the device page? snmpwalk -v 2c -c public [destination]

ycry008 commented 4 years ago

snmpwalk seem to be working.

image

[cacti@cactitemplate ~]$ snmpwalk -v 2c -c public 192.168.200.6 SNMPv2-MIB::sysDescr.0 = STRING: Cisco IOS Software, C3600 Software (AP3G2-K9W7-M), Version 15.2(4)JA1, RELEASE SOFTWARE (fc2) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2013 by Cisco Systems, Inc. Compiled Tue 30-Jul-13 23:12 by prod_rel_team SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.9.1.1661 DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (29736656) 3 days, 10:36:06.56 SNMPv2-MIB::sysContact.0 = STRING: see_vang SNMPv2-MIB::sysName.0 = STRING: SEEAP3602I.VangNet SNMPv2-MIB::sysLocation.0 = STRING: IGHs SNMPv2-MIB::sysServices.0 = INTEGER: 6 SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00 IF-MIB::ifNumber.0 = INTEGER: 5 IF-MIB::ifIndex.1 = INTEGER: 1 IF-MIB::ifIndex.2 = INTEGER: 2 IF-MIB::ifIndex.3 = INTEGER: 3 IF-MIB::ifIndex.4 = INTEGER: 4 IF-MIB::ifIndex.5 = INTEGER: 5 IF-MIB::ifDescr.1 = STRING: Dot11Radio0 IF-MIB::ifDescr.2 = STRING: Dot11Radio1 IF-MIB::ifDescr.3 = STRING: GigabitEthernet0 IF-MIB::ifDescr.4 = STRING: Null0 IF-MIB::ifDescr.5 = STRING: BVI1 IF-MIB::ifType.1 = INTEGER: ieee80211(71) IF-MIB::ifType.2 = INTEGER: ieee80211(71) IF-MIB::ifType.3 = INTEGER: ethernetCsmacd(6) IF-MIB::ifType.4 = INTEGER: other(1) IF-MIB::ifType.5 = INTEGER: ethernetCsmacd(6) IF-MIB::ifMtu.1 = INTEGER: 1500 IF-MIB::ifMtu.2 = INTEGER: 1500 IF-MIB::ifMtu.3 = INTEGER: 1500 IF-MIB::ifMtu.4 = INTEGER: 1500 IF-MIB::ifMtu.5 = INTEGER: 1500 IF-MIB::ifSpeed.1 = Gauge32: 54000000 IF-MIB::ifSpeed.2 = Gauge32: 54000000 IF-MIB::ifSpeed.3 = Gauge32: 1000000000 IF-MIB::ifSpeed.4 = Gauge32: 4294967295 IF-MIB::ifSpeed.5 = Gauge32: 54000000 IF-MIB::ifPhysAddress.1 = STRING: 88:75:56:1e:a5:e0 IF-MIB::ifPhysAddress.2 = STRING: 88:75:56:20:a5:d0 IF-MIB::ifPhysAddress.3 = STRING: 30:f7:d:f6:de:4d IF-MIB::ifPhysAddress.4 = STRING: IF-MIB::ifPhysAddress.5 = STRING: 30:f7:d:f6:de:4d IF-MIB::ifAdminStatus.1 = INTEGER: up(1) IF-MIB::ifAdminStatus.2 = INTEGER: up(1) IF-MIB::ifAdminStatus.3 = INTEGER: up(1) IF-MIB::ifAdminStatus.4 = INTEGER: up(1) IF-MIB::ifAdminStatus.5 = INTEGER: up(1) IF-MIB::ifOperStatus.1 = INTEGER: up(1) IF-MIB::ifOperStatus.2 = INTEGER: up(1) IF-MIB::ifOperStatus.3 = INTEGER: up(1) IF-MIB::ifOperStatus.4 = INTEGER: up(1) IF-MIB::ifOperStatus.5 = INTEGER: up(1) IF-MIB::ifLastChange.1 = Timeticks: (3568) 0:00:35.68 IF-MIB::ifLastChange.2 = Timeticks: (3672) 0:00:36.72 IF-MIB::ifLastChange.3 = Timeticks: (10097) 0:01:40.97 IF-MIB::ifLastChange.4 = Timeticks: (0) 0:00:00.00 IF-MIB::ifLastChange.5 = Timeticks: (3664) 0:00:36.64 IF-MIB::ifInOctets.1 = Counter32: 3504873344 IF-MIB::ifInOctets.2 = Counter32: 297094256 IF-MIB::ifInOctets.3 = Counter32: 3412411869 IF-MIB::ifInOctets.4 = Counter32: 0 IF-MIB::ifInOctets.5 = Counter32: 12401348 IF-MIB::ifInUcastPkts.1 = Counter32: 50697794 IF-MIB::ifInUcastPkts.2 = Counter32: 721072 IF-MIB::ifInUcastPkts.3 = Counter32: 55873297 IF-MIB::ifInUcastPkts.4 = Counter32: 0 IF-MIB::ifInUcastPkts.5 = Counter32: 81588 IF-MIB::ifInDiscards.1 = Counter32: 174 IF-MIB::ifInDiscards.2 = Counter32: 0 IF-MIB::ifInDiscards.3 = Counter32: 0 IF-MIB::ifInDiscards.4 = Counter32: 0 IF-MIB::ifInDiscards.5 = Counter32: 0 IF-MIB::ifInErrors.1 = Counter32: 0 IF-MIB::ifInErrors.2 = Counter32: 0 IF-MIB::ifInErrors.3 = Counter32: 0 IF-MIB::ifInErrors.4 = Counter32: 0 IF-MIB::ifInErrors.5 = Counter32: 0 IF-MIB::ifInUnknownProtos.1 = Counter32: 0 IF-MIB::ifInUnknownProtos.2 = Counter32: 0 IF-MIB::ifInUnknownProtos.3 = Counter32: 0 IF-MIB::ifInUnknownProtos.4 = Counter32: 0 IF-MIB::ifInUnknownProtos.5 = Counter32: 0 IF-MIB::ifOutOctets.1 = Counter32: 537060320 IF-MIB::ifOutOctets.2 = Counter32: 0 IF-MIB::ifOutOctets.3 = Counter32: 2158544821 IF-MIB::ifOutOctets.4 = Counter32: 0 IF-MIB::ifOutOctets.5 = Counter32: 12401528 IF-MIB::ifOutUcastPkts.1 = Counter32: 55723852 IF-MIB::ifOutUcastPkts.2 = Counter32: 0 IF-MIB::ifOutUcastPkts.3 = Counter32: 44981077 IF-MIB::ifOutUcastPkts.4 = Counter32: 0 IF-MIB::ifOutUcastPkts.5 = Counter32: 19149 IF-MIB::ifOutDiscards.1 = Counter32: 89917 IF-MIB::ifOutDiscards.2 = Counter32: 536370 IF-MIB::ifOutDiscards.3 = Counter32: 0 IF-MIB::ifOutDiscards.4 = Counter32: 0 IF-MIB::ifOutDiscards.5 = Counter32: 0 IF-MIB::ifOutErrors.1 = Counter32: 44 IF-MIB::ifOutErrors.2 = Counter32: 0 IF-MIB::ifOutErrors.3 = Counter32: 0 IF-MIB::ifOutErrors.4 = Counter32: 0 IF-MIB::ifOutErrors.5 = Counter32: 0 SNMPv2-SMI::mib-2.3.1.1.1.5.1.192.168.200.1 = INTEGER: 5 SNMPv2-SMI::mib-2.3.1.1.1.5.1.192.168.200.6 = INTEGER: 5 SNMPv2-SMI::mib-2.3.1.1.1.5.1.192.168.200.12 = INTEGER: 5 SNMPv2-SMI::mib-2.3.1.1.1.5.1.192.168.200.99 = INTEGER: 5 SNMPv2-SMI::mib-2.3.1.1.1.5.1.192.168.200.115 = INTEGER: 5 SNMPv2-SMI::mib-2.3.1.1.2.5.1.192.168.200.1 = Hex-STRING: 00 18 73 4C 3E C0 SNMPv2-SMI::mib-2.3.1.1.2.5.1.192.168.200.6 = Hex-STRING: 30 F7 0D F6 DE 4D SNMPv2-SMI::mib-2.3.1.1.2.5.1.192.168.200.12 = Hex-STRING: 00 0C 29 FE ED 1C SNMPv2-SMI::mib-2.3.1.1.2.5.1.192.168.200.99 = Hex-STRING: 18 03 73 27 D6 A1 SNMPv2-SMI::mib-2.3.1.1.2.5.1.192.168.200.115 = Hex-STRING: 00 0C 29 58 F6 79 SNMPv2-SMI::mib-2.3.1.1.3.5.1.192.168.200.1 = IpAddress: 192.168.200.1 SNMPv2-SMI::mib-2.3.1.1.3.5.1.192.168.200.6 = IpAddress: 192.168.200.6 SNMPv2-SMI::mib-2.3.1.1.3.5.1.192.168.200.12 = IpAddress: 192.168.200.12 SNMPv2-SMI::mib-2.3.1.1.3.5.1.192.168.200.99 = IpAddress: 192.168.200.99 SNMPv2-SMI::mib-2.3.1.1.3.5.1.192.168.200.115 = IpAddress: 192.168.200.115 IP-MIB::ipForwarding.0 = INTEGER: notForwarding(2) IP-MIB::ipDefaultTTL.0 = INTEGER: 255 IP-MIB::ipInReceives.0 = Counter32: 108259 IP-MIB::ipInHdrErrors.0 = Counter32: 0 IP-MIB::ipInAddrErrors.0 = Counter32: 0 IP-MIB::ipForwDatagrams.0 = Counter32: 0 IP-MIB::ipInUnknownProtos.0 = Counter32: 4927 IP-MIB::ipInDiscards.0 = Counter32: 0 IP-MIB::ipInDelivers.0 = Counter32: 108170 IP-MIB::ipOutRequests.0 = Counter32: 84820 IP-MIB::ipOutDiscards.0 = Counter32: 258 IP-MIB::ipOutNoRoutes.0 = Counter32: 0 IP-MIB::ipReasmTimeout.0 = INTEGER: 30 seconds IP-MIB::ipReasmReqds.0 = Counter32: 0 IP-MIB::ipReasmOKs.0 = Counter32: 0 IP-MIB::ipReasmFails.0 = Counter32: 0 IP-MIB::ipFragOKs.0 = Counter32: 0 IP-MIB::ipFragFails.0 = Counter32: 0 IP-MIB::ipFragCreates.0 = Counter32: 0 IP-MIB::ipAdEntAddr.192.168.200.6 = IpAddress: 192.168.200.6 IP-MIB::ipAdEntIfIndex.192.168.200.6 = INTEGER: 5 IP-MIB::ipAdEntNetMask.192.168.200.6 = IpAddress: 255.255.255.0 IP-MIB::ipAdEntBcastAddr.192.168.200.6 = INTEGER: 1 IP-MIB::ipAdEntReasmMaxSize.192.168.200.6 = INTEGER: 18024 IP-MIB::ipNetToMediaIfIndex.5.192.168.200.1 = INTEGER: 5 IP-MIB::ipNetToMediaIfIndex.5.192.168.200.6 = INTEGER: 5 IP-MIB::ipNetToMediaIfIndex.5.192.168.200.12 = INTEGER: 5 IP-MIB::ipNetToMediaIfIndex.5.192.168.200.99 = INTEGER: 5 IP-MIB::ipNetToMediaIfIndex.5.192.168.200.115 = INTEGER: 5 IP-MIB::ipNetToMediaPhysAddress.5.192.168.200.1 = STRING: 0:18:73:4c:3e:c0 IP-MIB::ipNetToMediaPhysAddress.5.192.168.200.6 = STRING: 30:f7:d:f6:de:4d IP-MIB::ipNetToMediaPhysAddress.5.192.168.200.12 = STRING: 0:c:29:fe:ed:1c IP-MIB::ipNetToMediaPhysAddress.5.192.168.200.99 = STRING: 18:3:73:27:d6:a1 IP-MIB::ipNetToMediaPhysAddress.5.192.168.200.115 = STRING: 0:c:29:58:f6:79 IP-MIB::ipNetToMediaNetAddress.5.192.168.200.1 = IpAddress: 192.168.200.1 IP-MIB::ipNetToMediaNetAddress.5.192.168.200.6 = IpAddress: 192.168.200.6 IP-MIB::ipNetToMediaNetAddress.5.192.168.200.12 = IpAddress: 192.168.200.12 IP-MIB::ipNetToMediaNetAddress.5.192.168.200.99 = IpAddress: 192.168.200.99 IP-MIB::ipNetToMediaNetAddress.5.192.168.200.115 = IpAddress: 192.168.200.115 IP-MIB::ipNetToMediaType.5.192.168.200.1 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.5.192.168.200.6 = INTEGER: static(4) IP-MIB::ipNetToMediaType.5.192.168.200.12 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.5.192.168.200.99 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.5.192.168.200.115 = INTEGER: dynamic(3) IP-MIB::ipRoutingDiscards.0 = Counter32: 0 IP-MIB::ipv4InterfaceTableLastChange.0 = Timeticks: (2731) 0:00:27.31 IP-MIB::ipv4InterfaceReasmMaxSize.5 = INTEGER: 18024 IP-MIB::ipv4InterfaceEnableStatus.5 = INTEGER: up(1) IP-MIB::ipv4InterfaceRetransmitTime.5 = Gauge32: 14400000 milliseconds IP-MIB::ipSystemStatsInReceives.ipv4 = Counter32: 108306 IP-MIB::ipSystemStatsHCInReceives.ipv4 = Counter64: 108307 IP-MIB::ipSystemStatsInOctets.ipv4 = Counter32: 12982062 IP-MIB::ipSystemStatsHCInOctets.ipv4 = Counter64: 12982136 IP-MIB::ipSystemStatsInHdrErrors.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsInNoRoutes.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsInAddrErrors.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsInUnknownProtos.ipv4 = Counter32: 4927 IP-MIB::ipSystemStatsInTruncatedPkts.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsInForwDatagrams.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsHCInForwDatagrams.ipv4 = Counter64: 0 IP-MIB::ipSystemStatsReasmReqds.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsReasmOKs.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsReasmFails.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsInDiscards.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsInDelivers.ipv4 = Counter32: 103299 IP-MIB::ipSystemStatsHCInDelivers.ipv4 = Counter64: 103300 IP-MIB::ipSystemStatsOutRequests.ipv4 = Counter32: 84877 IP-MIB::ipSystemStatsHCOutRequests.ipv4 = Counter64: 84878 IP-MIB::ipSystemStatsOutNoRoutes.ipv4 = Counter32: 1 IP-MIB::ipSystemStatsOutForwDatagrams.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsHCOutForwDatagrams.ipv4 = Counter64: 0 IP-MIB::ipSystemStatsOutDiscards.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsOutFragReqds.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsOutFragOKs.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsOutFragFails.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsOutFragCreates.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsOutTransmits.ipv4 = Counter32: 84887 IP-MIB::ipSystemStatsHCOutTransmits.ipv4 = Counter64: 84888 IP-MIB::ipSystemStatsOutOctets.ipv4 = Counter32: 11660413 IP-MIB::ipSystemStatsHCOutOctets.ipv4 = Counter64: 11660491 IP-MIB::ipSystemStatsInMcastPkts.ipv4 = Counter32: 4927 IP-MIB::ipSystemStatsHCInMcastPkts.ipv4 = Counter64: 4927 IP-MIB::ipSystemStatsInMcastOctets.ipv4 = Counter32: 226642 IP-MIB::ipSystemStatsHCInMcastOctets.ipv4 = Counter64: 226642 IP-MIB::ipSystemStatsOutMcastPkts.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsHCOutMcastPkts.ipv4 = Counter64: 0 IP-MIB::ipSystemStatsOutMcastOctets.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsHCOutMcastOctets.ipv4 = Counter64: 0 IP-MIB::ipSystemStatsInBcastPkts.ipv4 = Counter32: 18323 IP-MIB::ipSystemStatsHCInBcastPkts.ipv4 = Counter64: 18323 IP-MIB::ipSystemStatsOutBcastPkts.ipv4 = Counter32: 0 IP-MIB::ipSystemStatsHCOutBcastPkts.ipv4 = Counter64: 0 IP-MIB::ipSystemStatsDiscontinuityTime.ipv4 = Timeticks: (0) 0:00:00.00 IP-MIB::ipIfStatsInReceives.ipv4.5 = Counter32: 108350 IP-MIB::ipIfStatsHCInReceives.ipv4.5 = Counter64: 108351 IP-MIB::ipIfStatsInOctets.ipv4.5 = Counter32: 12985320 IP-MIB::ipIfStatsHCInOctets.ipv4.5 = Counter64: 12985395 IP-MIB::ipIfStatsInHdrErrors.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsInNoRoutes.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsInAddrErrors.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsInUnknownProtos.ipv4.5 = Counter32: 4927 IP-MIB::ipIfStatsInTruncatedPkts.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsInForwDatagrams.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsHCInForwDatagrams.ipv4.5 = Counter64: 0 IP-MIB::ipIfStatsReasmReqds.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsReasmOKs.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsReasmFails.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsInDiscards.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsInDelivers.ipv4.5 = Counter32: 103343 IP-MIB::ipIfStatsHCInDelivers.ipv4.5 = Counter64: 103344 IP-MIB::ipIfStatsOutRequests.ipv4.5 = Counter32: 84921 IP-MIB::ipIfStatsHCOutRequests.ipv4.5 = Counter64: 84922 IP-MIB::ipIfStatsOutForwDatagrams.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsHCOutForwDatagrams.ipv4.5 = Counter64: 0 IP-MIB::ipIfStatsOutDiscards.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsOutFragReqds.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsOutFragOKs.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsOutFragFails.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsOutFragCreates.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsOutTransmits.ipv4.5 = Counter32: 84930 IP-MIB::ipIfStatsHCOutTransmits.ipv4.5 = Counter64: 84931 IP-MIB::ipIfStatsOutOctets.ipv4.5 = Counter32: 11663703 IP-MIB::ipIfStatsHCOutOctets.ipv4.5 = Counter64: 11663782 IP-MIB::ipIfStatsInMcastPkts.ipv4.5 = Counter32: 4927 IP-MIB::ipIfStatsHCInMcastPkts.ipv4.5 = Counter64: 4927 IP-MIB::ipIfStatsInMcastOctets.ipv4.5 = Counter32: 226642 IP-MIB::ipIfStatsHCInMcastOctets.ipv4.5 = Counter64: 226642 IP-MIB::ipIfStatsOutMcastPkts.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsHCOutMcastPkts.ipv4.5 = Counter64: 0 IP-MIB::ipIfStatsOutMcastOctets.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsHCOutMcastOctets.ipv4.5 = Counter64: 0 IP-MIB::ipIfStatsInBcastPkts.ipv4.5 = Counter32: 18323 IP-MIB::ipIfStatsHCInBcastPkts.ipv4.5 = Counter64: 18323 IP-MIB::ipIfStatsOutBcastPkts.ipv4.5 = Counter32: 0 IP-MIB::ipIfStatsHCOutBcastPkts.ipv4.5 = Counter64: 0 IP-MIB::ipIfStatsDiscontinuityTime.ipv4.5 = Timeticks: (0) 0:00:00.00 IP-MIB::ipAddressPrefixOrigin.5.ipv4."192.168.200.0".24 = INTEGER: manual(2) IP-MIB::ipAddressPrefixOnLinkFlag.5.ipv4."192.168.200.0".24 = INTEGER: true(1) IP-MIB::ipAddressPrefixAutonomousFlag.5.ipv4."192.168.200.0".24 = INTEGER: false(2) IP-MIB::ipAddressPrefixAdvPreferredLifetime.5.ipv4."192.168.200.0".24 = Gauge32: 4294967295 seconds IP-MIB::ipAddressPrefixAdvValidLifetime.5.ipv4."192.168.200.0".24 = Gauge32: 4294967295 seconds IP-MIB::ipAddressSpinLock.0 = INTEGER: 0 IP-MIB::ipAddressIfIndex.ipv4."192.168.200.6" = INTEGER: 5 IP-MIB::ipAddressType.ipv4."192.168.200.6" = INTEGER: unicast(1) IP-MIB::ipAddressPrefix.ipv4."192.168.200.6" = OID: IP-MIB::ipAddressPrefixOrigin.5.ipv4."192.168.200.0".24 IP-MIB::ipAddressOrigin.ipv4."192.168.200.6" = INTEGER: manual(2) IP-MIB::ipAddressStatus.ipv4."192.168.200.6" = INTEGER: inaccessible(4) IP-MIB::ipAddressCreated.ipv4."192.168.200.6" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipAddressLastChanged.ipv4."192.168.200.6" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipAddressRowStatus.ipv4."192.168.200.6" = INTEGER: active(1) IP-MIB::ipAddressStorageType.ipv4."192.168.200.6" = INTEGER: nonVolatile(3) IP-MIB::ipNetToPhysicalPhysAddress.5.ipv4."192.168.200.1" = STRING: 0:18:73:4c:3e:c0 IP-MIB::ipNetToPhysicalPhysAddress.5.ipv4."192.168.200.6" = STRING: 30:f7:d:f6:de:4d IP-MIB::ipNetToPhysicalPhysAddress.5.ipv4."192.168.200.12" = STRING: 0:c:29:fe:ed:1c IP-MIB::ipNetToPhysicalPhysAddress.5.ipv4."192.168.200.99" = STRING: 18:3:73:27:d6:a1 IP-MIB::ipNetToPhysicalPhysAddress.5.ipv4."192.168.200.115" = STRING: 0:c:29:58:f6:79 IP-MIB::ipNetToPhysicalLastUpdated.5.ipv4."192.168.200.1" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipNetToPhysicalLastUpdated.5.ipv4."192.168.200.6" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipNetToPhysicalLastUpdated.5.ipv4."192.168.200.12" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipNetToPhysicalLastUpdated.5.ipv4."192.168.200.99" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipNetToPhysicalLastUpdated.5.ipv4."192.168.200.115" = Timeticks: (2731) 0:00:27.31 IP-MIB::ipNetToPhysicalType.5.ipv4."192.168.200.1" = INTEGER: dynamic(3) IP-MIB::ipNetToPhysicalType.5.ipv4."192.168.200.6" = INTEGER: static(4) IP-MIB::ipNetToPhysicalType.5.ipv4."192.168.200.12" = INTEGER: dynamic(3) IP-MIB::ipNetToPhysicalType.5.ipv4."192.168.200.99" = INTEGER: dynamic(3) IP-MIB::ipNetToPhysicalType.5.ipv4."192.168.200.115" = INTEGER: dynamic(3) IP-MIB::ipNetToPhysicalState.5.ipv4."192.168.200.1" = INTEGER: unknown(6) IP-MIB::ipNetToPhysicalState.5.ipv4."192.168.200.6" = INTEGER: unknown(6) IP-MIB::ipNetToPhysicalState.5.ipv4."192.168.200.12" = INTEGER: unknown(6) IP-MIB::ipNetToPhysicalState.5.ipv4."192.168.200.99" = INTEGER: unknown(6) IP-MIB::ipNetToPhysicalState.5.ipv4."192.168.200.115" = INTEGER: unknown(6) IP-MIB::ipNetToPhysicalRowStatus.5.ipv4."192.168.200.1" = INTEGER: active(1) IP-MIB::ipNetToPhysicalRowStatus.5.ipv4."192.168.200.6" = INTEGER: active(1) IP-MIB::ipNetToPhysicalRowStatus.5.ipv4."192.168.200.12" = INTEGER: active(1) IP-MIB::ipNetToPhysicalRowStatus.5.ipv4."192.168.200.99" = INTEGER: active(1) IP-MIB::ipNetToPhysicalRowStatus.5.ipv4."192.168.200.115" = INTEGER: active(1) IP-MIB::icmpInMsgs.0 = Counter32: 1440 IP-MIB::icmpInErrors.0 = Counter32: 0 IP-MIB::icmpInDestUnreachs.0 = Counter32: 35 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: 1405 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: 1405 IP-MIB::icmpOutErrors.0 = Counter32: 0 IP-MIB::icmpOutDestUnreachs.0 = Counter32: 0 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: 1405 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::icmpStatsInMsgs.ipv4 = Counter32: 1440 IP-MIB::icmpStatsInErrors.ipv4 = Counter32: 0 IP-MIB::icmpStatsOutMsgs.ipv4 = Counter32: 1405 IP-MIB::icmpStatsOutErrors.ipv4 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.0 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.1 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.2 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.3 = Counter32: 35 IP-MIB::icmpMsgStatsInPkts.ipv4.4 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.5 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.6 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.7 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.8 = Counter32: 1405 IP-MIB::icmpMsgStatsInPkts.ipv4.9 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.10 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.11 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.12 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.13 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.14 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.15 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.16 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.17 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.18 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.19 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.20 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.21 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.22 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.23 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.24 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.25 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.26 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.27 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.28 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.29 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.30 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.31 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.32 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.33 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.34 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.35 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.36 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.37 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.38 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.39 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.40 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.41 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.42 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.43 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.44 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.45 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.46 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.47 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.48 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.49 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.50 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.51 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.52 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.53 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.54 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.55 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.56 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.57 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.58 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.59 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.60 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.61 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.62 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.63 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.64 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.65 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.66 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.67 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.68 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.69 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.70 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.71 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.72 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.73 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.74 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.75 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.76 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.77 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.78 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.79 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.80 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.81 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.82 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.83 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.84 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.85 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.86 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.87 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.88 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.89 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.90 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.91 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.92 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.93 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.94 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.95 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.96 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.97 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.98 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.99 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.100 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.101 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.102 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.103 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.104 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.105 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.106 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.107 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.108 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.109 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.110 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.111 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.112 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.113 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.114 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.115 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.116 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.117 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.118 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.119 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.120 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.121 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.122 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.123 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.124 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.125 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.126 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.127 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.128 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.129 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.130 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.131 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.132 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.133 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.134 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.135 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.136 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.137 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.138 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.139 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.140 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.141 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.142 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.143 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.144 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.145 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.146 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.147 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.148 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.149 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.150 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.151 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.152 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.153 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.154 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.155 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.156 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.157 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.158 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.159 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.160 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.161 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.162 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.163 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.164 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.165 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.166 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.167 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.168 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.169 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.170 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.171 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.172 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.173 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.174 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.175 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.176 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.177 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.178 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.179 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.180 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.181 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.182 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.183 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.184 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.185 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.186 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.187 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.188 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.189 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.190 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.191 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.192 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.193 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.194 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.195 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.196 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.197 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.198 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.199 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.200 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.201 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.202 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.203 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.204 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.205 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.206 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.207 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.208 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.209 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.210 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.211 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.212 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.213 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.214 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.215 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.216 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.217 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.218 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.219 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.220 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.221 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.222 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.223 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.224 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.225 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.226 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.227 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.228 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.229 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.230 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.231 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.232 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.233 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.234 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.235 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.236 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.237 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.238 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.239 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.240 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.241 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.242 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.243 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.244 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.245 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.246 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.247 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.248 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.249 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.250 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.251 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.252 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.253 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.254 = Counter32: 0 IP-MIB::icmpMsgStatsInPkts.ipv4.255 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.0 = Counter32: 1405 IP-MIB::icmpMsgStatsOutPkts.ipv4.1 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.2 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.3 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.4 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.5 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.6 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.7 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.8 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.9 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.10 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.11 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.12 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.13 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.14 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.15 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.16 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.17 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.18 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.19 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.20 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.21 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.22 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.23 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.24 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.25 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.26 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.27 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.28 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.29 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.30 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.31 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.32 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.33 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.34 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.35 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.36 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.37 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.38 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.39 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.40 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.41 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.42 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.43 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.44 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.45 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.46 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.47 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.48 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.49 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.50 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.51 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.52 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.53 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.54 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.55 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.56 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.57 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.58 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.59 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.60 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.61 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.62 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.63 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.64 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.65 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.66 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.67 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.68 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.69 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.70 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.71 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.72 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.73 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.74 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.75 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.76 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.77 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.78 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.79 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.80 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.81 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.82 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.83 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.84 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.85 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.86 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.87 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.88 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.89 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.90 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.91 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.92 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.93 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.94 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.95 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.96 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.97 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.98 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.99 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.100 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.101 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.102 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.103 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.104 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.105 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.106 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.107 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.108 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.109 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.110 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.111 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.112 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.113 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.114 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.115 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.116 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.117 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.118 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.119 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.120 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.121 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.122 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.123 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.124 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.125 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.126 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.127 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.128 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.129 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.130 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.131 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.132 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.133 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.134 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.135 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.136 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.137 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.138 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.139 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.140 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.141 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.142 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.143 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.144 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.145 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.146 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.147 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.148 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.149 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.150 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.151 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.152 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.153 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.154 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.155 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.156 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.157 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.158 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.159 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.160 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.161 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.162 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.163 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.164 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.165 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.166 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.167 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.168 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.169 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.170 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.171 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.172 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.173 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.174 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.175 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.176 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.177 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.178 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.179 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.180 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.181 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.182 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.183 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.184 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.185 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.186 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.187 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.188 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.189 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.190 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.191 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.192 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.193 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.194 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.195 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.196 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.197 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.198 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.199 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.200 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.201 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.202 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.203 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.204 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.205 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.206 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.207 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.208 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.209 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.210 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.211 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.212 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.213 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.214 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.215 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.216 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.217 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.218 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.219 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.220 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.221 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.222 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.223 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.224 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.225 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.226 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.227 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.228 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.229 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.230 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.231 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.232 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.233 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.234 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.235 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.236 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.237 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.238 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.239 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.240 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.241 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.242 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.243 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.244 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.245 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.246 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.247 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.248 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.249 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.250 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.251 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.252 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.253 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.254 = Counter32: 0 IP-MIB::icmpMsgStatsOutPkts.ipv4.255 = Counter32: 0 TCP-MIB::tcpRtoAlgorithm.0 = INTEGER: rfc2988(5) TCP-MIB::tcpRtoMin.0 = INTEGER: 1000 milliseconds TCP-MIB::tcpRtoMax.0 = INTEGER: 60000 milliseconds TCP-MIB::tcpMaxConn.0 = INTEGER: -1 TCP-MIB::tcpActiveOpens.0 = Counter32: 0 TCP-MIB::tcpPassiveOpens.0 = Counter32: 6 TCP-MIB::tcpAttemptFails.0 = Counter32: 0 TCP-MIB::tcpEstabResets.0 = Counter32: 0 TCP-MIB::tcpCurrEstab.0 = Gauge32: 0 TCP-MIB::tcpInSegs.0 = Counter32: 840 TCP-MIB::tcpOutSegs.0 = Counter32: 633 TCP-MIB::tcpRetransSegs.0 = Counter32: 0 TCP-MIB::tcpInErrs.0 = Counter32: 0 TCP-MIB::tcpOutRsts.0 = Counter32: 0 TCP-MIB::tcpHCInSegs.0 = Counter64: 840 TCP-MIB::tcpHCOutSegs.0 = Counter64: 633 TCP-MIB::tcpListenerProcess.unknown."".80 = Gauge32: 117 TCP-MIB::tcpListenerProcess.unknown."".37540 = Gauge32: 37 TCP-MIB::tcpListenerProcess.unknown."".37550 = Gauge32: 38 UDP-MIB::udpInDatagrams.0 = Counter32: 88265 UDP-MIB::udpNoPorts.0 = Counter32: 13427 UDP-MIB::udpInErrors.0 = Counter32: 0 UDP-MIB::udpOutDatagrams.0 = Counter32: 83513 UDP-MIB::udpLocalAddress.192.168.200.6.123 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.161 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.162 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.1645 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.1646 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.1812 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.1813 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.2887 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.53913 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.54128 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.64227 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalAddress.192.168.200.6.64530 = IpAddress: 192.168.200.6 UDP-MIB::udpLocalPort.192.168.200.6.123 = INTEGER: 123 UDP-MIB::udpLocalPort.192.168.200.6.161 = INTEGER: 161 UDP-MIB::udpLocalPort.192.168.200.6.162 = INTEGER: 162 UDP-MIB::udpLocalPort.192.168.200.6.1645 = INTEGER: 1645 UDP-MIB::udpLocalPort.192.168.200.6.1646 = INTEGER: 1646 UDP-MIB::udpLocalPort.192.168.200.6.1812 = INTEGER: 1812 UDP-MIB::udpLocalPort.192.168.200.6.1813 = INTEGER: 1813 UDP-MIB::udpLocalPort.192.168.200.6.2887 = INTEGER: 2887 UDP-MIB::udpLocalPort.192.168.200.6.53913 = INTEGER: 53913 UDP-MIB::udpLocalPort.192.168.200.6.54128 = INTEGER: 54128 UDP-MIB::udpLocalPort.192.168.200.6.64227 = INTEGER: 64227 UDP-MIB::udpLocalPort.192.168.200.6.64530 = INTEGER: 64530 UDP-MIB::udpEndpointProcess.unknown."".123.unknown."".123.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".161.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".162.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".546.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".1645.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".1646.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".1813.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".2887.unknown."".2887.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".57912.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.unknown."".64227.unknown."".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".123.ipv4."0.0.0.0".123.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".161.ipv4."192.168.200.115".53842.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".162.ipv4."0.0.0.0".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".1645.ipv4."0.0.0.0".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".1646.ipv4."0.0.0.0".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".1812.ipv4."192.168.200.6".1645.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".1813.ipv4."0.0.0.0".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".2887.ipv4."0.0.0.0".2887.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".53913.ipv4."192.168.200.17".162.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".54128.ipv4."192.168.200.12".514.1 = Gauge32: 158 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".64227.ipv4."0.0.0.0".0.1 = Gauge32: 0 UDP-MIB::udpEndpointProcess.ipv4."192.168.200.6".64530.ipv4."192.168.200.12".162.1 = Gauge32: 0 UDP-MIB::udpHCInDatagrams.0 = Counter64: 88315 UDP-MIB::udpHCOutDatagrams.0 = Counter64: 83561 EtherLike-MIB::dot3StatsIndex.1 = INTEGER: 1 EtherLike-MIB::dot3StatsIndex.2 = INTEGER: 2 EtherLike-MIB::dot3StatsIndex.3 = INTEGER: 3 EtherLike-MIB::dot3StatsAlignmentErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsAlignmentErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsAlignmentErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsFCSErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsFCSErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsFCSErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsSingleCollisionFrames.1 = Counter32: 0 EtherLike-MIB::dot3StatsSingleCollisionFrames.2 = Counter32: 0 EtherLike-MIB::dot3StatsSingleCollisionFrames.3 = Counter32: 0 EtherLike-MIB::dot3StatsMultipleCollisionFrames.1 = Counter32: 0 EtherLike-MIB::dot3StatsMultipleCollisionFrames.2 = Counter32: 0 EtherLike-MIB::dot3StatsMultipleCollisionFrames.3 = Counter32: 0 EtherLike-MIB::dot3StatsSQETestErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsSQETestErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsSQETestErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsDeferredTransmissions.1 = Counter32: 0 EtherLike-MIB::dot3StatsDeferredTransmissions.2 = Counter32: 0 EtherLike-MIB::dot3StatsDeferredTransmissions.3 = Counter32: 0 EtherLike-MIB::dot3StatsLateCollisions.1 = Counter32: 0 EtherLike-MIB::dot3StatsLateCollisions.2 = Counter32: 0 EtherLike-MIB::dot3StatsLateCollisions.3 = Counter32: 0 EtherLike-MIB::dot3StatsExcessiveCollisions.1 = Counter32: 0 EtherLike-MIB::dot3StatsExcessiveCollisions.2 = Counter32: 0 EtherLike-MIB::dot3StatsExcessiveCollisions.3 = Counter32: 0 EtherLike-MIB::dot3StatsInternalMacTransmitErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsInternalMacTransmitErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsInternalMacTransmitErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsCarrierSenseErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsCarrierSenseErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsCarrierSenseErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsFrameTooLongs.1 = Counter32: 0 EtherLike-MIB::dot3StatsFrameTooLongs.2 = Counter32: 0 EtherLike-MIB::dot3StatsFrameTooLongs.3 = Counter32: 0 EtherLike-MIB::dot3StatsInternalMacReceiveErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsInternalMacReceiveErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsInternalMacReceiveErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsEtherChipSet.1 = OID: SNMPv2-SMI::zeroDotZero EtherLike-MIB::dot3StatsEtherChipSet.2 = OID: SNMPv2-SMI::zeroDotZero EtherLike-MIB::dot3StatsEtherChipSet.3 = OID: SNMPv2-SMI::zeroDotZero EtherLike-MIB::dot3StatsSymbolErrors.1 = Counter32: 0 EtherLike-MIB::dot3StatsSymbolErrors.2 = Counter32: 0 EtherLike-MIB::dot3StatsSymbolErrors.3 = Counter32: 0 EtherLike-MIB::dot3StatsDuplexStatus.1 = INTEGER: unknown(1) EtherLike-MIB::dot3StatsDuplexStatus.2 = INTEGER: unknown(1) EtherLike-MIB::dot3StatsDuplexStatus.3 = INTEGER: fullDuplex(3) SNMPv2-MIB::snmpInPkts.0 = Counter32: 11836 SNMPv2-MIB::snmpOutPkts.0 = Counter32: 12018 SNMPv2-MIB::snmpInBadVersions.0 = Counter32: 0 SNMPv2-MIB::snmpInBadCommunityNames.0 = Counter32: 0 SNMPv2-MIB::snmpInBadCommunityUses.0 = Counter32: 0 SNMPv2-MIB::snmpInASNParseErrs.0 = Counter32: 0 SNMPv2-MIB::snmpInTooBigs.0 = Counter32: 0 SNMPv2-MIB::snmpInNoSuchNames.0 = Counter32: 0 SNMPv2-MIB::snmpInBadValues.0 = Counter32: 0 SNMPv2-MIB::snmpInReadOnlys.0 = Counter32: 0 SNMPv2-MIB::snmpInGenErrs.0 = Counter32: 0 SNMPv2-MIB::snmpInTotalReqVars.0 = Counter32: 19394 SNMPv2-MIB::snmpInTotalSetVars.0 = Counter32: 0 SNMPv2-MIB::snmpInGetRequests.0 = Counter32: 9084 SNMPv2-MIB::snmpInGetNexts.0 = Counter32: 2400 SNMPv2-MIB::snmpInSetRequests.0 = Counter32: 0 SNMPv2-MIB::snmpInGetResponses.0 = Counter32: 0 SNMPv2-MIB::snmpInTraps.0 = Counter32: 0 SNMPv2-MIB::snmpOutTooBigs.0 = Counter32: 0 SNMPv2-MIB::snmpOutNoSuchNames.0 = Counter32: 0 SNMPv2-MIB::snmpOutBadValues.0 = Counter32: 0 SNMPv2-MIB::snmpOutGenErrs.0 = Counter32: 0 SNMPv2-MIB::snmpOutGetRequests.0 = Counter32: 0 SNMPv2-MIB::snmpOutGetNexts.0 = Counter32: 0 SNMPv2-MIB::snmpOutSetRequests.0 = Counter32: 0 SNMPv2-MIB::snmpOutGetResponses.0 = Counter32: 11860 SNMPv2-MIB::snmpOutTraps.0 = Counter32: 182 SNMPv2-MIB::snmpEnableAuthenTraps.0 = INTEGER: enabled(1) SNMPv2-MIB::snmpSilentDrops.0 = Counter32: 0 SNMPv2-MIB::snmpProxyDrops.0 = Counter32: 0 SNMPv2-SMI::mib-2.17.1.1.0 = Hex-STRING: 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.1.2.0 = INTEGER: 3 SNMPv2-SMI::mib-2.17.1.3.0 = INTEGER: 4 SNMPv2-SMI::mib-2.17.1.4.1.1.2 = INTEGER: 2 SNMPv2-SMI::mib-2.17.1.4.1.1.3 = INTEGER: 3 SNMPv2-SMI::mib-2.17.1.4.1.1.4 = INTEGER: 4 SNMPv2-SMI::mib-2.17.1.4.1.2.2 = INTEGER: 1 SNMPv2-SMI::mib-2.17.1.4.1.2.3 = INTEGER: 2 SNMPv2-SMI::mib-2.17.1.4.1.2.4 = INTEGER: 3 SNMPv2-SMI::mib-2.17.1.4.1.3.2 = OID: SNMPv2-SMI::zeroDotZero SNMPv2-SMI::mib-2.17.1.4.1.3.3 = OID: SNMPv2-SMI::zeroDotZero SNMPv2-SMI::mib-2.17.1.4.1.3.4 = OID: SNMPv2-SMI::zeroDotZero SNMPv2-SMI::mib-2.17.1.4.1.4.2 = Counter32: 0 SNMPv2-SMI::mib-2.17.1.4.1.4.3 = Counter32: 0 SNMPv2-SMI::mib-2.17.1.4.1.4.4 = Counter32: 0 SNMPv2-SMI::mib-2.17.1.4.1.5.2 = Counter32: 0 SNMPv2-SMI::mib-2.17.1.4.1.5.3 = Counter32: 0 SNMPv2-SMI::mib-2.17.1.4.1.5.4 = Counter32: 0 SNMPv2-SMI::mib-2.17.2.15.1.1.2 = INTEGER: 2 SNMPv2-SMI::mib-2.17.2.15.1.1.3 = INTEGER: 3 SNMPv2-SMI::mib-2.17.2.15.1.1.4 = INTEGER: 4 SNMPv2-SMI::mib-2.17.2.15.1.2.2 = INTEGER: 128 SNMPv2-SMI::mib-2.17.2.15.1.2.3 = INTEGER: 128 SNMPv2-SMI::mib-2.17.2.15.1.2.4 = INTEGER: 128 SNMPv2-SMI::mib-2.17.2.15.1.3.2 = INTEGER: 1 SNMPv2-SMI::mib-2.17.2.15.1.3.3 = INTEGER: 1 SNMPv2-SMI::mib-2.17.2.15.1.3.4 = INTEGER: 1 SNMPv2-SMI::mib-2.17.2.15.1.4.2 = INTEGER: 2 SNMPv2-SMI::mib-2.17.2.15.1.4.3 = INTEGER: 2 SNMPv2-SMI::mib-2.17.2.15.1.4.4 = INTEGER: 2 SNMPv2-SMI::mib-2.17.2.15.1.5.2 = INTEGER: 33 SNMPv2-SMI::mib-2.17.2.15.1.5.3 = INTEGER: 33 SNMPv2-SMI::mib-2.17.2.15.1.5.4 = INTEGER: 4 SNMPv2-SMI::mib-2.17.2.15.1.6.2 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.2.15.1.6.3 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.2.15.1.6.4 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.2.15.1.7.2 = INTEGER: 0 SNMPv2-SMI::mib-2.17.2.15.1.7.3 = INTEGER: 0 SNMPv2-SMI::mib-2.17.2.15.1.7.4 = INTEGER: 0 SNMPv2-SMI::mib-2.17.2.15.1.8.2 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.2.15.1.8.3 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.2.15.1.8.4 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.2.15.1.9.2 = Hex-STRING: 00 00 SNMPv2-SMI::mib-2.17.2.15.1.9.3 = Hex-STRING: 00 00 SNMPv2-SMI::mib-2.17.2.15.1.9.4 = Hex-STRING: 00 00 SNMPv2-SMI::mib-2.17.2.15.1.10.2 = Counter32: 0 SNMPv2-SMI::mib-2.17.2.15.1.10.3 = Counter32: 0 SNMPv2-SMI::mib-2.17.2.15.1.10.4 = Counter32: 0 SNMPv2-SMI::mib-2.17.4.1.0 = Counter32: 0 SNMPv2-SMI::mib-2.17.4.2.0 = INTEGER: 300 SNMPv2-SMI::mib-2.17.4.3.1.1.0.157.107.230.220.63 = Hex-STRING: 00 9D 6B E6 DC 3F SNMPv2-SMI::mib-2.17.4.3.1.1.248.56.128.95.93.107 = Hex-STRING: F8 38 80 5F 5D 6B SNMPv2-SMI::mib-2.17.4.3.1.2.0.157.107.230.220.63 = INTEGER: 2 SNMPv2-SMI::mib-2.17.4.3.1.2.248.56.128.95.93.107 = INTEGER: 2 SNMPv2-SMI::mib-2.17.4.3.1.3.0.157.107.230.220.63 = INTEGER: 5 SNMPv2-SMI::mib-2.17.4.3.1.3.248.56.128.95.93.107 = INTEGER: 5 SNMPv2-SMI::mib-2.17.4.4.1.1.2 = INTEGER: 2 SNMPv2-SMI::mib-2.17.4.4.1.1.3 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.4.1.1.4 = INTEGER: 4 SNMPv2-SMI::mib-2.17.4.4.1.2.2 = INTEGER: 1510 SNMPv2-SMI::mib-2.17.4.4.1.2.3 = INTEGER: 1510 SNMPv2-SMI::mib-2.17.4.4.1.2.4 = INTEGER: 1510 SNMPv2-SMI::mib-2.17.4.4.1.3.2 = Counter32: 44983906 SNMPv2-SMI::mib-2.17.4.4.1.3.3 = Counter32: 0 SNMPv2-SMI::mib-2.17.4.4.1.3.4 = Counter32: 56304133 SNMPv2-SMI::mib-2.17.4.4.1.4.2 = Counter32: 55713851 SNMPv2-SMI::mib-2.17.4.4.1.4.3 = Counter32: 0 SNMPv2-SMI::mib-2.17.4.4.1.4.4 = Counter32: 3 SNMPv2-SMI::mib-2.17.4.4.1.5.2 = Counter32: 0 SNMPv2-SMI::mib-2.17.4.4.1.5.3 = Counter32: 0 SNMPv2-SMI::mib-2.17.4.4.1.5.4 = Counter32: 0 SNMPv2-SMI::mib-2.17.7.1.1.1.0 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.1.2.0 = INTEGER: 4095 SNMPv2-SMI::mib-2.17.7.1.1.3.0 = Gauge32: 16 SNMPv2-SMI::mib-2.17.7.1.1.4.0 = Gauge32: 0 SNMPv2-SMI::mib-2.17.7.1.1.5.0 = INTEGER: 2 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.2 = INTEGER: 0 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.3 = INTEGER: 0 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.4 = INTEGER: 0 IF-MIB::ifName.1 = STRING: Do0 IF-MIB::ifName.2 = STRING: Do1 IF-MIB::ifName.3 = STRING: Gi0 IF-MIB::ifName.4 = STRING: Nu0 IF-MIB::ifName.5 = STRING: BV1 IF-MIB::ifInMulticastPkts.1 = Counter32: 2 IF-MIB::ifInMulticastPkts.2 = Counter32: 0 IF-MIB::ifInMulticastPkts.3 = Counter32: 14850 IF-MIB::ifInMulticastPkts.4 = Counter32: 0 IF-MIB::ifInMulticastPkts.5 = Counter32: 0 IF-MIB::ifInBroadcastPkts.1 = Counter32: 20330 IF-MIB::ifInBroadcastPkts.2 = Counter32: 0 IF-MIB::ifInBroadcastPkts.3 = Counter32: 568905 IF-MIB::ifInBroadcastPkts.4 = Counter32: 0 IF-MIB::ifInBroadcastPkts.5 = Counter32: 0 IF-MIB::ifOutMulticastPkts.1 = Counter32: 345335 IF-MIB::ifOutMulticastPkts.2 = Counter32: 0 IF-MIB::ifOutMulticastPkts.3 = Counter32: 83892 IF-MIB::ifOutMulticastPkts.4 = Counter32: 0 IF-MIB::ifOutMulticastPkts.5 = Counter32: 61952 IF-MIB::ifOutBroadcastPkts.1 = Counter32: 111120 IF-MIB::ifOutBroadcastPkts.2 = Counter32: 0 IF-MIB::ifOutBroadcastPkts.3 = Counter32: 2460 IF-MIB::ifOutBroadcastPkts.4 = Counter32: 0 IF-MIB::ifOutBroadcastPkts.5 = Counter32: 490 IF-MIB::ifHCInOctets.1 = Counter64: 7799840640 IF-MIB::ifHCInOctets.2 = Counter64: 297094256 IF-MIB::ifHCInOctets.3 = Counter64: 67836921309 IF-MIB::ifHCInOctets.5 = Counter64: 12401348 IF-MIB::ifHCInUcastPkts.1 = Counter64: 50697794 IF-MIB::ifHCInUcastPkts.2 = Counter64: 721072 IF-MIB::ifHCInUcastPkts.3 = Counter64: 55873297 IF-MIB::ifHCInUcastPkts.5 = Counter64: 81588 IF-MIB::ifHCInMulticastPkts.1 = Counter64: 2 IF-MIB::ifHCInMulticastPkts.2 = Counter64: 0 IF-MIB::ifHCInMulticastPkts.3 = Counter64: 14850 IF-MIB::ifHCInMulticastPkts.5 = Counter64: 0 IF-MIB::ifHCInBroadcastPkts.1 = Counter64: 20330 IF-MIB::ifHCInBroadcastPkts.2 = Counter64: 0 IF-MIB::ifHCInBroadcastPkts.3 = Counter64: 568905 IF-MIB::ifHCInBroadcastPkts.5 = Counter64: 0 IF-MIB::ifHCOutOctets.1 = Counter64: 69256537056 IF-MIB::ifHCOutOctets.2 = Counter64: 0 IF-MIB::ifHCOutOctets.3 = Counter64: 6453512117 IF-MIB::ifHCOutOctets.5 = Counter64: 12401528 IF-MIB::ifHCOutUcastPkts.1 = Counter64: 55723852 IF-MIB::ifHCOutUcastPkts.2 = Counter64: 0 IF-MIB::ifHCOutUcastPkts.3 = Counter64: 44981077 IF-MIB::ifHCOutUcastPkts.5 = Counter64: 19149 IF-MIB::ifHCOutMulticastPkts.1 = Counter64: 345335 IF-MIB::ifHCOutMulticastPkts.2 = Counter64: 0 IF-MIB::ifHCOutMulticastPkts.3 = Counter64: 83892 IF-MIB::ifHCOutMulticastPkts.5 = Counter64: 61952 IF-MIB::ifHCOutBroadcastPkts.1 = Counter64: 111120 IF-MIB::ifHCOutBroadcastPkts.2 = Counter64: 0 IF-MIB::ifHCOutBroadcastPkts.3 = Counter64: 2460 IF-MIB::ifHCOutBroadcastPkts.5 = Counter64: 490 IF-MIB::ifLinkUpDownTrapEnable.1 = INTEGER: enabled(1) IF-MIB::ifLinkUpDownTrapEnable.2 = INTEGER: enabled(1) IF-MIB::ifLinkUpDownTrapEnable.3 = INTEGER: enabled(1) IF-MIB::ifLinkUpDownTrapEnable.4 = INTEGER: enabled(1) IF-MIB::ifLinkUpDownTrapEnable.5 = INTEGER: enabled(1) IF-MIB::ifHighSpeed.1 = Gauge32: 54 IF-MIB::ifHighSpeed.2 = Gauge32: 54 IF-MIB::ifHighSpeed.3 = Gauge32: 1000 IF-MIB::ifHighSpeed.4 = Gauge32: 10000 IF-MIB::ifHighSpeed.5 = Gauge32: 54 IF-MIB::ifPromiscuousMode.1 = INTEGER: false(2) IF-MIB::ifPromiscuousMode.2 = INTEGER: false(2) IF-MIB::ifPromiscuousMode.3 = INTEGER: false(2) IF-MIB::ifPromiscuousMode.4 = INTEGER: false(2) IF-MIB::ifPromiscuousMode.5 = INTEGER: false(2) IF-MIB::ifConnectorPresent.1 = INTEGER: true(1) IF-MIB::ifConnectorPresent.2 = INTEGER: true(1) IF-MIB::ifConnectorPresent.3 = INTEGER: true(1) IF-MIB::ifConnectorPresent.4 = INTEGER: false(2) IF-MIB::ifConnectorPresent.5 = INTEGER: false(2) IF-MIB::ifAlias.1 = STRING: IF-MIB::ifAlias.2 = STRING: IF-MIB::ifAlias.3 = STRING: IF-MIB::ifAlias.4 = STRING: IF-MIB::ifAlias.5 = STRING: LAN interface IF-MIB::ifCounterDiscontinuityTime.1 = Timeticks: (0) 0:00:00.00 IF-MIB::ifCounterDiscontinuityTime.2 = Timeticks: (0) 0:00:00.00 IF-MIB::ifCounterDiscontinuityTime.3 = Timeticks: (0) 0:00:00.00 IF-MIB::ifCounterDiscontinuityTime.4 = Timeticks: (0) 0:00:00.00 IF-MIB::ifCounterDiscontinuityTime.5 = Timeticks: (0) 0:00:00.00 IF-MIB::ifStackStatus.0.1 = INTEGER: active(1) IF-MIB::ifStackStatus.0.2 = INTEGER: active(1) IF-MIB::ifStackStatus.0.3 = INTEGER: active(1) IF-MIB::ifStackStatus.0.4 = INTEGER: active(1) IF-MIB::ifStackStatus.0.5 = INTEGER: active(1) IF-MIB::ifStackStatus.1.0 = INTEGER: active(1) IF-MIB::ifStackStatus.2.0 = INTEGER: active(1) IF-MIB::ifStackStatus.3.0 = INTEGER: active(1) IF-MIB::ifStackStatus.4.0 = INTEGER: active(1) IF-MIB::ifStackStatus.5.0 = INTEGER: active(1) IF-MIB::ifRcvAddressStatus.1.".uV..." = INTEGER: active(1) IF-MIB::ifRcvAddressStatus.1."......" = INTEGER: active(1) IF-MIB::ifRcvAddressStatus.2.".uV .." = INTEGER: active(1) IF-MIB::ifRcvAddressStatus.2."......" = INTEGER: active(1) IF-MIB::ifRcvAddressStatus.3."0....M" = INTEGER: active(1) IF-MIB::ifRcvAddressStatus.3."......" = INTEGER: active(1) IF-MIB::ifRcvAddressType.1.".uV..." = INTEGER: other(1) IF-MIB::ifRcvAddressType.1."......" = INTEGER: other(1) IF-MIB::ifRcvAddressType.2.".uV .." = INTEGER: other(1) IF-MIB::ifRcvAddressType.2."......" = INTEGER: other(1) IF-MIB::ifRcvAddressType.3."0....M" = INTEGER: other(1) IF-MIB::ifRcvAddressType.3."......" = INTEGER: other(1) IF-MIB::ifTableLastChange.0 = Timeticks: (2731) 0:00:27.31 IF-MIB::ifStackLastChange.0 = Timeticks: (2731) 0:00:27.31 SNMPv2-SMI::mib-2.47.1.1.1.1.2.1 = STRING: "Cisco Aironet 3600 Series (IEEE 802.11n) Access Point" SNMPv2-SMI::mib-2.47.1.1.1.1.2.2 = STRING: "802.11N 2.4GHz Radio" SNMPv2-SMI::mib-2.47.1.1.1.1.2.3 = STRING: "802.11N 5GHz Radio" SNMPv2-SMI::mib-2.47.1.1.1.1.2.4 = STRING: "PowerPC Ethernet" SNMPv2-SMI::mib-2.47.1.1.1.1.3.1 = OID: SNMPv2-SMI::enterprises.9.12.3.1.3.1 SNMPv2-SMI::mib-2.47.1.1.1.1.3.2 = OID: SNMPv2-SMI::enterprises.9.12.3.1.10.302 SNMPv2-SMI::mib-2.47.1.1.1.1.3.3 = OID: SNMPv2-SMI::enterprises.9.12.3.1.10.302 SNMPv2-SMI::mib-2.47.1.1.1.1.3.4 = OID: SNMPv2-SMI::enterprises.9.12.3.1.10.100 SNMPv2-SMI::mib-2.47.1.1.1.1.4.1 = INTEGER: 0 SNMPv2-SMI::mib-2.47.1.1.1.1.4.2 = INTEGER: 1 SNMPv2-SMI::mib-2.47.1.1.1.1.4.3 = INTEGER: 1 SNMPv2-SMI::mib-2.47.1.1.1.1.4.4 = INTEGER: 1 SNMPv2-SMI::mib-2.47.1.1.1.1.5.1 = INTEGER: 3 SNMPv2-SMI::mib-2.47.1.1.1.1.5.2 = INTEGER: 10 SNMPv2-SMI::mib-2.47.1.1.1.1.5.3 = INTEGER: 10 SNMPv2-SMI::mib-2.47.1.1.1.1.5.4 = INTEGER: 10 SNMPv2-SMI::mib-2.47.1.1.1.1.6.1 = INTEGER: -1 SNMPv2-SMI::mib-2.47.1.1.1.1.6.2 = INTEGER: 0 SNMPv2-SMI::mib-2.47.1.1.1.1.6.3 = INTEGER: 1 SNMPv2-SMI::mib-2.47.1.1.1.1.6.4 = INTEGER: -1 SNMPv2-SMI::mib-2.47.1.1.1.1.7.1 = STRING: "AP3600" SNMPv2-SMI::mib-2.47.1.1.1.1.7.2 = STRING: "Dot11Radio0" SNMPv2-SMI::mib-2.47.1.1.1.1.7.3 = STRING: "Dot11Radio1" SNMPv2-SMI::mib-2.47.1.1.1.1.7.4 = STRING: "GigabitEthernet0" SNMPv2-SMI::mib-2.47.1.1.1.1.8.1 = STRING: "V01" SNMPv2-SMI::mib-2.47.1.1.1.1.8.2 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.8.3 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.8.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.9.1 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.9.2 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.9.3 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.9.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.10.1 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.10.2 = STRING: "410.1" SNMPv2-SMI::mib-2.47.1.1.1.1.10.3 = STRING: "410.1" SNMPv2-SMI::mib-2.47.1.1.1.1.10.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.11.1 = STRING: "FTX1632GLZT" SNMPv2-SMI::mib-2.47.1.1.1.1.11.2 = STRING: "FOC16313WZJ" SNMPv2-SMI::mib-2.47.1.1.1.1.11.3 = STRING: "FOC16313WZJ" SNMPv2-SMI::mib-2.47.1.1.1.1.11.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.12.1 = STRING: "cisco" SNMPv2-SMI::mib-2.47.1.1.1.1.12.2 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.12.3 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.12.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.13.1 = STRING: "AIR-CAP3602I-A-K9 " SNMPv2-SMI::mib-2.47.1.1.1.1.13.2 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.13.3 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.13.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.14.1 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.14.2 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.14.3 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.14.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.15.1 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.15.2 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.15.3 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.15.4 = "" SNMPv2-SMI::mib-2.47.1.1.1.1.16.1 = INTEGER: 2 SNMPv2-SMI::mib-2.47.1.1.1.1.16.2 = INTEGER: 2 SNMPv2-SMI::mib-2.47.1.1.1.1.16.3 = INTEGER: 2 SNMPv2-SMI::mib-2.47.1.1.1.1.16.4 = INTEGER: 2 SNMPv2-SMI::mib-2.47.1.2.1.1.2.1 = STRING: "default logical entity for AIR-SAP3602I-A-K9 platform" SNMPv2-SMI::mib-2.47.1.2.1.1.3.1 = OID: SNMPv2-SMI::mib-2 SNMPv2-SMI::mib-2.47.1.2.1.1.4.1 = STRING: "public" SNMPv2-SMI::mib-2.47.1.2.1.1.5.1 = Hex-STRING: C0 A8 C8 06 00 A1 SNMPv2-SMI::mib-2.47.1.2.1.1.6.1 = OID: SNMPv2-TM::snmpUDPDomain SNMPv2-SMI::mib-2.47.1.2.1.1.7.1 = Hex-STRING: 80 00 00 09 03 00 88 75 56 1E A5 E0 SNMPv2-SMI::mib-2.47.1.2.1.1.8.1 = "" SNMPv2-SMI::mib-2.47.1.3.2.1.2.2.0 = OID: IF-MIB::ifIndex.1 SNMPv2-SMI::mib-2.47.1.3.2.1.2.3.0 = OID: IF-MIB::ifIndex.2 SNMPv2-SMI::mib-2.47.1.3.2.1.2.4.0 = OID: IF-MIB::ifIndex.3 SNMPv2-SMI::mib-2.47.1.3.3.1.1.1.2 = INTEGER: 2 SNMPv2-SMI::mib-2.47.1.3.3.1.1.1.3 = INTEGER: 3 SNMPv2-SMI::mib-2.47.1.3.3.1.1.1.4 = INTEGER: 4 SNMPv2-SMI::mib-2.47.1.4.1.0 = Timeticks: (2782) 0:00:27.82 NOTIFICATION-LOG-MIB::nlmConfigGlobalEntryLimit.0 = Gauge32: 500 NOTIFICATION-LOG-MIB::nlmConfigGlobalAgeOut.0 = Gauge32: 15 minutes NOTIFICATION-LOG-MIB::nlmStatsGlobalNotificationsLogged.0 = Counter32: 0 notifications NOTIFICATION-LOG-MIB::nlmStatsGlobalNotificationsBumped.0 = Counter32: 0 notifications

ycry008 commented 4 years ago

I revert back to 1.2.5 and it still not working.

[cacti@cactitemplate rra]$ ls -all total 12 drwxrwsr-x. 5 cacti apache 52 Oct 14 18:26 . drwxrwsr-x. 19 cacti apache 4096 Jul 15 13:16 .. drwxrwsr-x. 2 cacti apache 4096 Jan 3 2019 3 drwxrwsr-x. 2 cacti apache 6 Oct 14 18:28 4 drwxrwsr-x. 2 cacti apache 6 Jan 4 2019 archive -rwxrwxr-x. 1 cacti apache 170 Jul 15 13:16 .htaccess [cacti@cactitemplate rra]$ ls -all 4 total 0 drwxrwsr-x. 2 cacti apache 6 Oct 14 18:28 . drwxrwsr-x. 5 cacti apache 52 Oct 14 18:26 ..

image

image

image

ycry008 commented 4 years ago

i got it. I always been using Cisco LRE stats so it never working. not sure why, but I use In/Out Bits and it working.

image

image

ycry008 commented 4 years ago

please close this thread. it working now