SNMP


Nmap discovered a SNMP server on the target UDP port 161 Although It appears to be using the SNMP version 1 with the default community string, public, there is a mention of SNMPv3 Additionally, it also revealed the hostname of the target system as well as the kernel;

  • mentor
  • linux mentor 5.15.0-56-generic #62-ubuntu smp tue nov 22 19:54:14 UTC 2022 x86_64

there are 2 important versions of snmp:

  • snmpv1: Main one, it is still the most frequent, the authentication is based on a string (community string) that travels in plain-text (all the information travels in plain text). Version 2 and 2c send the traffic in plain text also and uses a community string as authentication.
  • snmpv3: Uses a better authentication form and the information travels encrypted using (dictionary attack could be performed but would be much harder to find the correct creds than in SNMPv1 and v2).

Community String


SNMP community strings leverage a user ID or password to access the router or other device information. SNMP community strings are only available with SNMPv1 and SNMPv2c protocols. SNMPv3 requires username/password authentication as well as an encryption key. Many SNMPv1 and SNMPv2c devices are shipped with a “public” read-only community string. Most network administrators customize the community strings in the device settings as a best practice.

Nmap


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ sudo nmap -sU --script snmp-brute -p161 $IP 
starting nmap 7.94 ( https://nmap.org ) at 2023-12-27 11:12 CET
Nmap scan report for mentorquotes.htb (10.10.11.193)
Host is up (0.030s latency).
 
PORT    STATE SERVICE
161/udp open  snmp
| snmp-brute: 
|_  public - Valid credentials
 
nmap done: 1 IP address (1 host up) scanned in 1.53 seconds

Nmap already identified the community string as part of the simple script operation, but I can confirm the community string again by brute forcing it

hydra


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ hydra -P /usr/share/wordlists/seclists/Discovery/SNMP/snmp.txt snmp://$IP
Hydra v9.5 (c) 2023 by van Hauser/THC & David Maciejak - Please do not use in military or secret service organizations, or for illegal purposes (this is non-binding, these *** ignore laws and ethics anyway).
 
Hydra (https://github.com/vanhauser-thc/thc-hydra) starting at 2023-12-27 11:16:11
[DATA] max 16 tasks per 1 server, overall 16 tasks, 3217 login tries (l:1/p:3217), ~202 tries per task
[DATA] attacking snmp://10.10.11.193:161/
[161][snmp] host: 10.10.11.193   password: public
[STATUS] attack finished for 10.10.11.193 (valid pair found)
1 of 1 target successfully completed, 1 valid password found
Hydra (https://github.com/vanhauser-thc/thc-hydra) finished at 2023-12-27 11:16:12

It can also be done with hydra

onesixtyone


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ onesixtyone -c /usr/share/wordlists/seclists/Discovery/SNMP/snmp.txt $IP/24
Scanning 256 hosts, 3219 communities
10.10.11.193 [public] linux mentor 5.15.0-56-generic #62-ubuntu smp tue nov 22 19:54:14 UTC 2022 x86_64

onesixtyone. Another tool for brute-forcing community strings Although the tool is specialized for mass SNMP scanning, it doesn’t support specifying versions Notice the wildcard bit that I put after $IP variable

snmpbrute.py


snmpbrute.py is a Python script that can perform brute-forcing and enumeration for both SNMPv1 and SNMPv2c

┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ python3 snmpbrute.py -t $IP -p 161 -f /usr/share/wordlists/seclists/Discovery/SNMP/snmp.txt --linux --bruteonly
   _____ _   ____  _______     ____             __     
  / ___// | / /  |/  / __ \   / __ )_______  __/ /____ 
  \__ \/  |/ / /|_/ / /_/ /  / __  / ___/ / / / __/ _ \
 ___/ / /|  / /  / / ____/  / /_/ / /  / /_/ / /_/  __/
/____/_/ |_/_/  /_/_/      /_____/_/   \__,_/\__/\___/ 
 
SNMP Bruteforce & Enumeration Script v2.0
http://www.secforce.com / nikos.vassakis <at> secforce.com
###############################################################
 
Trying [...REDACTED...] community strings ...
10.10.11.193 : 161 	Version (v1):	public
10.10.11.193 : 161 	Version (v2c):	public
10.10.11.193 : 161 	Version (v2c):	internal
Waiting for late packets (CTRL+C to stop)
 
Trying identified strings for READ-WRITE ...
 
Identified Community strings
	0) 10.10.11.193    public (v1)(RO)
	1) 10.10.11.193    public (v2c)(RO)
	2) 10.10.11.193    internal (v2c)(RO)
Finished!

snmpbrute.py find an additional community string for SNMPv2c; internal

Enumeration


There are 2 notable tools when it comes to enumerating SNMP agents the first one is snmpwalk, which is part of the net-snmp suite. snmpwalk allows users to finely control the query. Users are able to query for a specific OID or MIB

the second one is snmp-check, which mainly focuses on general enumeration. snmp-check displays output in a much more user-friendlier manner compared to the first one.

public Community String


Since there’s been [[#[snmpbrute.py](https //github.com/SECFORCE/SNMP-Brute/blob/master/snmpbrute.py)|2 community strings]] identified earlier, enumeration attempt will be made separately The public community string works for both SNMPv1 and SNMPv2c

While separate enumeration efforts for each version would be necessary to ensure a thorough understanding of the target’s SNMP environment, it would appear that SNMPv2c contains the same MIB and OID structures that SNMPv1 uses. Therefore, the scope of enumeration focuses on SNMPv2c

SNMPv2c is designed to be backward-compatible with SNMPv1, meaning that almost all the information available through SNMPv1 is also available via SNMPv2c. SNMPv2c was developed with the idea of migration in mind, and it includes the SNMPv1 framework.

snmpwalk with public community string


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ snmpwalk -v 2c -c 'public' $IP 
snmpv2-mib::sysDescr.0 = STRING: Linux mentor 5.15.0-56-generic #62-Ubuntu SMP Tue Nov 22 19:54:14 UTC 2022 x86_64
snmpv2-mib::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10
disman-event-mib::sysUpTimeInstance = Timeticks: (1741245) 4:50:12.45
snmpv2-mib::sysContact.0 = STRING: Me <admin@mentorquotes.htb>
snmpv2-mib::sysName.0 = STRING: mentor
snmpv2-mib::sysLocation.0 = STRING: Sitting on the Dock of the Bay
snmpv2-mib::sysServices.0 = INTEGER: 72
snmpv2-mib::sysORLastChange.0 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORID.1 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance
snmpv2-mib::sysORID.2 = OID: SNMP-MPD-MIB::snmpMPDCompliance
snmpv2-mib::sysORID.3 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance
snmpv2-mib::sysORID.4 = OID: SNMPv2-MIB::snmpMIB
snmpv2-mib::sysORID.5 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup
snmpv2-mib::sysORID.6 = OID: TCP-MIB::tcpMIB
snmpv2-mib::sysORID.7 = OID: UDP-MIB::udpMIB
snmpv2-mib::sysORID.8 = OID: IP-MIB::ip
snmpv2-mib::sysORID.9 = OID: SNMP-NOTIFICATION-MIB::snmpNotifyFullCompliance
snmpv2-mib::sysORID.10 = OID: NOTIFICATION-LOG-MIB::notificationLogMIB
snmpv2-mib::sysORDescr.1 = STRING: The SNMP Management Architecture MIB.
snmpv2-mib::sysORDescr.2 = STRING: The MIB for Message Processing and Dispatching.
snmpv2-mib::sysORDescr.3 = STRING: The management information definitions for the SNMP User-based Security Model.
snmpv2-mib::sysORDescr.4 = STRING: The MIB module for SNMPv2 entities
snmpv2-mib::sysORDescr.5 = STRING: View-based Access Control Model for SNMP.
snmpv2-mib::sysORDescr.6 = STRING: The MIB module for managing TCP implementations
snmpv2-mib::sysORDescr.7 = STRING: The MIB module for managing UDP implementations
snmpv2-mib::sysORDescr.8 = STRING: The MIB module for managing IP and ICMP implementations
snmpv2-mib::sysORDescr.9 = STRING: The MIB modules for managing SNMP Notification, plus filtering.
snmpv2-mib::sysORDescr.10 = STRING: The MIB module for logging SNMP Notifications.
snmpv2-mib::sysORUpTime.1 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.2 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.3 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.4 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.5 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.6 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.7 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.8 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.9 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.10 = Timeticks: (2) 0:00:00.02
host-resources-mib::hrSystemUptime.0 = Timeticks: (1742922) 4:50:29.22
host-resources-mib::hrSystemDate.0 = STRING: 2023-12-27,13:5:3.0,+0:0
host-resources-mib::hrSystemInitialLoadDevice.0 = INTEGER: 393216
host-resources-mib::hrSystemInitialLoadParameters.0 = STRING: "BOOT_IMAGE=/vmlinuz-5.15.0-56-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro net.ifnames=0 biosdevname=0
"
host-resources-mib::hrSystemNumUsers.0 = Gauge32: 0
host-resources-mib::hrSystemProcesses.0 = Gauge32: 230
host-resources-mib::hrSystemMaxProcesses.0 = INTEGER: 0
host-resources-mib::hrSystemMaxProcesses.0 = No more variables left in this MIB View (It is past the end of the MIB tree)

Running snmpwalk with the public community string revealed a few MIBs with their respective OIDs While some of them contains some ambiguous information, the target SNMP server doesn’t appears to be configured to reveal every device information such as running processes or NICs Additionally, The NET-SNMP-EXTEND-MIB MIB is not available

snmp-check with public community string


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ snmp-check -p 161 -c public -v 2c $IP -w
snmp-check v1.9 - SNMP enumerator
Copyright (c) 2005-2015 by Matteo Cantoni (www.nothink.org)
 
[+] Try to connect to 10.10.11.193:161 using SNMPv2c and community 'public'
[+] Write access check enabled
 
[*] Write access not permitted!
[*] System information:
 
  Host IP address               : 10.10.11.193
  Hostname                      : mentor
  Description                   : Linux mentor 5.15.0-56-generic #62-Ubuntu SMP Tue Nov 22 19:54:14 UTC 2022 x86_64
  Contact                       : Me <admin@mentorquotes.htb>
  Location                      : Sitting on the Dock of the Bay
  Uptime snmp                   : 04:53:07.78
  Uptime system                 : 04:52:51.92
  System date                   : 2023-12-27 13:07:42.0
 
[*] Network information:
 
  Default TTL                   : noSuchObject
  TCP segments received         : noSuchObject
  TCP segments sent             : noSuchObject
  TCP segments retrans          : noSuchObject
  Input datagrams               : noSuchObject
  Delivered datagrams           : noSuchObject
  Output datagrams              : noSuchObject
 
[*] File system information:
 
  Index                         : noSuchObject
  Mount point                   : noSuchObject
  Access                        : noSuchObject
  Bootable                      : noSuchObject

snmp-check doesn’t reveal much information with the public community string as well Write access is not permitted either

snmpbrute.py with public community string


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ python3 snmpbrute.py -t $IP -p 161 -c public --linux --auto
   _____ _   ____  _______     ____             __     
  / ___// | / /  |/  / __ \   / __ )_______  __/ /____ 
  \__ \/  |/ / /|_/ / /_/ /  / __  / ___/ / / / __/ _ \
 ___/ / /|  / /  / / ____/  / /_/ / /  / /_/ / /_/  __/
/____/_/ |_/_/  /_/_/      /_____/_/   \__,_/\__/\___/ 
 
SNMP Bruteforce & Enumeration Script v2.0
http://www.secforce.com / nikos.vassakis <at> secforce.com
###############################################################
 
Trying ['public'] community strings ...
Waiting for late packets (CTRL+C to stop)
10.10.11.193 : 161 	Version (v1):	public
10.10.11.193 : 161 	Version (v2c):	public
 
Trying identified strings for READ-WRITE ...
 
Identified Community strings
	0) 10.10.11.193    public (v1)(RO)
	1) 10.10.11.193    public (v2c)(RO)
 
enumerating with read-write community string: public (v1)
################## enumerating running processes table using: 1.3.6.1.2.1.25.4.2.1.2 (Running Processes)
	INFO
	----	
	 End of MIB
 
 
################## enumerating system info table using: 1.3.6.1.2.1.1 (System Info)
	INFO
	----	
	 string: Linux mentor 5.15.0-56-generic #62-Ubuntu SMP Tue Nov 22 19:54:14 UTC 2022 x86_64
	 oid: NET-SNMP-MIB::netSnmpAgentOIDs.10
	 timeticks: (1770302) 4:55:03.02
	 string: Me <admin@mentorquotes.htb>
	 string: mentor
	 string: Sitting on the Dock of the Bay
	 integer: 72
	 timeticks: (2) 0:00:00.02
	 oid: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance
	 oid: SNMP-MPD-MIB::snmpMPDCompliance
	 oid: SNMP-USER-BASED-SM-MIB::usmMIBCompliance
	 oid: SNMPv2-MIB::snmpMIB
	 oid: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup
	 oid: TCP-MIB::tcpMIB
	 oid: UDP-MIB::udpMIB
	 oid: IP-MIB::ip
	 oid: SNMP-NOTIFICATION-MIB::snmpNotifyFullCompliance
	 oid: NOTIFICATION-LOG-MIB::notificationLogMIB
	 string: The SNMP Management Architecture MIB.
	 string: The MIB for Message Processing and Dispatching.
	 string: The management information definitions for the SNMP User-based Security Model.
	 string: The MIB module for SNMPv2 entities
	 string: View-based Access Control Model for SNMP.
	 string: The MIB module for managing TCP implementations
	 string: The MIB module for managing UDP implementations
	 string: The MIB module for managing IP and ICMP implementations
	 string: The MIB modules for managing SNMP Notification, plus filtering.
	 string: The MIB module for logging SNMP Notifications.
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
	 timeticks: (2) 0:00:00.02
 
 
################## enumerating hostname table using: 1.3.6.1.2.1.1.5 (Hostname)
	INFO
	----	
	 string: mentor
 
 
################## enumerating uptime table using: 1.3.6.1.2.1.1.3 (UpTime)
	INFO
	----	
	 timeticks: (1770405) 4:55:04.05
 
 
################## enumerating mountpoints table using: 1.3.6.1.2.1.25.2.3.1.3 (MountPoints)
	INFO
	----	
	 End of MIB
 
 
################## enumerating running software paths table using: 1.3.6.1.2.1.25.4.2.1.4 (Running Software Paths)
	INFO
	----	
	 End of MIB
 
 
################## enumerating listening udp ports table using: 1.3.6.1.2.1.7.5.1.2.0.0.0.0 (Listening UDP Ports)
	INFO
	----	
 
 
################## enumerating listening tcp ports table using: 1.3.6.1.2.1.6.13.1.3.0.0.0.0 (Listening TCP Ports)
	INFO
	----	

Pretty much the same result can be seen with snmpbrute.py

internal Community String


The [[#[snmpbrute.py](https //github.com/SECFORCE/SNMP-Brute/blob/master/snmpbrute.py)|identified]] internal community string only works with SNMP2vc

snmpwalk with internal community string


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ snmpwalk -v 2c -c 'internal' $IP
snmpv2-mib::sysDescr.0 = STRING: Linux mentor 5.15.0-56-generic #62-Ubuntu SMP Tue Nov 22 19:54:14 UTC 2022 x86_64
snmpv2-mib::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10
disman-event-mib::sysUpTimeInstance = Timeticks: (1749081) 4:51:30.81
snmpv2-mib::sysContact.0 = STRING: Me <admin@mentorquotes.htb>
snmpv2-mib::sysName.0 = STRING: mentor
snmpv2-mib::sysLocation.0 = STRING: Sitting on the Dock of the Bay
snmpv2-mib::sysServices.0 = INTEGER: 72
snmpv2-mib::sysORLastChange.0 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORID.1 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance
snmpv2-mib::sysORID.2 = OID: SNMP-MPD-MIB::snmpMPDCompliance
snmpv2-mib::sysORID.3 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance
snmpv2-mib::sysORID.4 = OID: SNMPv2-MIB::snmpMIB
snmpv2-mib::sysORID.5 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup
snmpv2-mib::sysORID.6 = OID: TCP-MIB::tcpMIB
snmpv2-mib::sysORID.7 = OID: UDP-MIB::udpMIB
snmpv2-mib::sysORID.8 = OID: IP-MIB::ip
snmpv2-mib::sysORID.9 = OID: SNMP-NOTIFICATION-MIB::snmpNotifyFullCompliance
snmpv2-mib::sysORID.10 = OID: NOTIFICATION-LOG-MIB::notificationLogMIB
snmpv2-mib::sysORDescr.1 = STRING: The SNMP Management Architecture MIB.
snmpv2-mib::sysORDescr.2 = STRING: The MIB for Message Processing and Dispatching.
snmpv2-mib::sysORDescr.3 = STRING: The management information definitions for the SNMP User-based Security Model.
snmpv2-mib::sysORDescr.4 = STRING: The MIB module for SNMPv2 entities
snmpv2-mib::sysORDescr.5 = STRING: View-based Access Control Model for SNMP.
snmpv2-mib::sysORDescr.6 = STRING: The MIB module for managing TCP implementations
snmpv2-mib::sysORDescr.7 = STRING: The MIB module for managing UDP implementations
snmpv2-mib::sysORDescr.8 = STRING: The MIB module for managing IP and ICMP implementations
snmpv2-mib::sysORDescr.9 = STRING: The MIB modules for managing SNMP Notification, plus filtering.
snmpv2-mib::sysORDescr.10 = STRING: The MIB module for logging SNMP Notifications.
snmpv2-mib::sysORUpTime.1 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.2 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.3 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.4 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.5 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.6 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.7 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.8 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.9 = Timeticks: (2) 0:00:00.02
snmpv2-mib::sysORUpTime.10 = Timeticks: (2) 0:00:00.02
if-mib::ifNumber.0 = INTEGER: 11
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::ifIndex.6 = INTEGER: 6
if-mib::ifIndex.7 = INTEGER: 7
if-mib::ifIndex.8 = INTEGER: 8
if-mib::ifIndex.10 = INTEGER: 10
if-mib::ifIndex.12 = INTEGER: 12
if-mib::ifIndex.14 = INTEGER: 14
if-mib::ifDescr.1 = STRING: lo
if-mib::ifDescr.2 = STRING: eth0
if-mib::ifDescr.3 = STRING: docker0
if-mib::ifDescr.4 = STRING: br-028c7a43f929
if-mib::ifDescr.5 = STRING: br-24ddaa1f3b47
if-mib::ifDescr.6 = STRING: br-3d63c18e314d
if-mib::ifDescr.7 = STRING: br-7d5c72654da7
if-mib::ifDescr.8 = STRING: br-a8a89c3bf6ff
if-mib::ifDescr.10 = STRING: veth846d49c
if-mib::ifDescr.12 = STRING: veth4346c47
if-mib::ifDescr.14 = STRING: veth6bf7fc2
if-mib::ifType.1 = INTEGER: softwareLoopback(24)
if-mib::ifType.2 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.3 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.4 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.5 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.6 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.7 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.8 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.10 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.12 = INTEGER: ethernetCsmacd(6)
if-mib::ifType.14 = INTEGER: ethernetCsmacd(6)
if-mib::ifMtu.1 = INTEGER: 65536
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::ifMtu.6 = INTEGER: 1500
if-mib::ifMtu.7 = INTEGER: 1500
if-mib::ifMtu.8 = INTEGER: 1500
if-mib::ifMtu.10 = INTEGER: 1500
if-mib::ifMtu.12 = INTEGER: 1500
if-mib::ifMtu.14 = INTEGER: 1500
if-mib::ifSpeed.1 = Gauge32: 10000000
if-mib::ifSpeed.2 = Gauge32: 4294967295
if-mib::ifSpeed.3 = Gauge32: 0
if-mib::ifSpeed.4 = Gauge32: 0
if-mib::ifSpeed.5 = Gauge32: 0
if-mib::ifSpeed.6 = Gauge32: 0
if-mib::ifSpeed.7 = Gauge32: 4294967295
if-mib::ifSpeed.8 = Gauge32: 0
if-mib::ifSpeed.10 = Gauge32: 4294967295
if-mib::ifSpeed.12 = Gauge32: 4294967295
if-mib::ifSpeed.14 = Gauge32: 4294967295
if-mib::ifPhysAddress.1 = STRING: 
if-mib::ifPhysAddress.2 = STRING: 0:50:56:b9:91:7
if-mib::ifPhysAddress.3 = STRING: 2:42:18:29:90:f5
if-mib::ifPhysAddress.4 = STRING: 2:42:32:2b:7d:96
if-mib::ifPhysAddress.5 = STRING: 2:42:3:d2:92:bc
if-mib::ifPhysAddress.6 = STRING: 2:42:8b:19:65:a
if-mib::ifPhysAddress.7 = STRING: 2:42:d6:1c:38:f7
if-mib::ifPhysAddress.8 = STRING: 2:42:2e:cc:23:33
if-mib::ifPhysAddress.10 = STRING: 16:d9:95:f5:fb:53
if-mib::ifPhysAddress.12 = STRING: aa:77:3b:f3:e1:5c
if-mib::ifPhysAddress.14 = STRING: be:ba:b:82:f3:5
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::ifAdminStatus.6 = INTEGER: up(1)
if-mib::ifAdminStatus.7 = INTEGER: up(1)
if-mib::ifAdminStatus.8 = INTEGER: up(1)
if-mib::ifAdminStatus.10 = INTEGER: up(1)
if-mib::ifAdminStatus.12 = INTEGER: up(1)
if-mib::ifAdminStatus.14 = INTEGER: up(1)
if-mib::ifOperStatus.1 = INTEGER: up(1)
if-mib::ifOperStatus.2 = INTEGER: up(1)
if-mib::ifOperStatus.3 = INTEGER: down(2)
if-mib::ifOperStatus.4 = INTEGER: down(2)
if-mib::ifOperStatus.5 = INTEGER: down(2)
if-mib::ifOperStatus.6 = INTEGER: down(2)
if-mib::ifOperStatus.7 = INTEGER: up(1)
if-mib::ifOperStatus.8 = INTEGER: down(2)
if-mib::ifOperStatus.10 = INTEGER: up(1)
if-mib::ifOperStatus.12 = INTEGER: up(1)
if-mib::ifOperStatus.14 = INTEGER: up(1)
if-mib::ifLastChange.1 = Timeticks: (0) 0:00:00.00
if-mib::ifLastChange.2 = Timeticks: (1226) 0:00:12.26
if-mib::ifLastChange.3 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.4 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.5 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.6 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.7 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.8 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.10 = Timeticks: (325) 0:00:03.25
if-mib::ifLastChange.12 = Timeticks: (625) 0:00:06.25
if-mib::ifLastChange.14 = Timeticks: (625) 0:00:06.25
if-mib::ifInOctets.1 = Counter32: 529094
if-mib::ifInOctets.2 = Counter32: 1289486965
if-mib::ifInOctets.3 = Counter32: 0
if-mib::ifInOctets.4 = Counter32: 0
if-mib::ifInOctets.5 = Counter32: 0
if-mib::ifInOctets.6 = Counter32: 0
if-mib::ifInOctets.7 = Counter32: 999117858
if-mib::ifInOctets.8 = Counter32: 0
if-mib::ifInOctets.10 = Counter32: 425859
if-mib::ifInOctets.12 = Counter32: 75007969
if-mib::ifInOctets.14 = Counter32: 1044821900
if-mib::ifInUcastPkts.1 = Counter32: 7468
if-mib::ifInUcastPkts.2 = Counter32: 11486394
if-mib::ifInUcastPkts.3 = Counter32: 0
if-mib::ifInUcastPkts.4 = Counter32: 0
if-mib::ifInUcastPkts.5 = Counter32: 0
if-mib::ifInUcastPkts.6 = Counter32: 0
if-mib::ifInUcastPkts.7 = Counter32: 8652705
if-mib::ifInUcastPkts.8 = Counter32: 0
if-mib::ifInUcastPkts.10 = Counter32: 2261
if-mib::ifInUcastPkts.12 = Counter32: 594400
if-mib::ifInUcastPkts.14 = Counter32: 8056044
if-mib::ifInNUcastPkts.1 = Counter32: 0
if-mib::ifInNUcastPkts.2 = Counter32: 2706
if-mib::ifInNUcastPkts.3 = Counter32: 0
if-mib::ifInNUcastPkts.4 = Counter32: 0
if-mib::ifInNUcastPkts.5 = Counter32: 0
if-mib::ifInNUcastPkts.6 = Counter32: 0
if-mib::ifInNUcastPkts.7 = Counter32: 0
if-mib::ifInNUcastPkts.8 = Counter32: 0
if-mib::ifInNUcastPkts.10 = Counter32: 0
if-mib::ifInNUcastPkts.12 = Counter32: 0
if-mib::ifInNUcastPkts.14 = Counter32: 0
if-mib::ifInDiscards.1 = Counter32: 0
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::ifInDiscards.6 = Counter32: 0
if-mib::ifInDiscards.7 = Counter32: 0
if-mib::ifInDiscards.8 = Counter32: 0
if-mib::ifInDiscards.10 = Counter32: 0
if-mib::ifInDiscards.12 = Counter32: 0
if-mib::ifInDiscards.14 = 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::ifInErrors.6 = Counter32: 0
if-mib::ifInErrors.7 = Counter32: 0
if-mib::ifInErrors.8 = Counter32: 0
if-mib::ifInErrors.10 = Counter32: 0
if-mib::ifInErrors.12 = Counter32: 0
if-mib::ifInErrors.14 = 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::ifInUnknownProtos.6 = Counter32: 0
if-mib::ifInUnknownProtos.7 = Counter32: 0
if-mib::ifInUnknownProtos.8 = Counter32: 0
if-mib::ifInUnknownProtos.10 = Counter32: 0
if-mib::ifInUnknownProtos.12 = Counter32: 0
if-mib::ifInUnknownProtos.14 = Counter32: 0
if-mib::ifOutOctets.1 = Counter32: 529094
if-mib::ifOutOctets.2 = Counter32: 2047467989
if-mib::ifOutOctets.3 = Counter32: 0
if-mib::ifOutOctets.4 = Counter32: 0
if-mib::ifOutOctets.5 = Counter32: 0
if-mib::ifOutOctets.6 = Counter32: 0
if-mib::ifOutOctets.7 = Counter32: 1097149984
if-mib::ifOutOctets.8 = Counter32: 0
if-mib::ifOutOctets.10 = Counter32: 470026
if-mib::ifOutOctets.12 = Counter32: 104605252
if-mib::ifOutOctets.14 = Counter32: 992080010
if-mib::ifOutUcastPkts.1 = Counter32: 7468
if-mib::ifOutUcastPkts.2 = Counter32: 11708691
if-mib::ifOutUcastPkts.3 = Counter32: 0
if-mib::ifOutUcastPkts.4 = Counter32: 0
if-mib::ifOutUcastPkts.5 = Counter32: 0
if-mib::ifOutUcastPkts.6 = Counter32: 0
if-mib::ifOutUcastPkts.7 = Counter32: 10758272
if-mib::ifOutUcastPkts.8 = Counter32: 0
if-mib::ifOutUcastPkts.10 = Counter32: 4139
if-mib::ifOutUcastPkts.12 = Counter32: 701039
if-mib::ifOutUcastPkts.14 = Counter32: 10053166
if-mib::ifOutNUcastPkts.1 = Counter32: 0
if-mib::ifOutNUcastPkts.2 = Counter32: 0
if-mib::ifOutNUcastPkts.3 = Counter32: 0
if-mib::ifOutNUcastPkts.4 = Counter32: 0
if-mib::ifOutNUcastPkts.5 = Counter32: 0
if-mib::ifOutNUcastPkts.6 = Counter32: 0
if-mib::ifOutNUcastPkts.7 = Counter32: 0
if-mib::ifOutNUcastPkts.8 = Counter32: 0
if-mib::ifOutNUcastPkts.10 = Counter32: 0
if-mib::ifOutNUcastPkts.12 = Counter32: 0
if-mib::ifOutNUcastPkts.14 = Counter32: 0
if-mib::ifOutDiscards.1 = Counter32: 0
if-mib::ifOutDiscards.2 = Counter32: 0
if-mib::ifOutDiscards.3 = Counter32: 0
if-mib::ifOutDiscards.4 = Counter32: 0
if-mib::ifOutDiscards.5 = Counter32: 0
if-mib::ifOutDiscards.6 = Counter32: 0
if-mib::ifOutDiscards.7 = Counter32: 0
if-mib::ifOutDiscards.8 = Counter32: 0
if-mib::ifOutDiscards.10 = Counter32: 0
if-mib::ifOutDiscards.12 = Counter32: 0
if-mib::ifOutDiscards.14 = Counter32: 0
if-mib::ifOutErrors.1 = Counter32: 0
if-mib::ifOutErrors.2 = Counter32: 0
if-mib::ifOutErrors.3 = Counter32: 0
if-mib::ifOutErrors.4 = Counter32: 0
if-mib::ifOutErrors.5 = Counter32: 0
if-mib::ifOutErrors.6 = Counter32: 0
if-mib::ifOutErrors.7 = Counter32: 0
if-mib::ifOutErrors.8 = Counter32: 0
if-mib::ifOutErrors.10 = Counter32: 0
if-mib::ifOutErrors.12 = Counter32: 0
if-mib::ifOutErrors.14 = Counter32: 0
if-mib::ifOutQLen.1 = Gauge32: 0
if-mib::ifOutQLen.2 = Gauge32: 0
if-mib::ifOutQLen.3 = Gauge32: 0
if-mib::ifOutQLen.4 = Gauge32: 0
if-mib::ifOutQLen.5 = Gauge32: 0
if-mib::ifOutQLen.6 = Gauge32: 0
if-mib::ifOutQLen.7 = Gauge32: 0
if-mib::ifOutQLen.8 = Gauge32: 0
if-mib::ifOutQLen.10 = Gauge32: 0
if-mib::ifOutQLen.12 = Gauge32: 0
if-mib::ifOutQLen.14 = Gauge32: 0
if-mib::ifSpecific.1 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.2 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.3 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.4 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.5 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.6 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.7 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.8 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.10 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.12 = OID: SNMPv2-SMI::zeroDotZero
if-mib::ifSpecific.14 = OID: SNMPv2-SMI::zeroDotZero
snmpv2-smi::mib-2.3.1.1.1.2.1.10.10.10.2 = INTEGER: 2
snmpv2-smi::mib-2.3.1.1.1.7.1.172.22.0.2 = INTEGER: 7
snmpv2-smi::mib-2.3.1.1.1.7.1.172.22.0.3 = INTEGER: 7
snmpv2-smi::mib-2.3.1.1.1.7.1.172.22.0.4 = INTEGER: 7
snmpv2-smi::mib-2.3.1.1.2.2.1.10.10.10.2 = Hex-STRING: 00 50 56 B9 10 14 
snmpv2-smi::mib-2.3.1.1.2.7.1.172.22.0.2 = Hex-STRING: 02 42 AC 16 00 02 
snmpv2-smi::mib-2.3.1.1.2.7.1.172.22.0.3 = Hex-STRING: 02 42 AC 16 00 03 
snmpv2-smi::mib-2.3.1.1.2.7.1.172.22.0.4 = Hex-STRING: 02 42 AC 16 00 04 
snmpv2-smi::mib-2.3.1.1.3.2.1.10.10.10.2 = IpAddress: 10.10.10.2
snmpv2-smi::mib-2.3.1.1.3.7.1.172.22.0.2 = IpAddress: 172.22.0.2
snmpv2-smi::mib-2.3.1.1.3.7.1.172.22.0.3 = IpAddress: 172.22.0.3
snmpv2-smi::mib-2.3.1.1.3.7.1.172.22.0.4 = IpAddress: 172.22.0.4
ip-mib::ipForwarding.0 = INTEGER: forwarding(1)
ip-mib::ipDefaultTTL.0 = INTEGER: 64
ip-mib::ipInReceives.0 = Counter32: 20025199
ip-mib::ipInHdrErrors.0 = Counter32: 0
ip-mib::ipInAddrErrors.0 = Counter32: 0
ip-mib::ipForwDatagrams.0 = Counter32: 0
ip-mib::ipInUnknownProtos.0 = Counter32: 0
ip-mib::ipInDiscards.0 = Counter32: 0
ip-mib::ipInDelivers.0 = Counter32: 20025119
ip-mib::ipOutRequests.0 = Counter32: 22473803
ip-mib::ipOutDiscards.0 = Counter32: 0
ip-mib::ipOutNoRoutes.0 = Counter32: 0
ip-mib::ipReasmTimeout.0 = INTEGER: 0 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.10.10.11.193 = IpAddress: 10.10.11.193
ip-mib::ipAdEntAddr.127.0.0.1 = IpAddress: 127.0.0.1
ip-mib::ipAdEntAddr.172.17.0.1 = IpAddress: 172.17.0.1
ip-mib::ipAdEntAddr.172.18.0.1 = IpAddress: 172.18.0.1
ip-mib::ipAdEntAddr.172.19.0.1 = IpAddress: 172.19.0.1
ip-mib::ipAdEntAddr.172.20.0.1 = IpAddress: 172.20.0.1
ip-mib::ipAdEntAddr.172.21.0.1 = IpAddress: 172.21.0.1
ip-mib::ipAdEntAddr.172.22.0.1 = IpAddress: 172.22.0.1
ip-mib::ipAdEntIfIndex.10.10.11.193 = INTEGER: 2
ip-mib::ipAdEntIfIndex.127.0.0.1 = INTEGER: 1
ip-mib::ipAdEntIfIndex.172.17.0.1 = INTEGER: 3
ip-mib::ipAdEntIfIndex.172.18.0.1 = INTEGER: 8
ip-mib::ipAdEntIfIndex.172.19.0.1 = INTEGER: 5
ip-mib::ipAdEntIfIndex.172.20.0.1 = INTEGER: 4
ip-mib::ipAdEntIfIndex.172.21.0.1 = INTEGER: 6
ip-mib::ipAdEntIfIndex.172.22.0.1 = INTEGER: 7
ip-mib::ipAdEntNetMask.10.10.11.193 = IpAddress: 255.255.254.0
ip-mib::ipAdEntNetMask.127.0.0.1 = IpAddress: 255.0.0.0
ip-mib::ipAdEntNetMask.172.17.0.1 = IpAddress: 255.255.0.0
ip-mib::ipAdEntNetMask.172.18.0.1 = IpAddress: 255.255.0.0
ip-mib::ipAdEntNetMask.172.19.0.1 = IpAddress: 255.255.0.0
ip-mib::ipAdEntNetMask.172.20.0.1 = IpAddress: 255.255.0.0
ip-mib::ipAdEntNetMask.172.21.0.1 = IpAddress: 255.255.0.0
ip-mib::ipAdEntNetMask.172.22.0.1 = IpAddress: 255.255.0.0
ip-mib::ipAdEntBcastAddr.10.10.11.193 = INTEGER: 1
ip-mib::ipAdEntBcastAddr.127.0.0.1 = INTEGER: 0
ip-mib::ipAdEntBcastAddr.172.17.0.1 = INTEGER: 1
ip-mib::ipAdEntBcastAddr.172.18.0.1 = INTEGER: 1
ip-mib::ipAdEntBcastAddr.172.19.0.1 = INTEGER: 1
ip-mib::ipAdEntBcastAddr.172.20.0.1 = INTEGER: 1
ip-mib::ipAdEntBcastAddr.172.21.0.1 = INTEGER: 1
ip-mib::ipAdEntBcastAddr.172.22.0.1 = INTEGER: 1
ip-mib::ip.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.1.10.10.10.0 = IpAddress: 10.10.10.0
ip-mib::ip.21.1.1.172.17.0.0 = IpAddress: 172.17.0.0
ip-mib::ip.21.1.1.172.18.0.0 = IpAddress: 172.18.0.0
ip-mib::ip.21.1.1.172.19.0.0 = IpAddress: 172.19.0.0
ip-mib::ip.21.1.1.172.20.0.0 = IpAddress: 172.20.0.0
ip-mib::ip.21.1.1.172.21.0.0 = IpAddress: 172.21.0.0
ip-mib::ip.21.1.1.172.22.0.0 = IpAddress: 172.22.0.0
ip-mib::ip.21.1.2.0.0.0.0 = INTEGER: 2
ip-mib::ip.21.1.2.10.10.10.0 = INTEGER: 2
ip-mib::ip.21.1.2.172.17.0.0 = INTEGER: 3
ip-mib::ip.21.1.2.172.18.0.0 = INTEGER: 8
ip-mib::ip.21.1.2.172.19.0.0 = INTEGER: 5
ip-mib::ip.21.1.2.172.20.0.0 = INTEGER: 4
ip-mib::ip.21.1.2.172.21.0.0 = INTEGER: 6
ip-mib::ip.21.1.2.172.22.0.0 = INTEGER: 7
ip-mib::ip.21.1.3.0.0.0.0 = INTEGER: 1
ip-mib::ip.21.1.3.10.10.10.0 = INTEGER: 0
ip-mib::ip.21.1.3.172.17.0.0 = INTEGER: 0
ip-mib::ip.21.1.3.172.18.0.0 = INTEGER: 0
ip-mib::ip.21.1.3.172.19.0.0 = INTEGER: 0
ip-mib::ip.21.1.3.172.20.0.0 = INTEGER: 0
ip-mib::ip.21.1.3.172.21.0.0 = INTEGER: 0
ip-mib::ip.21.1.3.172.22.0.0 = INTEGER: 0
ip-mib::ip.21.1.7.0.0.0.0 = IpAddress: 10.10.10.2
ip-mib::ip.21.1.7.10.10.10.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.7.172.17.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.7.172.18.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.7.172.19.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.7.172.20.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.7.172.21.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.7.172.22.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.8.0.0.0.0 = INTEGER: 4
ip-mib::ip.21.1.8.10.10.10.0 = INTEGER: 3
ip-mib::ip.21.1.8.172.17.0.0 = INTEGER: 3
ip-mib::ip.21.1.8.172.18.0.0 = INTEGER: 3
ip-mib::ip.21.1.8.172.19.0.0 = INTEGER: 3
ip-mib::ip.21.1.8.172.20.0.0 = INTEGER: 3
ip-mib::ip.21.1.8.172.21.0.0 = INTEGER: 3
ip-mib::ip.21.1.8.172.22.0.0 = INTEGER: 3
ip-mib::ip.21.1.9.0.0.0.0 = INTEGER: 2
ip-mib::ip.21.1.9.10.10.10.0 = INTEGER: 2
ip-mib::ip.21.1.9.172.17.0.0 = INTEGER: 2
ip-mib::ip.21.1.9.172.18.0.0 = INTEGER: 2
ip-mib::ip.21.1.9.172.19.0.0 = INTEGER: 2
ip-mib::ip.21.1.9.172.20.0.0 = INTEGER: 2
ip-mib::ip.21.1.9.172.21.0.0 = INTEGER: 2
ip-mib::ip.21.1.9.172.22.0.0 = INTEGER: 2
ip-mib::ip.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0
ip-mib::ip.21.1.11.10.10.10.0 = IpAddress: 255.255.254.0
ip-mib::ip.21.1.11.172.17.0.0 = IpAddress: 255.255.0.0
ip-mib::ip.21.1.11.172.18.0.0 = IpAddress: 255.255.0.0
ip-mib::ip.21.1.11.172.19.0.0 = IpAddress: 255.255.0.0
ip-mib::ip.21.1.11.172.20.0.0 = IpAddress: 255.255.0.0
ip-mib::ip.21.1.11.172.21.0.0 = IpAddress: 255.255.0.0
ip-mib::ip.21.1.11.172.22.0.0 = IpAddress: 255.255.0.0
ip-mib::ip.21.1.13.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.10.10.10.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.172.17.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.172.18.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.172.19.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.172.20.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.172.21.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ip.21.1.13.172.22.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-mib::ipNetToMediaIfIndex.2.10.10.10.2 = INTEGER: 2
ip-mib::ipNetToMediaIfIndex.7.172.22.0.2 = INTEGER: 7
ip-mib::ipNetToMediaIfIndex.7.172.22.0.3 = INTEGER: 7
ip-mib::ipNetToMediaIfIndex.7.172.22.0.4 = INTEGER: 7
ip-mib::ipNetToMediaPhysAddress.2.10.10.10.2 = STRING: 0:50:56:b9:10:14
ip-mib::ipNetToMediaPhysAddress.7.172.22.0.2 = STRING: 2:42:ac:16:0:2
ip-mib::ipNetToMediaPhysAddress.7.172.22.0.3 = STRING: 2:42:ac:16:0:3
ip-mib::ipNetToMediaPhysAddress.7.172.22.0.4 = STRING: 2:42:ac:16:0:4
ip-mib::ipNetToMediaNetAddress.2.10.10.10.2 = IpAddress: 10.10.10.2
ip-mib::ipNetToMediaNetAddress.7.172.22.0.2 = IpAddress: 172.22.0.2
ip-mib::ipNetToMediaNetAddress.7.172.22.0.3 = IpAddress: 172.22.0.3
ip-mib::ipNetToMediaNetAddress.7.172.22.0.4 = IpAddress: 172.22.0.4
ip-mib::ipNetToMediaType.2.10.10.10.2 = INTEGER: dynamic(3)
ip-mib::ipNetToMediaType.7.172.22.0.2 = INTEGER: dynamic(3)
ip-mib::ipNetToMediaType.7.172.22.0.3 = INTEGER: dynamic(3)
ip-mib::ipNetToMediaType.7.172.22.0.4 = INTEGER: dynamic(3)
ip-mib::ipRoutingDiscards.0 = Counter32: 0
ip-forward-mib::ipCidrRouteDest.0.0.0.0.0.0.0.0.0.10.10.10.2 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteDest.10.10.10.0.255.255.254.0.0.0.0.0.0 = IpAddress: 10.10.10.0
ip-forward-mib::ipCidrRouteDest.172.17.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 172.17.0.0
ip-forward-mib::ipCidrRouteDest.172.18.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 172.18.0.0
ip-forward-mib::ipCidrRouteDest.172.19.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 172.19.0.0
ip-forward-mib::ipCidrRouteDest.172.20.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 172.20.0.0
ip-forward-mib::ipCidrRouteDest.172.21.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 172.21.0.0
ip-forward-mib::ipCidrRouteDest.172.22.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 172.22.0.0
ip-forward-mib::ipCidrRouteMask.0.0.0.0.0.0.0.0.0.10.10.10.2 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteMask.10.10.10.0.255.255.254.0.0.0.0.0.0 = IpAddress: 255.255.254.0
ip-forward-mib::ipCidrRouteMask.172.17.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 255.255.0.0
ip-forward-mib::ipCidrRouteMask.172.18.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 255.255.0.0
ip-forward-mib::ipCidrRouteMask.172.19.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 255.255.0.0
ip-forward-mib::ipCidrRouteMask.172.20.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 255.255.0.0
ip-forward-mib::ipCidrRouteMask.172.21.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 255.255.0.0
ip-forward-mib::ipCidrRouteMask.172.22.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 255.255.0.0
ip-forward-mib::ipCidrRouteTos.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteTos.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHop.0.0.0.0.0.0.0.0.0.10.10.10.2 = IpAddress: 10.10.10.2
ip-forward-mib::ipCidrRouteNextHop.10.10.10.0.255.255.254.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteNextHop.172.17.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteNextHop.172.18.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteNextHop.172.19.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteNextHop.172.20.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteNextHop.172.21.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteNextHop.172.22.0.0.255.255.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0
ip-forward-mib::ipCidrRouteIfIndex.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: 2
ip-forward-mib::ipCidrRouteIfIndex.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: 2
ip-forward-mib::ipCidrRouteIfIndex.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 3
ip-forward-mib::ipCidrRouteIfIndex.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 8
ip-forward-mib::ipCidrRouteIfIndex.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 5
ip-forward-mib::ipCidrRouteIfIndex.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 4
ip-forward-mib::ipCidrRouteIfIndex.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 6
ip-forward-mib::ipCidrRouteIfIndex.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 7
ip-forward-mib::ipCidrRouteType.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: remote(4)
ip-forward-mib::ipCidrRouteType.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteType.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteType.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteType.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteType.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteType.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteType.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(3)
ip-forward-mib::ipCidrRouteProto.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteProto.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: local(2)
ip-forward-mib::ipCidrRouteInfo.0.0.0.0.0.0.0.0.0.10.10.10.2 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.10.10.10.0.255.255.254.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.172.17.0.0.255.255.0.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.172.18.0.0.255.255.0.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.172.19.0.0.255.255.0.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.172.20.0.0.255.255.0.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.172.21.0.0.255.255.0.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteInfo.172.22.0.0.255.255.0.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
ip-forward-mib::ipCidrRouteNextHopAS.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteNextHopAS.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric1.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: 0
ip-forward-mib::ipCidrRouteMetric2.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric2.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric3.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric4.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteMetric5.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: -1
ip-forward-mib::ipCidrRouteStatus.0.0.0.0.0.0.0.0.0.10.10.10.2 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.10.10.10.0.255.255.254.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.172.17.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.172.18.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.172.19.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.172.20.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.172.21.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::ipCidrRouteStatus.172.22.0.0.255.255.0.0.0.0.0.0.0 = INTEGER: active(1)
ip-forward-mib::inetCidrRouteNumber.0 = Gauge32: 28
ip-forward-mib::inetCidrRouteIfIndex.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: 3
ip-forward-mib::inetCidrRouteIfIndex.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: 8
ip-forward-mib::inetCidrRouteIfIndex.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: 5
ip-forward-mib::inetCidrRouteIfIndex.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: 4
ip-forward-mib::inetCidrRouteIfIndex.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: 6
ip-forward-mib::inetCidrRouteIfIndex.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: 7
ip-forward-mib::inetCidrRouteIfIndex.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 1
ip-forward-mib::inetCidrRouteIfIndex.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 1
ip-forward-mib::inetCidrRouteIfIndex.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 10
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 7
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 12
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 14
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 7
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 10
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 12
ip-forward-mib::inetCidrRouteIfIndex.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 14
ip-forward-mib::inetCidrRouteIfIndex.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 2
ip-forward-mib::inetCidrRouteIfIndex.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 10
ip-forward-mib::inetCidrRouteIfIndex.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 7
ip-forward-mib::inetCidrRouteIfIndex.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 12
ip-forward-mib::inetCidrRouteIfIndex.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 14
ip-forward-mib::inetCidrRouteType.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: remote(4)
ip-forward-mib::inetCidrRouteType.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: remote(4)
ip-forward-mib::inetCidrRouteType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteType.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(3)
ip-forward-mib::inetCidrRouteProto.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteProto.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: local(2)
ip-forward-mib::inetCidrRouteAge.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteAge.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteNextHopAS.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = Gauge32: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: 1024
ip-forward-mib::inetCidrRouteMetric1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 0
ip-forward-mib::inetCidrRouteMetric1.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric1.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: 256
ip-forward-mib::inetCidrRouteMetric2.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric2.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric3.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric4.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteMetric5.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: -1
ip-forward-mib::inetCidrRouteStatus.ipv4."0.0.0.0".0.2.0.0.ipv4."10.10.10.2" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."10.10.10.0".23.3.0.0.2.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."172.17.0.0".16.3.0.0.3.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."172.18.0.0".16.3.0.0.8.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."172.19.0.0".16.3.0.0.5.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."172.20.0.0".16.3.0.0.4.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."172.21.0.0".16.3.0.0.6.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv4."172.22.0.0".16.3.0.0.7.ipv4."0.0.0.0" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.3.0.0.16.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.9.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128.3.0.0.17.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.10.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.18.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.11.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.12.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.13.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.14.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64.3.0.0.15.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7".128.3.0.0.19.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07".128.3.0.0.20.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53".128.3.0.0.21.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c".128.3.0.0.22.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05".128.3.0.0.23.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.24.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.25.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.26.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.27.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-forward-mib::inetCidrRouteStatus.ipv6."ff:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".8.3.0.0.28.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" = INTEGER: active(1)
ip-mib::ipv6IpForwarding.0 = INTEGER: notForwarding(2)
ip-mib::ipAddressPrefixOrigin.1.ipv4."127.0.0.0".8 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.2.ipv4."10.10.10.0".23 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: routeradv(5)
ip-mib::ipAddressPrefixOrigin.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: wellknown(3)
ip-mib::ipAddressPrefixOrigin.3.ipv4."172.17.0.0".16 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.4.ipv4."172.20.0.0".16 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.5.ipv4."172.19.0.0".16 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.6.ipv4."172.21.0.0".16 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.7.ipv4."172.22.0.0".16 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.7.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: wellknown(3)
ip-mib::ipAddressPrefixOrigin.8.ipv4."172.18.0.0".16 = INTEGER: manual(2)
ip-mib::ipAddressPrefixOrigin.10.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: wellknown(3)
ip-mib::ipAddressPrefixOrigin.12.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: wellknown(3)
ip-mib::ipAddressPrefixOrigin.14.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: wellknown(3)
ip-mib::ipAddressPrefixOnLinkFlag.1.ipv4."127.0.0.0".8 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.2.ipv4."10.10.10.0".23 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.3.ipv4."172.17.0.0".16 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.4.ipv4."172.20.0.0".16 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.5.ipv4."172.19.0.0".16 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.6.ipv4."172.21.0.0".16 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.7.ipv4."172.22.0.0".16 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.7.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.8.ipv4."172.18.0.0".16 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.10.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.12.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixOnLinkFlag.14.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixAutonomousFlag.1.ipv4."127.0.0.0".8 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.2.ipv4."10.10.10.0".23 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1)
ip-mib::ipAddressPrefixAutonomousFlag.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.3.ipv4."172.17.0.0".16 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.4.ipv4."172.20.0.0".16 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.5.ipv4."172.19.0.0".16 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.6.ipv4."172.21.0.0".16 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.7.ipv4."172.22.0.0".16 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.7.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.8.ipv4."172.18.0.0".16 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.10.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.12.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: false(2)
ip-mib::ipAddressPrefixAutonomousFlag.14.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: false(2)
ip-mib::ipAddressPrefixAdvPreferredLifetime.1.ipv4."127.0.0.0".8 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.2.ipv4."10.10.10.0".23 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 14393 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.3.ipv4."172.17.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.4.ipv4."172.20.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.5.ipv4."172.19.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.6.ipv4."172.21.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.7.ipv4."172.22.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.7.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.8.ipv4."172.18.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.10.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.12.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvPreferredLifetime.14.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.1.ipv4."127.0.0.0".8 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.2.ipv4."10.10.10.0".23 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 86393 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.3.ipv4."172.17.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.4.ipv4."172.20.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.5.ipv4."172.19.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.6.ipv4."172.21.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.7.ipv4."172.22.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.7.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.8.ipv4."172.18.0.0".16 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.10.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.12.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressPrefixAdvValidLifetime.14.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds
ip-mib::ipAddressSpinLock.0 = INTEGER: 530082127
ip-mib::ipAddressIfIndex.ipv4."10.10.11.193" = INTEGER: 2
ip-mib::ipAddressIfIndex.ipv4."10.10.11.255" = INTEGER: 2
ip-mib::ipAddressIfIndex.ipv4."127.0.0.1" = INTEGER: 1
ip-mib::ipAddressIfIndex.ipv4."172.17.0.1" = INTEGER: 3
ip-mib::ipAddressIfIndex.ipv4."172.17.255.255" = INTEGER: 3
ip-mib::ipAddressIfIndex.ipv4."172.18.0.1" = INTEGER: 8
ip-mib::ipAddressIfIndex.ipv4."172.18.255.255" = INTEGER: 8
ip-mib::ipAddressIfIndex.ipv4."172.19.0.1" = INTEGER: 5
ip-mib::ipAddressIfIndex.ipv4."172.19.255.255" = INTEGER: 5
ip-mib::ipAddressIfIndex.ipv4."172.20.0.1" = INTEGER: 4
ip-mib::ipAddressIfIndex.ipv4."172.20.255.255" = INTEGER: 4
ip-mib::ipAddressIfIndex.ipv4."172.21.0.1" = INTEGER: 6
ip-mib::ipAddressIfIndex.ipv4."172.21.255.255" = INTEGER: 6
ip-mib::ipAddressIfIndex.ipv4."172.22.0.1" = INTEGER: 7
ip-mib::ipAddressIfIndex.ipv4."172.22.255.255" = INTEGER: 7
ip-mib::ipAddressIfIndex.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: 1
ip-mib::ipAddressIfIndex.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: 2
ip-mib::ipAddressIfIndex.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = INTEGER: 7
ip-mib::ipAddressIfIndex.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: 2
ip-mib::ipAddressIfIndex.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = INTEGER: 10
ip-mib::ipAddressIfIndex.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = INTEGER: 12
ip-mib::ipAddressIfIndex.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = INTEGER: 14
ip-mib::ipAddressType.ipv4."10.10.11.193" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."10.10.11.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv4."127.0.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.17.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.17.255.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv4."172.18.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.18.255.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv4."172.19.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.19.255.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv4."172.20.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.20.255.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv4."172.21.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.21.255.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv4."172.22.0.1" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv4."172.22.255.255" = INTEGER: broadcast(3)
ip-mib::ipAddressType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = INTEGER: unicast(1)
ip-mib::ipAddressType.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = INTEGER: unicast(1)
ip-mib::ipAddressPrefix.ipv4."10.10.11.193" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv4."10.10.10.0".23
ip-mib::ipAddressPrefix.ipv4."10.10.11.255" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv4."10.10.10.0".23
ip-mib::ipAddressPrefix.ipv4."127.0.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.1.ipv4."127.0.0.0".8
ip-mib::ipAddressPrefix.ipv4."172.17.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.3.ipv4."172.17.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.17.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.3.ipv4."172.17.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.18.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.8.ipv4."172.18.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.18.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.8.ipv4."172.18.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.19.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.5.ipv4."172.19.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.19.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.5.ipv4."172.19.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.20.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.4.ipv4."172.20.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.20.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.4.ipv4."172.20.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.21.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.6.ipv4."172.21.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.21.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.6.ipv4."172.21.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.22.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.7.ipv4."172.22.0.0".16
ip-mib::ipAddressPrefix.ipv4."172.22.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.7.ipv4."172.22.0.0".16
ip-mib::ipAddressPrefix.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = OID: IP-MIB::ipAddressPrefixOrigin.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128
ip-mib::ipAddressPrefix.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv6."de:ad:be:ef:00:00:00:00:00:00:00:00:00:00:00:00".64
ip-mib::ipAddressPrefix.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = OID: IP-MIB::ipAddressPrefixOrigin.7.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64
ip-mib::ipAddressPrefix.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64
ip-mib::ipAddressPrefix.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = OID: IP-MIB::ipAddressPrefixOrigin.10.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64
ip-mib::ipAddressPrefix.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = OID: IP-MIB::ipAddressPrefixOrigin.12.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64
ip-mib::ipAddressPrefix.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = OID: IP-MIB::ipAddressPrefixOrigin.14.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64
ip-mib::ipAddressOrigin.ipv4."10.10.11.193" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."10.10.11.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."127.0.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.17.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.17.255.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.18.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.18.255.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.19.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.19.255.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.20.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.20.255.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.21.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.21.255.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.22.0.1" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv4."172.22.255.255" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: manual(2)
ip-mib::ipAddressOrigin.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: linklayer(5)
ip-mib::ipAddressOrigin.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = INTEGER: linklayer(5)
ip-mib::ipAddressOrigin.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: linklayer(5)
ip-mib::ipAddressOrigin.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = INTEGER: linklayer(5)
ip-mib::ipAddressOrigin.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = INTEGER: linklayer(5)
ip-mib::ipAddressOrigin.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = INTEGER: linklayer(5)
ip-mib::ipAddressStatus.ipv4."10.10.11.193" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."10.10.11.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."127.0.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.17.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.17.255.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.18.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.18.255.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.19.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.19.255.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.20.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.20.255.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.21.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.21.255.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.22.0.1" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv4."172.22.255.255" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = INTEGER: preferred(1)
ip-mib::ipAddressStatus.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = INTEGER: preferred(1)
ip-mib::ipAddressCreated.ipv4."10.10.11.193" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressCreated.ipv4."10.10.11.255" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressCreated.ipv4."127.0.0.1" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressCreated.ipv4."172.17.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.17.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.18.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.18.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.19.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.19.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.20.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.20.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.21.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.21.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.22.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv4."172.22.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressCreated.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressCreated.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressCreated.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressCreated.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."10.10.11.193" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressLastChanged.ipv4."10.10.11.255" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressLastChanged.ipv4."127.0.0.1" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressLastChanged.ipv4."172.17.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.17.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.18.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.18.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.19.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.19.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.20.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.20.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.21.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.21.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.22.0.1" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv4."172.22.255.255" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressLastChanged.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = Timeticks: (1752123) 4:52:01.23
ip-mib::ipAddressLastChanged.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = Timeticks: (0) 0:00:00.00
ip-mib::ipAddressLastChanged.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressLastChanged.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = Timeticks: (3027) 0:00:30.27
ip-mib::ipAddressRowStatus.ipv4."10.10.11.193" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."10.10.11.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."127.0.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.17.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.17.255.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.18.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.18.255.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.19.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.19.255.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.20.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.20.255.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.21.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.21.255.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.22.0.1" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv4."172.22.255.255" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = INTEGER: active(1)
ip-mib::ipAddressRowStatus.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = INTEGER: active(1)
ip-mib::ipAddressStorageType.ipv4."10.10.11.193" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."10.10.11.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."127.0.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.17.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.17.255.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.18.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.18.255.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.19.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.19.255.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.20.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.20.255.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.21.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.21.255.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.22.0.1" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv4."172.22.255.255" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: volatile(2)
ip-mib::ipAddressStorageType.ipv6."de:ad:be:ef:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: permanent(4)
ip-mib::ipAddressStorageType.ipv6."fe:80:00:00:00:00:00:00:00:42:d6:ff:fe:1c:38:f7" = INTEGER: permanent(4)
ip-mib::ipAddressStorageType.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:91:07" = INTEGER: permanent(4)
ip-mib::ipAddressStorageType.ipv6."fe:80:00:00:00:00:00:00:14:d9:95:ff:fe:f5:fb:53" = INTEGER: permanent(4)
ip-mib::ipAddressStorageType.ipv6."fe:80:00:00:00:00:00:00:a8:77:3b:ff:fe:f3:e1:5c" = INTEGER: permanent(4)
ip-mib::ipAddressStorageType.ipv6."fe:80:00:00:00:00:00:00:bc:ba:0b:ff:fe:82:f3:05" = INTEGER: permanent(4)
ip-mib::ipNetToPhysicalPhysAddress.2.ipv4."10.10.10.2" = STRING: 0:50:56:b9:10:14
ip-mib::ipNetToPhysicalPhysAddress.2.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = STRING: 0:50:56:b9:10:14
ip-mib::ipNetToPhysicalPhysAddress.7.ipv4."172.22.0.2" = STRING: 2:42:ac:16:0:2
ip-mib::ipNetToPhysicalPhysAddress.7.ipv4."172.22.0.3" = STRING: 2:42:ac:16:0:3
ip-mib::ipNetToPhysicalPhysAddress.7.ipv4."172.22.0.4" = STRING: 2:42:ac:16:0:4
ip-mib::ipNetToPhysicalLastUpdated.2.ipv4."10.10.10.2" = Timeticks: (1753360) 4:52:13.60
ip-mib::ipNetToPhysicalLastUpdated.2.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = Timeticks: (1753360) 4:52:13.60
ip-mib::ipNetToPhysicalLastUpdated.7.ipv4."172.22.0.2" = Timeticks: (1753360) 4:52:13.60
ip-mib::ipNetToPhysicalLastUpdated.7.ipv4."172.22.0.3" = Timeticks: (1753360) 4:52:13.60
ip-mib::ipNetToPhysicalLastUpdated.7.ipv4."172.22.0.4" = Timeticks: (1753360) 4:52:13.60
ip-mib::ipNetToPhysicalType.2.ipv4."10.10.10.2" = INTEGER: dynamic(3)
ip-mib::ipNetToPhysicalType.2.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: dynamic(3)
ip-mib::ipNetToPhysicalType.7.ipv4."172.22.0.2" = INTEGER: dynamic(3)
ip-mib::ipNetToPhysicalType.7.ipv4."172.22.0.3" = INTEGER: dynamic(3)
ip-mib::ipNetToPhysicalType.7.ipv4."172.22.0.4" = INTEGER: dynamic(3)
ip-mib::ipNetToPhysicalState.2.ipv4."10.10.10.2" = INTEGER: reachable(1)
ip-mib::ipNetToPhysicalState.2.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: stale(2)
ip-mib::ipNetToPhysicalState.7.ipv4."172.22.0.2" = INTEGER: stale(2)
ip-mib::ipNetToPhysicalState.7.ipv4."172.22.0.3" = INTEGER: reachable(1)
ip-mib::ipNetToPhysicalState.7.ipv4."172.22.0.4" = INTEGER: reachable(1)
ip-mib::ipNetToPhysicalRowStatus.2.ipv4."10.10.10.2" = INTEGER: active(1)
ip-mib::ipNetToPhysicalRowStatus.2.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14" = INTEGER: active(1)
ip-mib::ipNetToPhysicalRowStatus.7.ipv4."172.22.0.2" = INTEGER: active(1)
ip-mib::ipNetToPhysicalRowStatus.7.ipv4."172.22.0.3" = INTEGER: active(1)
ip-mib::ipNetToPhysicalRowStatus.7.ipv4."172.22.0.4" = INTEGER: active(1)
ip-mib::ipDefaultRouterLifetime.ipv4."10.10.10.2".2 = Gauge32: 65535 seconds
ip-mib::ipDefaultRouterLifetime.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14".2 = Gauge32: 25 seconds
ip-mib::ipDefaultRouterPreference.ipv4."10.10.10.2".2 = INTEGER: medium(0)
ip-mib::ipDefaultRouterPreference.ipv6."fe:80:00:00:00:00:00:00:02:50:56:ff:fe:b9:10:14".2 = INTEGER: medium(0)
ip-mib::icmpInMsgs.0 = Counter32: 18
ip-mib::icmpInErrors.0 = Counter32: 0
ip-mib::icmpInDestUnreachs.0 = Counter32: 13
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: 2
ip-mib::icmpInEchoReps.0 = Counter32: 1
ip-mib::icmpInTimestamps.0 = Counter32: 2
ip-mib::icmpInTimestampReps.0 = Counter32: 0
ip-mib::icmpInAddrMasks.0 = Counter32: 0
ip-mib::icmpInAddrMaskReps.0 = Counter32: 0
ip-mib::icmpOutMsgs.0 = Counter32: 1049
ip-mib::icmpOutErrors.0 = Counter32: 0
ip-mib::icmpOutDestUnreachs.0 = Counter32: 1043
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: 2
ip-mib::icmpOutEchoReps.0 = Counter32: 2
ip-mib::icmpOutTimestamps.0 = Counter32: 0
ip-mib::icmpOutTimestampReps.0 = Counter32: 2
ip-mib::icmpOutAddrMasks.0 = Counter32: 0
ip-mib::icmpOutAddrMaskReps.0 = Counter32: 0
ip-mib::icmpStatsInMsgs.ipv4 = Counter32: 18
ip-mib::icmpStatsInMsgs.ipv6 = Counter32: 2713
ip-mib::icmpStatsInErrors.ipv4 = Counter32: 0
ip-mib::icmpStatsInErrors.ipv6 = Counter32: 0
ip-mib::icmpStatsOutMsgs.ipv4 = Counter32: 1049
ip-mib::icmpStatsOutMsgs.ipv6 = Counter32: 72
ip-mib::icmpStatsOutErrors.ipv4 = Counter32: 0
ip-mib::icmpStatsOutErrors.ipv6 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.0 = Counter32: 1
ip-mib::icmpMsgStatsInPkts.ipv4.3 = Counter32: 13
ip-mib::icmpMsgStatsInPkts.ipv4.4 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.5 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.8 = Counter32: 2
ip-mib::icmpMsgStatsInPkts.ipv4.11 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.12 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.13 = Counter32: 2
ip-mib::icmpMsgStatsInPkts.ipv4.14 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.17 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv4.18 = Counter32: 0
ip-mib::icmpMsgStatsInPkts.ipv6.134 = Counter32: 2712
ip-mib::icmpMsgStatsInPkts.ipv6.135 = Counter32: 1
ip-mib::icmpMsgStatsOutPkts.ipv4.0 = Counter32: 2
ip-mib::icmpMsgStatsOutPkts.ipv4.3 = Counter32: 1043
ip-mib::icmpMsgStatsOutPkts.ipv4.4 = Counter32: 0
ip-mib::icmpMsgStatsOutPkts.ipv4.5 = Counter32: 0
ip-mib::icmpMsgStatsOutPkts.ipv4.8 = Counter32: 2
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: 2
ip-mib::icmpMsgStatsOutPkts.ipv4.17 = Counter32: 0
ip-mib::icmpMsgStatsOutPkts.ipv4.18 = Counter32: 0
ip-mib::icmpMsgStatsOutPkts.ipv6.133 = Counter32: 43
ip-mib::icmpMsgStatsOutPkts.ipv6.135 = Counter32: 6
ip-mib::icmpMsgStatsOutPkts.ipv6.136 = Counter32: 1
ip-mib::icmpMsgStatsOutPkts.ipv6.143 = Counter32: 22
tcp-mib::tcpRtoAlgorithm.0 = INTEGER: other(1)
tcp-mib::tcpRtoMin.0 = INTEGER: 200 milliseconds
tcp-mib::tcpRtoMax.0 = INTEGER: 120000 milliseconds
tcp-mib::tcpMaxConn.0 = INTEGER: -1
tcp-mib::tcpActiveOpens.0 = Counter32: 1281941
tcp-mib::tcpPassiveOpens.0 = Counter32: 1396310
tcp-mib::tcpAttemptFails.0 = Counter32: 2865
tcp-mib::tcpEstabResets.0 = Counter32: 180
tcp-mib::tcpCurrEstab.0 = Gauge32: 4
tcp-mib::tcpInSegs.0 = Counter32: 19902740
tcp-mib::tcpOutSegs.0 = Counter32: 22337906
tcp-mib::tcpRetransSegs.0 = Counter32: 125551
tcp-mib::tcpConnState.0.0.0.0.22.0.0.0.0.0 = INTEGER: listen(2)
tcp-mib::tcpConnState.127.0.0.1.34613.0.0.0.0.0 = INTEGER: listen(2)
tcp-mib::tcpConnState.127.0.0.53.53.0.0.0.0.0 = INTEGER: listen(2)
tcp-mib::tcpConnState.172.22.0.1.81.0.0.0.0.0 = INTEGER: listen(2)
tcp-mib::tcpConnState.172.22.0.1.5432.0.0.0.0.0 = INTEGER: listen(2)
tcp-mib::tcpConnState.172.22.0.1.5432.172.22.0.3.55856 = INTEGER: established(5)
tcp-mib::tcpConnState.172.22.0.1.5432.172.22.0.3.56694 = INTEGER: established(5)
tcp-mib::tcpConnState.172.22.0.1.8000.0.0.0.0.0 = INTEGER: listen(2)
tcp-mib::tcpConnState.172.22.0.1.34800.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34802.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34810.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34814.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34820.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34836.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34842.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34852.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34864.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34866.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34874.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34886.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34906.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34908.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34920.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34926.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34932.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34944.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34954.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34960.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34966.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34968.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34970.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34972.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34976.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34980.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34986.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34994.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.34996.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35006.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35008.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35016.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35020.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35034.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35036.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35050.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35056.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35058.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35072.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35074.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35076.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35090.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35102.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35106.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35108.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35122.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35130.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35140.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.35156.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.37398.172.22.0.4.5432 = INTEGER: established(5)
tcp-mib::tcpConnState.172.22.0.1.37760.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.37762.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.39138.172.22.0.4.5432 = INTEGER: established(5)
tcp-mib::tcpConnState.172.22.0.1.40642.172.22.0.1.8000 = INTEGER: timeWait(11)
tcp-mib::tcpConnState.172.22.0.1.44764.172.22.0.1.8000 = INTEGER: timeWait(11)
tcp-mib::tcpConnState.172.22.0.1.54166.172.22.0.1.8000 = INTEGER: timeWait(11)
tcp-mib::tcpConnState.172.22.0.1.55808.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55810.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55826.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55838.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55846.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55862.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55870.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55880.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55894.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55908.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55924.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55946.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55950.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55952.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55958.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55964.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55970.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55980.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.55996.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.56002.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.56010.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.56026.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.56042.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnState.172.22.0.1.56056.172.22.0.1.8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnLocalAddress.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnLocalAddress.127.0.0.1.34613.0.0.0.0.0 = IpAddress: 127.0.0.1
tcp-mib::tcpConnLocalAddress.127.0.0.53.53.0.0.0.0.0 = IpAddress: 127.0.0.53
tcp-mib::tcpConnLocalAddress.172.22.0.1.81.0.0.0.0.0 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.5432.0.0.0.0.0 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.5432.172.22.0.3.55856 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.5432.172.22.0.3.56694 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.8000.0.0.0.0.0 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34800.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34802.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34810.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34814.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34820.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34836.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34842.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34852.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34864.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34866.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34874.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34886.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34906.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34908.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34920.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34926.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34932.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34944.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34954.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34960.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34966.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34968.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34970.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34972.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34976.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34980.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34986.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34994.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.34996.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35006.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35008.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35016.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35020.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35034.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35036.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35050.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35056.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35058.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35072.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35074.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35076.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35090.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35102.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35106.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35108.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35122.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35130.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35140.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.35156.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.37398.172.22.0.4.5432 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.37760.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.37762.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.39138.172.22.0.4.5432 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.40642.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.44764.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.54166.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55808.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55810.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55826.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55838.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55846.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55862.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55870.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55880.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55894.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55908.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55924.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55946.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55950.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55952.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55958.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55964.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55970.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55980.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.55996.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.56002.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.56010.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.56026.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.56042.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalAddress.172.22.0.1.56056.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnLocalPort.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22
tcp-mib::tcpConnLocalPort.127.0.0.1.34613.0.0.0.0.0 = INTEGER: 34613
tcp-mib::tcpConnLocalPort.127.0.0.53.53.0.0.0.0.0 = INTEGER: 53
tcp-mib::tcpConnLocalPort.172.22.0.1.81.0.0.0.0.0 = INTEGER: 81
tcp-mib::tcpConnLocalPort.172.22.0.1.5432.0.0.0.0.0 = INTEGER: 5432
tcp-mib::tcpConnLocalPort.172.22.0.1.5432.172.22.0.3.55856 = INTEGER: 5432
tcp-mib::tcpConnLocalPort.172.22.0.1.5432.172.22.0.3.56694 = INTEGER: 5432
tcp-mib::tcpConnLocalPort.172.22.0.1.8000.0.0.0.0.0 = INTEGER: 8000
tcp-mib::tcpConnLocalPort.172.22.0.1.34800.172.22.0.1.8000 = INTEGER: 34800
tcp-mib::tcpConnLocalPort.172.22.0.1.34802.172.22.0.1.8000 = INTEGER: 34802
tcp-mib::tcpConnLocalPort.172.22.0.1.34810.172.22.0.1.8000 = INTEGER: 34810
tcp-mib::tcpConnLocalPort.172.22.0.1.34814.172.22.0.1.8000 = INTEGER: 34814
tcp-mib::tcpConnLocalPort.172.22.0.1.34820.172.22.0.1.8000 = INTEGER: 34820
tcp-mib::tcpConnLocalPort.172.22.0.1.34836.172.22.0.1.8000 = INTEGER: 34836
tcp-mib::tcpConnLocalPort.172.22.0.1.34842.172.22.0.1.8000 = INTEGER: 34842
tcp-mib::tcpConnLocalPort.172.22.0.1.34852.172.22.0.1.8000 = INTEGER: 34852
tcp-mib::tcpConnLocalPort.172.22.0.1.34864.172.22.0.1.8000 = INTEGER: 34864
tcp-mib::tcpConnLocalPort.172.22.0.1.34866.172.22.0.1.8000 = INTEGER: 34866
tcp-mib::tcpConnLocalPort.172.22.0.1.34874.172.22.0.1.8000 = INTEGER: 34874
tcp-mib::tcpConnLocalPort.172.22.0.1.34886.172.22.0.1.8000 = INTEGER: 34886
tcp-mib::tcpConnLocalPort.172.22.0.1.34906.172.22.0.1.8000 = INTEGER: 34906
tcp-mib::tcpConnLocalPort.172.22.0.1.34908.172.22.0.1.8000 = INTEGER: 34908
tcp-mib::tcpConnLocalPort.172.22.0.1.34920.172.22.0.1.8000 = INTEGER: 34920
tcp-mib::tcpConnLocalPort.172.22.0.1.34926.172.22.0.1.8000 = INTEGER: 34926
tcp-mib::tcpConnLocalPort.172.22.0.1.34932.172.22.0.1.8000 = INTEGER: 34932
tcp-mib::tcpConnLocalPort.172.22.0.1.34944.172.22.0.1.8000 = INTEGER: 34944
tcp-mib::tcpConnLocalPort.172.22.0.1.34954.172.22.0.1.8000 = INTEGER: 34954
tcp-mib::tcpConnLocalPort.172.22.0.1.34960.172.22.0.1.8000 = INTEGER: 34960
tcp-mib::tcpConnLocalPort.172.22.0.1.34966.172.22.0.1.8000 = INTEGER: 34966
tcp-mib::tcpConnLocalPort.172.22.0.1.34968.172.22.0.1.8000 = INTEGER: 34968
tcp-mib::tcpConnLocalPort.172.22.0.1.34970.172.22.0.1.8000 = INTEGER: 34970
tcp-mib::tcpConnLocalPort.172.22.0.1.34972.172.22.0.1.8000 = INTEGER: 34972
tcp-mib::tcpConnLocalPort.172.22.0.1.34976.172.22.0.1.8000 = INTEGER: 34976
tcp-mib::tcpConnLocalPort.172.22.0.1.34980.172.22.0.1.8000 = INTEGER: 34980
tcp-mib::tcpConnLocalPort.172.22.0.1.34986.172.22.0.1.8000 = INTEGER: 34986
tcp-mib::tcpConnLocalPort.172.22.0.1.34994.172.22.0.1.8000 = INTEGER: 34994
tcp-mib::tcpConnLocalPort.172.22.0.1.34996.172.22.0.1.8000 = INTEGER: 34996
tcp-mib::tcpConnLocalPort.172.22.0.1.35006.172.22.0.1.8000 = INTEGER: 35006
tcp-mib::tcpConnLocalPort.172.22.0.1.35008.172.22.0.1.8000 = INTEGER: 35008
tcp-mib::tcpConnLocalPort.172.22.0.1.35016.172.22.0.1.8000 = INTEGER: 35016
tcp-mib::tcpConnLocalPort.172.22.0.1.35020.172.22.0.1.8000 = INTEGER: 35020
tcp-mib::tcpConnLocalPort.172.22.0.1.35034.172.22.0.1.8000 = INTEGER: 35034
tcp-mib::tcpConnLocalPort.172.22.0.1.35036.172.22.0.1.8000 = INTEGER: 35036
tcp-mib::tcpConnLocalPort.172.22.0.1.35050.172.22.0.1.8000 = INTEGER: 35050
tcp-mib::tcpConnLocalPort.172.22.0.1.35056.172.22.0.1.8000 = INTEGER: 35056
tcp-mib::tcpConnLocalPort.172.22.0.1.35058.172.22.0.1.8000 = INTEGER: 35058
tcp-mib::tcpConnLocalPort.172.22.0.1.35072.172.22.0.1.8000 = INTEGER: 35072
tcp-mib::tcpConnLocalPort.172.22.0.1.35074.172.22.0.1.8000 = INTEGER: 35074
tcp-mib::tcpConnLocalPort.172.22.0.1.35076.172.22.0.1.8000 = INTEGER: 35076
tcp-mib::tcpConnLocalPort.172.22.0.1.35090.172.22.0.1.8000 = INTEGER: 35090
tcp-mib::tcpConnLocalPort.172.22.0.1.35102.172.22.0.1.8000 = INTEGER: 35102
tcp-mib::tcpConnLocalPort.172.22.0.1.35106.172.22.0.1.8000 = INTEGER: 35106
tcp-mib::tcpConnLocalPort.172.22.0.1.35108.172.22.0.1.8000 = INTEGER: 35108
tcp-mib::tcpConnLocalPort.172.22.0.1.35122.172.22.0.1.8000 = INTEGER: 35122
tcp-mib::tcpConnLocalPort.172.22.0.1.35130.172.22.0.1.8000 = INTEGER: 35130
tcp-mib::tcpConnLocalPort.172.22.0.1.35140.172.22.0.1.8000 = INTEGER: 35140
tcp-mib::tcpConnLocalPort.172.22.0.1.35156.172.22.0.1.8000 = INTEGER: 35156
tcp-mib::tcpConnLocalPort.172.22.0.1.37398.172.22.0.4.5432 = INTEGER: 37398
tcp-mib::tcpConnLocalPort.172.22.0.1.37760.172.22.0.1.8000 = INTEGER: 37760
tcp-mib::tcpConnLocalPort.172.22.0.1.37762.172.22.0.1.8000 = INTEGER: 37762
tcp-mib::tcpConnLocalPort.172.22.0.1.39138.172.22.0.4.5432 = INTEGER: 39138
tcp-mib::tcpConnLocalPort.172.22.0.1.44764.172.22.0.1.8000 = INTEGER: 44764
tcp-mib::tcpConnLocalPort.172.22.0.1.52266.172.22.0.1.8000 = INTEGER: 52266
tcp-mib::tcpConnLocalPort.172.22.0.1.54166.172.22.0.1.8000 = INTEGER: 54166
tcp-mib::tcpConnLocalPort.172.22.0.1.55808.172.22.0.1.8000 = INTEGER: 55808
tcp-mib::tcpConnLocalPort.172.22.0.1.55810.172.22.0.1.8000 = INTEGER: 55810
tcp-mib::tcpConnLocalPort.172.22.0.1.55826.172.22.0.1.8000 = INTEGER: 55826
tcp-mib::tcpConnLocalPort.172.22.0.1.55838.172.22.0.1.8000 = INTEGER: 55838
tcp-mib::tcpConnLocalPort.172.22.0.1.55846.172.22.0.1.8000 = INTEGER: 55846
tcp-mib::tcpConnLocalPort.172.22.0.1.55862.172.22.0.1.8000 = INTEGER: 55862
tcp-mib::tcpConnLocalPort.172.22.0.1.55870.172.22.0.1.8000 = INTEGER: 55870
tcp-mib::tcpConnLocalPort.172.22.0.1.55880.172.22.0.1.8000 = INTEGER: 55880
tcp-mib::tcpConnLocalPort.172.22.0.1.55894.172.22.0.1.8000 = INTEGER: 55894
tcp-mib::tcpConnLocalPort.172.22.0.1.55908.172.22.0.1.8000 = INTEGER: 55908
tcp-mib::tcpConnLocalPort.172.22.0.1.55924.172.22.0.1.8000 = INTEGER: 55924
tcp-mib::tcpConnLocalPort.172.22.0.1.55946.172.22.0.1.8000 = INTEGER: 55946
tcp-mib::tcpConnLocalPort.172.22.0.1.55950.172.22.0.1.8000 = INTEGER: 55950
tcp-mib::tcpConnLocalPort.172.22.0.1.55952.172.22.0.1.8000 = INTEGER: 55952
tcp-mib::tcpConnLocalPort.172.22.0.1.55958.172.22.0.1.8000 = INTEGER: 55958
tcp-mib::tcpConnLocalPort.172.22.0.1.55964.172.22.0.1.8000 = INTEGER: 55964
tcp-mib::tcpConnLocalPort.172.22.0.1.55970.172.22.0.1.8000 = INTEGER: 55970
tcp-mib::tcpConnLocalPort.172.22.0.1.55980.172.22.0.1.8000 = INTEGER: 55980
tcp-mib::tcpConnLocalPort.172.22.0.1.55996.172.22.0.1.8000 = INTEGER: 55996
tcp-mib::tcpConnLocalPort.172.22.0.1.56002.172.22.0.1.8000 = INTEGER: 56002
tcp-mib::tcpConnLocalPort.172.22.0.1.56010.172.22.0.1.8000 = INTEGER: 56010
tcp-mib::tcpConnLocalPort.172.22.0.1.56026.172.22.0.1.8000 = INTEGER: 56026
tcp-mib::tcpConnLocalPort.172.22.0.1.56042.172.22.0.1.8000 = INTEGER: 56042
tcp-mib::tcpConnLocalPort.172.22.0.1.56056.172.22.0.1.8000 = INTEGER: 56056
tcp-mib::tcpConnRemAddress.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnRemAddress.10.10.11.193.36844.8.8.8.8.53 = IpAddress: 8.8.8.8
tcp-mib::tcpConnRemAddress.127.0.0.1.34613.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnRemAddress.127.0.0.53.53.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnRemAddress.172.22.0.1.81.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnRemAddress.172.22.0.1.5432.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnRemAddress.172.22.0.1.5432.172.22.0.3.55856 = IpAddress: 172.22.0.3
tcp-mib::tcpConnRemAddress.172.22.0.1.5432.172.22.0.3.56694 = IpAddress: 172.22.0.3
tcp-mib::tcpConnRemAddress.172.22.0.1.8000.0.0.0.0.0 = IpAddress: 0.0.0.0
tcp-mib::tcpConnRemAddress.172.22.0.1.34800.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34802.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34810.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34814.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34820.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34836.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34842.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34852.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34864.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34866.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34874.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34886.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34906.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34908.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34920.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34926.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34932.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34944.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34954.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34960.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34966.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34968.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34970.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34972.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34976.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34980.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34986.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34994.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.34996.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35006.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35008.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35016.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35020.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35034.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35036.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35050.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35056.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35058.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35072.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35074.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35076.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35090.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35102.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35106.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35108.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35122.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35130.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35140.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.35156.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.37398.172.22.0.4.5432 = IpAddress: 172.22.0.4
tcp-mib::tcpConnRemAddress.172.22.0.1.37760.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.37762.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.39138.172.22.0.4.5432 = IpAddress: 172.22.0.4
tcp-mib::tcpConnRemAddress.172.22.0.1.44764.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.52266.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.54166.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55808.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55810.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55826.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55838.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55846.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55862.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55870.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55880.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55894.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55908.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55924.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55946.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55950.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55952.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55958.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55964.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55970.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55980.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.55996.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.56002.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.56010.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.56026.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.56042.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemAddress.172.22.0.1.56056.172.22.0.1.8000 = IpAddress: 172.22.0.1
tcp-mib::tcpConnRemPort.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0
tcp-mib::tcpConnRemPort.10.10.11.193.36844.8.8.8.8.53 = INTEGER: 53
tcp-mib::tcpConnRemPort.127.0.0.1.34613.0.0.0.0.0 = INTEGER: 0
tcp-mib::tcpConnRemPort.127.0.0.53.53.0.0.0.0.0 = INTEGER: 0
tcp-mib::tcpConnRemPort.172.22.0.1.81.0.0.0.0.0 = INTEGER: 0
tcp-mib::tcpConnRemPort.172.22.0.1.5432.0.0.0.0.0 = INTEGER: 0
tcp-mib::tcpConnRemPort.172.22.0.1.5432.172.22.0.3.55856 = INTEGER: 55856
tcp-mib::tcpConnRemPort.172.22.0.1.5432.172.22.0.3.56694 = INTEGER: 56694
tcp-mib::tcpConnRemPort.172.22.0.1.8000.0.0.0.0.0 = INTEGER: 0
tcp-mib::tcpConnRemPort.172.22.0.1.34800.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34802.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34810.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34814.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34820.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34836.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34842.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34852.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34864.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34866.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34874.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34886.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34906.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34908.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34920.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34926.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34932.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34944.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34954.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34960.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34966.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34968.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34970.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34972.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34976.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34980.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34986.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34994.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.34996.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35006.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35008.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35016.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35020.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35034.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35036.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35050.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35056.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35058.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35072.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35074.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35076.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35090.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35102.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35106.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35108.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35122.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35130.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35140.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.35156.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.37398.172.22.0.4.5432 = INTEGER: 5432
tcp-mib::tcpConnRemPort.172.22.0.1.37760.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.37762.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.39138.172.22.0.4.5432 = INTEGER: 5432
tcp-mib::tcpConnRemPort.172.22.0.1.44764.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.52266.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.54166.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55808.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55810.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55826.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55838.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55846.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55862.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55870.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55880.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55894.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55908.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55924.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55946.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55950.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55952.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55958.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55964.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55970.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55980.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.55996.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.56002.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.56010.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.56026.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.56042.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpConnRemPort.172.22.0.1.56056.172.22.0.1.8000 = INTEGER: 8000
tcp-mib::tcpInErrs.0 = Counter32: 22
tcp-mib::tcpOutRsts.0 = Counter32: 1048738
tcp-mib::tcpConnectionState.ipv4."10.10.11.193".58894.ipv4."8.8.8.8".53 = INTEGER: synSent(3)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".5432.ipv4."172.22.0.3".55856 = INTEGER: established(5)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".5432.ipv4."172.22.0.3".56694 = INTEGER: established(5)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34800.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34802.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34810.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34814.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34820.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34836.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34842.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34852.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34864.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34866.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34874.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34886.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34906.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34908.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34920.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34926.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34932.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34944.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34954.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34960.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34966.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34968.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34970.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34972.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34976.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34980.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34986.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34994.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".34996.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35006.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35008.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35016.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35020.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35034.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35036.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35050.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35056.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35058.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35072.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35074.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35076.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35090.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35102.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35106.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35108.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35122.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35130.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35140.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".35156.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".37398.ipv4."172.22.0.4".5432 = INTEGER: established(5)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".37760.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".37762.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".39138.ipv4."172.22.0.4".5432 = INTEGER: established(5)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".44764.ipv4."172.22.0.1".8000 = INTEGER: timeWait(11)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".52266.ipv4."172.22.0.1".8000 = INTEGER: timeWait(11)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".54166.ipv4."172.22.0.1".8000 = INTEGER: timeWait(11)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55808.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55810.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55826.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55838.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55846.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55862.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55870.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55880.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55894.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55908.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55924.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55946.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55950.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55952.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55958.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55964.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55970.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55980.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".55996.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".56002.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".56010.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".56026.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".56042.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionState.ipv4."172.22.0.1".56056.ipv4."172.22.0.1".8000 = INTEGER: closeWait(8)
tcp-mib::tcpConnectionProcess.ipv4."10.10.11.193".58894.ipv4."8.8.8.8".53 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".5432.ipv4."172.22.0.3".55856 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".5432.ipv4."172.22.0.3".56694 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34800.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34802.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34810.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34814.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34820.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34836.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34842.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34852.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34864.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34866.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34874.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34886.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34906.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34908.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34920.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34926.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34932.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34944.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34954.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34960.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34966.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34968.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34970.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34972.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34976.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34980.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34986.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34994.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".34996.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35006.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35008.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35016.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35020.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35034.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35036.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35050.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35056.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35058.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35072.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35074.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35076.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35090.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35102.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35106.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35108.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35122.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35130.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35140.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".35156.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".37398.ipv4."172.22.0.4".5432 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".37760.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".37762.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".39138.ipv4."172.22.0.4".5432 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".44764.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".52266.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".54166.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55808.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55810.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55826.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55838.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55846.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55862.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55870.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55880.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55894.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55908.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55924.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55946.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55950.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55952.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55958.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55964.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55970.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55980.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".55996.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".56002.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".56010.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".56026.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".56042.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpConnectionProcess.ipv4."172.22.0.1".56056.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv4."0.0.0.0".22 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv4."127.0.0.1".34613 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv4."127.0.0.53".53 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv4."172.22.0.1".81 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv4."172.22.0.1".5432 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv4."172.22.0.1".8000 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".22 = Gauge32: 0
tcp-mib::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".80 = Gauge32: 0
udp-mib::udpInDatagrams.0 = Counter32: 122856
udp-mib::udpNoPorts.0 = Counter32: 1721
udp-mib::udpInErrors.0 = Counter32: 0
udp-mib::udpOutDatagrams.0 = Counter32: 13822
udp-mib::udpLocalAddress.0.0.0.0.68 = IpAddress: 0.0.0.0
udp-mib::udpLocalAddress.0.0.0.0.161 = IpAddress: 0.0.0.0
udp-mib::udpLocalAddress.127.0.0.53.53 = IpAddress: 127.0.0.53
udp-mib::udpLocalPort.0.0.0.0.68 = INTEGER: 68
udp-mib::udpLocalPort.0.0.0.0.161 = INTEGER: 161
udp-mib::udpLocalPort.127.0.0.53.53 = INTEGER: 53
udp-mib::udpEndpointProcess.ipv4."0.0.0.0".68.ipv4."0.0.0.0".0.30782 = Gauge32: 0
udp-mib::udpEndpointProcess.ipv4."0.0.0.0".161.ipv4."0.0.0.0".0.32349 = Gauge32: 1218
udp-mib::udpEndpointProcess.ipv4."10.10.11.193".48102.ipv4."8.8.8.8".53.4386957 = Gauge32: 0
udp-mib::udpEndpointProcess.ipv4."10.10.11.193".49063.ipv4."8.8.8.8".53.4386958 = Gauge32: 0
udp-mib::udpEndpointProcess.ipv4."127.0.0.1".39383.ipv4."127.0.0.53".53.4387087 = Gauge32: 0
udp-mib::udpEndpointProcess.ipv4."127.0.0.53".53.ipv4."0.0.0.0".0.30404 = Gauge32: 0
udp-mib::udpEndpointProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".161.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.32350 = Gauge32: 1218
snmpv2-smi::transmission.7.2.1.1.2 = INTEGER: 2
snmpv2-smi::transmission.7.2.1.1.10 = INTEGER: 10
snmpv2-smi::transmission.7.2.1.1.12 = INTEGER: 12
snmpv2-smi::transmission.7.2.1.1.14 = INTEGER: 14
snmpv2-smi::transmission.7.2.1.3.2 = Counter32: 0
snmpv2-smi::transmission.7.2.1.3.10 = Counter32: 0
snmpv2-smi::transmission.7.2.1.3.12 = Counter32: 0
snmpv2-smi::transmission.7.2.1.3.14 = Counter32: 0
snmpv2-smi::transmission.7.2.1.7.2 = Counter32: 0
snmpv2-smi::transmission.7.2.1.7.10 = Counter32: 0
snmpv2-smi::transmission.7.2.1.7.12 = Counter32: 0
snmpv2-smi::transmission.7.2.1.7.14 = Counter32: 0
snmpv2-smi::transmission.7.2.1.10.2 = Counter32: 0
snmpv2-smi::transmission.7.2.1.10.10 = Counter32: 0
snmpv2-smi::transmission.7.2.1.10.12 = Counter32: 0
snmpv2-smi::transmission.7.2.1.10.14 = Counter32: 0
snmpv2-smi::transmission.7.2.1.11.2 = Counter32: 0
snmpv2-smi::transmission.7.2.1.11.10 = Counter32: 0
snmpv2-smi::transmission.7.2.1.11.12 = Counter32: 0
snmpv2-smi::transmission.7.2.1.11.14 = Counter32: 0
snmpv2-smi::transmission.7.2.1.13.2 = Counter32: 0
snmpv2-smi::transmission.7.2.1.13.10 = Counter32: 0
snmpv2-smi::transmission.7.2.1.13.12 = Counter32: 0
snmpv2-smi::transmission.7.2.1.13.14 = Counter32: 0
snmpv2-smi::transmission.7.2.1.16.2 = Counter32: 0
snmpv2-smi::transmission.7.2.1.16.10 = Counter32: 0
snmpv2-smi::transmission.7.2.1.16.12 = Counter32: 0
snmpv2-smi::transmission.7.2.1.16.14 = Counter32: 0
snmpv2-smi::transmission.7.2.1.19.2 = INTEGER: 3
snmpv2-smi::transmission.7.2.1.19.10 = INTEGER: 3
snmpv2-smi::transmission.7.2.1.19.12 = INTEGER: 3
snmpv2-smi::transmission.7.2.1.19.14 = INTEGER: 3
snmpv2-mib::snmpInPkts.0 = Counter32: 115461
snmpv2-mib::snmpOutPkts.0 = Counter32: 3837
snmpv2-mib::snmpInBadVersions.0 = Counter32: 0
snmpv2-mib::snmpInBadCommunityNames.0 = Counter32: 111605
snmpv2-mib::snmpInBadCommunityUses.0 = Counter32: 0
snmpv2-mib::snmpInASNParseErrs.0 = Counter32: 1
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: 3979
snmpv2-mib::snmpInTotalSetVars.0 = Counter32: 0
snmpv2-mib::snmpInGetRequests.0 = Counter32: 247
snmpv2-mib::snmpInGetNexts.0 = Counter32: 3587
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: 135
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: 3861
snmpv2-mib::snmpOutTraps.0 = Counter32: 0
snmpv2-mib::snmpEnableAuthenTraps.0 = INTEGER: disabled(2)
snmpv2-mib::snmpSilentDrops.0 = Counter32: 0
snmpv2-mib::snmpProxyDrops.0 = Counter32: 0
host-resources-mib::hrSystemUptime.0 = Timeticks: (1757166) 4:52:51.66
host-resources-mib::hrSystemDate.0 = STRING: 2023-12-27,13:7:25.0,+0:0
host-resources-mib::hrSystemInitialLoadDevice.0 = INTEGER: 393216
host-resources-mib::hrSystemInitialLoadParameters.0 = STRING: "BOOT_IMAGE=/vmlinuz-5.15.0-56-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro net.ifnames=0 biosdevname=0
"
host-resources-mib::hrSystemNumUsers.0 = Gauge32: 0
host-resources-mib::hrSystemProcesses.0 = Gauge32: 230
host-resources-mib::hrSystemMaxProcesses.0 = INTEGER: 0
host-resources-mib::hrMemorySize.0 = INTEGER: 3983184 KBytes
host-resources-mib::hrStorageIndex.1 = INTEGER: 1
host-resources-mib::hrStorageIndex.3 = INTEGER: 3
host-resources-mib::hrStorageIndex.6 = INTEGER: 6
host-resources-mib::hrStorageIndex.7 = INTEGER: 7
host-resources-mib::hrStorageIndex.8 = INTEGER: 8
host-resources-mib::hrStorageIndex.10 = INTEGER: 10
host-resources-mib::hrStorageIndex.11 = INTEGER: 11
host-resources-mib::hrStorageIndex.35 = INTEGER: 35
host-resources-mib::hrStorageIndex.36 = INTEGER: 36
host-resources-mib::hrStorageIndex.38 = INTEGER: 38
host-resources-mib::hrStorageIndex.39 = INTEGER: 39
host-resources-mib::hrStorageIndex.54 = INTEGER: 54
host-resources-mib::hrStorageIndex.55 = INTEGER: 55
host-resources-mib::hrStorageType.1 = OID: HOST-RESOURCES-TYPES::hrStorageRam
host-resources-mib::hrStorageType.3 = OID: HOST-RESOURCES-TYPES::hrStorageVirtualMemory
host-resources-mib::hrStorageType.6 = OID: HOST-RESOURCES-TYPES::hrStorageOther
host-resources-mib::hrStorageType.7 = OID: HOST-RESOURCES-TYPES::hrStorageOther
host-resources-mib::hrStorageType.8 = OID: HOST-RESOURCES-TYPES::hrStorageOther
host-resources-mib::hrStorageType.10 = OID: HOST-RESOURCES-TYPES::hrStorageVirtualMemory
host-resources-mib::hrStorageType.11 = OID: HOST-RESOURCES-TYPES::hrStorageOther
host-resources-mib::hrStorageType.35 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk
host-resources-mib::hrStorageType.36 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk
host-resources-mib::hrStorageType.38 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk
host-resources-mib::hrStorageType.39 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk
host-resources-mib::hrStorageType.54 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk
host-resources-mib::hrStorageType.55 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk
host-resources-mib::hrStorageDescr.1 = STRING: Physical memory
host-resources-mib::hrStorageDescr.3 = STRING: Virtual memory
host-resources-mib::hrStorageDescr.6 = STRING: Memory buffers
host-resources-mib::hrStorageDescr.7 = STRING: Cached memory
host-resources-mib::hrStorageDescr.8 = STRING: Shared memory
host-resources-mib::hrStorageDescr.10 = STRING: Swap space
host-resources-mib::hrStorageDescr.11 = STRING: Available memory
host-resources-mib::hrStorageDescr.35 = STRING: /run
host-resources-mib::hrStorageDescr.36 = STRING: /
host-resources-mib::hrStorageDescr.38 = STRING: /dev/shm
host-resources-mib::hrStorageDescr.39 = STRING: /run/lock
host-resources-mib::hrStorageDescr.54 = STRING: /boot
host-resources-mib::hrStorageDescr.55 = STRING: /run/snapd/ns
host-resources-mib::hrDeviceType.196608 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor
host-resources-mib::hrDeviceType.196609 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor
host-resources-mib::hrDeviceType.262145 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262146 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262147 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262148 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262149 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262150 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262151 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262152 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262154 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262156 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.262158 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork
host-resources-mib::hrDeviceType.786432 = OID: HOST-RESOURCES-TYPES::hrDeviceCoprocessor
host-resources-mib::hrDeviceDescr.196608 = STRING: AuthenticAMD: AMD EPYC 7302P 16-Core Processor
host-resources-mib::hrDeviceDescr.196609 = STRING: AuthenticAMD: AMD EPYC 7302P 16-Core Processor
host-resources-mib::hrDeviceDescr.262145 = STRING: network interface lo
host-resources-mib::hrDeviceDescr.262146 = STRING: network interface eth0
host-resources-mib::hrDeviceDescr.262147 = STRING: network interface docker0
host-resources-mib::hrDeviceDescr.262148 = STRING: network interface br-028c7a43f929
host-resources-mib::hrDeviceDescr.262149 = STRING: network interface br-24ddaa1f3b47
host-resources-mib::hrDeviceDescr.262150 = STRING: network interface br-3d63c18e314d
host-resources-mib::hrDeviceDescr.262151 = STRING: network interface br-7d5c72654da7
host-resources-mib::hrDeviceDescr.262152 = STRING: network interface br-a8a89c3bf6ff
host-resources-mib::hrDeviceDescr.262154 = STRING: network interface veth846d49c
host-resources-mib::hrDeviceDescr.262156 = STRING: network interface veth4346c47
host-resources-mib::hrDeviceDescr.262158 = STRING: network interface veth6bf7fc2
host-resources-mib::hrFSIndex.5 = INTEGER: 5
host-resources-mib::hrFSIndex.6 = INTEGER: 6
host-resources-mib::hrFSIndex.8 = INTEGER: 8
host-resources-mib::hrFSIndex.9 = INTEGER: 9
host-resources-mib::hrFSIndex.24 = INTEGER: 24
host-resources-mib::hrFSIndex.25 = INTEGER: 25
host-resources-mib::hrFSMountPoint.5 = STRING: "/run"
host-resources-mib::hrFSMountPoint.6 = STRING: "/"
host-resources-mib::hrFSMountPoint.8 = STRING: "/dev/shm"
host-resources-mib::hrFSMountPoint.9 = STRING: "/run/lock"
host-resources-mib::hrFSMountPoint.24 = STRING: "/boot"
host-resources-mib::hrFSMountPoint.25 = STRING: "/run/snapd/ns"
host-resources-mib::hrFSRemoteMountPoint.5 = ""
host-resources-mib::hrFSRemoteMountPoint.6 = ""
host-resources-mib::hrFSRemoteMountPoint.8 = ""
host-resources-mib::hrFSRemoteMountPoint.9 = ""
host-resources-mib::hrFSRemoteMountPoint.24 = ""
host-resources-mib::hrFSRemoteMountPoint.25 = ""
host-resources-mib::hrSWRunName.1 = STRING: "systemd"
host-resources-mib::hrSWRunName.2 = STRING: "kthreadd"
host-resources-mib::hrSWRunName.3 = STRING: "rcu_gp"
host-resources-mib::hrSWRunName.4 = STRING: "rcu_par_gp"
host-resources-mib::hrSWRunName.5 = STRING: "netns"
host-resources-mib::hrSWRunName.7 = STRING: "kworker/0:0H-events_highpri"
host-resources-mib::hrSWRunName.9 = STRING: "kworker/0:1H-events_highpri"
host-resources-mib::hrSWRunName.10 = STRING: "mm_percpu_wq"
host-resources-mib::hrSWRunName.11 = STRING: "rcu_tasks_rude_"
host-resources-mib::hrSWRunName.12 = STRING: "rcu_tasks_trace"
host-resources-mib::hrSWRunName.13 = STRING: "ksoftirqd/0"
host-resources-mib::hrSWRunName.14 = STRING: "rcu_sched"
host-resources-mib::hrSWRunName.15 = STRING: "migration/0"
host-resources-mib::hrSWRunName.16 = STRING: "idle_inject/0"
host-resources-mib::hrSWRunName.18 = STRING: "cpuhp/0"
host-resources-mib::hrSWRunName.19 = STRING: "cpuhp/1"
host-resources-mib::hrSWRunName.20 = STRING: "idle_inject/1"
host-resources-mib::hrSWRunName.21 = STRING: "migration/1"
host-resources-mib::hrSWRunName.22 = STRING: "ksoftirqd/1"
host-resources-mib::hrSWRunName.24 = STRING: "kworker/1:0H-events_highpri"
host-resources-mib::hrSWRunName.25 = STRING: "kdevtmpfs"
host-resources-mib::hrSWRunName.26 = STRING: "inet_frag_wq"
host-resources-mib::hrSWRunName.27 = STRING: "kauditd"
host-resources-mib::hrSWRunName.29 = STRING: "khungtaskd"
host-resources-mib::hrSWRunName.30 = STRING: "oom_reaper"
host-resources-mib::hrSWRunName.31 = STRING: "writeback"
host-resources-mib::hrSWRunName.32 = STRING: "kcompactd0"
host-resources-mib::hrSWRunName.33 = STRING: "ksmd"
host-resources-mib::hrSWRunName.34 = STRING: "khugepaged"
host-resources-mib::hrSWRunName.81 = STRING: "kintegrityd"
host-resources-mib::hrSWRunName.82 = STRING: "kblockd"
host-resources-mib::hrSWRunName.83 = STRING: "blkcg_punt_bio"
host-resources-mib::hrSWRunName.84 = STRING: "tpm_dev_wq"
host-resources-mib::hrSWRunName.85 = STRING: "ata_sff"
host-resources-mib::hrSWRunName.86 = STRING: "md"
host-resources-mib::hrSWRunName.87 = STRING: "edac-poller"
host-resources-mib::hrSWRunName.88 = STRING: "devfreq_wq"
host-resources-mib::hrSWRunName.89 = STRING: "watchdogd"
host-resources-mib::hrSWRunName.92 = STRING: "kswapd0"
host-resources-mib::hrSWRunName.93 = STRING: "ecryptfs-kthrea"
host-resources-mib::hrSWRunName.95 = STRING: "kthrotld"
host-resources-mib::hrSWRunName.96 = STRING: "irq/24-pciehp"
host-resources-mib::hrSWRunName.97 = STRING: "irq/25-pciehp"
host-resources-mib::hrSWRunName.98 = STRING: "irq/26-pciehp"
host-resources-mib::hrSWRunName.99 = STRING: "irq/27-pciehp"
host-resources-mib::hrSWRunName.100 = STRING: "irq/28-pciehp"
host-resources-mib::hrSWRunName.101 = STRING: "irq/29-pciehp"
host-resources-mib::hrSWRunName.102 = STRING: "irq/30-pciehp"
host-resources-mib::hrSWRunName.103 = STRING: "irq/31-pciehp"
host-resources-mib::hrSWRunName.104 = STRING: "irq/32-pciehp"
host-resources-mib::hrSWRunName.105 = STRING: "irq/33-pciehp"
host-resources-mib::hrSWRunName.106 = STRING: "irq/34-pciehp"
host-resources-mib::hrSWRunName.107 = STRING: "irq/35-pciehp"
host-resources-mib::hrSWRunName.108 = STRING: "irq/36-pciehp"
host-resources-mib::hrSWRunName.109 = STRING: "irq/37-pciehp"
host-resources-mib::hrSWRunName.110 = STRING: "irq/38-pciehp"
host-resources-mib::hrSWRunName.111 = STRING: "irq/39-pciehp"
host-resources-mib::hrSWRunName.112 = STRING: "irq/40-pciehp"
host-resources-mib::hrSWRunName.113 = STRING: "irq/41-pciehp"
host-resources-mib::hrSWRunName.114 = STRING: "irq/42-pciehp"
host-resources-mib::hrSWRunName.115 = STRING: "irq/43-pciehp"
host-resources-mib::hrSWRunName.116 = STRING: "irq/44-pciehp"
host-resources-mib::hrSWRunName.117 = STRING: "irq/45-pciehp"
host-resources-mib::hrSWRunName.118 = STRING: "irq/46-pciehp"
host-resources-mib::hrSWRunName.119 = STRING: "irq/47-pciehp"
host-resources-mib::hrSWRunName.120 = STRING: "irq/48-pciehp"
host-resources-mib::hrSWRunName.121 = STRING: "irq/49-pciehp"
host-resources-mib::hrSWRunName.122 = STRING: "irq/50-pciehp"
host-resources-mib::hrSWRunName.123 = STRING: "irq/51-pciehp"
host-resources-mib::hrSWRunName.124 = STRING: "irq/52-pciehp"
host-resources-mib::hrSWRunName.125 = STRING: "irq/53-pciehp"
host-resources-mib::hrSWRunName.126 = STRING: "irq/54-pciehp"
host-resources-mib::hrSWRunName.127 = STRING: "irq/55-pciehp"
host-resources-mib::hrSWRunName.128 = STRING: "acpi_thermal_pm"
host-resources-mib::hrSWRunName.130 = STRING: "scsi_eh_0"
host-resources-mib::hrSWRunName.131 = STRING: "scsi_tmf_0"
host-resources-mib::hrSWRunName.132 = STRING: "scsi_eh_1"
host-resources-mib::hrSWRunName.133 = STRING: "scsi_tmf_1"
host-resources-mib::hrSWRunName.135 = STRING: "vfio-irqfd-clea"
host-resources-mib::hrSWRunName.136 = STRING: "kworker/1:1H-events_highpri"
host-resources-mib::hrSWRunName.137 = STRING: "mld"
host-resources-mib::hrSWRunName.138 = STRING: "ipv6_addrconf"
host-resources-mib::hrSWRunName.150 = STRING: "kstrp"
host-resources-mib::hrSWRunName.153 = STRING: "zswap-shrink"
host-resources-mib::hrSWRunName.154 = STRING: "kworker/u257:0"
host-resources-mib::hrSWRunName.159 = STRING: "charger_manager"
host-resources-mib::hrSWRunName.203 = STRING: "scsi_eh_2"
host-resources-mib::hrSWRunName.204 = STRING: "scsi_tmf_2"
host-resources-mib::hrSWRunName.205 = STRING: "mpt_poll_0"
host-resources-mib::hrSWRunName.206 = STRING: "scsi_eh_3"
host-resources-mib::hrSWRunName.207 = STRING: "scsi_tmf_3"
host-resources-mib::hrSWRunName.208 = STRING: "mpt/0"
host-resources-mib::hrSWRunName.209 = STRING: "scsi_eh_4"
host-resources-mib::hrSWRunName.210 = STRING: "scsi_tmf_4"
host-resources-mib::hrSWRunName.211 = STRING: "scsi_eh_5"
host-resources-mib::hrSWRunName.212 = STRING: "scsi_tmf_5"
host-resources-mib::hrSWRunName.213 = STRING: "scsi_eh_6"
host-resources-mib::hrSWRunName.214 = STRING: "scsi_tmf_6"
host-resources-mib::hrSWRunName.215 = STRING: "scsi_eh_7"
host-resources-mib::hrSWRunName.216 = STRING: "scsi_tmf_7"
host-resources-mib::hrSWRunName.217 = STRING: "scsi_eh_8"
host-resources-mib::hrSWRunName.218 = STRING: "scsi_tmf_8"
host-resources-mib::hrSWRunName.219 = STRING: "scsi_eh_9"
host-resources-mib::hrSWRunName.220 = STRING: "scsi_tmf_9"
host-resources-mib::hrSWRunName.221 = STRING: "scsi_eh_10"
host-resources-mib::hrSWRunName.222 = STRING: "scsi_tmf_10"
host-resources-mib::hrSWRunName.223 = STRING: "scsi_eh_11"
host-resources-mib::hrSWRunName.224 = STRING: "scsi_tmf_11"
host-resources-mib::hrSWRunName.225 = STRING: "scsi_eh_12"
host-resources-mib::hrSWRunName.226 = STRING: "scsi_tmf_12"
host-resources-mib::hrSWRunName.227 = STRING: "scsi_eh_13"
host-resources-mib::hrSWRunName.228 = STRING: "scsi_tmf_13"
host-resources-mib::hrSWRunName.229 = STRING: "scsi_eh_14"
host-resources-mib::hrSWRunName.230 = STRING: "scsi_tmf_14"
host-resources-mib::hrSWRunName.231 = STRING: "scsi_eh_15"
host-resources-mib::hrSWRunName.232 = STRING: "scsi_tmf_15"
host-resources-mib::hrSWRunName.233 = STRING: "scsi_eh_16"
host-resources-mib::hrSWRunName.234 = STRING: "scsi_tmf_16"
host-resources-mib::hrSWRunName.235 = STRING: "scsi_eh_17"
host-resources-mib::hrSWRunName.236 = STRING: "scsi_tmf_17"
host-resources-mib::hrSWRunName.237 = STRING: "scsi_eh_18"
host-resources-mib::hrSWRunName.238 = STRING: "scsi_tmf_18"
host-resources-mib::hrSWRunName.239 = STRING: "scsi_eh_19"
host-resources-mib::hrSWRunName.240 = STRING: "scsi_tmf_19"
host-resources-mib::hrSWRunName.241 = STRING: "scsi_eh_20"
host-resources-mib::hrSWRunName.242 = STRING: "scsi_tmf_20"
host-resources-mib::hrSWRunName.243 = STRING: "scsi_eh_21"
host-resources-mib::hrSWRunName.244 = STRING: "scsi_tmf_21"
host-resources-mib::hrSWRunName.245 = STRING: "scsi_eh_22"
host-resources-mib::hrSWRunName.246 = STRING: "scsi_tmf_22"
host-resources-mib::hrSWRunName.247 = STRING: "scsi_eh_23"
host-resources-mib::hrSWRunName.248 = STRING: "scsi_tmf_23"
host-resources-mib::hrSWRunName.249 = STRING: "scsi_eh_24"
host-resources-mib::hrSWRunName.250 = STRING: "scsi_tmf_24"
host-resources-mib::hrSWRunName.251 = STRING: "scsi_eh_25"
host-resources-mib::hrSWRunName.252 = STRING: "scsi_tmf_25"
host-resources-mib::hrSWRunName.253 = STRING: "scsi_eh_26"
host-resources-mib::hrSWRunName.254 = STRING: "scsi_tmf_26"
host-resources-mib::hrSWRunName.255 = STRING: "scsi_eh_27"
host-resources-mib::hrSWRunName.256 = STRING: "scsi_tmf_27"
host-resources-mib::hrSWRunName.257 = STRING: "scsi_eh_28"
host-resources-mib::hrSWRunName.258 = STRING: "scsi_tmf_28"
host-resources-mib::hrSWRunName.259 = STRING: "scsi_eh_29"
host-resources-mib::hrSWRunName.260 = STRING: "scsi_tmf_29"
host-resources-mib::hrSWRunName.261 = STRING: "scsi_eh_30"
host-resources-mib::hrSWRunName.262 = STRING: "scsi_tmf_30"
host-resources-mib::hrSWRunName.263 = STRING: "scsi_eh_31"
host-resources-mib::hrSWRunName.264 = STRING: "scsi_tmf_31"
host-resources-mib::hrSWRunName.291 = STRING: "cryptd"
host-resources-mib::hrSWRunName.323 = STRING: "ttm_swap"
host-resources-mib::hrSWRunName.325 = STRING: "irq/16-vmwgfx"
host-resources-mib::hrSWRunName.327 = STRING: "card0-crtc0"
host-resources-mib::hrSWRunName.330 = STRING: "card0-crtc1"
host-resources-mib::hrSWRunName.331 = STRING: "card0-crtc2"
host-resources-mib::hrSWRunName.332 = STRING: "card0-crtc3"
host-resources-mib::hrSWRunName.333 = STRING: "card0-crtc4"
host-resources-mib::hrSWRunName.334 = STRING: "card0-crtc5"
host-resources-mib::hrSWRunName.335 = STRING: "card0-crtc6"
host-resources-mib::hrSWRunName.336 = STRING: "card0-crtc7"
host-resources-mib::hrSWRunName.337 = STRING: "scsi_eh_32"
host-resources-mib::hrSWRunName.338 = STRING: "scsi_tmf_32"
host-resources-mib::hrSWRunName.361 = STRING: "kdmflush"
host-resources-mib::hrSWRunName.363 = STRING: "kdmflush"
host-resources-mib::hrSWRunName.394 = STRING: "raid5wq"
host-resources-mib::hrSWRunName.452 = STRING: "jbd2/dm-0-8"
host-resources-mib::hrSWRunName.453 = STRING: "ext4-rsv-conver"
host-resources-mib::hrSWRunName.514 = STRING: "systemd-journal"
host-resources-mib::hrSWRunName.551 = STRING: "kaluad"
host-resources-mib::hrSWRunName.553 = STRING: "kmpath_rdacd"
host-resources-mib::hrSWRunName.555 = STRING: "kmpathd"
host-resources-mib::hrSWRunName.556 = STRING: "kmpath_handlerd"
host-resources-mib::hrSWRunName.557 = STRING: "multipathd"
host-resources-mib::hrSWRunName.560 = STRING: "systemd-udevd"
host-resources-mib::hrSWRunName.592 = STRING: "systemd-network"
host-resources-mib::hrSWRunName.712 = STRING: "jbd2/sda2-8"
host-resources-mib::hrSWRunName.718 = STRING: "ext4-rsv-conver"
host-resources-mib::hrSWRunName.767 = STRING: "systemd-resolve"
host-resources-mib::hrSWRunName.770 = STRING: "systemd-timesyn"
host-resources-mib::hrSWRunName.783 = STRING: "VGAuthService"
host-resources-mib::hrSWRunName.786 = STRING: "vmtoolsd"
host-resources-mib::hrSWRunName.819 = STRING: "dhclient"
host-resources-mib::hrSWRunName.899 = STRING: "dbus-daemon"
host-resources-mib::hrSWRunName.905 = STRING: "irqbalance"
host-resources-mib::hrSWRunName.906 = STRING: "networkd-dispat"
host-resources-mib::hrSWRunName.907 = STRING: "polkitd"
host-resources-mib::hrSWRunName.908 = STRING: "rsyslogd"
host-resources-mib::hrSWRunName.909 = STRING: "snapd"
host-resources-mib::hrSWRunName.910 = STRING: "systemd-logind"
host-resources-mib::hrSWRunName.911 = STRING: "udisksd"
host-resources-mib::hrSWRunName.920 = STRING: "ModemManager"
host-resources-mib::hrSWRunName.1216 = STRING: "cron"
host-resources-mib::hrSWRunName.1218 = STRING: "snmpd"
host-resources-mib::hrSWRunName.1247 = STRING: "containerd"
host-resources-mib::hrSWRunName.1250 = STRING: "agetty"
host-resources-mib::hrSWRunName.1256 = STRING: "sshd"
host-resources-mib::hrSWRunName.1276 = STRING: "apache2"
host-resources-mib::hrSWRunName.1341 = STRING: "dockerd"
host-resources-mib::hrSWRunName.1695 = STRING: "login.sh"
host-resources-mib::hrSWRunName.1738 = STRING: "docker-proxy"
host-resources-mib::hrSWRunName.1773 = STRING: "containerd-shim"
host-resources-mib::hrSWRunName.1794 = STRING: "postgres"
host-resources-mib::hrSWRunName.1871 = STRING: "docker-proxy"
host-resources-mib::hrSWRunName.1890 = STRING: "containerd-shim"
host-resources-mib::hrSWRunName.1910 = STRING: "python3"
host-resources-mib::hrSWRunName.1916 = STRING: "postgres"
host-resources-mib::hrSWRunName.1917 = STRING: "postgres"
host-resources-mib::hrSWRunName.1918 = STRING: "postgres"
host-resources-mib::hrSWRunName.1919 = STRING: "postgres"
host-resources-mib::hrSWRunName.1920 = STRING: "postgres"
host-resources-mib::hrSWRunName.1921 = STRING: "postgres"
host-resources-mib::hrSWRunName.1975 = STRING: "docker-proxy"
host-resources-mib::hrSWRunName.1988 = STRING: "containerd-shim"
host-resources-mib::hrSWRunName.2010 = STRING: "python"
host-resources-mib::hrSWRunName.2052 = STRING: "python3"
host-resources-mib::hrSWRunName.2053 = STRING: "python3"
host-resources-mib::hrSWRunName.2118 = STRING: "postgres"
host-resources-mib::hrSWRunName.2131 = STRING: "login.py"
host-resources-mib::hrSWRunName.2277 = STRING: "kworker/1:3-cgroup_destroy"
host-resources-mib::hrSWRunName.2348 = STRING: "kworker/0:2-events"
host-resources-mib::hrSWRunName.2357 = STRING: "upowerd"
host-resources-mib::hrSWRunName.2366 = STRING: "kworker/1:0-events"
host-resources-mib::hrSWRunName.2988 = STRING: "postgres"
host-resources-mib::hrSWRunName.1282651 = STRING: "kworker/0:1-events"
host-resources-mib::hrSWRunName.1283863 = STRING: "apache2"
host-resources-mib::hrSWRunName.1283891 = STRING: "apache2"
host-resources-mib::hrSWRunName.1283919 = STRING: "apache2"
host-resources-mib::hrSWRunName.1284060 = STRING: "kworker/u256:1-events_power_efficient"
host-resources-mib::hrSWRunName.1284078 = STRING: "kworker/u256:2-flush-253:0"
host-resources-mib::hrSWRunName.1284160 = STRING: "kworker/u256:3-events_power_efficient"
host-resources-mib::hrSWRunName.1284180 = STRING: "kworker/u256:0-writeback"
host-resources-mib::hrSWRunPath.1 = STRING: "/sbin/init"
host-resources-mib::hrSWRunPath.514 = STRING: "/lib/systemd/systemd-journald"
host-resources-mib::hrSWRunPath.551 = ""
host-resources-mib::hrSWRunPath.553 = ""
host-resources-mib::hrSWRunPath.555 = ""
host-resources-mib::hrSWRunPath.556 = ""
host-resources-mib::hrSWRunPath.557 = STRING: "/sbin/multipathd"
host-resources-mib::hrSWRunPath.560 = STRING: "/lib/systemd/systemd-udevd"
host-resources-mib::hrSWRunPath.592 = STRING: "/lib/systemd/systemd-networkd"
host-resources-mib::hrSWRunPath.712 = ""
host-resources-mib::hrSWRunPath.718 = ""
host-resources-mib::hrSWRunPath.767 = STRING: "/lib/systemd/systemd-resolved"
host-resources-mib::hrSWRunPath.770 = STRING: "/lib/systemd/systemd-timesyncd"
host-resources-mib::hrSWRunPath.783 = STRING: "/usr/bin/VGAuthService"
host-resources-mib::hrSWRunPath.786 = STRING: "/usr/bin/vmtoolsd"
host-resources-mib::hrSWRunPath.819 = STRING: "/sbin/dhclient"
host-resources-mib::hrSWRunPath.899 = STRING: "@dbus-daemon"
host-resources-mib::hrSWRunPath.905 = STRING: "/usr/sbin/irqbalance"
host-resources-mib::hrSWRunPath.906 = STRING: "/usr/bin/python3"
host-resources-mib::hrSWRunPath.907 = STRING: "/usr/libexec/polkitd"
host-resources-mib::hrSWRunPath.908 = STRING: "/usr/sbin/rsyslogd"
host-resources-mib::hrSWRunPath.909 = STRING: "/usr/lib/snapd/snapd"
host-resources-mib::hrSWRunPath.910 = STRING: "/lib/systemd/systemd-logind"
host-resources-mib::hrSWRunPath.911 = STRING: "/usr/libexec/udisks2/udisksd"
host-resources-mib::hrSWRunPath.920 = STRING: "/usr/sbin/ModemManager"
host-resources-mib::hrSWRunPath.1216 = STRING: "/usr/sbin/cron"
host-resources-mib::hrSWRunPath.1218 = STRING: "/usr/sbin/snmpd"
host-resources-mib::hrSWRunPath.1247 = STRING: "/usr/bin/containerd"
host-resources-mib::hrSWRunPath.1250 = STRING: "/sbin/agetty"
host-resources-mib::hrSWRunPath.1256 = STRING: "sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups"
host-resources-mib::hrSWRunPath.1276 = STRING: "/usr/sbin/apache2"
host-resources-mib::hrSWRunPath.1341 = STRING: "/usr/bin/dockerd"
host-resources-mib::hrSWRunPath.1695 = STRING: "/bin/bash"
host-resources-mib::hrSWRunPath.1738 = STRING: "/usr/bin/docker-proxy"
host-resources-mib::hrSWRunPath.1773 = STRING: "/usr/bin/containerd-shim-runc-v2"
host-resources-mib::hrSWRunPath.1794 = STRING: "postgres"
host-resources-mib::hrSWRunPath.1871 = STRING: "/usr/bin/docker-proxy"
host-resources-mib::hrSWRunPath.1890 = STRING: "/usr/bin/containerd-shim-runc-v2"
host-resources-mib::hrSWRunPath.1910 = STRING: "python3"
host-resources-mib::hrSWRunPath.1916 = STRING: "postgres: checkpointer "
host-resources-mib::hrSWRunPath.1917 = STRING: "postgres: background writer "
host-resources-mib::hrSWRunPath.1918 = STRING: "postgres: walwriter "
host-resources-mib::hrSWRunPath.1919 = STRING: "postgres: autovacuum launcher "
host-resources-mib::hrSWRunPath.1920 = STRING: "postgres: stats collector "
host-resources-mib::hrSWRunPath.1921 = STRING: "postgres: logical replication launcher "
host-resources-mib::hrSWRunPath.1975 = STRING: "/usr/bin/docker-proxy"
host-resources-mib::hrSWRunPath.1988 = STRING: "/usr/bin/containerd-shim-runc-v2"
host-resources-mib::hrSWRunPath.2010 = STRING: "python"
host-resources-mib::hrSWRunPath.2052 = STRING: "/usr/local/bin/python3"
host-resources-mib::hrSWRunPath.2053 = STRING: "/usr/local/bin/python3"
host-resources-mib::hrSWRunPath.2118 = STRING: "postgres: postgres mentorquotes_db 172.22.0.1(39138) idle"
host-resources-mib::hrSWRunPath.2131 = STRING: "/usr/bin/python3"
host-resources-mib::hrSWRunPath.2277 = ""
host-resources-mib::hrSWRunPath.2348 = ""
host-resources-mib::hrSWRunPath.2357 = STRING: "/usr/libexec/upowerd"
host-resources-mib::hrSWRunPath.2366 = ""
host-resources-mib::hrSWRunPath.2988 = STRING: "postgres: postgres mentorquotes_db 172.22.0.1(37398) idle"
host-resources-mib::hrSWRunPath.1282651 = ""
host-resources-mib::hrSWRunPath.1283863 = STRING: "/usr/sbin/apache2"
host-resources-mib::hrSWRunPath.1283891 = STRING: "/usr/sbin/apache2"
host-resources-mib::hrSWRunPath.1283919 = STRING: "/usr/sbin/apache2"
host-resources-mib::hrSWRunPath.1284060 = ""
host-resources-mib::hrSWRunPath.1284078 = ""
host-resources-mib::hrSWRunPath.1284160 = ""
host-resources-mib::hrSWRunPath.1284180 = ""
host-resources-mib::hrSWRunParameters.557 = STRING: "-d -s"
host-resources-mib::hrSWRunParameters.560 = ""
host-resources-mib::hrSWRunParameters.592 = ""
host-resources-mib::hrSWRunParameters.712 = ""
host-resources-mib::hrSWRunParameters.718 = ""
host-resources-mib::hrSWRunParameters.767 = ""
host-resources-mib::hrSWRunParameters.770 = ""
host-resources-mib::hrSWRunParameters.783 = ""
host-resources-mib::hrSWRunParameters.786 = ""
host-resources-mib::hrSWRunParameters.819 = STRING: "-1 -4 -v -i -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases -I -df /var/lib/dhcp/dhclient6.eth0.leases eth0"
host-resources-mib::hrSWRunParameters.899 = STRING: "--system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only"
host-resources-mib::hrSWRunParameters.905 = STRING: "--foreground"
host-resources-mib::hrSWRunParameters.906 = STRING: "/usr/bin/networkd-dispatcher --run-startup-triggers"
host-resources-mib::hrSWRunParameters.907 = STRING: "--no-debug"
host-resources-mib::hrSWRunParameters.908 = STRING: "-n -iNONE"
host-resources-mib::hrSWRunParameters.909 = ""
host-resources-mib::hrSWRunParameters.910 = ""
host-resources-mib::hrSWRunParameters.911 = ""
host-resources-mib::hrSWRunParameters.920 = ""
host-resources-mib::hrSWRunParameters.1216 = STRING: "-f -P"
host-resources-mib::hrSWRunParameters.1218 = STRING: "-LOw -u Debian-snmp -g Debian-snmp -I -smux mteTrigger mteTriggerConf -f"
host-resources-mib::hrSWRunParameters.1247 = ""
host-resources-mib::hrSWRunParameters.1250 = STRING: "-o -p -- \\u --noclear tty1 linux"
host-resources-mib::hrSWRunParameters.1256 = ""
host-resources-mib::hrSWRunParameters.1276 = STRING: "-k start"
host-resources-mib::hrSWRunParameters.1341 = STRING: "-H fd:// --containerd=/run/containerd/containerd.sock"
host-resources-mib::hrSWRunParameters.1695 = STRING: "/usr/local/bin/login.sh"
host-resources-mib::hrSWRunParameters.1738 = STRING: "-proto tcp -host-ip 172.22.0.1 -host-port 5432 -container-ip 172.22.0.4 -container-port 5432"
host-resources-mib::hrSWRunParameters.1773 = STRING: "-namespace moby -id 96e44c5692920491cdb954f3d352b3532a88425979cd48b3959b63bfec98a6f4 -address /run/containerd/containerd.sock"
host-resources-mib::hrSWRunParameters.1794 = ""
host-resources-mib::hrSWRunParameters.1871 = STRING: "-proto tcp -host-ip 172.22.0.1 -host-port 8000 -container-ip 172.22.0.3 -container-port 8000"
host-resources-mib::hrSWRunParameters.1890 = STRING: "-namespace moby -id eee0a852ae9a358e804aac967e98dac0f164714a59a8774a50c92961d73e38e1 -address /run/containerd/containerd.sock"
host-resources-mib::hrSWRunParameters.1910 = STRING: "-m uvicorn app.main:app --reload --workers 2 --host 0.0.0.0 --port 8000"
host-resources-mib::hrSWRunParameters.1916 = ""
host-resources-mib::hrSWRunParameters.1917 = ""
host-resources-mib::hrSWRunParameters.1918 = ""
host-resources-mib::hrSWRunParameters.1919 = ""
host-resources-mib::hrSWRunParameters.1920 = ""
host-resources-mib::hrSWRunParameters.1921 = ""
host-resources-mib::hrSWRunParameters.1975 = STRING: "-proto tcp -host-ip 172.22.0.1 -host-port 81 -container-ip 172.22.0.2 -container-port 80"
host-resources-mib::hrSWRunParameters.1988 = STRING: "-namespace moby -id c5aa49825c2925e39d0ed36f92c304888821e71ef5ccc006a98c671d68af0b7c -address /run/containerd/containerd.sock"
host-resources-mib::hrSWRunParameters.2010 = STRING: "main.py"
host-resources-mib::hrSWRunParameters.2052 = STRING: "-c from multiprocessing.semaphore_tracker import main;main(4)"
host-resources-mib::hrSWRunParameters.2053 = STRING: "-c from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) --multiprocessing-fork"
host-resources-mib::hrSWRunParameters.2118 = ""
host-resources-mib::hrSWRunParameters.2131 = STRING: "/usr/local/bin/login.py kj23sadkj123as0-d213"
host-resources-mib::hrSWRunParameters.2277 = ""
host-resources-mib::hrSWRunParameters.2348 = ""
host-resources-mib::hrSWRunParameters.2357 = ""
host-resources-mib::hrSWRunParameters.2366 = ""
host-resources-mib::hrSWRunParameters.2988 = ""
host-resources-mib::hrSWRunParameters.1282651 = ""
host-resources-mib::hrSWRunParameters.1283863 = STRING: "-k start"
host-resources-mib::hrSWRunParameters.1283891 = STRING: "-k start"
host-resources-mib::hrSWRunParameters.1283919 = STRING: "-k start"
host-resources-mib::hrSWRunParameters.1284060 = ""
host-resources-mib::hrSWRunParameters.1284078 = ""
host-resources-mib::hrSWRunParameters.1284160 = ""
host-resources-mib::hrSWRunParameters.1284180 = ""
host-resources-mib::hrSWInstalledName.1 = STRING: "adduser_3.118ubuntu5_all"
host-resources-mib::hrSWInstalledName.2 = STRING: "amd64-microcode_3.20191218.1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.3 = STRING: "apache2_2.4.52-1ubuntu4.2_amd64"
host-resources-mib::hrSWInstalledName.4 = STRING: "apache2-bin_2.4.52-1ubuntu4.2_amd64"
host-resources-mib::hrSWInstalledName.5 = STRING: "apache2-data_2.4.52-1ubuntu4.2_all"
host-resources-mib::hrSWInstalledName.6 = STRING: "apache2-utils_2.4.52-1ubuntu4.2_amd64"
host-resources-mib::hrSWInstalledName.7 = STRING: "apparmor_3.0.4-2ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.8 = STRING: "apport_2.20.11-0ubuntu82.2_all"
host-resources-mib::hrSWInstalledName.9 = STRING: "apport-symptoms_0.24_all"
host-resources-mib::hrSWInstalledName.10 = STRING: "apt_2.4.8_amd64"
host-resources-mib::hrSWInstalledName.11 = STRING: "apt-utils_2.4.8_amd64"
host-resources-mib::hrSWInstalledName.12 = STRING: "base-files_12ubuntu4.2_amd64"
host-resources-mib::hrSWInstalledName.13 = STRING: "base-passwd_3.5.52build1_amd64"
host-resources-mib::hrSWInstalledName.14 = STRING: "bash_5.1-6ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.15 = STRING: "bash-completion_1:2.11-5ubuntu1_all"
host-resources-mib::hrSWInstalledName.16 = STRING: "bc_1.07.1-3build1_amd64"
host-resources-mib::hrSWInstalledName.17 = STRING: "bcache-tools_1.0.8-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.18 = STRING: "bind9-dnsutils_1:9.18.1-1ubuntu1.2_amd64"
host-resources-mib::hrSWInstalledName.19 = STRING: "bind9-host_1:9.18.1-1ubuntu1.2_amd64"
host-resources-mib::hrSWInstalledName.20 = STRING: "bind9-libs_1:9.18.1-1ubuntu1.2_amd64"
host-resources-mib::hrSWInstalledName.21 = STRING: "binutils_2.38-4ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.22 = STRING: "binutils-common_2.38-4ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.23 = STRING: "binutils-x86-64-linux-gnu_2.38-4ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.24 = STRING: "bolt_0.9.2-1_amd64"
host-resources-mib::hrSWInstalledName.25 = STRING: "bridge-utils_1.7-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.26 = STRING: "bsdextrautils_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.27 = STRING: "bsdutils_1:2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.28 = STRING: "btrfs-progs_5.16.2-1_amd64"
host-resources-mib::hrSWInstalledName.29 = STRING: "build-essential_12.9ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.30 = STRING: "busybox-initramfs_1:1.30.1-7ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.31 = STRING: "busybox-static_1:1.30.1-7ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.32 = STRING: "byobu_5.133-1_all"
host-resources-mib::hrSWInstalledName.33 = STRING: "bzip2_1.0.8-5build1_amd64"
host-resources-mib::hrSWInstalledName.34 = STRING: "ca-certificates_20211016_all"
host-resources-mib::hrSWInstalledName.35 = STRING: "cloud-guest-utils_0.32-22-g45fe84a5-0ubuntu1_all"
host-resources-mib::hrSWInstalledName.36 = STRING: "cloud-initramfs-copymods_0.47ubuntu1_all"
host-resources-mib::hrSWInstalledName.37 = STRING: "cloud-initramfs-dyn-netconf_0.47ubuntu1_all"
host-resources-mib::hrSWInstalledName.38 = STRING: "command-not-found_22.04.0_all"
host-resources-mib::hrSWInstalledName.39 = STRING: "console-setup_1.205ubuntu3_all"
host-resources-mib::hrSWInstalledName.40 = STRING: "console-setup-linux_1.205ubuntu3_all"
host-resources-mib::hrSWInstalledName.41 = STRING: "containerd_1.5.9-0ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.42 = STRING: "coreutils_8.32-4.1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.43 = STRING: "cpio_2.13+dfsg-7_amd64"
host-resources-mib::hrSWInstalledName.44 = STRING: "cpp_4:11.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.45 = STRING: "cpp-11_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.46 = STRING: "cron_3.0pl1-137ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.47 = STRING: "cryptsetup_2:2.4.3-1ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.48 = STRING: "cryptsetup-bin_2:2.4.3-1ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.49 = STRING: "cryptsetup-initramfs_2:2.4.3-1ubuntu1.1_all"
host-resources-mib::hrSWInstalledName.50 = STRING: "curl_7.81.0-1ubuntu1.6_amd64"
host-resources-mib::hrSWInstalledName.51 = STRING: "dash_0.5.11+git20210903+057cd650a4ed-3build1_amd64"
host-resources-mib::hrSWInstalledName.52 = STRING: "dbus_1.12.20-2ubuntu4.1_amd64"
host-resources-mib::hrSWInstalledName.53 = STRING: "dbus-user-session_1.12.20-2ubuntu4.1_amd64"
host-resources-mib::hrSWInstalledName.54 = STRING: "debconf_1.5.79ubuntu1_all"
host-resources-mib::hrSWInstalledName.55 = STRING: "debconf-i18n_1.5.79ubuntu1_all"
host-resources-mib::hrSWInstalledName.56 = STRING: "debianutils_5.5-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.57 = STRING: "diffutils_1:3.8-0ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.58 = STRING: "dirmngr_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.59 = STRING: "distro-info_1.1build1_amd64"
host-resources-mib::hrSWInstalledName.60 = STRING: "distro-info-data_0.52ubuntu0.2_all"
host-resources-mib::hrSWInstalledName.61 = STRING: "dmeventd_2:1.02.175-2.1ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.62 = STRING: "dmidecode_3.3-3ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.63 = STRING: "dmsetup_2:1.02.175-2.1ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.64 = STRING: "dns-root-data_2021011101_all"
host-resources-mib::hrSWInstalledName.65 = STRING: "dnsmasq-base_2.86-1.1ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.66 = STRING: "docker-compose_1.29.2-1_all"
host-resources-mib::hrSWInstalledName.67 = STRING: "docker.io_20.10.12-0ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.68 = STRING: "dosfstools_4.2-1build3_amd64"
host-resources-mib::hrSWInstalledName.69 = STRING: "dpkg_1.21.1ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.70 = STRING: "dpkg-dev_1.21.1ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.71 = STRING: "e2fsprogs_1.46.5-2ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.72 = STRING: "ed_1.18-1_amd64"
host-resources-mib::hrSWInstalledName.73 = STRING: "eject_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.74 = STRING: "ethtool_1:5.16-1_amd64"
host-resources-mib::hrSWInstalledName.75 = STRING: "fakeroot_1.28-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.76 = STRING: "fdisk_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.77 = STRING: "file_1:5.41-3_amd64"
host-resources-mib::hrSWInstalledName.78 = STRING: "finalrd_9build1_all"
host-resources-mib::hrSWInstalledName.79 = STRING: "findutils_4.8.0-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.80 = STRING: "firmware-sof-signed_2.0-1ubuntu4_all"
host-resources-mib::hrSWInstalledName.81 = STRING: "fontconfig-config_2.13.1-4.2ubuntu5_all"
host-resources-mib::hrSWInstalledName.82 = STRING: "fonts-dejavu-core_2.37-2build1_all"
host-resources-mib::hrSWInstalledName.83 = STRING: "fonts-ubuntu-console_0.83-6ubuntu1_all"
host-resources-mib::hrSWInstalledName.84 = STRING: "friendly-recovery_0.2.42_all"
host-resources-mib::hrSWInstalledName.85 = STRING: "ftp_20210827-4build1_all"
host-resources-mib::hrSWInstalledName.86 = STRING: "fuse3_3.10.5-1build1_amd64"
host-resources-mib::hrSWInstalledName.87 = STRING: "fwupd_1.7.9-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.88 = STRING: "fwupd-signed_1.44+1.2-3_amd64"
host-resources-mib::hrSWInstalledName.89 = STRING: "g++_4:11.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.90 = STRING: "g++-11_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.91 = STRING: "gawk_1:5.1.0-1build3_amd64"
host-resources-mib::hrSWInstalledName.92 = STRING: "gcc_4:11.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.93 = STRING: "gcc-11_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.94 = STRING: "gcc-11-base_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.95 = STRING: "gcc-12-base_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.96 = STRING: "gdisk_1.0.8-4build1_amd64"
host-resources-mib::hrSWInstalledName.97 = STRING: "gettext-base_0.21-4ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.98 = STRING: "gir1.2-glib-2.0_1.72.0-1_amd64"
host-resources-mib::hrSWInstalledName.99 = STRING: "gir1.2-packagekitglib-1.0_1.2.5-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.100 = STRING: "git_1:2.34.1-1ubuntu1.5_amd64"
host-resources-mib::hrSWInstalledName.101 = STRING: "git-man_1:2.34.1-1ubuntu1.5_all"
host-resources-mib::hrSWInstalledName.102 = STRING: "gnupg_2.2.27-3ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.103 = STRING: "gnupg-l10n_2.2.27-3ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.104 = STRING: "gnupg-utils_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.105 = STRING: "gpg_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.106 = STRING: "gpg-agent_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.107 = STRING: "gpg-wks-client_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.108 = STRING: "gpg-wks-server_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.109 = STRING: "gpgconf_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.110 = STRING: "gpgsm_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.111 = STRING: "gpgv_2.2.27-3ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.112 = STRING: "grep_3.7-1build1_amd64"
host-resources-mib::hrSWInstalledName.113 = STRING: "groff-base_1.22.4-8build1_amd64"
host-resources-mib::hrSWInstalledName.114 = STRING: "grub-common_2.06-2ubuntu7_amd64"
host-resources-mib::hrSWInstalledName.115 = STRING: "grub-gfxpayload-lists_0.7_amd64"
host-resources-mib::hrSWInstalledName.116 = STRING: "grub-pc_2.06-2ubuntu7_amd64"
host-resources-mib::hrSWInstalledName.117 = STRING: "grub-pc-bin_2.06-2ubuntu7_amd64"
host-resources-mib::hrSWInstalledName.118 = STRING: "grub2-common_2.06-2ubuntu7_amd64"
host-resources-mib::hrSWInstalledName.119 = STRING: "gzip_1.10-4ubuntu4.1_amd64"
host-resources-mib::hrSWInstalledName.120 = STRING: "hdparm_9.60+ds-1build3_amd64"
host-resources-mib::hrSWInstalledName.121 = STRING: "hostname_3.23ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.122 = STRING: "htop_3.0.5-7build2_amd64"
host-resources-mib::hrSWInstalledName.123 = STRING: "ifupdown_0.8.36+nmu1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.124 = STRING: "info_6.8-4build1_amd64"
host-resources-mib::hrSWInstalledName.125 = STRING: "init_1.62_amd64"
host-resources-mib::hrSWInstalledName.126 = STRING: "init-system-helpers_1.62_all"
host-resources-mib::hrSWInstalledName.127 = STRING: "initramfs-tools_0.140ubuntu13_all"
host-resources-mib::hrSWInstalledName.128 = STRING: "initramfs-tools-bin_0.140ubuntu13_amd64"
host-resources-mib::hrSWInstalledName.129 = STRING: "initramfs-tools-core_0.140ubuntu13_all"
host-resources-mib::hrSWInstalledName.130 = STRING: "install-info_6.8-4build1_amd64"
host-resources-mib::hrSWInstalledName.131 = STRING: "intel-microcode_3.20220809.0ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.132 = STRING: "iproute2_5.15.0-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.133 = STRING: "iptables_1.8.7-1ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.134 = STRING: "iputils-ping_3:20211215-1_amd64"
host-resources-mib::hrSWInstalledName.135 = STRING: "iputils-tracepath_3:20211215-1_amd64"
host-resources-mib::hrSWInstalledName.136 = STRING: "irqbalance_1.8.0-1build1_amd64"
host-resources-mib::hrSWInstalledName.137 = STRING: "isc-dhcp-client_4.4.1-2.3ubuntu2.3_amd64"
host-resources-mib::hrSWInstalledName.138 = STRING: "isc-dhcp-common_4.4.1-2.3ubuntu2.3_amd64"
host-resources-mib::hrSWInstalledName.139 = STRING: "iso-codes_4.9.0-1_all"
host-resources-mib::hrSWInstalledName.140 = STRING: "iucode-tool_2.3.1-1build1_amd64"
host-resources-mib::hrSWInstalledName.141 = STRING: "javascript-common_11+nmu1_all"
host-resources-mib::hrSWInstalledName.142 = STRING: "kbd_2.3.0-3ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.143 = STRING: "keyboard-configuration_1.205ubuntu3_all"
host-resources-mib::hrSWInstalledName.144 = STRING: "klibc-utils_2.0.10-4_amd64"
host-resources-mib::hrSWInstalledName.145 = STRING: "kmod_29-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.146 = STRING: "kpartx_0.8.8-1ubuntu1.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.147 = STRING: "landscape-common_19.12-0ubuntu13_amd64"
host-resources-mib::hrSWInstalledName.148 = STRING: "less_590-1build1_amd64"
host-resources-mib::hrSWInstalledName.149 = STRING: "libacl1_2.3.1-1_amd64"
host-resources-mib::hrSWInstalledName.150 = STRING: "libaio1_0.3.112-13build1_amd64"
host-resources-mib::hrSWInstalledName.151 = STRING: "libalgorithm-diff-perl_1.201-1_all"
host-resources-mib::hrSWInstalledName.152 = STRING: "libalgorithm-diff-xs-perl_0.04-6build3_amd64"
host-resources-mib::hrSWInstalledName.153 = STRING: "libalgorithm-merge-perl_0.08-3_all"
host-resources-mib::hrSWInstalledName.154 = STRING: "libapparmor1_3.0.4-2ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.155 = STRING: "libappstream4_0.15.2-2_amd64"
host-resources-mib::hrSWInstalledName.156 = STRING: "libapr1_1.7.0-8build1_amd64"
host-resources-mib::hrSWInstalledName.157 = STRING: "libaprutil1_1.6.1-5ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.158 = STRING: "libaprutil1-dbd-sqlite3_1.6.1-5ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.159 = STRING: "libaprutil1-ldap_1.6.1-5ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.160 = STRING: "libapt-pkg6.0_2.4.8_amd64"
host-resources-mib::hrSWInstalledName.161 = STRING: "libarchive13_3.6.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.162 = STRING: "libargon2-1_0~20171227-0.3_amd64"
host-resources-mib::hrSWInstalledName.163 = STRING: "libasan6_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.164 = STRING: "libassuan0_2.5.5-1build1_amd64"
host-resources-mib::hrSWInstalledName.165 = STRING: "libatasmart4_0.19-5build2_amd64"
host-resources-mib::hrSWInstalledName.166 = STRING: "libatm1_1:2.5.1-4build2_amd64"
host-resources-mib::hrSWInstalledName.167 = STRING: "libatomic1_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.168 = STRING: "libattr1_1:2.5.1-1build1_amd64"
host-resources-mib::hrSWInstalledName.169 = STRING: "libaudit-common_1:3.0.7-1build1_all"
host-resources-mib::hrSWInstalledName.170 = STRING: "libaudit1_1:3.0.7-1build1_amd64"
host-resources-mib::hrSWInstalledName.171 = STRING: "libbinutils_2.38-4ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.172 = STRING: "libblkid1_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.173 = STRING: "libblockdev-crypto2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.174 = STRING: "libblockdev-fs2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.175 = STRING: "libblockdev-loop2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.176 = STRING: "libblockdev-part-err2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.177 = STRING: "libblockdev-part2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.178 = STRING: "libblockdev-swap2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.179 = STRING: "libblockdev-utils2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.180 = STRING: "libblockdev2_2.26-1_amd64"
host-resources-mib::hrSWInstalledName.181 = STRING: "libbpf0_1:0.5.0-1ubuntu22.04.1_amd64"
host-resources-mib::hrSWInstalledName.182 = STRING: "libbrotli1_1.0.9-2build6_amd64"
host-resources-mib::hrSWInstalledName.183 = STRING: "libbsd0_0.11.5-1_amd64"
host-resources-mib::hrSWInstalledName.184 = STRING: "libbz2-1.0_1.0.8-5build1_amd64"
host-resources-mib::hrSWInstalledName.185 = STRING: "libc-bin_2.35-0ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.186 = STRING: "libc-dev-bin_2.35-0ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.187 = STRING: "libc-devtools_2.35-0ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.188 = STRING: "libc6_2.35-0ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.189 = STRING: "libc6-dev_2.35-0ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.190 = STRING: "libcap-ng0_0.7.9-2.2build3_amd64"
host-resources-mib::hrSWInstalledName.191 = STRING: "libcap2_1:2.44-1build3_amd64"
host-resources-mib::hrSWInstalledName.192 = STRING: "libcap2-bin_1:2.44-1build3_amd64"
host-resources-mib::hrSWInstalledName.193 = STRING: "libcbor0.8_0.8.0-2ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.194 = STRING: "libcc1-0_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.195 = STRING: "libcom-err2_1.46.5-2ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.196 = STRING: "libcrypt-dev_1:4.4.27-1_amd64"
host-resources-mib::hrSWInstalledName.197 = STRING: "libcrypt1_1:4.4.27-1_amd64"
host-resources-mib::hrSWInstalledName.198 = STRING: "libcryptsetup12_2:2.4.3-1ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.199 = STRING: "libctf-nobfd0_2.38-4ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.200 = STRING: "libctf0_2.38-4ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.201 = STRING: "libcurl3-gnutls_7.81.0-1ubuntu1.6_amd64"
host-resources-mib::hrSWInstalledName.202 = STRING: "libcurl4_7.81.0-1ubuntu1.6_amd64"
host-resources-mib::hrSWInstalledName.203 = STRING: "libdb5.3_5.3.28+dfsg1-0.8ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.204 = STRING: "libdbus-1-3_1.12.20-2ubuntu4.1_amd64"
host-resources-mib::hrSWInstalledName.205 = STRING: "libdbus-glib-1-2_0.112-2build1_amd64"
host-resources-mib::hrSWInstalledName.206 = STRING: "libdebconfclient0_0.261ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.207 = STRING: "libdeflate0_1.10-2_amd64"
host-resources-mib::hrSWInstalledName.208 = STRING: "libdevmapper-event1.02.1_2:1.02.175-2.1ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.209 = STRING: "libdevmapper1.02.1_2:1.02.175-2.1ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.210 = STRING: "libdns-export1110_1:9.11.19+dfsg-2.1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.211 = STRING: "libdpkg-perl_1.21.1ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.212 = STRING: "libdrm-common_2.4.110-1ubuntu1_all"
host-resources-mib::hrSWInstalledName.213 = STRING: "libdrm2_2.4.110-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.214 = STRING: "libdw1_0.186-1build1_amd64"
host-resources-mib::hrSWInstalledName.215 = STRING: "libedit2_3.1-20210910-1build1_amd64"
host-resources-mib::hrSWInstalledName.216 = STRING: "libefiboot1_37-6ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.217 = STRING: "libefivar1_37-6ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.218 = STRING: "libelf1_0.186-1build1_amd64"
host-resources-mib::hrSWInstalledName.219 = STRING: "liberror-perl_0.17029-1_all"
host-resources-mib::hrSWInstalledName.220 = STRING: "libestr0_0.1.10-2.1build3_amd64"
host-resources-mib::hrSWInstalledName.221 = STRING: "libevdev2_1.12.1+dfsg-1_amd64"
host-resources-mib::hrSWInstalledName.222 = STRING: "libevent-core-2.1-7_2.1.12-stable-1build3_amd64"
host-resources-mib::hrSWInstalledName.223 = STRING: "libexpat1_2.4.7-1ubuntu0.2_amd64"
host-resources-mib::hrSWInstalledName.224 = STRING: "libexpat1-dev_2.4.7-1ubuntu0.2_amd64"
host-resources-mib::hrSWInstalledName.225 = STRING: "libext2fs2_1.46.5-2ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.226 = STRING: "libfakeroot_1.28-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.227 = STRING: "libfastjson4_0.99.9-1build2_amd64"
host-resources-mib::hrSWInstalledName.228 = STRING: "libfdisk1_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.229 = STRING: "libffi8_3.4.2-4_amd64"
host-resources-mib::hrSWInstalledName.230 = STRING: "libfido2-1_1.10.0-1_amd64"
host-resources-mib::hrSWInstalledName.231 = STRING: "libfile-fcntllock-perl_0.22-3build7_amd64"
host-resources-mib::hrSWInstalledName.232 = STRING: "libflashrom1_1.2-5build1_amd64"
host-resources-mib::hrSWInstalledName.233 = STRING: "libfontconfig1_2.13.1-4.2ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.234 = STRING: "libfreetype6_2.11.1+dfsg-1ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.235 = STRING: "libfribidi0_1.0.8-2ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.236 = STRING: "libftdi1-2_1.5-5build3_amd64"
host-resources-mib::hrSWInstalledName.237 = STRING: "libfuse3-3_3.10.5-1build1_amd64"
host-resources-mib::hrSWInstalledName.238 = STRING: "libfwupd2_1.7.9-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.239 = STRING: "libfwupdplugin5_1.7.9-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.240 = STRING: "libgcab-1.0-0_1.4-3build2_amd64"
host-resources-mib::hrSWInstalledName.241 = STRING: "libgcc-11-dev_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.242 = STRING: "libgcc-s1_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.243 = STRING: "libgcrypt20_1.9.4-3ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.244 = STRING: "libgd3_2.3.0-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.245 = STRING: "libgdbm-compat4_1.23-1_amd64"
host-resources-mib::hrSWInstalledName.246 = STRING: "libgdbm6_1.23-1_amd64"
host-resources-mib::hrSWInstalledName.247 = STRING: "libgirepository-1.0-1_1.72.0-1_amd64"
host-resources-mib::hrSWInstalledName.248 = STRING: "libglib2.0-0_2.72.4-0ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.249 = STRING: "libglib2.0-bin_2.72.4-0ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.250 = STRING: "libglib2.0-data_2.72.4-0ubuntu1_all"
host-resources-mib::hrSWInstalledName.251 = STRING: "libgmp10_2:6.2.1+dfsg-3ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.252 = STRING: "libgnutls30_3.7.3-4ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.253 = STRING: "libgomp1_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.254 = STRING: "libgpg-error0_1.43-3_amd64"
host-resources-mib::hrSWInstalledName.255 = STRING: "libgpgme11_1.16.0-1.2ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.256 = STRING: "libgpm2_1.20.7-10build1_amd64"
host-resources-mib::hrSWInstalledName.257 = STRING: "libgssapi-krb5-2_1.19.2-2_amd64"
host-resources-mib::hrSWInstalledName.258 = STRING: "libgstreamer1.0-0_1.20.3-0ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.259 = STRING: "libgudev-1.0-0_1:237-2build1_amd64"
host-resources-mib::hrSWInstalledName.260 = STRING: "libgusb2_0.3.10-1_amd64"
host-resources-mib::hrSWInstalledName.261 = STRING: "libhogweed6_3.7.3-1build2_amd64"
host-resources-mib::hrSWInstalledName.262 = STRING: "libicu70_70.1-2_amd64"
host-resources-mib::hrSWInstalledName.263 = STRING: "libidn2-0_2.3.2-2build1_amd64"
host-resources-mib::hrSWInstalledName.264 = STRING: "libimobiledevice6_1.3.0-6build3_amd64"
host-resources-mib::hrSWInstalledName.265 = STRING: "libinih1_53-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.266 = STRING: "libintl-perl_1.26-3build2_all"
host-resources-mib::hrSWInstalledName.267 = STRING: "libintl-xs-perl_1.26-3build2_amd64"
host-resources-mib::hrSWInstalledName.268 = STRING: "libip4tc2_1.8.7-1ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.269 = STRING: "libip6tc2_1.8.7-1ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.270 = STRING: "libisc-export1105_1:9.11.19+dfsg-2.1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.271 = STRING: "libisl23_0.24-2build1_amd64"
host-resources-mib::hrSWInstalledName.272 = STRING: "libisns0_0.101-0ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.273 = STRING: "libitm1_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.274 = STRING: "libjansson4_2.13.1-1.1build3_amd64"
host-resources-mib::hrSWInstalledName.275 = STRING: "libjbig0_2.1-3.1ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.276 = STRING: "libjcat1_0.1.9-1_amd64"
host-resources-mib::hrSWInstalledName.277 = STRING: "libjpeg-turbo8_2.1.2-0ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.278 = STRING: "libjpeg8_8c-2ubuntu10_amd64"
host-resources-mib::hrSWInstalledName.279 = STRING: "libjs-jquery_3.6.0+dfsg+~3.5.13-1_all"
host-resources-mib::hrSWInstalledName.280 = STRING: "libjs-sphinxdoc_4.3.2-1_all"
host-resources-mib::hrSWInstalledName.281 = STRING: "libjs-underscore_1.13.2~dfsg-2_all"
host-resources-mib::hrSWInstalledName.282 = STRING: "libjson-c5_0.15-3~ubuntu1.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.283 = STRING: "libjson-glib-1.0-0_1.6.6-1build1_amd64"
host-resources-mib::hrSWInstalledName.284 = STRING: "libjson-glib-1.0-common_1.6.6-1build1_all"
host-resources-mib::hrSWInstalledName.285 = STRING: "libk5crypto3_1.19.2-2_amd64"
host-resources-mib::hrSWInstalledName.286 = STRING: "libkeyutils1_1.6.1-2ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.287 = STRING: "libklibc_2.0.10-4_amd64"
host-resources-mib::hrSWInstalledName.288 = STRING: "libkmod2_29-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.289 = STRING: "libkrb5-3_1.19.2-2_amd64"
host-resources-mib::hrSWInstalledName.290 = STRING: "libkrb5support0_1.19.2-2_amd64"
host-resources-mib::hrSWInstalledName.291 = STRING: "libksba8_1.6.0-2ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.292 = STRING: "libldap-2.5-0_2.5.13+dfsg-0ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.293 = STRING: "libldap-common_2.5.13+dfsg-0ubuntu0.22.04.1_all"
host-resources-mib::hrSWInstalledName.294 = STRING: "liblmdb0_0.9.24-1build2_amd64"
host-resources-mib::hrSWInstalledName.295 = STRING: "liblocale-gettext-perl_1.07-4build3_amd64"
host-resources-mib::hrSWInstalledName.296 = STRING: "liblsan0_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.297 = STRING: "liblua5.3-0_5.3.6-1build1_amd64"
host-resources-mib::hrSWInstalledName.298 = STRING: "liblvm2cmd2.03_2.03.11-2.1ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.299 = STRING: "liblz4-1_1.9.3-2build2_amd64"
host-resources-mib::hrSWInstalledName.300 = STRING: "liblzma5_5.2.5-2ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.301 = STRING: "liblzo2-2_2.10-2build3_amd64"
host-resources-mib::hrSWInstalledName.302 = STRING: "libmagic-mgc_1:5.41-3_amd64"
host-resources-mib::hrSWInstalledName.303 = STRING: "libmagic1_1:5.41-3_amd64"
host-resources-mib::hrSWInstalledName.304 = STRING: "libmaxminddb0_1.5.2-1build2_amd64"
host-resources-mib::hrSWInstalledName.305 = STRING: "libmbim-glib4_1.26.2-1build1_amd64"
host-resources-mib::hrSWInstalledName.306 = STRING: "libmbim-proxy_1.26.2-1build1_amd64"
host-resources-mib::hrSWInstalledName.307 = STRING: "libmd0_1.0.4-1build1_amd64"
host-resources-mib::hrSWInstalledName.308 = STRING: "libmm-glib0_1.18.6-1_amd64"
host-resources-mib::hrSWInstalledName.309 = STRING: "libmnl0_1.0.4-3build2_amd64"
host-resources-mib::hrSWInstalledName.310 = STRING: "libmodule-find-perl_0.15-1_all"
host-resources-mib::hrSWInstalledName.311 = STRING: "libmodule-scandeps-perl_1.31-1_all"
host-resources-mib::hrSWInstalledName.312 = STRING: "libmount1_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.313 = STRING: "libmpc3_1.2.1-2build1_amd64"
host-resources-mib::hrSWInstalledName.314 = STRING: "libmpdec3_2.5.1-2build2_amd64"
host-resources-mib::hrSWInstalledName.315 = STRING: "libmpfr6_4.1.0-3build3_amd64"
host-resources-mib::hrSWInstalledName.316 = STRING: "libmspack0_0.10.1-2build2_amd64"
host-resources-mib::hrSWInstalledName.317 = STRING: "libncurses6_6.3-2_amd64"
host-resources-mib::hrSWInstalledName.318 = STRING: "libncursesw6_6.3-2_amd64"
host-resources-mib::hrSWInstalledName.319 = STRING: "libnetfilter-conntrack3_1.0.9-1_amd64"
host-resources-mib::hrSWInstalledName.320 = STRING: "libnettle8_3.7.3-1build2_amd64"
host-resources-mib::hrSWInstalledName.321 = STRING: "libnewt0.52_0.52.21-5ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.322 = STRING: "libnfnetlink0_1.0.1-3build3_amd64"
host-resources-mib::hrSWInstalledName.323 = STRING: "libnftables1_1.0.2-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.324 = STRING: "libnftnl11_1.2.1-1build1_amd64"
host-resources-mib::hrSWInstalledName.325 = STRING: "libnghttp2-14_1.43.0-1build3_amd64"
host-resources-mib::hrSWInstalledName.326 = STRING: "libnginx-mod-http-geoip2_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.327 = STRING: "libnginx-mod-http-image-filter_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.328 = STRING: "libnginx-mod-http-xslt-filter_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.329 = STRING: "libnginx-mod-mail_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.330 = STRING: "libnginx-mod-stream_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.331 = STRING: "libnginx-mod-stream-geoip2_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.332 = STRING: "libnl-3-200_3.5.0-0.1_amd64"
host-resources-mib::hrSWInstalledName.333 = STRING: "libnl-genl-3-200_3.5.0-0.1_amd64"
host-resources-mib::hrSWInstalledName.334 = STRING: "libnpth0_1.6-3build2_amd64"
host-resources-mib::hrSWInstalledName.335 = STRING: "libnsl-dev_1.3.0-2build2_amd64"
host-resources-mib::hrSWInstalledName.336 = STRING: "libnsl2_1.3.0-2build2_amd64"
host-resources-mib::hrSWInstalledName.337 = STRING: "libnspr4_2:4.32-3build1_amd64"
host-resources-mib::hrSWInstalledName.338 = STRING: "libnss-systemd_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.339 = STRING: "libnss3_2:3.68.2-0ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.340 = STRING: "libntfs-3g89_1:2021.8.22-3ubuntu1.2_amd64"
host-resources-mib::hrSWInstalledName.341 = STRING: "libnuma1_2.0.14-3ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.342 = STRING: "libopeniscsiusr_2.1.5-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.343 = STRING: "libp11-kit0_0.24.0-6build1_amd64"
host-resources-mib::hrSWInstalledName.344 = STRING: "libpackagekit-glib2-18_1.2.5-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.345 = STRING: "libpam-cap_1:2.44-1build3_amd64"
host-resources-mib::hrSWInstalledName.346 = STRING: "libpam-modules_1.4.0-11ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.347 = STRING: "libpam-modules-bin_1.4.0-11ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.348 = STRING: "libpam-runtime_1.4.0-11ubuntu2_all"
host-resources-mib::hrSWInstalledName.349 = STRING: "libpam-systemd_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.350 = STRING: "libpam0g_1.4.0-11ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.351 = STRING: "libparted-fs-resize0_3.4-2build1_amd64"
host-resources-mib::hrSWInstalledName.352 = STRING: "libparted2_3.4-2build1_amd64"
host-resources-mib::hrSWInstalledName.353 = STRING: "libpcap0.8_1.10.1-4build1_amd64"
host-resources-mib::hrSWInstalledName.354 = STRING: "libpci3_1:3.7.0-6_amd64"
host-resources-mib::hrSWInstalledName.355 = STRING: "libpcre2-8-0_10.39-3ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.356 = STRING: "libpcre3_2:8.39-13ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.357 = STRING: "libperl5.34_5.34.0-3ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.358 = STRING: "libpipeline1_1.5.5-1_amd64"
host-resources-mib::hrSWInstalledName.359 = STRING: "libplist3_2.2.0-6build2_amd64"
host-resources-mib::hrSWInstalledName.360 = STRING: "libplymouth5_0.9.5+git20211018-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.361 = STRING: "libpng16-16_1.6.37-3build5_amd64"
host-resources-mib::hrSWInstalledName.362 = STRING: "libpolkit-agent-1-0_0.105-33_amd64"
host-resources-mib::hrSWInstalledName.363 = STRING: "libpolkit-gobject-1-0_0.105-33_amd64"
host-resources-mib::hrSWInstalledName.364 = STRING: "libpopt0_1.18-3build1_amd64"
host-resources-mib::hrSWInstalledName.365 = STRING: "libpq5_14.5-0ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.366 = STRING: "libproc-processtable-perl_0.634-1build1_amd64"
host-resources-mib::hrSWInstalledName.367 = STRING: "libprocps8_2:3.3.17-6ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.368 = STRING: "libpsl5_0.21.0-1.2build2_amd64"
host-resources-mib::hrSWInstalledName.369 = STRING: "libpython3-dev_3.10.6-1~22.04_amd64"
host-resources-mib::hrSWInstalledName.370 = STRING: "libpython3-stdlib_3.10.6-1~22.04_amd64"
host-resources-mib::hrSWInstalledName.371 = STRING: "libpython3.10_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.372 = STRING: "libpython3.10-dev_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.373 = STRING: "libpython3.10-minimal_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.374 = STRING: "libpython3.10-stdlib_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.375 = STRING: "libqmi-glib5_1.30.4-1_amd64"
host-resources-mib::hrSWInstalledName.376 = STRING: "libqmi-proxy_1.30.4-1_amd64"
host-resources-mib::hrSWInstalledName.377 = STRING: "libquadmath0_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.378 = STRING: "libreadline8_8.1.2-1_amd64"
host-resources-mib::hrSWInstalledName.379 = STRING: "librtmp1_2.4+20151223.gitfa8646d.1-2build4_amd64"
host-resources-mib::hrSWInstalledName.380 = STRING: "libsasl2-2_2.1.27+dfsg2-3ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.381 = STRING: "libsasl2-modules_2.1.27+dfsg2-3ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.382 = STRING: "libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.383 = STRING: "libseccomp2_2.5.3-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.384 = STRING: "libselinux1_3.3-1build2_amd64"
host-resources-mib::hrSWInstalledName.385 = STRING: "libsemanage-common_3.3-1build2_all"
host-resources-mib::hrSWInstalledName.386 = STRING: "libsemanage2_3.3-1build2_amd64"
host-resources-mib::hrSWInstalledName.387 = STRING: "libsensors-config_1:3.6.0-7ubuntu1_all"
host-resources-mib::hrSWInstalledName.388 = STRING: "libsensors5_1:3.6.0-7ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.389 = STRING: "libsepol2_3.3-1build1_amd64"
host-resources-mib::hrSWInstalledName.390 = STRING: "libsgutils2-2_1.46-1build1_amd64"
host-resources-mib::hrSWInstalledName.391 = STRING: "libsigsegv2_2.13-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.392 = STRING: "libslang2_2.3.2-5build4_amd64"
host-resources-mib::hrSWInstalledName.393 = STRING: "libsmartcols1_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.394 = STRING: "libsmbios-c2_2.4.3-1build1_amd64"
host-resources-mib::hrSWInstalledName.395 = STRING: "libsnmp-base_5.9.1+dfsg-1ubuntu2.2_all"
host-resources-mib::hrSWInstalledName.396 = STRING: "libsnmp40_5.9.1+dfsg-1ubuntu2.2_amd64"
host-resources-mib::hrSWInstalledName.397 = STRING: "libsodium23_1.0.18-1build2_amd64"
host-resources-mib::hrSWInstalledName.398 = STRING: "libsort-naturally-perl_1.03-2_all"
host-resources-mib::hrSWInstalledName.399 = STRING: "libsqlite3-0_3.37.2-2ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.400 = STRING: "libss2_1.46.5-2ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.401 = STRING: "libssh-4_0.9.6-2build1_amd64"
host-resources-mib::hrSWInstalledName.402 = STRING: "libssl3_3.0.2-0ubuntu1.7_amd64"
host-resources-mib::hrSWInstalledName.403 = STRING: "libstdc++-11-dev_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.404 = STRING: "libstdc++6_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.405 = STRING: "libstemmer0d_2.2.0-1build1_amd64"
host-resources-mib::hrSWInstalledName.406 = STRING: "libsystemd0_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.407 = STRING: "libtasn1-6_4.18.0-4build1_amd64"
host-resources-mib::hrSWInstalledName.408 = STRING: "libtcl8.6_8.6.12+dfsg-1build1_amd64"
host-resources-mib::hrSWInstalledName.409 = STRING: "libterm-readkey-perl_2.38-1build4_amd64"
host-resources-mib::hrSWInstalledName.410 = STRING: "libtext-charwidth-perl_0.04-10build3_amd64"
host-resources-mib::hrSWInstalledName.411 = STRING: "libtext-iconv-perl_1.7-7build3_amd64"
host-resources-mib::hrSWInstalledName.412 = STRING: "libtext-wrapi18n-perl_0.06-9_all"
host-resources-mib::hrSWInstalledName.413 = STRING: "libtiff5_4.3.0-6ubuntu0.3_amd64"
host-resources-mib::hrSWInstalledName.414 = STRING: "libtinfo6_6.3-2_amd64"
host-resources-mib::hrSWInstalledName.415 = STRING: "libtirpc-common_1.3.2-2ubuntu0.1_all"
host-resources-mib::hrSWInstalledName.416 = STRING: "libtirpc-dev_1.3.2-2ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.417 = STRING: "libtirpc3_1.3.2-2ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.418 = STRING: "libtsan0_11.3.0-1ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.419 = STRING: "libtss2-esys-3.0.2-0_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.420 = STRING: "libtss2-mu0_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.421 = STRING: "libtss2-sys1_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.422 = STRING: "libtss2-tcti-cmd0_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.423 = STRING: "libtss2-tcti-device0_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.424 = STRING: "libtss2-tcti-mssim0_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.425 = STRING: "libtss2-tcti-swtpm0_3.2.0-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.426 = STRING: "libubsan1_12.1.0-2ubuntu1~22.04_amd64"
host-resources-mib::hrSWInstalledName.427 = STRING: "libuchardet0_0.0.7-1build2_amd64"
host-resources-mib::hrSWInstalledName.428 = STRING: "libudev1_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.429 = STRING: "libudisks2-0_2.9.4-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.430 = STRING: "libunistring2_1.0-1_amd64"
host-resources-mib::hrSWInstalledName.431 = STRING: "libunwind8_1.3.2-2build2_amd64"
host-resources-mib::hrSWInstalledName.432 = STRING: "libupower-glib3_0.99.17-1_amd64"
host-resources-mib::hrSWInstalledName.433 = STRING: "liburcu8_0.13.1-1_amd64"
host-resources-mib::hrSWInstalledName.434 = STRING: "libusb-1.0-0_2:1.0.25-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.435 = STRING: "libusbmuxd6_2.0.2-3build2_amd64"
host-resources-mib::hrSWInstalledName.436 = STRING: "libutempter0_1.2.1-2build2_amd64"
host-resources-mib::hrSWInstalledName.437 = STRING: "libuuid1_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.438 = STRING: "libuv1_1.43.0-1_amd64"
host-resources-mib::hrSWInstalledName.439 = STRING: "libvolume-key1_0.3.12-3.1build3_amd64"
host-resources-mib::hrSWInstalledName.440 = STRING: "libwebp7_1.2.2-2_amd64"
host-resources-mib::hrSWInstalledName.441 = STRING: "libwrap0_7.6.q-31build2_amd64"
host-resources-mib::hrSWInstalledName.442 = STRING: "libx11-6_2:1.7.5-1_amd64"
host-resources-mib::hrSWInstalledName.443 = STRING: "libx11-data_2:1.7.5-1_all"
host-resources-mib::hrSWInstalledName.444 = STRING: "libxau6_1:1.0.9-1build5_amd64"
host-resources-mib::hrSWInstalledName.445 = STRING: "libxcb1_1.14-3ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.446 = STRING: "libxdmcp6_1:1.1.3-0ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.447 = STRING: "libxext6_2:1.3.4-1build1_amd64"
host-resources-mib::hrSWInstalledName.448 = STRING: "libxml2_2.9.13+dfsg-1ubuntu0.2_amd64"
host-resources-mib::hrSWInstalledName.449 = STRING: "libxmlb2_0.3.6-2build1_amd64"
host-resources-mib::hrSWInstalledName.450 = STRING: "libxmlsec1_1.2.33-1build2_amd64"
host-resources-mib::hrSWInstalledName.451 = STRING: "libxmlsec1-openssl_1.2.33-1build2_amd64"
host-resources-mib::hrSWInstalledName.452 = STRING: "libxmuu1_2:1.1.3-3_amd64"
host-resources-mib::hrSWInstalledName.453 = STRING: "libxpm4_1:3.5.12-1build2_amd64"
host-resources-mib::hrSWInstalledName.454 = STRING: "libxslt1.1_1.1.34-4ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.455 = STRING: "libxtables12_1.8.7-1ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.456 = STRING: "libxxhash0_0.8.1-1_amd64"
host-resources-mib::hrSWInstalledName.457 = STRING: "libyaml-0-2_0.2.2-1build2_amd64"
host-resources-mib::hrSWInstalledName.458 = STRING: "libzstd1_1.4.8+dfsg-3build1_amd64"
host-resources-mib::hrSWInstalledName.459 = STRING: "linux-base_4.5ubuntu9_all"
host-resources-mib::hrSWInstalledName.460 = STRING: "linux-firmware_20220329.git681281e4-0ubuntu3.7_all"
host-resources-mib::hrSWInstalledName.461 = STRING: "linux-generic_5.15.0.56.54_amd64"
host-resources-mib::hrSWInstalledName.462 = STRING: "linux-headers-5.15.0-37_5.15.0-37.39_all"
host-resources-mib::hrSWInstalledName.463 = STRING: "linux-headers-5.15.0-37-generic_5.15.0-37.39_amd64"
host-resources-mib::hrSWInstalledName.464 = STRING: "linux-headers-5.15.0-56_5.15.0-56.62_all"
host-resources-mib::hrSWInstalledName.465 = STRING: "linux-headers-5.15.0-56-generic_5.15.0-56.62_amd64"
host-resources-mib::hrSWInstalledName.466 = STRING: "linux-headers-generic_5.15.0.56.54_amd64"
host-resources-mib::hrSWInstalledName.467 = STRING: "linux-image-5.15.0-37-generic_5.15.0-37.39_amd64"
host-resources-mib::hrSWInstalledName.468 = STRING: "linux-image-5.15.0-56-generic_5.15.0-56.62_amd64"
host-resources-mib::hrSWInstalledName.469 = STRING: "linux-image-generic_5.15.0.56.54_amd64"
host-resources-mib::hrSWInstalledName.470 = STRING: "linux-libc-dev_5.15.0-56.62_amd64"
host-resources-mib::hrSWInstalledName.471 = STRING: "linux-modules-5.15.0-25-generic_5.15.0-25.25_amd64"
host-resources-mib::hrSWInstalledName.472 = STRING: "linux-modules-5.15.0-37-generic_5.15.0-37.39_amd64"
host-resources-mib::hrSWInstalledName.473 = STRING: "linux-modules-5.15.0-56-generic_5.15.0-56.62_amd64"
host-resources-mib::hrSWInstalledName.474 = STRING: "linux-modules-extra-5.15.0-25-generic_5.15.0-25.25_amd64"
host-resources-mib::hrSWInstalledName.475 = STRING: "linux-modules-extra-5.15.0-37-generic_5.15.0-37.39_amd64"
host-resources-mib::hrSWInstalledName.476 = STRING: "linux-modules-extra-5.15.0-56-generic_5.15.0-56.62_amd64"
host-resources-mib::hrSWInstalledName.477 = STRING: "locales_2.35-0ubuntu3.1_all"
host-resources-mib::hrSWInstalledName.478 = STRING: "login_1:4.8.1-2ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.479 = STRING: "logrotate_3.19.0-1ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.480 = STRING: "logsave_1.46.5-2ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.481 = STRING: "lsb-base_11.1.0ubuntu4_all"
host-resources-mib::hrSWInstalledName.482 = STRING: "lsb-release_11.1.0ubuntu4_all"
host-resources-mib::hrSWInstalledName.483 = STRING: "lshw_02.19.git.2021.06.19.996aaad9c7-2build1_amd64"
host-resources-mib::hrSWInstalledName.484 = STRING: "lsof_4.93.2+dfsg-1.1build2_amd64"
host-resources-mib::hrSWInstalledName.485 = STRING: "lto-disabled-list_24_all"
host-resources-mib::hrSWInstalledName.486 = STRING: "lvm2_2.03.11-2.1ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.487 = STRING: "lxd-agent-loader_0.5_all"
host-resources-mib::hrSWInstalledName.488 = STRING: "mailcap_3.70+nmu1ubuntu1_all"
host-resources-mib::hrSWInstalledName.489 = STRING: "make_4.3-4.1build1_amd64"
host-resources-mib::hrSWInstalledName.490 = STRING: "man-db_2.10.2-1_amd64"
host-resources-mib::hrSWInstalledName.491 = STRING: "manpages_5.10-1ubuntu1_all"
host-resources-mib::hrSWInstalledName.492 = STRING: "manpages-dev_5.10-1ubuntu1_all"
host-resources-mib::hrSWInstalledName.493 = STRING: "mawk_1.3.4.20200120-3_amd64"
host-resources-mib::hrSWInstalledName.494 = STRING: "mdadm_4.2-0ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.495 = STRING: "media-types_7.0.0_all"
host-resources-mib::hrSWInstalledName.496 = STRING: "mime-support_3.66_all"
host-resources-mib::hrSWInstalledName.497 = STRING: "modemmanager_1.18.6-1_amd64"
host-resources-mib::hrSWInstalledName.498 = STRING: "motd-news-config_12ubuntu4.2_all"
host-resources-mib::hrSWInstalledName.499 = STRING: "mount_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.500 = STRING: "mtr-tiny_0.95-1_amd64"
host-resources-mib::hrSWInstalledName.501 = STRING: "multipath-tools_0.8.8-1ubuntu1.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.502 = STRING: "nano_6.2-1_amd64"
host-resources-mib::hrSWInstalledName.503 = STRING: "ncurses-base_6.3-2_all"
host-resources-mib::hrSWInstalledName.504 = STRING: "ncurses-bin_6.3-2_amd64"
host-resources-mib::hrSWInstalledName.505 = STRING: "ncurses-term_6.3-2_all"
host-resources-mib::hrSWInstalledName.506 = STRING: "needrestart_3.5-5ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.507 = STRING: "net-tools_1.60+git20181103.0eebece-1ubuntu5_amd64"
host-resources-mib::hrSWInstalledName.508 = STRING: "netbase_6.3_all"
host-resources-mib::hrSWInstalledName.509 = STRING: "netcat-openbsd_1.218-4ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.510 = STRING: "networkd-dispatcher_2.1-2ubuntu0.22.04.2_all"
host-resources-mib::hrSWInstalledName.511 = STRING: "nftables_1.0.2-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.512 = STRING: "nginx-common_1.18.0-6ubuntu14.3_all"
host-resources-mib::hrSWInstalledName.513 = STRING: "nginx-core_1.18.0-6ubuntu14.3_amd64"
host-resources-mib::hrSWInstalledName.514 = STRING: "ntfs-3g_1:2021.8.22-3ubuntu1.2_amd64"
host-resources-mib::hrSWInstalledName.515 = STRING: "open-iscsi_2.1.5-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.516 = STRING: "open-vm-tools_2:11.3.5-1ubuntu4.1_amd64"
host-resources-mib::hrSWInstalledName.517 = STRING: "openssh-client_1:8.9p1-3_amd64"
host-resources-mib::hrSWInstalledName.518 = STRING: "openssh-server_1:8.9p1-3_amd64"
host-resources-mib::hrSWInstalledName.519 = STRING: "openssh-sftp-server_1:8.9p1-3_amd64"
host-resources-mib::hrSWInstalledName.520 = STRING: "openssl_3.0.2-0ubuntu1.7_amd64"
host-resources-mib::hrSWInstalledName.521 = STRING: "os-prober_1.79ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.522 = STRING: "overlayroot_0.47ubuntu1_all"
host-resources-mib::hrSWInstalledName.523 = STRING: "packagekit_1.2.5-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.524 = STRING: "packagekit-tools_1.2.5-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.525 = STRING: "parted_3.4-2build1_amd64"
host-resources-mib::hrSWInstalledName.526 = STRING: "passwd_1:4.8.1-2ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.527 = STRING: "pastebinit_1.5.1-1ubuntu1_all"
host-resources-mib::hrSWInstalledName.528 = STRING: "patch_2.7.6-7build2_amd64"
host-resources-mib::hrSWInstalledName.529 = STRING: "pci.ids_0.0~2022.01.22-1_all"
host-resources-mib::hrSWInstalledName.530 = STRING: "pciutils_1:3.7.0-6_amd64"
host-resources-mib::hrSWInstalledName.531 = STRING: "perl_5.34.0-3ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.532 = STRING: "perl-base_5.34.0-3ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.533 = STRING: "perl-modules-5.34_5.34.0-3ubuntu1.1_all"
host-resources-mib::hrSWInstalledName.534 = STRING: "pigz_2.6-1_amd64"
host-resources-mib::hrSWInstalledName.535 = STRING: "pinentry-curses_1.1.1-1build2_amd64"
host-resources-mib::hrSWInstalledName.536 = STRING: "pkexec_0.105-33_amd64"
host-resources-mib::hrSWInstalledName.537 = STRING: "plymouth_0.9.5+git20211018-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.538 = STRING: "plymouth-theme-ubuntu-text_0.9.5+git20211018-1ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.539 = STRING: "policykit-1_0.105-33_amd64"
host-resources-mib::hrSWInstalledName.540 = STRING: "polkitd_0.105-33_amd64"
host-resources-mib::hrSWInstalledName.541 = STRING: "pollinate_4.33-3ubuntu2_all"
host-resources-mib::hrSWInstalledName.542 = STRING: "postgresql-client-14_14.5-0ubuntu0.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.543 = STRING: "postgresql-client-common_238_all"
host-resources-mib::hrSWInstalledName.544 = STRING: "powermgmt-base_1.36_all"
host-resources-mib::hrSWInstalledName.545 = STRING: "procps_2:3.3.17-6ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.546 = STRING: "psmisc_23.4-2build3_amd64"
host-resources-mib::hrSWInstalledName.547 = STRING: "publicsuffix_20211207.1025-1_all"
host-resources-mib::hrSWInstalledName.548 = STRING: "python-apt-common_2.3.0ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.549 = STRING: "python3_3.10.6-1~22.04_amd64"
host-resources-mib::hrSWInstalledName.550 = STRING: "python3-apport_2.20.11-0ubuntu82.2_all"
host-resources-mib::hrSWInstalledName.551 = STRING: "python3-apt_2.3.0ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.552 = STRING: "python3-attr_21.2.0-1_all"
host-resources-mib::hrSWInstalledName.553 = STRING: "python3-automat_20.2.0-1_all"
host-resources-mib::hrSWInstalledName.554 = STRING: "python3-bcrypt_3.2.0-1build1_amd64"
host-resources-mib::hrSWInstalledName.555 = STRING: "python3-blinker_1.4+dfsg1-0.4_all"
host-resources-mib::hrSWInstalledName.556 = STRING: "python3-certifi_2020.6.20-1_all"
host-resources-mib::hrSWInstalledName.557 = STRING: "python3-cffi-backend_1.15.0-1build2_amd64"
host-resources-mib::hrSWInstalledName.558 = STRING: "python3-chardet_4.0.0-1_all"
host-resources-mib::hrSWInstalledName.559 = STRING: "python3-click_8.0.3-1_all"
host-resources-mib::hrSWInstalledName.560 = STRING: "python3-colorama_0.4.4-1_all"
host-resources-mib::hrSWInstalledName.561 = STRING: "python3-commandnotfound_22.04.0_all"
host-resources-mib::hrSWInstalledName.562 = STRING: "python3-configobj_5.0.6-5_all"
host-resources-mib::hrSWInstalledName.563 = STRING: "python3-constantly_15.1.0-2_all"
host-resources-mib::hrSWInstalledName.564 = STRING: "python3-cryptography_3.4.8-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.565 = STRING: "python3-dbus_1.2.18-3build1_amd64"
host-resources-mib::hrSWInstalledName.566 = STRING: "python3-debconf_1.5.79ubuntu1_all"
host-resources-mib::hrSWInstalledName.567 = STRING: "python3-debian_0.1.43ubuntu1_all"
host-resources-mib::hrSWInstalledName.568 = STRING: "python3-dev_3.10.6-1~22.04_amd64"
host-resources-mib::hrSWInstalledName.569 = STRING: "python3-distro_1.7.0-1_all"
host-resources-mib::hrSWInstalledName.570 = STRING: "python3-distro-info_1.1build1_all"
host-resources-mib::hrSWInstalledName.571 = STRING: "python3-distupgrade_1:22.04.14_all"
host-resources-mib::hrSWInstalledName.572 = STRING: "python3-distutils_3.10.6-1~22.04_all"
host-resources-mib::hrSWInstalledName.573 = STRING: "python3-docker_5.0.3-1_all"
host-resources-mib::hrSWInstalledName.574 = STRING: "python3-dockerpty_0.4.1-2_all"
host-resources-mib::hrSWInstalledName.575 = STRING: "python3-docopt_0.6.2-4_all"
host-resources-mib::hrSWInstalledName.576 = STRING: "python3-dotenv_0.19.2-1_all"
host-resources-mib::hrSWInstalledName.577 = STRING: "python3-gdbm_3.10.6-1~22.04_amd64"
host-resources-mib::hrSWInstalledName.578 = STRING: "python3-gi_3.42.1-0ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.579 = STRING: "python3-hamcrest_2.0.2-2_all"
host-resources-mib::hrSWInstalledName.580 = STRING: "python3-httplib2_0.20.2-2_all"
host-resources-mib::hrSWInstalledName.581 = STRING: "python3-hyperlink_21.0.0-3_all"
host-resources-mib::hrSWInstalledName.582 = STRING: "python3-idna_3.3-1_all"
host-resources-mib::hrSWInstalledName.583 = STRING: "python3-importlib-metadata_4.6.4-1_all"
host-resources-mib::hrSWInstalledName.584 = STRING: "python3-incremental_21.3.0-1_all"
host-resources-mib::hrSWInstalledName.585 = STRING: "python3-jeepney_0.7.1-3_all"
host-resources-mib::hrSWInstalledName.586 = STRING: "python3-json-pointer_2.0-0ubuntu1_all"
host-resources-mib::hrSWInstalledName.587 = STRING: "python3-jsonpatch_1.32-2_all"
host-resources-mib::hrSWInstalledName.588 = STRING: "python3-jsonschema_3.2.0-0ubuntu2_all"
host-resources-mib::hrSWInstalledName.589 = STRING: "python3-jwt_2.3.0-1ubuntu0.2_all"
host-resources-mib::hrSWInstalledName.590 = STRING: "python3-keyring_23.5.0-1_all"
host-resources-mib::hrSWInstalledName.591 = STRING: "python3-launchpadlib_1.10.16-1_all"
host-resources-mib::hrSWInstalledName.592 = STRING: "python3-lazr.restfulclient_0.14.4-1_all"
host-resources-mib::hrSWInstalledName.593 = STRING: "python3-lazr.uri_1.0.6-2_all"
host-resources-mib::hrSWInstalledName.594 = STRING: "python3-lib2to3_3.10.6-1~22.04_all"
host-resources-mib::hrSWInstalledName.595 = STRING: "python3-magic_2:0.4.24-2_all"
host-resources-mib::hrSWInstalledName.596 = STRING: "python3-minimal_3.10.6-1~22.04_amd64"
host-resources-mib::hrSWInstalledName.597 = STRING: "python3-more-itertools_8.10.0-2_all"
host-resources-mib::hrSWInstalledName.598 = STRING: "python3-netifaces_0.11.0-1build2_amd64"
host-resources-mib::hrSWInstalledName.599 = STRING: "python3-newt_0.52.21-5ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.600 = STRING: "python3-oauthlib_3.2.0-1ubuntu0.1_all"
host-resources-mib::hrSWInstalledName.601 = STRING: "python3-openssl_21.0.0-1_all"
host-resources-mib::hrSWInstalledName.602 = STRING: "python3-pexpect_4.8.0-2ubuntu1_all"
host-resources-mib::hrSWInstalledName.603 = STRING: "python3-pip_22.0.2+dfsg-1_all"
host-resources-mib::hrSWInstalledName.604 = STRING: "python3-pkg-resources_59.6.0-1.2_all"
host-resources-mib::hrSWInstalledName.605 = STRING: "python3-problem-report_2.20.11-0ubuntu82.2_all"
host-resources-mib::hrSWInstalledName.606 = STRING: "python3-ptyprocess_0.7.0-3_all"
host-resources-mib::hrSWInstalledName.607 = STRING: "python3-pyasn1_0.4.8-1_all"
host-resources-mib::hrSWInstalledName.608 = STRING: "python3-pyasn1-modules_0.2.1-1_all"
host-resources-mib::hrSWInstalledName.609 = STRING: "python3-pyparsing_2.4.7-1_all"
host-resources-mib::hrSWInstalledName.610 = STRING: "python3-pyrsistent_0.18.1-1build1_amd64"
host-resources-mib::hrSWInstalledName.611 = STRING: "python3-requests_2.25.1+dfsg-2_all"
host-resources-mib::hrSWInstalledName.612 = STRING: "python3-secretstorage_3.3.1-1_all"
host-resources-mib::hrSWInstalledName.613 = STRING: "python3-serial_3.5-1_all"
host-resources-mib::hrSWInstalledName.614 = STRING: "python3-service-identity_18.1.0-6_all"
host-resources-mib::hrSWInstalledName.615 = STRING: "python3-setuptools_59.6.0-1.2_all"
host-resources-mib::hrSWInstalledName.616 = STRING: "python3-six_1.16.0-3ubuntu1_all"
host-resources-mib::hrSWInstalledName.617 = STRING: "python3-software-properties_0.99.22.3_all"
host-resources-mib::hrSWInstalledName.618 = STRING: "python3-systemd_234-3ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.619 = STRING: "python3-texttable_1.6.4-1_all"
host-resources-mib::hrSWInstalledName.620 = STRING: "python3-twisted_22.1.0-2ubuntu2.3_all"
host-resources-mib::hrSWInstalledName.621 = STRING: "python3-update-manager_1:22.04.9_all"
host-resources-mib::hrSWInstalledName.622 = STRING: "python3-urllib3_1.26.5-1~exp1_all"
host-resources-mib::hrSWInstalledName.623 = STRING: "python3-wadllib_1.3.6-1_all"
host-resources-mib::hrSWInstalledName.624 = STRING: "python3-websocket_1.2.3-1_all"
host-resources-mib::hrSWInstalledName.625 = STRING: "python3-wheel_0.37.1-2_all"
host-resources-mib::hrSWInstalledName.626 = STRING: "python3-xkit_0.5.0ubuntu5_all"
host-resources-mib::hrSWInstalledName.627 = STRING: "python3-yaml_5.4.1-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.628 = STRING: "python3-zipp_1.0.0-3_all"
host-resources-mib::hrSWInstalledName.629 = STRING: "python3-zope.interface_5.4.0-1build1_amd64"
host-resources-mib::hrSWInstalledName.630 = STRING: "python3.10_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.631 = STRING: "python3.10-dev_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.632 = STRING: "python3.10-minimal_3.10.6-1~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.633 = STRING: "readline-common_8.1.2-1_all"
host-resources-mib::hrSWInstalledName.634 = STRING: "rpcsvc-proto_1.4.2-0ubuntu6_amd64"
host-resources-mib::hrSWInstalledName.635 = STRING: "rsync_3.2.3-8ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.636 = STRING: "rsyslog_8.2112.0-2ubuntu2.2_amd64"
host-resources-mib::hrSWInstalledName.637 = STRING: "run-one_1.17-0ubuntu1_all"
host-resources-mib::hrSWInstalledName.638 = STRING: "runc_1.1.0-0ubuntu1.1_amd64"
host-resources-mib::hrSWInstalledName.639 = STRING: "sbsigntool_0.9.4-2ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.640 = STRING: "screen_4.9.0-1_amd64"
host-resources-mib::hrSWInstalledName.641 = STRING: "secureboot-db_1.8_amd64"
host-resources-mib::hrSWInstalledName.642 = STRING: "sed_4.8-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.643 = STRING: "sensible-utils_0.0.17_all"
host-resources-mib::hrSWInstalledName.644 = STRING: "sg3-utils_1.46-1build1_amd64"
host-resources-mib::hrSWInstalledName.645 = STRING: "sg3-utils-udev_1.46-1build1_all"
host-resources-mib::hrSWInstalledName.646 = STRING: "shared-mime-info_2.1-2_amd64"
host-resources-mib::hrSWInstalledName.647 = STRING: "smistrip_0.4.8+dfsg2-16_all"
host-resources-mib::hrSWInstalledName.648 = STRING: "snapd_2.57.5+22.04ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.649 = STRING: "snmp_5.9.1+dfsg-1ubuntu2.2_amd64"
host-resources-mib::hrSWInstalledName.650 = STRING: "snmp-mibs-downloader_1.5_all"
host-resources-mib::hrSWInstalledName.651 = STRING: "snmpd_5.9.1+dfsg-1ubuntu2.2_amd64"
host-resources-mib::hrSWInstalledName.652 = STRING: "software-properties-common_0.99.22.3_all"
host-resources-mib::hrSWInstalledName.653 = STRING: "sosreport_4.4-1ubuntu1.22.04.1_amd64"
host-resources-mib::hrSWInstalledName.654 = STRING: "squashfs-tools_1:4.5-3build1_amd64"
host-resources-mib::hrSWInstalledName.655 = STRING: "ssh-import-id_5.11-0ubuntu1_all"
host-resources-mib::hrSWInstalledName.656 = STRING: "ssl-cert_1.1.2_all"
host-resources-mib::hrSWInstalledName.657 = STRING: "strace_5.16-0ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.658 = STRING: "sudo_1.9.9-1ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.659 = STRING: "systemd_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.660 = STRING: "systemd-hwe-hwdb_249.11.1_all"
host-resources-mib::hrSWInstalledName.661 = STRING: "systemd-sysv_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.662 = STRING: "systemd-timesyncd_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.663 = STRING: "sysvinit-utils_3.01-1ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.664 = STRING: "tar_1.34+dfsg-1build3_amd64"
host-resources-mib::hrSWInstalledName.665 = STRING: "tcl_8.6.11+1build2_amd64"
host-resources-mib::hrSWInstalledName.666 = STRING: "tcl8.6_8.6.12+dfsg-1build1_amd64"
host-resources-mib::hrSWInstalledName.667 = STRING: "tcpdump_4.99.1-3build2_amd64"
host-resources-mib::hrSWInstalledName.668 = STRING: "telnet_0.17-44build1_amd64"
host-resources-mib::hrSWInstalledName.669 = STRING: "thermald_2.4.9-1ubuntu0.1_amd64"
host-resources-mib::hrSWInstalledName.670 = STRING: "thin-provisioning-tools_0.9.0-2ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.671 = STRING: "time_1.9-0.1build2_amd64"
host-resources-mib::hrSWInstalledName.672 = STRING: "tmux_3.2a-4build1_amd64"
host-resources-mib::hrSWInstalledName.673 = STRING: "tnftp_20210827-4build1_amd64"
host-resources-mib::hrSWInstalledName.674 = STRING: "tpm-udev_0.6_all"
host-resources-mib::hrSWInstalledName.675 = STRING: "tzdata_2022f-0ubuntu0.22.04.1_all"
host-resources-mib::hrSWInstalledName.676 = STRING: "ubuntu-advantage-tools_27.12~22.04.1_amd64"
host-resources-mib::hrSWInstalledName.677 = STRING: "ubuntu-drivers-common_1:0.9.6.1_amd64"
host-resources-mib::hrSWInstalledName.678 = STRING: "ubuntu-fan_0.12.16_all"
host-resources-mib::hrSWInstalledName.679 = STRING: "ubuntu-keyring_2021.03.26_all"
host-resources-mib::hrSWInstalledName.680 = STRING: "ubuntu-release-upgrader-core_1:22.04.14_all"
host-resources-mib::hrSWInstalledName.681 = STRING: "ubuntu-server_1.481_amd64"
host-resources-mib::hrSWInstalledName.682 = STRING: "ubuntu-standard_1.481_amd64"
host-resources-mib::hrSWInstalledName.683 = STRING: "ucf_3.0043_all"
host-resources-mib::hrSWInstalledName.684 = STRING: "udev_249.11-0ubuntu3.6_amd64"
host-resources-mib::hrSWInstalledName.685 = STRING: "udisks2_2.9.4-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.686 = STRING: "unzip_6.0-26ubuntu3.1_amd64"
host-resources-mib::hrSWInstalledName.687 = STRING: "update-manager-core_1:22.04.9_all"
host-resources-mib::hrSWInstalledName.688 = STRING: "update-notifier-common_3.192.54_all"
host-resources-mib::hrSWInstalledName.689 = STRING: "upower_0.99.17-1_amd64"
host-resources-mib::hrSWInstalledName.690 = STRING: "usb-modeswitch_2.6.1-3ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.691 = STRING: "usb-modeswitch-data_20191128-4_all"
host-resources-mib::hrSWInstalledName.692 = STRING: "usb.ids_2022.04.02-1_all"
host-resources-mib::hrSWInstalledName.693 = STRING: "usbmuxd_1.1.1-2build2_amd64"
host-resources-mib::hrSWInstalledName.694 = STRING: "usbutils_1:014-1build1_amd64"
host-resources-mib::hrSWInstalledName.695 = STRING: "usrmerge_25ubuntu2_all"
host-resources-mib::hrSWInstalledName.696 = STRING: "util-linux_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.697 = STRING: "uuid-runtime_2.37.2-4ubuntu3_amd64"
host-resources-mib::hrSWInstalledName.698 = STRING: "vim_2:8.2.3995-1ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.699 = STRING: "vim-common_2:8.2.3995-1ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.700 = STRING: "vim-runtime_2:8.2.3995-1ubuntu2.1_all"
host-resources-mib::hrSWInstalledName.701 = STRING: "vim-tiny_2:8.2.3995-1ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.702 = STRING: "wget_1.21.2-2ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.703 = STRING: "whiptail_0.52.21-5ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.704 = STRING: "wireless-regdb_2022.06.06-0ubuntu1~22.04.1_all"
host-resources-mib::hrSWInstalledName.705 = STRING: "xauth_1:1.1-1build2_amd64"
host-resources-mib::hrSWInstalledName.706 = STRING: "xdg-user-dirs_0.17-2ubuntu4_amd64"
host-resources-mib::hrSWInstalledName.707 = STRING: "xfsprogs_5.13.0-1ubuntu2_amd64"
host-resources-mib::hrSWInstalledName.708 = STRING: "xkb-data_2.33-1_all"
host-resources-mib::hrSWInstalledName.709 = STRING: "xxd_2:8.2.3995-1ubuntu2.1_amd64"
host-resources-mib::hrSWInstalledName.710 = STRING: "xz-utils_5.2.5-2ubuntu1_amd64"
host-resources-mib::hrSWInstalledName.711 = STRING: "zerofree_1.1.1-1build3_amd64"
host-resources-mib::hrSWInstalledName.712 = STRING: "zip_3.0-12build2_amd64"
host-resources-mib::hrSWInstalledName.713 = STRING: "zlib1g_1:1.2.11.dfsg-2ubuntu9.2_amd64"
host-resources-mib::hrSWInstalledName.714 = STRING: "zlib1g-dev_1:1.2.11.dfsg-2ubuntu9.2_amd64"
host-resources-mib::hrSWInstalledName.715 = STRING: "zstd_1.4.8+dfsg-3build1_amd64"
 
[...REDACTED...]
 
mta-mib::mtaStoredMessages.1 = Gauge32: 0
mta-mib::mtaStoredVolume.1 = Gauge32: 0 K-octets
mta-mib::mtaGroupStoredMessages.1.26 = Gauge32: 0
mta-mib::mtaGroupStoredVolume.1.26 = Gauge32: 0 K-octets
mta-mib::mtaGroupHierarchy.1.1 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.2 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.3 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.4 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.5 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.6 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.7 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.8 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.9 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.10 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.11 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.12 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.13 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.14 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.15 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.16 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.17 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.18 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.19 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.20 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.21 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.22 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.23 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.24 = INTEGER: -1
mta-mib::mtaGroupHierarchy.1.25 = INTEGER: -1
if-mib::ifName.1 = STRING: lo
if-mib::ifName.2 = STRING: eth0
if-mib::ifName.3 = STRING: docker0
if-mib::ifName.4 = STRING: br-028c7a43f929
if-mib::ifName.5 = STRING: br-24ddaa1f3b47
if-mib::ifName.6 = STRING: br-3d63c18e314d
if-mib::ifName.7 = STRING: br-7d5c72654da7
if-mib::ifName.8 = STRING: br-a8a89c3bf6ff
if-mib::ifName.10 = STRING: veth846d49c
if-mib::ifName.12 = STRING: veth4346c47
if-mib::ifName.14 = STRING: veth6bf7fc2
if-mib::ifInMulticastPkts.1 = Counter32: 0
if-mib::ifInMulticastPkts.2 = Counter32: 2737
if-mib::ifInMulticastPkts.3 = Counter32: 0
if-mib::ifInMulticastPkts.4 = Counter32: 0
if-mib::ifInMulticastPkts.5 = Counter32: 0
if-mib::ifInMulticastPkts.6 = Counter32: 0
if-mib::ifInMulticastPkts.7 = Counter32: 0
if-mib::ifInMulticastPkts.8 = Counter32: 0
if-mib::ifInMulticastPkts.10 = Counter32: 0
if-mib::ifInMulticastPkts.12 = Counter32: 0
if-mib::ifInMulticastPkts.14 = Counter32: 0
if-mib::ifInBroadcastPkts.1 = Counter32: 0
if-mib::ifInBroadcastPkts.2 = Counter32: 0
if-mib::ifInBroadcastPkts.3 = Counter32: 0
if-mib::ifInBroadcastPkts.4 = Counter32: 0
if-mib::ifInBroadcastPkts.5 = Counter32: 0
if-mib::ifInBroadcastPkts.6 = Counter32: 0
if-mib::ifInBroadcastPkts.7 = Counter32: 0
if-mib::ifInBroadcastPkts.8 = Counter32: 0
if-mib::ifInBroadcastPkts.10 = Counter32: 0
if-mib::ifInBroadcastPkts.12 = Counter32: 0
if-mib::ifInBroadcastPkts.14 = Counter32: 0
if-mib::ifOutMulticastPkts.1 = Counter32: 0
if-mib::ifOutMulticastPkts.2 = Counter32: 0
if-mib::ifOutMulticastPkts.3 = Counter32: 0
if-mib::ifOutMulticastPkts.4 = Counter32: 0
if-mib::ifOutMulticastPkts.5 = Counter32: 0
if-mib::ifOutMulticastPkts.6 = Counter32: 0
if-mib::ifOutMulticastPkts.7 = Counter32: 0
if-mib::ifOutMulticastPkts.8 = Counter32: 0
if-mib::ifOutMulticastPkts.10 = Counter32: 0
if-mib::ifOutMulticastPkts.12 = Counter32: 0
if-mib::ifOutMulticastPkts.14 = Counter32: 0
if-mib::ifOutBroadcastPkts.1 = Counter32: 0
if-mib::ifOutBroadcastPkts.2 = Counter32: 0
if-mib::ifOutBroadcastPkts.3 = Counter32: 0
if-mib::ifOutBroadcastPkts.4 = Counter32: 0
if-mib::ifOutBroadcastPkts.5 = Counter32: 0
if-mib::ifOutBroadcastPkts.6 = Counter32: 0
if-mib::ifOutBroadcastPkts.7 = Counter32: 0
if-mib::ifOutBroadcastPkts.8 = Counter32: 0
if-mib::ifOutBroadcastPkts.10 = Counter32: 0
if-mib::ifOutBroadcastPkts.12 = Counter32: 0
if-mib::ifOutBroadcastPkts.14 = Counter32: 0
if-mib::ifHCInOctets.1 = Counter64: 535342
if-mib::ifHCInOctets.2 = Counter64: 1290295973
if-mib::ifHCInOctets.3 = Counter64: 0
if-mib::ifHCInOctets.4 = Counter64: 0
if-mib::ifHCInOctets.5 = Counter64: 0
if-mib::ifHCInOctets.6 = Counter64: 0
if-mib::ifHCInOctets.7 = Counter64: 999133956
if-mib::ifHCInOctets.8 = Counter64: 0
if-mib::ifHCInOctets.10 = Counter64: 429819
if-mib::ifHCInOctets.12 = Counter64: 75022333
if-mib::ifHCInOctets.14 = Counter64: 1044821900
if-mib::ifHCInUcastPkts.1 = Counter64: 7556
if-mib::ifHCInUcastPkts.2 = Counter64: 11495007
if-mib::ifHCInUcastPkts.3 = Counter64: 0
if-mib::ifHCInUcastPkts.4 = Counter64: 0
if-mib::ifHCInUcastPkts.5 = Counter64: 0
if-mib::ifHCInUcastPkts.6 = Counter64: 0
if-mib::ifHCInUcastPkts.7 = Counter64: 8652864
if-mib::ifHCInUcastPkts.8 = Counter64: 0
if-mib::ifHCInUcastPkts.10 = Counter64: 2283
if-mib::ifHCInUcastPkts.12 = Counter64: 594537
if-mib::ifHCInUcastPkts.14 = Counter64: 8056044
if-mib::ifHCInMulticastPkts.1 = Counter64: 0
if-mib::ifHCInMulticastPkts.2 = Counter64: 2737
if-mib::ifHCInMulticastPkts.3 = Counter64: 0
if-mib::ifHCInMulticastPkts.4 = Counter64: 0
if-mib::ifHCInMulticastPkts.5 = Counter64: 0
if-mib::ifHCInMulticastPkts.6 = Counter64: 0
if-mib::ifHCInMulticastPkts.7 = Counter64: 0
if-mib::ifHCInMulticastPkts.8 = Counter64: 0
if-mib::ifHCInMulticastPkts.10 = Counter64: 0
if-mib::ifHCInMulticastPkts.12 = Counter64: 0
if-mib::ifHCInMulticastPkts.14 = Counter64: 0
if-mib::ifHCInBroadcastPkts.1 = Counter64: 0
if-mib::ifHCInBroadcastPkts.2 = Counter64: 0
if-mib::ifHCInBroadcastPkts.3 = Counter64: 0
if-mib::ifHCInBroadcastPkts.4 = Counter64: 0
if-mib::ifHCInBroadcastPkts.5 = Counter64: 0
if-mib::ifHCInBroadcastPkts.6 = Counter64: 0
if-mib::ifHCInBroadcastPkts.7 = Counter64: 0
if-mib::ifHCInBroadcastPkts.8 = Counter64: 0
if-mib::ifHCInBroadcastPkts.10 = Counter64: 0
if-mib::ifHCInBroadcastPkts.12 = Counter64: 0
if-mib::ifHCInBroadcastPkts.14 = Counter64: 0
if-mib::ifHCOutOctets.1 = Counter64: 535342
if-mib::ifHCOutOctets.2 = Counter64: 2048328945
if-mib::ifHCOutOctets.3 = Counter64: 0
if-mib::ifHCOutOctets.4 = Counter64: 0
if-mib::ifHCOutOctets.5 = Counter64: 0
if-mib::ifHCOutOctets.6 = Counter64: 0
if-mib::ifHCOutOctets.7 = Counter64: 1097169991
if-mib::ifHCOutOctets.8 = Counter64: 0
if-mib::ifHCOutOctets.10 = Counter64: 475108
if-mib::ifHCOutOctets.12 = Counter64: 104620177
if-mib::ifHCOutOctets.14 = Counter64: 992080010
if-mib::ifHCOutUcastPkts.1 = Counter64: 7556
if-mib::ifHCOutUcastPkts.2 = Counter64: 11717387
if-mib::ifHCOutUcastPkts.3 = Counter64: 0
if-mib::ifHCOutUcastPkts.4 = Counter64: 0
if-mib::ifHCOutUcastPkts.5 = Counter64: 0
if-mib::ifHCOutUcastPkts.6 = Counter64: 0
if-mib::ifHCOutUcastPkts.7 = Counter64: 10758453
if-mib::ifHCOutUcastPkts.8 = Counter64: 0
if-mib::ifHCOutUcastPkts.10 = Counter64: 4183
if-mib::ifHCOutUcastPkts.12 = Counter64: 701176
if-mib::ifHCOutUcastPkts.14 = Counter64: 10053166
if-mib::ifHCOutMulticastPkts.1 = Counter64: 0
if-mib::ifHCOutMulticastPkts.2 = Counter64: 0
if-mib::ifHCOutMulticastPkts.3 = Counter64: 0
if-mib::ifHCOutMulticastPkts.4 = Counter64: 0
if-mib::ifHCOutMulticastPkts.5 = Counter64: 0
if-mib::ifHCOutMulticastPkts.6 = Counter64: 0
if-mib::ifHCOutMulticastPkts.7 = Counter64: 0
if-mib::ifHCOutMulticastPkts.8 = Counter64: 0
if-mib::ifHCOutMulticastPkts.10 = Counter64: 0
if-mib::ifHCOutMulticastPkts.12 = Counter64: 0
if-mib::ifHCOutMulticastPkts.14 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.1 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.2 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.3 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.4 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.5 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.6 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.7 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.8 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.10 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.12 = Counter64: 0
if-mib::ifHCOutBroadcastPkts.14 = Counter64: 0
if-mib::ifHighSpeed.1 = Gauge32: 10
if-mib::ifHighSpeed.2 = Gauge32: 10000
if-mib::ifHighSpeed.3 = Gauge32: 0
if-mib::ifHighSpeed.4 = Gauge32: 0
if-mib::ifHighSpeed.5 = Gauge32: 0
if-mib::ifHighSpeed.6 = Gauge32: 0
if-mib::ifHighSpeed.7 = Gauge32: 10000
if-mib::ifHighSpeed.8 = Gauge32: 0
if-mib::ifHighSpeed.10 = Gauge32: 10000
if-mib::ifHighSpeed.12 = Gauge32: 10000
if-mib::ifHighSpeed.14 = Gauge32: 10000
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::ifPromiscuousMode.6 = INTEGER: false(2)
if-mib::ifPromiscuousMode.7 = INTEGER: false(2)
if-mib::ifPromiscuousMode.8 = INTEGER: false(2)
if-mib::ifPromiscuousMode.10 = INTEGER: false(2)
if-mib::ifPromiscuousMode.12 = INTEGER: false(2)
if-mib::ifPromiscuousMode.14 = INTEGER: false(2)
if-mib::ifConnectorPresent.1 = INTEGER: false(2)
if-mib::ifConnectorPresent.2 = INTEGER: true(1)
if-mib::ifConnectorPresent.3 = INTEGER: true(1)
if-mib::ifConnectorPresent.4 = INTEGER: true(1)
if-mib::ifConnectorPresent.5 = INTEGER: true(1)
if-mib::ifConnectorPresent.6 = INTEGER: true(1)
if-mib::ifConnectorPresent.7 = INTEGER: true(1)
if-mib::ifConnectorPresent.8 = INTEGER: true(1)
if-mib::ifConnectorPresent.10 = INTEGER: true(1)
if-mib::ifConnectorPresent.12 = INTEGER: true(1)
if-mib::ifConnectorPresent.14 = INTEGER: true(1)
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: 
if-mib::ifAlias.6 = STRING: 
if-mib::ifAlias.7 = STRING: 
if-mib::ifAlias.8 = STRING: 
if-mib::ifAlias.10 = STRING: 
if-mib::ifAlias.12 = STRING: 
if-mib::ifAlias.14 = STRING: 
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::ifCounterDiscontinuityTime.6 = Timeticks: (0) 0:00:00.00
if-mib::ifCounterDiscontinuityTime.7 = Timeticks: (0) 0:00:00.00
if-mib::ifCounterDiscontinuityTime.8 = Timeticks: (0) 0:00:00.00
if-mib::ifCounterDiscontinuityTime.10 = Timeticks: (0) 0:00:00.00
if-mib::ifCounterDiscontinuityTime.12 = Timeticks: (0) 0:00:00.00
if-mib::ifCounterDiscontinuityTime.14 = Timeticks: (0) 0:00:00.00
if-mib::ifTableLastChange.0 = Timeticks: (625) 0:00:06.25
ipv6-mib::ipv6Forwarding.0 = INTEGER: notForwarding(2)
ipv6-mib::ipv6DefaultHopLimit.0 = INTEGER: 64
ipv6-mib::ipv6Interfaces.0 = Gauge32: 6
ipv6-mib::ipv6IfDescr.1 = STRING: lo
ipv6-mib::ipv6IfDescr.2 = STRING: eth0
ipv6-mib::ipv6IfDescr.7 = STRING: br-7d5c72654da7
ipv6-mib::ipv6IfDescr.10 = STRING: veth846d49c
ipv6-mib::ipv6IfDescr.12 = STRING: veth4346c47
ipv6-mib::ipv6IfDescr.14 = STRING: veth6bf7fc2
ipv6-mib::ipv6IfLowerLayer.1 = OID: SNMPv2-SMI::zeroDotZero
ipv6-mib::ipv6IfLowerLayer.2 = OID: SNMPv2-SMI::zeroDotZero
ipv6-mib::ipv6IfLowerLayer.7 = OID: SNMPv2-SMI::zeroDotZero
ipv6-mib::ipv6IfLowerLayer.10 = OID: SNMPv2-SMI::zeroDotZero
ipv6-mib::ipv6IfLowerLayer.12 = OID: SNMPv2-SMI::zeroDotZero
ipv6-mib::ipv6IfLowerLayer.14 = OID: SNMPv2-SMI::zeroDotZero
ipv6-mib::ipv6IfEffectiveMtu.1 = Gauge32: 65536 octets
ipv6-mib::ipv6IfEffectiveMtu.2 = Gauge32: 1500 octets
ipv6-mib::ipv6IfEffectiveMtu.7 = Gauge32: 1500 octets
ipv6-mib::ipv6IfEffectiveMtu.10 = Gauge32: 1500 octets
ipv6-mib::ipv6IfEffectiveMtu.12 = Gauge32: 1500 octets
ipv6-mib::ipv6IfEffectiveMtu.14 = Gauge32: 1500 octets
ipv6-mib::ipv6IfPhysicalAddress.1 = STRING: 
ipv6-mib::ipv6IfPhysicalAddress.2 = STRING: 0:50:56:b9:91:7
ipv6-mib::ipv6IfPhysicalAddress.7 = STRING: 2:42:d6:1c:38:f7
ipv6-mib::ipv6IfPhysicalAddress.10 = STRING: 16:d9:95:f5:fb:53
ipv6-mib::ipv6IfPhysicalAddress.12 = STRING: aa:77:3b:f3:e1:5c
ipv6-mib::ipv6IfPhysicalAddress.14 = STRING: be:ba:b:82:f3:5
ipv6-mib::ipv6IfAdminStatus.1 = INTEGER: up(1)
ipv6-mib::ipv6IfAdminStatus.2 = INTEGER: up(1)
ipv6-mib::ipv6IfAdminStatus.7 = INTEGER: up(1)
ipv6-mib::ipv6IfAdminStatus.10 = INTEGER: up(1)
ipv6-mib::ipv6IfAdminStatus.12 = INTEGER: up(1)
ipv6-mib::ipv6IfAdminStatus.14 = INTEGER: up(1)
ipv6-mib::ipv6IfOperStatus.1 = INTEGER: up(1)
ipv6-mib::ipv6IfOperStatus.2 = INTEGER: up(1)
ipv6-mib::ipv6IfOperStatus.7 = INTEGER: up(1)
ipv6-mib::ipv6IfOperStatus.10 = INTEGER: up(1)
ipv6-mib::ipv6IfOperStatus.12 = INTEGER: up(1)
ipv6-mib::ipv6IfOperStatus.14 = INTEGER: up(1)
disman-event-mib::mteResourceSampleMinimum.0 = INTEGER: 1 seconds
disman-event-mib::mteResourceSampleInstanceMaximum.0 = Gauge32: 0 instances
disman-event-mib::mteResourceSampleInstances.0 = Gauge32: 0 instances
disman-event-mib::mteResourceSampleInstancesHigh.0 = Gauge32: 0 instances
disman-event-mib::mteResourceSampleInstanceLacks.0 = Counter32: 0 instances
disman-event-mib::mteTriggerFailures.0 = Counter32: 0 failures
disman-event-mib::mteObjectsID."_snmpd"."_linkUpDown".1 = OID: IF-MIB::ifIndex
disman-event-mib::mteObjectsID."_snmpd"."_linkUpDown".2 = OID: IF-MIB::ifAdminStatus
disman-event-mib::mteObjectsID."_snmpd"."_linkUpDown".3 = OID: IF-MIB::ifOperStatus
disman-event-mib::mteObjectsID."_snmpd"."_triggerFail".1 = OID: DISMAN-EVENT-MIB::mteHotTrigger
disman-event-mib::mteObjectsID."_snmpd"."_triggerFail".2 = OID: DISMAN-EVENT-MIB::mteHotTargetName
disman-event-mib::mteObjectsID."_snmpd"."_triggerFail".3 = OID: DISMAN-EVENT-MIB::mteHotContextName
disman-event-mib::mteObjectsID."_snmpd"."_triggerFail".4 = OID: DISMAN-EVENT-MIB::mteHotOID
disman-event-mib::mteObjectsID."_snmpd"."_triggerFail".5 = OID: DISMAN-EVENT-MIB::mteFailedReason
disman-event-mib::mteObjectsID."_snmpd"."_triggerFire".1 = OID: DISMAN-EVENT-MIB::mteHotTrigger
disman-event-mib::mteObjectsID."_snmpd"."_triggerFire".2 = OID: DISMAN-EVENT-MIB::mteHotTargetName
disman-event-mib::mteObjectsID."_snmpd"."_triggerFire".3 = OID: DISMAN-EVENT-MIB::mteHotContextName
disman-event-mib::mteObjectsID."_snmpd"."_triggerFire".4 = OID: DISMAN-EVENT-MIB::mteHotOID
disman-event-mib::mteObjectsID."_snmpd"."_triggerFire".5 = OID: DISMAN-EVENT-MIB::mteHotValue
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_linkUpDown".1 = INTEGER: true(1)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_linkUpDown".2 = INTEGER: true(1)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_linkUpDown".3 = INTEGER: true(1)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFail".1 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFail".2 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFail".3 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFail".4 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFail".5 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFire".1 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFire".2 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFire".3 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFire".4 = INTEGER: false(2)
disman-event-mib::mteObjectsIDWildcard."_snmpd"."_triggerFire".5 = INTEGER: false(2)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_linkUpDown".1 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_linkUpDown".2 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_linkUpDown".3 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFail".1 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFail".2 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFail".3 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFail".4 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFail".5 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFire".1 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFire".2 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFire".3 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFire".4 = INTEGER: active(1)
disman-event-mib::mteObjectsEntryStatus."_snmpd"."_triggerFire".5 = INTEGER: active(1)
disman-event-mib::mteEventComment."_snmpd".'_linkDown' = STRING: 
disman-event-mib::mteEventComment."_snmpd".'_linkUp' = STRING: 
disman-event-mib::mteEventComment."_snmpd".'_mteTriggerFailure' = STRING: 
disman-event-mib::mteEventComment."_snmpd".'_mteTriggerFalling' = STRING: 
disman-event-mib::mteEventComment."_snmpd".'_mteTriggerFired' = STRING: 
disman-event-mib::mteEventComment."_snmpd".'_mteTriggerRising' = STRING: 
disman-event-mib::mteEventActions."_snmpd".'_linkDown' = BITS: 80 notification(0) 
disman-event-mib::mteEventActions."_snmpd".'_linkUp' = BITS: 80 notification(0) 
disman-event-mib::mteEventActions."_snmpd".'_mteTriggerFailure' = BITS: 80 notification(0) 
disman-event-mib::mteEventActions."_snmpd".'_mteTriggerFalling' = BITS: 80 notification(0) 
disman-event-mib::mteEventActions."_snmpd".'_mteTriggerFired' = BITS: 80 notification(0) 
disman-event-mib::mteEventActions."_snmpd".'_mteTriggerRising' = BITS: 80 notification(0) 
disman-event-mib::mteEventEnabled."_snmpd".'_linkDown' = INTEGER: true(1)
disman-event-mib::mteEventEnabled."_snmpd".'_linkUp' = INTEGER: true(1)
disman-event-mib::mteEventEnabled."_snmpd".'_mteTriggerFailure' = INTEGER: true(1)
disman-event-mib::mteEventEnabled."_snmpd".'_mteTriggerFalling' = INTEGER: true(1)
disman-event-mib::mteEventEnabled."_snmpd".'_mteTriggerFired' = INTEGER: true(1)
disman-event-mib::mteEventEnabled."_snmpd".'_mteTriggerRising' = INTEGER: true(1)
disman-event-mib::mteEventEntryStatus."_snmpd".'_linkDown' = INTEGER: active(1)
disman-event-mib::mteEventEntryStatus."_snmpd".'_linkUp' = INTEGER: active(1)
disman-event-mib::mteEventEntryStatus."_snmpd".'_mteTriggerFailure' = INTEGER: active(1)
disman-event-mib::mteEventEntryStatus."_snmpd".'_mteTriggerFalling' = INTEGER: active(1)
disman-event-mib::mteEventEntryStatus."_snmpd".'_mteTriggerFired' = INTEGER: active(1)
disman-event-mib::mteEventEntryStatus."_snmpd".'_mteTriggerRising' = INTEGER: active(1)
disman-event-mib::mteEventNotification."_snmpd".'_linkDown' = OID: IF-MIB::linkDown
disman-event-mib::mteEventNotification."_snmpd".'_linkUp' = OID: IF-MIB::linkUp
disman-event-mib::mteEventNotification."_snmpd".'_mteTriggerFailure' = OID: DISMAN-EVENT-MIB::mteTriggerFailure
disman-event-mib::mteEventNotification."_snmpd".'_mteTriggerFalling' = OID: DISMAN-EVENT-MIB::mteTriggerFalling
disman-event-mib::mteEventNotification."_snmpd".'_mteTriggerFired' = OID: DISMAN-EVENT-MIB::mteTriggerFired
disman-event-mib::mteEventNotification."_snmpd".'_mteTriggerRising' = OID: DISMAN-EVENT-MIB::mteTriggerRising
disman-event-mib::mteEventNotificationObjectsOwner."_snmpd".'_linkDown' = STRING: _snmpd
disman-event-mib::mteEventNotificationObjectsOwner."_snmpd".'_linkUp' = STRING: _snmpd
disman-event-mib::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFailure' = STRING: _snmpd
disman-event-mib::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFalling' = STRING: _snmpd
disman-event-mib::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFired' = STRING: _snmpd
disman-event-mib::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerRising' = STRING: _snmpd
disman-event-mib::mteEventNotificationObjects."_snmpd".'_linkDown' = STRING: _linkUpDown
disman-event-mib::mteEventNotificationObjects."_snmpd".'_linkUp' = STRING: _linkUpDown
disman-event-mib::mteEventNotificationObjects."_snmpd".'_mteTriggerFailure' = STRING: _triggerFail
disman-event-mib::mteEventNotificationObjects."_snmpd".'_mteTriggerFalling' = STRING: _triggerFire
disman-event-mib::mteEventNotificationObjects."_snmpd".'_mteTriggerFired' = STRING: _triggerFire
disman-event-mib::mteEventNotificationObjects."_snmpd".'_mteTriggerRising' = STRING: _triggerFire
notification-log-mib::nlmConfigGlobalEntryLimit.0 = Gauge32: 1000
notification-log-mib::nlmConfigGlobalAgeOut.0 = Gauge32: 1440 minutes
notification-log-mib::nlmStatsGlobalNotificationsLogged.0 = Counter32: 0 notifications
notification-log-mib::nlmStatsGlobalNotificationsBumped.0 = Counter32: 0 notifications

Now with the internal community string, the target SNMP server returned a lot more MIB and OID structures that contains additional information such as system resources, networks, and running processes

Notably, it returns a few NICs with IPv4 addresses that resembles containers. This suggests that there might be containers running in the target system. Hence the name of the community string; internal

Additionally, some processes that appear to be relevant to the web applications could be seen. While these processes may contain valuable information, mapping them manually would be rather time-consuming

I will be using other tools for mapping

snmp-check with internal community string


┌──(kali㉿kali)-[~/archive/htb/labs/mentor]
└─$ snmp-check -p 161 -c internal -v 2c $IP -w
snmp-check v1.9 - SNMP enumerator
Copyright (c) 2005-2015 by Matteo Cantoni (www.nothink.org)
 
[+] Try to connect to 10.10.11.193:161 using SNMPv2c and community 'internal'
[+] Write access check enabled
 
[*] Write access not permitted!
[*] System information:
  Host IP address               : 10.10.11.193
  Hostname                      : mentor
  Description                   : Linux mentor 5.15.0-56-generic #62-Ubuntu SMP Tue Nov 22 19:54:14 UTC 2022 x86_64
  Contact                       : Me <admin@mentorquotes.htb>
  Location                      : Sitting on the Dock of the Bay
  Uptime snmp                   : 05:33:31.68
  Uptime system                 : 05:33:15.82
  System date                   : 2023-12-27 13:48:05.0
 
[*] Network information:
  IP forwarding enabled         : yes
  Default TTL                   : 64
  TCP segments received         : 19904533
  TCP segments sent             : 22340099
  TCP segments retrans          : 126012
  Input datagrams               : 20036754
  Delivered datagrams           : 20036657
  Output datagrams              : 22486590
 
[*] Network interfaces:
  Interface                     : [ up ] lo
  Id                            : 1
  Mac Address                   : :::::
  Type                          : softwareLoopback
  Speed                         : 10 Mbps
  MTU                           : 65536
  In octets                     : 600094
  Out octets                    : 600094
 
  Interface                     : [ up ] eth0
  Id                            : 2
  Mac Address                   : 00:50:56:b9:91:07
  Type                          : ethernet-csmacd
  Speed                         : 4294 Mbps
  MTU                           : 1500
  In octets                     : 1290369381
  Out octets                    : 2048428319
 
  Interface                     : [ up ] docker0
  Id                            : 3
  Mac Address                   : 02:42:18:29:90:f5
  Type                          : ethernet-csmacd
  Speed                         : 0 Mbps
  MTU                           : 1500
  In octets                     : 0
  Out octets                    : 0
 
  Interface                     : [ up ] br-028c7a43f929
  Id                            : 4
  Mac Address                   : 02:42:32:2b:7d:96
  Type                          : ethernet-csmacd
  Speed                         : 0 Mbps
  MTU                           : 1500
  In octets                     : 0
  Out octets                    : 0
 
  Interface                     : [ up ] br-24ddaa1f3b47
  Id                            : 5
  Mac Address                   : 02:42:03:d2:92:bc
  Type                          : ethernet-csmacd
  Speed                         : 0 Mbps
  MTU                           : 1500
  In octets                     : 0
  Out octets                    : 0
 
  Interface                     : [ up ] br-3d63c18e314d
  Id                            : 6
  Mac Address                   : 02:42:8b:19:65:0a
  Type                          : ethernet-csmacd
  Speed                         : 0 Mbps
  MTU                           : 1500
  In octets                     : 0
  Out octets                    : 0
 
  Interface                     : [ up ] br-7d5c72654da7
  Id                            : 7
  Mac Address                   : 02:42:d6:1c:38:f7
  Type                          : ethernet-csmacd
  Speed                         : 4294 Mbps
  MTU                           : 1500
  In octets                     : 999305212
  Out octets                    : 1097382139
 
  Interface                     : [ up ] br-a8a89c3bf6ff
  Id                            : 8
  Mac Address                   : 02:42:2e:cc:23:33
  Type                          : ethernet-csmacd
  Speed                         : 0 Mbps
  MTU                           : 1500
  In octets                     : 0
  Out octets                    : 0
 
  Interface                     : [ up ] veth846d49c
  Id                            : 10
  Mac Address                   : 16:d9:95:f5:fb:53
  Type                          : ethernet-csmacd
  Speed                         : 4294 Mbps
  MTU                           : 1500
  In octets                     : 473253
  Out octets                    : 530984
 
  Interface                     : [ up ] veth4346c47
  Id                            : 12
  Mac Address                   : aa:77:3b:f3:e1:5c
  Type                          : ethernet-csmacd
  Speed                         : 4294 Mbps
  MTU                           : 1500
  In octets                     : 75173605
  Out octets                    : 104776589
 
  Interface                     : [ up ] veth6bf7fc2
  Id                            : 14
  Mac Address                   : be:ba:0b:82:f3:05
  Type                          : ethernet-csmacd
  Speed                         : 4294 Mbps
  MTU                           : 1500
  In octets                     : 1044821900
  Out octets                    : 992080080
 
 
[*] Network IP:
  Id                    IP Address            Netmask               Broadcast           
  2                     10.10.11.193          255.255.254.0         1                   
  1                     127.0.0.1             255.0.0.0             0                   
  3                     172.17.0.1            255.255.0.0           1                   
  8                     172.18.0.1            255.255.0.0           1                   
  5                     172.19.0.1            255.255.0.0           1                   
  4                     172.20.0.1            255.255.0.0           1                   
  6                     172.21.0.1            255.255.0.0           1                   
  7                     172.22.0.1            255.255.0.0           1                   
 
[*] Routing information:
  Destination           Next hop              Mask                  Metric              
  0.0.0.0               10.10.10.2            0.0.0.0               1                   
  10.10.10.0            0.0.0.0               255.255.254.0         0                   
  172.17.0.0            0.0.0.0               255.255.0.0           0                   
  172.18.0.0            0.0.0.0               255.255.0.0           0                   
  172.19.0.0            0.0.0.0               255.255.0.0           0                   
  172.20.0.0            0.0.0.0               255.255.0.0           0                   
  172.21.0.0            0.0.0.0               255.255.0.0           0                   
  172.22.0.0            0.0.0.0               255.255.0.0           0                   
 
[*] TCP connections and listening ports:
  Local address         Local port            Remote address        Remote port           State               
  0.0.0.0               22                    0.0.0.0               0                     listen              
  10.10.11.193          56922                 8.8.8.8               53                    synSent             
  127.0.0.1             34613                 0.0.0.0               0                     listen              
  127.0.0.53            53                    0.0.0.0               0                     listen              
  172.22.0.1            81                    0.0.0.0               0                     listen              
  172.22.0.1            5432                  0.0.0.0               0                     listen              
  172.22.0.1            5432                  172.22.0.3            55856                 established         
  172.22.0.1            5432                  172.22.0.3            56694                 established         
  172.22.0.1            8000                  0.0.0.0               0                     listen              
  172.22.0.1            34800                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34802                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34810                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34814                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34820                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34836                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34842                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34852                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34864                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34866                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34874                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34886                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34906                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34908                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34920                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34926                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34932                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34944                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34954                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34960                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34966                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34968                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34970                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34972                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34976                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34980                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34986                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34994                 172.22.0.1            8000                  closeWait           
  172.22.0.1            34996                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35006                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35008                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35016                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35020                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35034                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35036                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35050                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35056                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35058                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35072                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35074                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35076                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35090                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35102                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35106                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35108                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35122                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35130                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35140                 172.22.0.1            8000                  closeWait           
  172.22.0.1            35156                 172.22.0.1            8000                  closeWait           
  172.22.0.1            37398                 172.22.0.4            5432                  established         
  172.22.0.1            37412                 172.22.0.1            8000                  timeWait            
  172.22.0.1            37760                 172.22.0.1            8000                  closeWait           
  172.22.0.1            37762                 172.22.0.1            8000                  closeWait           
  172.22.0.1            38266                 172.22.0.1            8000                  timeWait            
  172.22.0.1            39138                 172.22.0.4            5432                  established         
  172.22.0.1            48476                 172.22.0.1            8000                  timeWait            
  172.22.0.1            55808                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55810                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55826                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55838                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55846                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55862                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55870                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55880                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55894                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55908                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55924                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55946                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55950                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55952                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55958                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55964                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55970                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55980                 172.22.0.1            8000                  closeWait           
  172.22.0.1            55996                 172.22.0.1            8000                  closeWait           
  172.22.0.1            56002                 172.22.0.1            8000                  closeWait           
  172.22.0.1            56010                 172.22.0.1            8000                  closeWait           
  172.22.0.1            56026                 172.22.0.1            8000                  closeWait           
  172.22.0.1            56042                 172.22.0.1            8000                  closeWait           
  172.22.0.1            56056                 172.22.0.1            8000                  closeWait           
 
[*] Listening UDP ports:
  Local address         Local port          
  0.0.0.0               68                  
  0.0.0.0               161                 
  127.0.0.53            53                  
 
[*] Processes:
  Id                    Status                Name                  Path                  Parameters          
  1                     runnable              systemd               /sbin/init                                
  2                     runnable              kthreadd                                                        
  3                     unknown               rcu_gp                                                          
  4                     unknown               rcu_par_gp                                                      
  5                     unknown               netns                                                           
  7                     unknown               kworker/0:0H-events_highpri                                            
  9                     unknown               kworker/0:1H-events_highpri                                            
  10                    unknown               mm_percpu_wq                                                    
  11                    runnable              rcu_tasks_rude_                                                 
  12                    runnable              rcu_tasks_trace                                                 
  13                    runnable              ksoftirqd/0                                                     
  14                    unknown               rcu_sched                                                       
  15                    runnable              migration/0                                                     
  16                    runnable              idle_inject/0                                                   
  18                    runnable              cpuhp/0                                                         
  19                    runnable              cpuhp/1                                                         
  20                    runnable              idle_inject/1                                                   
  21                    runnable              migration/1                                                     
  22                    runnable              ksoftirqd/1                                                     
  24                    unknown               kworker/1:0H-events_highpri                                            
  25                    runnable              kdevtmpfs                                                       
  26                    unknown               inet_frag_wq                                                    
  27                    runnable              kauditd                                                         
  29                    runnable              khungtaskd                                                      
  30                    runnable              oom_reaper                                                      
  31                    unknown               writeback                                                       
  32                    runnable              kcompactd0                                                      
  33                    runnable              ksmd                                                            
  34                    runnable              khugepaged                                                      
  81                    unknown               kintegrityd                                                     
  82                    unknown               kblockd                                                         
  83                    unknown               blkcg_punt_bio                                                  
  84                    unknown               tpm_dev_wq                                                      
  85                    unknown               ata_sff                                                         
  86                    unknown               md                                                              
  87                    unknown               edac-poller                                                     
  88                    unknown               devfreq_wq                                                      
  89                    runnable              watchdogd                                                       
  92                    runnable              kswapd0                                                         
  93                    runnable              ecryptfs-kthrea                                                 
  95                    unknown               kthrotld                                                        
  96                    runnable              irq/24-pciehp                                                   
  97                    runnable              irq/25-pciehp                                                   
  98                    runnable              irq/26-pciehp                                                   
  99                    runnable              irq/27-pciehp                                                   
  100                   runnable              irq/28-pciehp                                                   
  101                   runnable              irq/29-pciehp                                                   
  102                   runnable              irq/30-pciehp                                                   
  103                   runnable              irq/31-pciehp                                                   
  104                   runnable              irq/32-pciehp                                                   
  105                   runnable              irq/33-pciehp                                                   
  106                   runnable              irq/34-pciehp                                                   
  107                   runnable              irq/35-pciehp                                                   
  108                   runnable              irq/36-pciehp                                                   
  109                   runnable              irq/37-pciehp                                                   
  110                   runnable              irq/38-pciehp                                                   
  111                   runnable              irq/39-pciehp                                                   
  112                   runnable              irq/40-pciehp                                                   
  113                   runnable              irq/41-pciehp                                                   
  114                   runnable              irq/42-pciehp                                                   
  115                   runnable              irq/43-pciehp                                                   
  116                   runnable              irq/44-pciehp                                                   
  117                   runnable              irq/45-pciehp                                                   
  118                   runnable              irq/46-pciehp                                                   
  119                   runnable              irq/47-pciehp                                                   
  120                   runnable              irq/48-pciehp                                                   
  121                   runnable              irq/49-pciehp                                                   
  122                   runnable              irq/50-pciehp                                                   
  123                   runnable              irq/51-pciehp                                                   
  124                   runnable              irq/52-pciehp                                                   
  125                   runnable              irq/53-pciehp                                                   
  126                   runnable              irq/54-pciehp                                                   
  127                   runnable              irq/55-pciehp                                                   
  128                   unknown               acpi_thermal_pm                                                 
  130                   runnable              scsi_eh_0                                                       
  131                   unknown               scsi_tmf_0                                                      
  132                   runnable              scsi_eh_1                                                       
  133                   unknown               scsi_tmf_1                                                      
  135                   unknown               vfio-irqfd-clea                                                 
  136                   unknown               kworker/1:1H-events_highpri                                            
  137                   unknown               mld                                                             
  138                   unknown               ipv6_addrconf                                                   
  150                   unknown               kstrp                                                           
  153                   unknown               zswap-shrink                                                    
  154                   unknown               kworker/u257:0                                                  
  159                   unknown               charger_manager                                                 
  203                   runnable              scsi_eh_2                                                       
  204                   unknown               scsi_tmf_2                                                      
  205                   unknown               mpt_poll_0                                                      
  206                   runnable              scsi_eh_3                                                       
  207                   unknown               scsi_tmf_3                                                      
  208                   unknown               mpt/0                                                           
  209                   runnable              scsi_eh_4                                                       
  210                   unknown               scsi_tmf_4                                                      
  211                   runnable              scsi_eh_5                                                       
  212                   unknown               scsi_tmf_5                                                      
  213                   runnable              scsi_eh_6                                                       
  214                   unknown               scsi_tmf_6                                                      
  215                   runnable              scsi_eh_7                                                       
  216                   unknown               scsi_tmf_7                                                      
  217                   runnable              scsi_eh_8                                                       
  218                   unknown               scsi_tmf_8                                                      
  219                   runnable              scsi_eh_9                                                       
  220                   unknown               scsi_tmf_9                                                      
  221                   runnable              scsi_eh_10                                                      
  222                   unknown               scsi_tmf_10                                                     
  223                   runnable              scsi_eh_11                                                      
  224                   unknown               scsi_tmf_11                                                     
  225                   runnable              scsi_eh_12                                                      
  226                   unknown               scsi_tmf_12                                                     
  227                   runnable              scsi_eh_13                                                      
  228                   unknown               scsi_tmf_13                                                     
  229                   runnable              scsi_eh_14                                                      
  230                   unknown               scsi_tmf_14                                                     
  231                   runnable              scsi_eh_15                                                      
  232                   unknown               scsi_tmf_15                                                     
  233                   runnable              scsi_eh_16                                                      
  234                   unknown               scsi_tmf_16                                                     
  235                   runnable              scsi_eh_17                                                      
  236                   unknown               scsi_tmf_17                                                     
  237                   runnable              scsi_eh_18                                                      
  238                   unknown               scsi_tmf_18                                                     
  239                   runnable              scsi_eh_19                                                      
  240                   unknown               scsi_tmf_19                                                     
  241                   runnable              scsi_eh_20                                                      
  242                   unknown               scsi_tmf_20                                                     
  243                   runnable              scsi_eh_21                                                      
  244                   unknown               scsi_tmf_21                                                     
  245                   runnable              scsi_eh_22                                                      
  246                   unknown               scsi_tmf_22                                                     
  247                   runnable              scsi_eh_23                                                      
  248                   unknown               scsi_tmf_23                                                     
  249                   runnable              scsi_eh_24                                                      
  250                   unknown               scsi_tmf_24                                                     
  251                   runnable              scsi_eh_25                                                      
  252                   unknown               scsi_tmf_25                                                     
  253                   runnable              scsi_eh_26                                                      
  254                   unknown               scsi_tmf_26                                                     
  255                   runnable              scsi_eh_27                                                      
  256                   unknown               scsi_tmf_27                                                     
  257                   runnable              scsi_eh_28                                                      
  258                   unknown               scsi_tmf_28                                                     
  259                   runnable              scsi_eh_29                                                      
  260                   unknown               scsi_tmf_29                                                     
  261                   runnable              scsi_eh_30                                                      
  262                   unknown               scsi_tmf_30                                                     
  263                   runnable              scsi_eh_31                                                      
  264                   unknown               scsi_tmf_31                                                     
  291                   unknown               cryptd                                                          
  323                   unknown               ttm_swap                                                        
  325                   runnable              irq/16-vmwgfx                                                   
  327                   runnable              card0-crtc0                                                     
  330                   runnable              card0-crtc1                                                     
  331                   runnable              card0-crtc2                                                     
  332                   runnable              card0-crtc3                                                     
  333                   runnable              card0-crtc4                                                     
  334                   runnable              card0-crtc5                                                     
  335                   runnable              card0-crtc6                                                     
  336                   runnable              card0-crtc7                                                     
  337                   runnable              scsi_eh_32                                                      
  338                   unknown               scsi_tmf_32                                                     
  361                   unknown               kdmflush                                                        
  363                   unknown               kdmflush                                                        
  394                   unknown               raid5wq                                                         
  452                   runnable              jbd2/dm-0-8                                                     
  453                   unknown               ext4-rsv-conver                                                 
  514                   runnable              systemd-journal       /lib/systemd/systemd-journald                      
  551                   unknown               kaluad                                                          
  553                   unknown               kmpath_rdacd                                                    
  555                   unknown               kmpathd                                                         
  556                   unknown               kmpath_handlerd                                                 
  557                   runnable              multipathd            /sbin/multipathd      -d -s               
  560                   runnable              systemd-udevd         /lib/systemd/systemd-udevd                      
  592                   runnable              systemd-network       /lib/systemd/systemd-networkd                      
  712                   runnable              jbd2/sda2-8                                                     
  718                   unknown               ext4-rsv-conver                                                 
  767                   runnable              systemd-resolve       /lib/systemd/systemd-resolved                      
  770                   runnable              systemd-timesyn       /lib/systemd/systemd-timesyncd                      
  783                   runnable              VGAuthService         /usr/bin/VGAuthService                      
  786                   runnable              vmtoolsd              /usr/bin/vmtoolsd                         
  819                   runnable              dhclient              /sbin/dhclient        -1 -4 -v -i -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases -I -df /var/lib/dhcp/dhclient6.eth0.leases eth0
  899                   runnable              dbus-daemon           @dbus-daemon          --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
  905                   runnable              irqbalance            /usr/sbin/irqbalance  --foreground        
  906                   runnable              networkd-dispat       /usr/bin/python3      /usr/bin/networkd-dispatcher --run-startup-triggers
  907                   runnable              polkitd               /usr/libexec/polkitd  --no-debug          
  908                   runnable              rsyslogd              /usr/sbin/rsyslogd    -n -iNONE           
  909                   runnable              snapd                 /usr/lib/snapd/snapd                      
  910                   runnable              systemd-logind        /lib/systemd/systemd-logind                      
  911                   runnable              udisksd               /usr/libexec/udisks2/udisksd                      
  920                   runnable              ModemManager          /usr/sbin/ModemManager                      
  1216                  runnable              cron                  /usr/sbin/cron        -f -P               
  1218                  running               snmpd                 /usr/sbin/snmpd       -LOw -u Debian-snmp -g Debian-snmp -I -smux mteTrigger mteTriggerConf -f
  1247                  runnable              containerd            /usr/bin/containerd                       
  1250                  runnable              agetty                /sbin/agetty          -o -p -- \u --noclear tty1 linux
  1256                  runnable              sshd                  sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups                      
  1276                  runnable              apache2               /usr/sbin/apache2     -k start            
  1341                  runnable              dockerd               /usr/bin/dockerd      -H fd:// --containerd=/run/containerd/containerd.sock
  1695                  runnable              login.sh              /bin/bash             /usr/local/bin/login.sh
  1738                  runnable              docker-proxy          /usr/bin/docker-proxy  -proto tcp -host-ip 172.22.0.1 -host-port 5432 -container-ip 172.22.0.4 -container-port 5432
  1773                  runnable              containerd-shim       /usr/bin/containerd-shim-runc-v2  -namespace moby -id 96e44c5692920491cdb954f3d352b3532a88425979cd48b3959b63bfec98a6f4 -address /run/containerd/containerd.sock
  1794                  runnable              postgres              postgres                                  
  1871                  runnable              docker-proxy          /usr/bin/docker-proxy  -proto tcp -host-ip 172.22.0.1 -host-port 8000 -container-ip 172.22.0.3 -container-port 8000
  1890                  runnable              containerd-shim       /usr/bin/containerd-shim-runc-v2  -namespace moby -id eee0a852ae9a358e804aac967e98dac0f164714a59a8774a50c92961d73e38e1 -address /run/containerd/containerd.sock
  1910                  runnable              python3               python3               -m uvicorn app.main:app --reload --workers 2 --host 0.0.0.0 --port 8000
  1916                  runnable              postgres              postgres: checkpointer                      
  1917                  runnable              postgres              postgres: background writer                      
  1918                  runnable              postgres              postgres: walwriter                       
  1919                  runnable              postgres              postgres: autovacuum launcher                      
  1920                  runnable              postgres              postgres: stats collector                      
  1921                  runnable              postgres              postgres: logical replication launcher                      
  1975                  runnable              docker-proxy          /usr/bin/docker-proxy  -proto tcp -host-ip 172.22.0.1 -host-port 81 -container-ip 172.22.0.2 -container-port 80
  1988                  runnable              containerd-shim       /usr/bin/containerd-shim-runc-v2  -namespace moby -id c5aa49825c2925e39d0ed36f92c304888821e71ef5ccc006a98c671d68af0b7c -address /run/containerd/containerd.sock
  2010                  runnable              python                python                main.py             
  2052                  runnable              python3               /usr/local/bin/python3  -c from multiprocessing.semaphore_tracker import main;main(4)
  2053                  runnable              python3               /usr/local/bin/python3  -c from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) --multiprocessing-fork
  2118                  runnable              postgres              postgres: postgres mentorquotes_db 172.22.0.1(39138) idle                      
  2131                  runnable              login.py              /usr/bin/python3      /usr/local/bin/login.py kj23sadkj123as0-d213
  2277                  unknown               kworker/1:3-cgroup_destroy                                            
  2348                  unknown               kworker/0:2-events                                              
  2357                  runnable              upowerd               /usr/libexec/upowerd                      
  2366                  unknown               kworker/1:0-events                                              
  2988                  runnable              postgres              postgres: postgres mentorquotes_db 172.22.0.1(37398) idle                      
  1282651               unknown               kworker/0:1-events                                              
  1283863               runnable              apache2               /usr/sbin/apache2     -k start            
  1283891               runnable              apache2               /usr/sbin/apache2     -k start            
  1283919               runnable              apache2               /usr/sbin/apache2     -k start            
  1284201               unknown               kworker/u256:1-flush-253:0                                            
  1284242               unknown               kworker/u256:0-events_power_efficient                                            
  1284249               unknown               kworker/u256:2-events_power_efficient                                            
  1284288               unknown               kworker/u256:3                                                  
 
[*] Storage information:
  Description                   : ["Physical memory"]
  Device id                     : [#<SNMP::Integer:0x00007fa50707fc48 @value=1>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa50707df10 @value=1024>]
  Memory size                   : 3.80 GB
  Memory used                   : 1.67 GB
 
  Description                   : ["Virtual memory"]
  Device id                     : [#<SNMP::Integer:0x00007fa507080b20 @value=3>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507086b88 @value=1024>]
  Memory size                   : 4.30 GB
  Memory used                   : 1.67 GB
 
  Description                   : ["Memory buffers"]
  Device id                     : [#<SNMP::Integer:0x00007fa50731b7e0 @value=6>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507318310 @value=1024>]
  Memory size                   : 3.80 GB
  Memory used                   : 58.16 MB
 
  Description                   : ["Cached memory"]
  Device id                     : [#<SNMP::Integer:0x00007fa507325128 @value=7>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507067ee0 @value=1024>]
  Memory size                   : 1.08 GB
  Memory used                   : 1.08 GB
 
  Description                   : ["Shared memory"]
  Device id                     : [#<SNMP::Integer:0x00007fa50706acf8 @value=8>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507068f70 @value=1024>]
  Memory size                   : 14.84 MB
  Memory used                   : 14.84 MB
 
  Description                   : ["Swap space"]
  Device id                     : [#<SNMP::Integer:0x00007fa507073d58 @value=10>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507072020 @value=1024>]
  Memory size                   : 512.00 MB
  Memory used                   : 0 bytes
 
  Description                   : ["Available memory"]
  Device id                     : [#<SNMP::Integer:0x00007fa507074dc0 @value=11>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa50707b0d0 @value=1024>]
  Memory size                   : 3.00 GB
  Memory used                   : 0 bytes
 
  Description                   : ["/run"]
  Device id                     : [#<SNMP::Integer:0x00007fa50704dfb8 @value=35>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa50704c320 @value=4096>]
  Memory size                   : 388.98 MB
  Memory used                   : 1.71 MB
 
  Description                   : ["/"]
  Device id                     : [#<SNMP::Integer:0x00007fa5070570e0 @value=36>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa5070553d0 @value=4096>]
  Memory size                   : 8.10 GB
  Memory used                   : 5.79 GB
 
  Description                   : ["/dev/shm"]
  Device id                     : [#<SNMP::Integer:0x00007fa507058210 @value=38>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa50705e3e0 @value=4096>]
  Memory size                   : 1.90 GB
  Memory used                   : 0 bytes
 
  Description                   : ["/run/lock"]
  Device id                     : [#<SNMP::Integer:0x00007fa507061298 @value=39>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507037510 @value=4096>]
  Memory size                   : 5.00 MB
  Memory used                   : 0 bytes
 
  Description                   : ["/boot"]
  Device id                     : [#<SNMP::Integer:0x00007fa50703a468 @value=54>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507038708 @value=4096>]
  Memory size                   : 344.52 MB
  Memory used                   : 244.35 MB
 
  Description                   : ["/run/snapd/ns"]
  Device id                     : [#<SNMP::Integer:0x00007fa507043388 @value=55>]
  Filesystem type               : ["unknown"]
  Device unit                   : [#<SNMP::Integer:0x00007fa507041678 @value=4096>]
  Memory size                   : 388.98 MB
  Memory used                   : 1.71 MB
 
 
[*] File system information:
  Index                         : noSuchInstance
  Mount point                   : noSuchInstance
  Access                        : noSuchInstance
  Bootable                      : noSuchInstance
 
[*] Device information:
  Id                    Type                  Status                Descr               
  196608                unknown               running               AuthenticAMD: AMD EPYC 7302P 16-Core Processor
  196609                unknown               running               AuthenticAMD: AMD EPYC 7302P 16-Core Processor
  262145                unknown               running               network interface lo
  262146                unknown               running               network interface eth0
  262147                unknown               running               network interface docker0
  262148                unknown               running               network interface br-028c7a43f929
  262149                unknown               running               network interface br-24ddaa1f3b47
  262150                unknown               running               network interface br-3d63c18e314d
  262151                unknown               running               network interface br-7d5c72654da7
  262152                unknown               running               network interface br-a8a89c3bf6ff
  262154                unknown               running               network interface veth846d49c
  262156                unknown               running               network interface veth4346c47
  262158                unknown               running               network interface veth6bf7fc2
  786432                unknown               unknown               Guessing that there's a floating point co-processor
 
[*] Software components:
  Index                 Name                
[...REDACTED...]

snmp-check does a lot better at re-structuring and mapping those MIBs and OIDs to a readable state

There are 6 additional IPv6 addresses, supposedly given to docker instances

Additionally, there are 2 processes that seems to be relevant to authentication One of them is a Python script with what appears to be an authentication string; kj23sadkj123as0-d213