feat: device enrichment enhancements #1024

Closed
opened 2026-03-28 04:30:55 +00:00 by mfreeman451 · 0 comments
Owner

Imported from GitHub.

Original GitHub issue: #2825
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/issues/2825
Original created: 2026-02-13T17:23:37Z


Is your feature request related to a problem?

SNMP:

Did an snmpwalk and some investigation with AI, looks like we can do a lot more here:

Yes, this SNMP data is quite useful for building out your discovery tool, as it provides a solid foundation for understanding the device's identity, interface details, Layer 2 forwarding behavior, connected devices, and some VLAN-related insights. I'll break it down step by step, focusing on what's actionable, how it ties into VLAN discovery, and suggestions for expanding your tool to get more precise VLAN assignments.

### Device Identification and Basic Info
- **System Details**: The `sysDescr` shows it's a Ubiquiti (UBNT) device running Linux kernel 3.18.24, likely a UniFi Switch Lite 8 PoE (from `sysName: USWLite8PoE`). `sysObjectID` confirms it's using Net-SNMP agent. Uptime is about 13 days. Contact is "mfreeman" and location is "office". This helps classify the device type in your tool (e.g., switch, vendor-specific quirks).
- **Bridge Basics**: `dot1dBaseBridgeAddress` is F4:92:BF:9C:30:43 (the switch's base MAC). Number of ports is 8 (`dot1dBaseNumPorts`). STP port states (`dot1dStpPortState`) show ports 1,3,5,7,8 in forwarding mode (5), while 2,4,6 are disabled (1)—matching the operational status.
- **Usefulness**: Great for inventory and topology mapping. You can flag this as a managed PoE switch and correlate with known Ubiquiti behaviors (e.g., they often use custom MIBs, but this sticks to standards like BRIDGE-MIB and Q-BRIDGE-MIB).

### Interface Details
- **Ports Overview**: 8 Ethernet ports (ifIndex 1-8, named "Port 1" to "Port 8", all with MTU 9216 for jumbo frames). Physical addresses are all the same (F4:92:BF:9C:30:43)—this is common in switches where ports derive from the base MAC (not per-port unique).
- **Status and Speeds**: All admin up. Operational: Up on 1 (1Gbps), 3 (1Gbps), 5 (100Mbps), 7 (1Gbps), 8 (1Gbps); down on 2,4,6. Last change timestamps show recent activity on some (e.g., port 1 up for ~13 days, port 5 for ~7 days).
- **Counters**: In/out octets, unicast/multicast/broadcast packets, errors (all 0), discards (0). High counters on ports 1,3,5,7,8 indicate active traffic; zeros on down ports. HC (64-bit) counters are provided for high-volume accuracy.
- **Other**: Promiscuous mode enabled on all (useful for monitoring tools), connectors present (RJ45 assumed). No aliases beyond defaults.
- **Usefulness**: Essential for port-level discovery. Your tool can map port status, utilization (e.g., calculate bandwidth from speed and octets over time), and identify active vs. idle ports. Combine with counters to detect anomalies (e.g., high multicast on port 7 suggests flooding or IGMP traffic).

### Layer 2 Forwarding (FDB/MAC Table)
- **dot1dTpFdbTable** (BRIDGE-MIB) and **dot1qTpFdbTable** (Q-BRIDGE-MIB): Lists ~50 MAC addresses learned dynamically (status 3). Most on port 7 (e.g., many vendor prefixes like Apple, Google, etc.), some on ports 1,3,5,8. Aging time is 300 seconds.
  - VLAN context: Entries are tagged with VLAN IDs (1,2,3). VLAN 1 has the bulk (active traffic), VLAN 2 has a few (e.g., BC:24:11:... MACs on port 7), VLAN 3 has one (F4:92:BF:75:C7:2B on port 7).
- **Multicast Group Forwarding**: From previous data (dot1qTpGroupEgressPorts and dot1qTpGroupLearnt), for a specific multicast group, egress to ports 1-8 in VLANs 1-3, but learnt sources only in VLAN 1 on 1-8. This implies multicast flooding across all ports in those VLANs, with actual sources only in VLAN 1.
- **Usefulness**: Excellent for topology. Map connected devices by MAC (e.g., vendor lookup via OUI), and infer port attachments. For VLANs, it shows *active* VLAN usage per port (e.g., port 7 carries VLANs 1,2,3; port 1 mostly VLAN 1). If a port only shows MACs in one VLAN, it's likely an access port for that VLAN.

### Layer 3 Info (IP/ARP)
- **IP Config**: Device IP 192.168.1.238/24 on ifIndex 3 (port 3), loopback on 1. Not forwarding (router mode off). Routes include default via 192.168.1.1.
- **ARP Table** (ipNetToMedia): 7 entries, all dynamic on ifIndex 3 (port 3). Maps IPs (192.168.1.1,17,62,88,218,220,253) to MACs (e.g., 192.168.1.1 → F4:92:BF:75:C7:2B).
- **Counters**: Inbound IP packets ~1.6M, delivers ~286K, no errors/frags.
- **Usefulness**: Cross-reference with FDB to identify devices (e.g., match MAC from FDB to IP in ARP → "device at 192.168.1.1 connected via port 7 in VLAN 3"). Helps discover neighbors, but ARP is tied to the switch's management VLAN (likely 1, since PVID=1).

### VLAN-Specific Insights
- **Available VLANs**: `dot1qNumVlans=3`, max supported 4093. Likely VLANs 1 (default), 2, 3.
- **PVID (Default VLAN)**: `dot1qPvid` is 1 for *all* ports 1-8. This means untagged traffic defaults to VLAN 1 on every port.
- **FDB per VLAN**: As above, shows learned MACs segmented by VLAN. VLAN 1 is dominant (46 dynamic entries), VLAN 2 has 5, VLAN 3 has 1. This indicates active traffic in those VLANs, with most devices in VLAN 1.
- **Limitations in Data**: We don't have full port-VLAN membership:
  - No `dot1qVlanStaticEgressPorts` or `dot1qVlanCurrentEgressPorts` (bitmaps for tagged ports per VLAN).
  - No `dot1qVlanStaticUntaggedPorts` (bitmaps for untagged ports per VLAN).
  - Without these, we can't directly say "port 7 is trunk for VLANs 1-3" or "port 5 is access for VLAN 2".
- **Indirect Inference**:
  - Ports with MACs in multiple VLANs (e.g., port 7) are likely trunks (tagged).
  - Ports with MACs only in VLAN 1 (e.g., port 5) are likely access ports.
  - Multicast forwarding to all ports in VLANs 1-3 suggests no pruning (e.g., via GVRP/IGMP snooping), or all ports are members.
  - Since PVID=1 everywhere and most activity in VLAN 1, this switch is probably configured with VLAN 1 as the main/management VLAN, and 2/3 for specific isolation (e.g., guest/IoT), but not heavily segmented.
- **Usefulness for VLAN Discovery**: Moderately helpful indirectly via FDB and PVID. You can infer VLAN-port associations from where MACs are learned (e.g., if your tool polls over time, track VLAN traffic per port). But for precise assignments, it's incomplete—e.g., a port could be in VLAN 2 tagged but show no learnt MACs if no devices are connected.

### Recommendations for Your SNMP Discovery Tool
- **Enhance VLAN Polling**: Walk these additional OIDs to get full VLAN config:
  - `1.3.6.1.2.1.17.7.1.4.3.1` (dot1qVlanStaticTable) for configured VLANs, including egress/untagged bitmaps.
  - `1.3.6.1.2.1.17.7.1.4.3.1.2` (dot1qVlanStaticEgressPorts.vlanid) – bitmap of tagged ports.
  - `1.3.6.1.2.1.17.7.1.4.3.1.4` (dot1qVlanStaticUntaggedPorts.vlanid) – bitmap of untagged ports.
  - `1.3.6.1.2.1.17.7.1.4.1.1` (dot1qVlanIndex) to list all created VLANs.
  - Decode bitmaps like the previous hex (e.g., 01 FE = ports 1-8, as bit 0-7 set except LSB of first octet? Wait, recall: octets are MSB first, bits per port starting from 1).
- **Topology Mapping**: Combine FDB (MAC-port-VLAN), ARP (IP-MAC), and interface status to build a connected device list. E.g., table:
  
  | Port | Status | Speed | Learned MACs (Sample) | Inferred VLANs | Connected IP (via ARP match) |
  |------|--------|-------|-----------------------|----------------|------------------------------|
  | 1    | Up     | 1G    | 1E:14:04:92:15:A9, 56:90:C2:D9:77:EE, 76:83:84:3D:A4:70 | 1             | 192.168.1.218, 192.168.1.220 |
  | 3    | Up     | 1G    | D0:21:F9:2F:DF:51                     | 1             | (Management port, ARP here)  |
  | 5    | Up     | 100M  | EC:B5:FA:8D:F1:FC                     | 1             | None matched                 |
  | 7    | Up     | 1G    | Many (e.g., BC:24:11:F3:5D:50, F4:92:BF:75:C7:2B) | 1,2,3         | 192.168.1.1, 192.168.1.62    |
  | 8    | Up     | 1G    | 18:31:BF:26:48:D9                     | 1             | None matched                 |

- **Other Discoveries**: Poll PoE-specific OIDs (e.g., POWER-ETHERNET-MIB) since it's a PoE switch. For Ubiquiti, consider their enterprise MIB if available (though this uses standards).
- **Potential Issues**: Data shows only 3 VLANs, but if more exist without traffic, FDB won't show them—always poll static config. Ensure your tool handles Net-SNMP quirks (e.g., limited VLAN support in older agents).

This data gives a good starting point for device/port discovery and basic VLAN inference, but for full VLAN-to-interface mapping, add those Q-BRIDGE OIDs to your walk. If you share more specific OIDs or tool goals, I can refine further!
SNMPv2-MIB::sysDescr.0 = STRING: Linux UBNT 3.18.24 #0 Thu Aug 30 12:10:54 2018 mips
SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (119694500) 13 days, 20:29:05.00
SNMPv2-MIB::sysContact.0 = STRING: mfreeman
SNMPv2-MIB::sysName.0 = STRING: USWLite8PoE
SNMPv2-MIB::sysLocation.0 = STRING: office
IF-MIB::ifNumber.0 = INTEGER: 8
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::ifDescr.1 = STRING: Port 1
IF-MIB::ifDescr.2 = STRING: Port 2
IF-MIB::ifDescr.3 = STRING: Port 3
IF-MIB::ifDescr.4 = STRING: Port 4
IF-MIB::ifDescr.5 = STRING: Port 5
IF-MIB::ifDescr.6 = STRING: Port 6
IF-MIB::ifDescr.7 = STRING: Port 7
IF-MIB::ifDescr.8 = STRING: Port 8
IF-MIB::ifType.1 = INTEGER: ethernetCsmacd(6)
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::ifMtu.1 = INTEGER: 9216
IF-MIB::ifMtu.2 = INTEGER: 9216
IF-MIB::ifMtu.3 = INTEGER: 9216
IF-MIB::ifMtu.4 = INTEGER: 9216
IF-MIB::ifMtu.5 = INTEGER: 9216
IF-MIB::ifMtu.6 = INTEGER: 9216
IF-MIB::ifMtu.7 = INTEGER: 9216
IF-MIB::ifMtu.8 = INTEGER: 9216
IF-MIB::ifSpeed.1 = Gauge32: 1000000000
IF-MIB::ifSpeed.2 = Gauge32: 0
IF-MIB::ifSpeed.3 = Gauge32: 1000000000
IF-MIB::ifSpeed.4 = Gauge32: 0
IF-MIB::ifSpeed.5 = Gauge32: 100000000
IF-MIB::ifSpeed.6 = Gauge32: 0
IF-MIB::ifSpeed.7 = Gauge32: 1000000000
IF-MIB::ifSpeed.8 = Gauge32: 1000000000
IF-MIB::ifPhysAddress.1 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.2 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.3 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.4 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.5 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.6 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.7 = STRING: f4:92:bf:9c:30:43
IF-MIB::ifPhysAddress.8 = STRING: f4:92:bf:9c:30:43
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::ifOperStatus.1 = INTEGER: up(1)
IF-MIB::ifOperStatus.2 = INTEGER: down(2)
IF-MIB::ifOperStatus.3 = INTEGER: up(1)
IF-MIB::ifOperStatus.4 = INTEGER: down(2)
IF-MIB::ifOperStatus.5 = INTEGER: up(1)
IF-MIB::ifOperStatus.6 = INTEGER: down(2)
IF-MIB::ifOperStatus.7 = INTEGER: up(1)
IF-MIB::ifOperStatus.8 = INTEGER: up(1)
IF-MIB::ifLastChange.1 = Timeticks: (116800300) 13 days, 12:26:43.00
IF-MIB::ifLastChange.2 = Timeticks: (0) 0:00:00.00
IF-MIB::ifLastChange.3 = Timeticks: (9200) 0:01:32.00
IF-MIB::ifLastChange.4 = Timeticks: (0) 0:00:00.00
IF-MIB::ifLastChange.5 = Timeticks: (60408600) 6 days, 23:48:06.00
IF-MIB::ifLastChange.6 = Timeticks: (0) 0:00:00.00
IF-MIB::ifLastChange.7 = Timeticks: (9200) 0:01:32.00
IF-MIB::ifLastChange.8 = Timeticks: (9500) 0:01:35.00
IF-MIB::ifInOctets.1 = Counter32: 1198526514
IF-MIB::ifInOctets.2 = Counter32: 0
IF-MIB::ifInOctets.3 = Counter32: 59177705
IF-MIB::ifInOctets.4 = Counter32: 0
IF-MIB::ifInOctets.5 = Counter32: 480193572
IF-MIB::ifInOctets.6 = Counter32: 0
IF-MIB::ifInOctets.7 = Counter32: 2572041699
IF-MIB::ifInOctets.8 = Counter32: 1700655457
IF-MIB::ifInUcastPkts.1 = Counter32: 45262190
IF-MIB::ifInUcastPkts.2 = Counter32: 0
IF-MIB::ifInUcastPkts.3 = Counter32: 673053
IF-MIB::ifInUcastPkts.4 = Counter32: 0
IF-MIB::ifInUcastPkts.5 = Counter32: 1149114
IF-MIB::ifInUcastPkts.6 = Counter32: 0
IF-MIB::ifInUcastPkts.7 = Counter32: 27356302
IF-MIB::ifInUcastPkts.8 = Counter32: 12700979
IF-MIB::ifInNUcastPkts.1 = Counter32: 38569840
IF-MIB::ifInNUcastPkts.2 = Counter32: 0
IF-MIB::ifInNUcastPkts.3 = Counter32: 99
IF-MIB::ifInNUcastPkts.4 = Counter32: 0
IF-MIB::ifInNUcastPkts.5 = Counter32: 665966
IF-MIB::ifInNUcastPkts.6 = Counter32: 0
IF-MIB::ifInNUcastPkts.7 = Counter32: 40730952
IF-MIB::ifInNUcastPkts.8 = Counter32: 85095
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::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::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::ifOutOctets.1 = Counter32: 196926410
IF-MIB::ifOutOctets.2 = Counter32: 0
IF-MIB::ifOutOctets.3 = Counter32: 307852995
IF-MIB::ifOutOctets.4 = Counter32: 0
IF-MIB::ifOutOctets.5 = Counter32: 104939165
IF-MIB::ifOutOctets.6 = Counter32: 0
IF-MIB::ifOutOctets.7 = Counter32: 850914931
IF-MIB::ifOutOctets.8 = Counter32: 1050934221
IF-MIB::ifOutUcastPkts.1 = Counter32: 31352865
IF-MIB::ifOutUcastPkts.2 = Counter32: 0
IF-MIB::ifOutUcastPkts.3 = Counter32: 669852
IF-MIB::ifOutUcastPkts.4 = Counter32: 0
IF-MIB::ifOutUcastPkts.5 = Counter32: 600105
IF-MIB::ifOutUcastPkts.6 = Counter32: 0
IF-MIB::ifOutUcastPkts.7 = Counter32: 3676811
IF-MIB::ifOutUcastPkts.8 = Counter32: 30979179
IF-MIB::ifOutNUcastPkts.1 = Counter32: 2200240
IF-MIB::ifOutNUcastPkts.2 = Counter32: 0
IF-MIB::ifOutNUcastPkts.3 = Counter32: 40281304
IF-MIB::ifOutNUcastPkts.4 = Counter32: 0
IF-MIB::ifOutNUcastPkts.5 = Counter32: 39681881
IF-MIB::ifOutNUcastPkts.6 = Counter32: 0
IF-MIB::ifOutNUcastPkts.7 = Counter32: 137981
IF-MIB::ifOutNUcastPkts.8 = Counter32: 40226782
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::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::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::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
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.1 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.17 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.62 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.88 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.218 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.220 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.253 = INTEGER: 3
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.1 = Hex-STRING: F4 92 BF 75 C7 2B
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.17 = Hex-STRING: B8 16 5F EB C1 B4
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.62 = Hex-STRING: BC 24 11 F3 5D 50
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.88 = Hex-STRING: 10 96 93 58 9A 0E
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.218 = Hex-STRING: 56 90 C2 D9 77 EE
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.220 = Hex-STRING: 76 83 84 3D A4 70
SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.253 = Hex-STRING: 08 12 A5 E5 2B 54
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.1 = IpAddress: 192.168.1.1
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.17 = IpAddress: 192.168.1.17
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.62 = IpAddress: 192.168.1.62
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.88 = IpAddress: 192.168.1.88
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.218 = IpAddress: 192.168.1.218
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.220 = IpAddress: 192.168.1.220
SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.253 = IpAddress: 192.168.1.253
IP-MIB::ipForwarding.0 = INTEGER: notForwarding(2)
IP-MIB::ipDefaultTTL.0 = INTEGER: 64
IP-MIB::ipInReceives.0 = Counter32: 1652262
IP-MIB::ipInHdrErrors.0 = Counter32: 0
IP-MIB::ipInAddrErrors.0 = Counter32: 3
IP-MIB::ipForwDatagrams.0 = Counter32: 0
IP-MIB::ipInUnknownProtos.0 = Counter32: 0
IP-MIB::ipInDiscards.0 = Counter32: 0
IP-MIB::ipInDelivers.0 = Counter32: 286193
IP-MIB::ipOutRequests.0 = Counter32: 326109
IP-MIB::ipOutDiscards.0 = Counter32: 0
IP-MIB::ipOutNoRoutes.0 = Counter32: 111
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.127.0.0.1 = IpAddress: 127.0.0.1
IP-MIB::ipAdEntAddr.192.168.1.238 = IpAddress: 192.168.1.238
IP-MIB::ipAdEntIfIndex.127.0.0.1 = INTEGER: 1
IP-MIB::ipAdEntIfIndex.192.168.1.238 = INTEGER: 3
IP-MIB::ipAdEntNetMask.127.0.0.1 = IpAddress: 255.0.0.0
IP-MIB::ipAdEntNetMask.192.168.1.238 = IpAddress: 255.255.255.0
IP-MIB::ipAdEntBcastAddr.127.0.0.1 = INTEGER: 0
IP-MIB::ipAdEntBcastAddr.192.168.1.238 = INTEGER: 1
IP-MIB::ip.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.1.192.168.1.0 = IpAddress: 192.168.1.0
IP-MIB::ip.21.1.2.0.0.0.0 = INTEGER: 3
IP-MIB::ip.21.1.2.192.168.1.0 = INTEGER: 3
IP-MIB::ip.21.1.3.0.0.0.0 = INTEGER: 1
IP-MIB::ip.21.1.3.192.168.1.0 = INTEGER: 0
IP-MIB::ip.21.1.7.0.0.0.0 = IpAddress: 192.168.1.1
IP-MIB::ip.21.1.7.192.168.1.0 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.8.0.0.0.0 = INTEGER: 4
IP-MIB::ip.21.1.8.192.168.1.0 = INTEGER: 3
IP-MIB::ip.21.1.9.0.0.0.0 = INTEGER: 2
IP-MIB::ip.21.1.9.192.168.1.0 = INTEGER: 2
IP-MIB::ip.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0
IP-MIB::ip.21.1.11.192.168.1.0 = IpAddress: 255.255.255.0
IP-MIB::ip.21.1.13.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero
IP-MIB::ip.21.1.13.192.168.1.0 = OID: SNMPv2-SMI::zeroDotZero
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.1 = INTEGER: 3
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.17 = INTEGER: 3
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.62 = INTEGER: 3
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.88 = INTEGER: 3
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.218 = INTEGER: 3
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.220 = INTEGER: 3
IP-MIB::ipNetToMediaIfIndex.3.192.168.1.253 = INTEGER: 3
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.1 = STRING: f4:92:bf:75:c7:2b
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.17 = STRING: b8:16:5f:eb:c1:b4
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.62 = STRING: bc:24:11:f3:5d:50
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.88 = STRING: 10:96:93:58:9a:e
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.218 = STRING: 56:90:c2:d9:77:ee
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.220 = STRING: 76:83:84:3d:a4:70
IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.253 = STRING: 8:12:a5:e5:2b:54
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.1 = IpAddress: 192.168.1.1
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.17 = IpAddress: 192.168.1.17
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.62 = IpAddress: 192.168.1.62
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.88 = IpAddress: 192.168.1.88
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.218 = IpAddress: 192.168.1.218
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.220 = IpAddress: 192.168.1.220
IP-MIB::ipNetToMediaNetAddress.3.192.168.1.253 = IpAddress: 192.168.1.253
IP-MIB::ipNetToMediaType.3.192.168.1.1 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.3.192.168.1.17 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.3.192.168.1.62 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.3.192.168.1.88 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.3.192.168.1.218 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.3.192.168.1.220 = INTEGER: dynamic(3)
IP-MIB::ipNetToMediaType.3.192.168.1.253 = INTEGER: dynamic(3)
IP-MIB::ipRoutingDiscards.0 = Counter32: 0
SNMPv2-MIB::snmpInPkts.0 = Counter32: 129536
SNMPv2-MIB::snmpOutPkts.0 = Counter32: 129536
SNMPv2-MIB::snmpInBadVersions.0 = Counter32: 0
SNMPv2-MIB::snmpInBadCommunityNames.0 = Counter32: 0
SNMPv2-MIB::snmpInBadCommunityUses.0 = Counter32: 0
SNMPv2-MIB::snmpInASNParseErrs.0 = Counter32: 0
SNMPv2-MIB::snmpInTooBigs.0 = Counter32: 0
SNMPv2-MIB::snmpInNoSuchNames.0 = Counter32: 0
SNMPv2-MIB::snmpInBadValues.0 = Counter32: 0
SNMPv2-MIB::snmpInReadOnlys.0 = Counter32: 0
SNMPv2-MIB::snmpInGenErrs.0 = Counter32: 0
SNMPv2-MIB::snmpInTotalReqVars.0 = Counter32: 448266
SNMPv2-MIB::snmpInTotalSetVars.0 = Counter32: 0
SNMPv2-MIB::snmpInGetRequests.0 = Counter32: 94541
SNMPv2-MIB::snmpInGetNexts.0 = Counter32: 450
SNMPv2-MIB::snmpInSetRequests.0 = Counter32: 0
SNMPv2-MIB::snmpInGetResponses.0 = Counter32: 0
SNMPv2-MIB::snmpInTraps.0 = Counter32: 0
SNMPv2-MIB::snmpOutTooBigs.0 = Counter32: 0
SNMPv2-MIB::snmpOutNoSuchNames.0 = Counter32: 0
SNMPv2-MIB::snmpOutBadValues.0 = Counter32: 0
SNMPv2-MIB::snmpOutGenErrs.0 = Counter32: 0
SNMPv2-MIB::snmpOutGetRequests.0 = Counter32: 0
SNMPv2-MIB::snmpOutGetNexts.0 = Counter32: 0
SNMPv2-MIB::snmpOutSetRequests.0 = Counter32: 0
SNMPv2-MIB::snmpOutGetResponses.0 = Counter32: 129560
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
SNMPv2-SMI::mib-2.17.1.1.0 = Hex-STRING: F4 92 BF 9C 30 43
SNMPv2-SMI::mib-2.17.1.2.0 = INTEGER: 8
SNMPv2-SMI::mib-2.17.2.15.1.3.1 = INTEGER: 5
SNMPv2-SMI::mib-2.17.2.15.1.3.2 = INTEGER: 1
SNMPv2-SMI::mib-2.17.2.15.1.3.3 = INTEGER: 5
SNMPv2-SMI::mib-2.17.2.15.1.3.4 = INTEGER: 1
SNMPv2-SMI::mib-2.17.2.15.1.3.5 = INTEGER: 5
SNMPv2-SMI::mib-2.17.2.15.1.3.6 = INTEGER: 1
SNMPv2-SMI::mib-2.17.2.15.1.3.7 = INTEGER: 5
SNMPv2-SMI::mib-2.17.2.15.1.3.8 = INTEGER: 5
SNMPv2-SMI::mib-2.17.2.15.1.5.1 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.2.15.1.5.2 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.2.15.1.5.3 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.2.15.1.5.4 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.2.15.1.5.5 = INTEGER: 200000
SNMPv2-SMI::mib-2.17.2.15.1.5.6 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.2.15.1.5.7 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.2.15.1.5.8 = INTEGER: 20000
SNMPv2-SMI::mib-2.17.4.2.0 = INTEGER: 300
SNMPv2-SMI::mib-2.17.4.3.1.1.0.24.221.10.54.10 = Hex-STRING: 00 18 DD 0A 36 0A
SNMPv2-SMI::mib-2.17.4.3.1.1.8.18.165.229.43.84 = Hex-STRING: 08 12 A5 E5 2B 54
SNMPv2-SMI::mib-2.17.4.3.1.1.16.150.147.88.154.14 = Hex-STRING: 10 96 93 58 9A 0E
SNMPv2-SMI::mib-2.17.4.3.1.1.20.152.119.116.213.34 = Hex-STRING: 14 98 77 74 D5 22
SNMPv2-SMI::mib-2.17.4.3.1.1.24.49.191.38.72.217 = Hex-STRING: 18 31 BF 26 48 D9
SNMPv2-SMI::mib-2.17.4.3.1.1.28.179.201.18.108.108 = Hex-STRING: 1C B3 C9 12 6C 6C
SNMPv2-SMI::mib-2.17.4.3.1.1.28.179.201.39.193.116 = Hex-STRING: 1C B3 C9 27 C1 74
SNMPv2-SMI::mib-2.17.4.3.1.1.28.179.201.43.119.23 = Hex-STRING: 1C B3 C9 2B 77 17
SNMPv2-SMI::mib-2.17.4.3.1.1.30.20.4.146.21.169 = Hex-STRING: 1E 14 04 92 15 A9
SNMPv2-SMI::mib-2.17.4.3.1.1.36.90.76.88.118.138 = Hex-STRING: 24 5A 4C 58 76 8A
SNMPv2-SMI::mib-2.17.4.3.1.1.36.90.76.88.118.139 = Hex-STRING: 24 5A 4C 58 76 8B
SNMPv2-SMI::mib-2.17.4.3.1.1.64.169.207.206.157.17 = Hex-STRING: 40 A9 CF CE 9D 11
SNMPv2-SMI::mib-2.17.4.3.1.1.68.97.50.253.37.36 = STRING: "Da2�%$"
SNMPv2-SMI::mib-2.17.4.3.1.1.72.225.92.168.43.88 = STRING: "H�\\�+X"
SNMPv2-SMI::mib-2.17.4.3.1.1.82.236.102.34.172.244 = STRING: "R�f\"��"
SNMPv2-SMI::mib-2.17.4.3.1.1.86.144.194.217.119.238 = Hex-STRING: 56 90 C2 D9 77 EE
SNMPv2-SMI::mib-2.17.4.3.1.1.104.215.154.76.39.157 = Hex-STRING: 68 D7 9A 4C 27 9D
SNMPv2-SMI::mib-2.17.4.3.1.1.112.90.15.226.238.30 = Hex-STRING: 70 5A 0F E2 EE 1E
SNMPv2-SMI::mib-2.17.4.3.1.1.118.131.132.61.164.112 = Hex-STRING: 76 83 84 3D A4 70
SNMPv2-SMI::mib-2.17.4.3.1.1.120.69.88.109.30.75 = Hex-STRING: 78 45 58 6D 1E 4B
SNMPv2-SMI::mib-2.17.4.3.1.1.148.234.50.125.37.16 = Hex-STRING: 94 EA 32 7D 25 10
SNMPv2-SMI::mib-2.17.4.3.1.1.148.234.50.152.14.44 = Hex-STRING: 94 EA 32 98 0E 2C
SNMPv2-SMI::mib-2.17.4.3.1.1.148.234.50.157.36.72 = Hex-STRING: 94 EA 32 9D 24 48
SNMPv2-SMI::mib-2.17.4.3.1.1.152.34.110.183.255.22 = Hex-STRING: 98 22 6E B7 FF 16
SNMPv2-SMI::mib-2.17.4.3.1.1.160.2.220.216.159.112 = Hex-STRING: A0 02 DC D8 9F 70
SNMPv2-SMI::mib-2.17.4.3.1.1.166.124.85.87.0.79 = Hex-STRING: A6 7C 55 57 00 4F
SNMPv2-SMI::mib-2.17.4.3.1.1.172.139.169.213.135.101 = Hex-STRING: AC 8B A9 D5 87 65
SNMPv2-SMI::mib-2.17.4.3.1.1.172.139.169.213.135.221 = Hex-STRING: AC 8B A9 D5 87 DD
SNMPv2-SMI::mib-2.17.4.3.1.1.172.139.169.213.136.109 = Hex-STRING: AC 8B A9 D5 88 6D
SNMPv2-SMI::mib-2.17.4.3.1.1.172.188.181.205.6.208 = Hex-STRING: AC BC B5 CD 06 D0
SNMPv2-SMI::mib-2.17.4.3.1.1.172.188.181.220.69.227 = STRING: "����E�"
SNMPv2-SMI::mib-2.17.4.3.1.1.176.247.196.220.21.5 = Hex-STRING: B0 F7 C4 DC 15 05
SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.25.18.49 = Hex-STRING: BC 24 11 19 12 31
SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.97.82.244 = Hex-STRING: BC 24 11 61 52 F4
SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.111.143.107 = Hex-STRING: BC 24 11 6F 8F 6B
SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.183.222.200 = Hex-STRING: BC 24 11 B7 DE C8
SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.243.93.80 = Hex-STRING: BC 24 11 F3 5D 50
SNMPv2-SMI::mib-2.17.4.3.1.1.194.171.117.101.135.239 = Hex-STRING: C2 AB 75 65 87 EF
SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.47.223.81 = STRING: "�!�/�Q"
SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.180.50.121 = STRING: "�!�2y"
SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.210.225.108 = STRING: "�!���l"
SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.220.46.140 = Hex-STRING: D0 21 F9 DC 2E 8C
SNMPv2-SMI::mib-2.17.4.3.1.1.216.140.121.12.144.7 = Hex-STRING: D8 8C 79 0C 90 07
SNMPv2-SMI::mib-2.17.4.3.1.1.216.140.121.76.53.164 = Hex-STRING: D8 8C 79 4C 35 A4
SNMPv2-SMI::mib-2.17.4.3.1.1.216.179.112.131.119.175 = Hex-STRING: D8 B3 70 83 77 AF
SNMPv2-SMI::mib-2.17.4.3.1.1.216.179.112.131.124.1 = Hex-STRING: D8 B3 70 83 7C 01
SNMPv2-SMI::mib-2.17.4.3.1.1.220.218.12.127.113.200 = Hex-STRING: DC DA 0C 7F 71 C8
SNMPv2-SMI::mib-2.17.4.3.1.1.228.35.84.27.145.182 = Hex-STRING: E4 23 54 1B 91 B6
SNMPv2-SMI::mib-2.17.4.3.1.1.236.181.250.141.241.252 = Hex-STRING: EC B5 FA 8D F1 FC
SNMPv2-SMI::mib-2.17.4.3.1.1.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B
SNMPv2-SMI::mib-2.17.4.3.1.2.0.24.221.10.54.10 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.8.18.165.229.43.84 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.16.150.147.88.154.14 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.20.152.119.116.213.34 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.24.49.191.38.72.217 = INTEGER: 8
SNMPv2-SMI::mib-2.17.4.3.1.2.28.179.201.18.108.108 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.28.179.201.39.193.116 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.28.179.201.43.119.23 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.30.20.4.146.21.169 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.36.90.76.88.118.138 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.36.90.76.88.118.139 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.64.169.207.206.157.17 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.68.97.50.253.37.36 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.72.225.92.168.43.88 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.82.236.102.34.172.244 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.86.144.194.217.119.238 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.104.215.154.76.39.157 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.112.90.15.226.238.30 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.118.131.132.61.164.112 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.120.69.88.109.30.75 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.148.234.50.125.37.16 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.148.234.50.152.14.44 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.148.234.50.157.36.72 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.152.34.110.183.255.22 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.160.2.220.216.159.112 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.166.124.85.87.0.79 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.172.139.169.213.135.101 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.172.139.169.213.135.221 = INTEGER: 1
SNMPv2-SMI::mib-2.17.4.3.1.2.172.139.169.213.136.109 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.172.188.181.205.6.208 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.172.188.181.220.69.227 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.176.247.196.220.21.5 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.25.18.49 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.97.82.244 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.111.143.107 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.183.222.200 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.243.93.80 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.194.171.117.101.135.239 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.47.223.81 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.180.50.121 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.210.225.108 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.220.46.140 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.216.140.121.12.144.7 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.216.140.121.76.53.164 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.216.179.112.131.119.175 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.216.179.112.131.124.1 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.220.218.12.127.113.200 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.228.35.84.27.145.182 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.2.236.181.250.141.241.252 = INTEGER: 5
SNMPv2-SMI::mib-2.17.4.3.1.2.244.146.191.117.199.43 = INTEGER: 7
SNMPv2-SMI::mib-2.17.4.3.1.3.0.24.221.10.54.10 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.8.18.165.229.43.84 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.16.150.147.88.154.14 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.20.152.119.116.213.34 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.24.49.191.38.72.217 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.28.179.201.18.108.108 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.28.179.201.39.193.116 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.28.179.201.43.119.23 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.30.20.4.146.21.169 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.36.90.76.88.118.138 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.36.90.76.88.118.139 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.64.169.207.206.157.17 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.68.97.50.253.37.36 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.72.225.92.168.43.88 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.82.236.102.34.172.244 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.86.144.194.217.119.238 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.104.215.154.76.39.157 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.112.90.15.226.238.30 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.118.131.132.61.164.112 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.120.69.88.109.30.75 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.148.234.50.125.37.16 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.148.234.50.152.14.44 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.148.234.50.157.36.72 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.152.34.110.183.255.22 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.160.2.220.216.159.112 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.166.124.85.87.0.79 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.172.139.169.213.135.101 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.172.139.169.213.135.221 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.172.139.169.213.136.109 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.172.188.181.205.6.208 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.172.188.181.220.69.227 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.176.247.196.220.21.5 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.25.18.49 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.97.82.244 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.111.143.107 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.183.222.200 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.243.93.80 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.194.171.117.101.135.239 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.47.223.81 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.180.50.121 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.210.225.108 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.220.46.140 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.216.140.121.12.144.7 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.216.140.121.76.53.164 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.216.179.112.131.119.175 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.216.179.112.131.124.1 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.220.218.12.127.113.200 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.228.35.84.27.145.182 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.236.181.250.141.241.252 = INTEGER: 3
SNMPv2-SMI::mib-2.17.4.3.1.3.244.146.191.117.199.43 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.1.1.0 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.1.2.0 = INTEGER: 4093
SNMPv2-SMI::mib-2.17.7.1.1.3.0 = INTEGER: 4093
SNMPv2-SMI::mib-2.17.7.1.1.4.0 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.1.1.2.1 = Counter32: 46
SNMPv2-SMI::mib-2.17.7.1.2.1.1.2.2 = Counter32: 5
SNMPv2-SMI::mib-2.17.7.1.2.1.1.2.3 = Counter32: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.0.24.221.10.54.10 = Hex-STRING: 00 18 DD 0A 36 0A
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.8.18.165.229.43.84 = Hex-STRING: 08 12 A5 E5 2B 54
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.16.150.147.88.154.14 = Hex-STRING: 10 96 93 58 9A 0E
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.20.152.119.116.213.34 = Hex-STRING: 14 98 77 74 D5 22
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.24.49.191.38.72.217 = Hex-STRING: 18 31 BF 26 48 D9
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.28.179.201.18.108.108 = Hex-STRING: 1C B3 C9 12 6C 6C
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.28.179.201.39.193.116 = Hex-STRING: 1C B3 C9 27 C1 74
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.28.179.201.43.119.23 = Hex-STRING: 1C B3 C9 2B 77 17
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.30.20.4.146.21.169 = Hex-STRING: 1E 14 04 92 15 A9
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.36.90.76.88.118.138 = Hex-STRING: 24 5A 4C 58 76 8A
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.36.90.76.88.118.139 = Hex-STRING: 24 5A 4C 58 76 8B
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.64.169.207.206.157.17 = Hex-STRING: 40 A9 CF CE 9D 11
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.68.97.50.253.37.36 = STRING: "Da2�%$"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.72.225.92.168.43.88 = STRING: "H�\\�+X"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.82.236.102.34.172.244 = STRING: "R�f\"��"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.86.144.194.217.119.238 = Hex-STRING: 56 90 C2 D9 77 EE
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.104.215.154.76.39.157 = Hex-STRING: 68 D7 9A 4C 27 9D
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.112.90.15.226.238.30 = Hex-STRING: 70 5A 0F E2 EE 1E
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.118.131.132.61.164.112 = Hex-STRING: 76 83 84 3D A4 70
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.120.69.88.109.30.75 = Hex-STRING: 78 45 58 6D 1E 4B
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.148.234.50.125.37.16 = Hex-STRING: 94 EA 32 7D 25 10
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.148.234.50.152.14.44 = Hex-STRING: 94 EA 32 98 0E 2C
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.148.234.50.157.36.72 = Hex-STRING: 94 EA 32 9D 24 48
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.152.34.110.183.255.22 = Hex-STRING: 98 22 6E B7 FF 16
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.160.2.220.216.159.112 = Hex-STRING: A0 02 DC D8 9F 70
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.166.124.85.87.0.79 = Hex-STRING: A6 7C 55 57 00 4F
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.139.169.213.135.101 = Hex-STRING: AC 8B A9 D5 87 65
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.139.169.213.135.221 = Hex-STRING: AC 8B A9 D5 87 DD
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.139.169.213.136.109 = Hex-STRING: AC 8B A9 D5 88 6D
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.188.181.205.6.208 = Hex-STRING: AC BC B5 CD 06 D0
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.188.181.220.69.227 = STRING: "����E�"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.176.247.196.220.21.5 = Hex-STRING: B0 F7 C4 DC 15 05
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.188.36.17.243.93.80 = Hex-STRING: BC 24 11 F3 5D 50
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.194.171.117.101.135.239 = Hex-STRING: C2 AB 75 65 87 EF
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.47.223.81 = STRING: "�!�/�Q"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.180.50.121 = STRING: "�!�2y"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.210.225.108 = STRING: "�!���l"
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.220.46.140 = Hex-STRING: D0 21 F9 DC 2E 8C
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.140.121.12.144.7 = Hex-STRING: D8 8C 79 0C 90 07
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.140.121.76.53.164 = Hex-STRING: D8 8C 79 4C 35 A4
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.179.112.131.119.175 = Hex-STRING: D8 B3 70 83 77 AF
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.179.112.131.124.1 = Hex-STRING: D8 B3 70 83 7C 01
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.220.218.12.127.113.200 = Hex-STRING: DC DA 0C 7F 71 C8
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.228.35.84.27.145.182 = Hex-STRING: E4 23 54 1B 91 B6
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.236.181.250.141.241.252 = Hex-STRING: EC B5 FA 8D F1 FC
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.25.18.49 = Hex-STRING: BC 24 11 19 12 31
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.97.82.244 = Hex-STRING: BC 24 11 61 52 F4
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.111.143.107 = Hex-STRING: BC 24 11 6F 8F 6B
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.183.222.200 = Hex-STRING: BC 24 11 B7 DE C8
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B
SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.3.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.0.24.221.10.54.10 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.8.18.165.229.43.84 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.16.150.147.88.154.14 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.20.152.119.116.213.34 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.24.49.191.38.72.217 = INTEGER: 8
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.28.179.201.18.108.108 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.28.179.201.39.193.116 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.28.179.201.43.119.23 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.30.20.4.146.21.169 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.36.90.76.88.118.138 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.36.90.76.88.118.139 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.64.169.207.206.157.17 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.68.97.50.253.37.36 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.72.225.92.168.43.88 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.82.236.102.34.172.244 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.86.144.194.217.119.238 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.104.215.154.76.39.157 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.112.90.15.226.238.30 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.118.131.132.61.164.112 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.120.69.88.109.30.75 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.148.234.50.125.37.16 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.148.234.50.152.14.44 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.148.234.50.157.36.72 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.152.34.110.183.255.22 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.160.2.220.216.159.112 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.166.124.85.87.0.79 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.139.169.213.135.101 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.139.169.213.135.221 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.139.169.213.136.109 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.188.181.205.6.208 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.188.181.220.69.227 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.176.247.196.220.21.5 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.188.36.17.243.93.80 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.194.171.117.101.135.239 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.47.223.81 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.180.50.121 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.210.225.108 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.220.46.140 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.140.121.12.144.7 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.140.121.76.53.164 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.179.112.131.119.175 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.179.112.131.124.1 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.220.218.12.127.113.200 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.228.35.84.27.145.182 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.236.181.250.141.241.252 = INTEGER: 5
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.244.146.191.117.199.43 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.25.18.49 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.97.82.244 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.111.143.107 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.183.222.200 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.244.146.191.117.199.43 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.3.244.146.191.117.199.43 = INTEGER: 7
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.0.24.221.10.54.10 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.8.18.165.229.43.84 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.16.150.147.88.154.14 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.20.152.119.116.213.34 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.24.49.191.38.72.217 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.28.179.201.18.108.108 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.28.179.201.39.193.116 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.28.179.201.43.119.23 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.30.20.4.146.21.169 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.36.90.76.88.118.138 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.36.90.76.88.118.139 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.64.169.207.206.157.17 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.68.97.50.253.37.36 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.72.225.92.168.43.88 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.82.236.102.34.172.244 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.86.144.194.217.119.238 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.104.215.154.76.39.157 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.112.90.15.226.238.30 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.118.131.132.61.164.112 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.120.69.88.109.30.75 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.148.234.50.125.37.16 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.148.234.50.152.14.44 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.148.234.50.157.36.72 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.152.34.110.183.255.22 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.160.2.220.216.159.112 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.166.124.85.87.0.79 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.139.169.213.135.101 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.139.169.213.135.221 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.139.169.213.136.109 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.188.181.205.6.208 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.188.181.220.69.227 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.176.247.196.220.21.5 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.188.36.17.243.93.80 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.194.171.117.101.135.239 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.47.223.81 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.180.50.121 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.210.225.108 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.220.46.140 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.140.121.12.144.7 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.140.121.76.53.164 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.179.112.131.119.175 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.179.112.131.124.1 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.220.218.12.127.113.200 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.228.35.84.27.145.182 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.236.181.250.141.241.252 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.244.146.191.117.199.43 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.25.18.49 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.97.82.244 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.111.143.107 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.183.222.200 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.244.146.191.117.199.43 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.3.244.146.191.117.199.43 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.4.2.1.3.0.1 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.2.1.3.0.2 = INTEGER: 2
SNMPv2-SMI::mib-2.17.7.1.4.2.1.3.0.3 = INTEGER: 3
SNMPv2-SMI::mib-2.17.7.1.4.2.1.4.0.1 = Hex-STRING: 00 00 00 00 00 00 01 FE
SNMPv2-SMI::mib-2.17.7.1.4.2.1.4.0.2 = Hex-STRING: 00 00 00 00 00 00 01 FE
SNMPv2-SMI::mib-2.17.7.1.4.2.1.4.0.3 = Hex-STRING: 00 00 00 00 00 00 01 FE
SNMPv2-SMI::mib-2.17.7.1.4.2.1.5.0.1 = Hex-STRING: 00 00 00 00 00 00 01 FE
SNMPv2-SMI::mib-2.17.7.1.4.2.1.5.0.2 = Hex-STRING: 00 00 00 00 00 00 00 00
SNMPv2-SMI::mib-2.17.7.1.4.2.1.5.0.3 = Hex-STRING: 00 00 00 00 00 00 00 00
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.1 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.2 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.3 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.4 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.5 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.6 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.7 = INTEGER: 1
SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.8 = INTEGER: 1
HOST-RESOURCES-MIB::hrDeviceIndex.196608 = INTEGER: 196608
HOST-RESOURCES-MIB::hrDeviceType.196608 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor
HOST-RESOURCES-MIB::hrDeviceDescr.196608 = STRING:
HOST-RESOURCES-MIB::hrDeviceID.196608 = OID: SNMPv2-SMI::zeroDotZero
HOST-RESOURCES-MIB::hrDeviceStatus.196608 = INTEGER: running(2)
HOST-RESOURCES-MIB::hrProcessorFrwID.196608 = OID: SNMPv2-SMI::zeroDotZero
HOST-RESOURCES-MIB::hrProcessorLoad.196608 = INTEGER: 8
IF-MIB::ifName.1 = STRING: 0/1
IF-MIB::ifName.2 = STRING: 0/2
IF-MIB::ifName.3 = STRING: 0/3
IF-MIB::ifName.4 = STRING: 0/4
IF-MIB::ifName.5 = STRING: 0/5
IF-MIB::ifName.6 = STRING: 0/6
IF-MIB::ifName.7 = STRING: 0/7
IF-MIB::ifName.8 = STRING: 0/8
IF-MIB::ifInMulticastPkts.1 = Counter32: 28947297
IF-MIB::ifInMulticastPkts.2 = Counter32: 0
IF-MIB::ifInMulticastPkts.3 = Counter32: 91
IF-MIB::ifInMulticastPkts.4 = Counter32: 0
IF-MIB::ifInMulticastPkts.5 = Counter32: 665425
IF-MIB::ifInMulticastPkts.6 = Counter32: 0
IF-MIB::ifInMulticastPkts.7 = Counter32: 30543402
IF-MIB::ifInMulticastPkts.8 = Counter32: 82911
IF-MIB::ifInBroadcastPkts.1 = Counter32: 9622551
IF-MIB::ifInBroadcastPkts.2 = Counter32: 0
IF-MIB::ifInBroadcastPkts.3 = Counter32: 8
IF-MIB::ifInBroadcastPkts.4 = Counter32: 0
IF-MIB::ifInBroadcastPkts.5 = Counter32: 541
IF-MIB::ifInBroadcastPkts.6 = Counter32: 0
IF-MIB::ifInBroadcastPkts.7 = Counter32: 10187896
IF-MIB::ifInBroadcastPkts.8 = Counter32: 2184
IF-MIB::ifOutMulticastPkts.1 = Counter32: 1773309
IF-MIB::ifOutMulticastPkts.2 = Counter32: 0
IF-MIB::ifOutMulticastPkts.3 = Counter32: 30231500
IF-MIB::ifOutMulticastPkts.4 = Counter32: 0
IF-MIB::ifOutMulticastPkts.5 = Counter32: 29632870
IF-MIB::ifOutMulticastPkts.6 = Counter32: 0
IF-MIB::ifOutMulticastPkts.7 = Counter32: 130554
IF-MIB::ifOutMulticastPkts.8 = Counter32: 30179159
IF-MIB::ifOutBroadcastPkts.1 = Counter32: 427191
IF-MIB::ifOutBroadcastPkts.2 = Counter32: 0
IF-MIB::ifOutBroadcastPkts.3 = Counter32: 10050073
IF-MIB::ifOutBroadcastPkts.4 = Counter32: 0
IF-MIB::ifOutBroadcastPkts.5 = Counter32: 10049282
IF-MIB::ifOutBroadcastPkts.6 = Counter32: 0
IF-MIB::ifOutBroadcastPkts.7 = Counter32: 7434
IF-MIB::ifOutBroadcastPkts.8 = Counter32: 10047892
IF-MIB::ifHCInOctets.1 = Counter64: 48443316746
IF-MIB::ifHCInOctets.2 = Counter64: 0
IF-MIB::ifHCInOctets.3 = Counter64: 59178363
IF-MIB::ifHCInOctets.4 = Counter64: 0
IF-MIB::ifHCInOctets.5 = Counter64: 480194536
IF-MIB::ifHCInOctets.6 = Counter64: 0
IF-MIB::ifHCInOctets.7 = Counter64: 32638144986
IF-MIB::ifHCInOctets.8 = Counter64: 1700663293
IF-MIB::ifHCInUcastPkts.1 = Counter64: 45263211
IF-MIB::ifHCInUcastPkts.2 = Counter64: 0
IF-MIB::ifHCInUcastPkts.3 = Counter64: 673061
IF-MIB::ifHCInUcastPkts.4 = Counter64: 0
IF-MIB::ifHCInUcastPkts.5 = Counter64: 1149126
IF-MIB::ifHCInUcastPkts.6 = Counter64: 0
IF-MIB::ifHCInUcastPkts.7 = Counter64: 27358377
IF-MIB::ifHCInUcastPkts.8 = Counter64: 12701006
IF-MIB::ifHCInMulticastPkts.1 = Counter64: 28947297
IF-MIB::ifHCInMulticastPkts.2 = Counter64: 0
IF-MIB::ifHCInMulticastPkts.3 = Counter64: 91
IF-MIB::ifHCInMulticastPkts.4 = Counter64: 0
IF-MIB::ifHCInMulticastPkts.5 = Counter64: 665425
IF-MIB::ifHCInMulticastPkts.6 = Counter64: 0
IF-MIB::ifHCInMulticastPkts.7 = Counter64: 30543402
IF-MIB::ifHCInMulticastPkts.8 = Counter64: 82911
IF-MIB::ifHCInBroadcastPkts.1 = Counter64: 9622551
IF-MIB::ifHCInBroadcastPkts.2 = Counter64: 0
IF-MIB::ifHCInBroadcastPkts.3 = Counter64: 8
IF-MIB::ifHCInBroadcastPkts.4 = Counter64: 0
IF-MIB::ifHCInBroadcastPkts.5 = Counter64: 541
IF-MIB::ifHCInBroadcastPkts.6 = Counter64: 0
IF-MIB::ifHCInBroadcastPkts.7 = Counter64: 10187929
IF-MIB::ifHCInBroadcastPkts.8 = Counter64: 2184
IF-MIB::ifHCOutOctets.1 = Counter64: 25968479899
IF-MIB::ifHCOutOctets.2 = Counter64: 0
IF-MIB::ifHCOutOctets.3 = Counter64: 8897836562
IF-MIB::ifHCOutOctets.4 = Counter64: 0
IF-MIB::ifHCOutOctets.5 = Counter64: 8694923403
IF-MIB::ifHCOutOctets.6 = Counter64: 0
IF-MIB::ifHCOutOctets.7 = Counter64: 851102924
IF-MIB::ifHCOutOctets.8 = Counter64: 48295631649
IF-MIB::ifHCOutUcastPkts.1 = Counter64: 31356141
IF-MIB::ifHCOutUcastPkts.2 = Counter64: 0
IF-MIB::ifHCOutUcastPkts.3 = Counter64: 669857
IF-MIB::ifHCOutUcastPkts.4 = Counter64: 0
IF-MIB::ifHCOutUcastPkts.5 = Counter64: 600119
IF-MIB::ifHCOutUcastPkts.6 = Counter64: 0
IF-MIB::ifHCOutUcastPkts.7 = Counter64: 3677667
IF-MIB::ifHCOutUcastPkts.8 = Counter64: 30979203
IF-MIB::ifHCOutMulticastPkts.1 = Counter64: 1773360
IF-MIB::ifHCOutMulticastPkts.2 = Counter64: 0
IF-MIB::ifHCOutMulticastPkts.3 = Counter64: 30231556
IF-MIB::ifHCOutMulticastPkts.4 = Counter64: 0
IF-MIB::ifHCOutMulticastPkts.5 = Counter64: 29632925
IF-MIB::ifHCOutMulticastPkts.6 = Counter64: 0
IF-MIB::ifHCOutMulticastPkts.7 = Counter64: 130562
IF-MIB::ifHCOutMulticastPkts.8 = Counter64: 30179215
IF-MIB::ifHCOutBroadcastPkts.1 = Counter64: 427225
IF-MIB::ifHCOutBroadcastPkts.2 = Counter64: 0
IF-MIB::ifHCOutBroadcastPkts.3 = Counter64: 10050107
IF-MIB::ifHCOutBroadcastPkts.4 = Counter64: 0
IF-MIB::ifHCOutBroadcastPkts.5 = Counter64: 10049316
IF-MIB::ifHCOutBroadcastPkts.6 = Counter64: 0
IF-MIB::ifHCOutBroadcastPkts.7 = Counter64: 7435
IF-MIB::ifHCOutBroadcastPkts.8 = Counter64: 10047926
IF-MIB::ifHighSpeed.1 = Gauge32: 1000
IF-MIB::ifHighSpeed.2 = Gauge32: 0
IF-MIB::ifHighSpeed.3 = Gauge32: 1000
IF-MIB::ifHighSpeed.4 = Gauge32: 0
IF-MIB::ifHighSpeed.5 = Gauge32: 100
IF-MIB::ifHighSpeed.6 = Gauge32: 0
IF-MIB::ifHighSpeed.7 = Gauge32: 1000
IF-MIB::ifHighSpeed.8 = Gauge32: 1000
IF-MIB::ifPromiscuousMode.1 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.2 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.3 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.4 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.5 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.6 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.7 = INTEGER: true(1)
IF-MIB::ifPromiscuousMode.8 = INTEGER: true(1)
IF-MIB::ifConnectorPresent.1 = INTEGER: true(1)
IF-MIB::ifConnectorPresent.2 = INTEGER: true(1)
IF-MIB::ifConnectorPresent.3 = INTEGER: true(1)
IF-MIB::ifConnectorPresent.4 = INTEGER: 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::ifAlias.1 = STRING: Port 1
IF-MIB::ifAlias.2 = STRING: Port 2
IF-MIB::ifAlias.3 = STRING: Port 3
IF-MIB::ifAlias.4 = STRING: Port 4
IF-MIB::ifAlias.5 = STRING: Port 5
IF-MIB::ifAlias.6 = STRING: Port 6
IF-MIB::ifAlias.7 = STRING: Port 7
IF-MIB::ifAlias.8 = STRING: Port 8
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::ifTableLastChange.0 = Timeticks: (0) 0:00:00.00

Describe the solution you'd like

A clear and concise description of what you want to happen.

Describe alternatives you've considered

A clear and concise description of any alternative solutions or features you've considered.

Additional context

Add any other context or screenshots about the feature request here.

Imported from GitHub. Original GitHub issue: #2825 Original author: @mfreeman451 Original URL: https://github.com/carverauto/serviceradar/issues/2825 Original created: 2026-02-13T17:23:37Z --- **Is your feature request related to a problem?** SNMP: Did an snmpwalk and some investigation with AI, looks like we can do a lot more here: ``` Yes, this SNMP data is quite useful for building out your discovery tool, as it provides a solid foundation for understanding the device's identity, interface details, Layer 2 forwarding behavior, connected devices, and some VLAN-related insights. I'll break it down step by step, focusing on what's actionable, how it ties into VLAN discovery, and suggestions for expanding your tool to get more precise VLAN assignments. ### Device Identification and Basic Info - **System Details**: The `sysDescr` shows it's a Ubiquiti (UBNT) device running Linux kernel 3.18.24, likely a UniFi Switch Lite 8 PoE (from `sysName: USWLite8PoE`). `sysObjectID` confirms it's using Net-SNMP agent. Uptime is about 13 days. Contact is "mfreeman" and location is "office". This helps classify the device type in your tool (e.g., switch, vendor-specific quirks). - **Bridge Basics**: `dot1dBaseBridgeAddress` is F4:92:BF:9C:30:43 (the switch's base MAC). Number of ports is 8 (`dot1dBaseNumPorts`). STP port states (`dot1dStpPortState`) show ports 1,3,5,7,8 in forwarding mode (5), while 2,4,6 are disabled (1)—matching the operational status. - **Usefulness**: Great for inventory and topology mapping. You can flag this as a managed PoE switch and correlate with known Ubiquiti behaviors (e.g., they often use custom MIBs, but this sticks to standards like BRIDGE-MIB and Q-BRIDGE-MIB). ### Interface Details - **Ports Overview**: 8 Ethernet ports (ifIndex 1-8, named "Port 1" to "Port 8", all with MTU 9216 for jumbo frames). Physical addresses are all the same (F4:92:BF:9C:30:43)—this is common in switches where ports derive from the base MAC (not per-port unique). - **Status and Speeds**: All admin up. Operational: Up on 1 (1Gbps), 3 (1Gbps), 5 (100Mbps), 7 (1Gbps), 8 (1Gbps); down on 2,4,6. Last change timestamps show recent activity on some (e.g., port 1 up for ~13 days, port 5 for ~7 days). - **Counters**: In/out octets, unicast/multicast/broadcast packets, errors (all 0), discards (0). High counters on ports 1,3,5,7,8 indicate active traffic; zeros on down ports. HC (64-bit) counters are provided for high-volume accuracy. - **Other**: Promiscuous mode enabled on all (useful for monitoring tools), connectors present (RJ45 assumed). No aliases beyond defaults. - **Usefulness**: Essential for port-level discovery. Your tool can map port status, utilization (e.g., calculate bandwidth from speed and octets over time), and identify active vs. idle ports. Combine with counters to detect anomalies (e.g., high multicast on port 7 suggests flooding or IGMP traffic). ### Layer 2 Forwarding (FDB/MAC Table) - **dot1dTpFdbTable** (BRIDGE-MIB) and **dot1qTpFdbTable** (Q-BRIDGE-MIB): Lists ~50 MAC addresses learned dynamically (status 3). Most on port 7 (e.g., many vendor prefixes like Apple, Google, etc.), some on ports 1,3,5,8. Aging time is 300 seconds. - VLAN context: Entries are tagged with VLAN IDs (1,2,3). VLAN 1 has the bulk (active traffic), VLAN 2 has a few (e.g., BC:24:11:... MACs on port 7), VLAN 3 has one (F4:92:BF:75:C7:2B on port 7). - **Multicast Group Forwarding**: From previous data (dot1qTpGroupEgressPorts and dot1qTpGroupLearnt), for a specific multicast group, egress to ports 1-8 in VLANs 1-3, but learnt sources only in VLAN 1 on 1-8. This implies multicast flooding across all ports in those VLANs, with actual sources only in VLAN 1. - **Usefulness**: Excellent for topology. Map connected devices by MAC (e.g., vendor lookup via OUI), and infer port attachments. For VLANs, it shows *active* VLAN usage per port (e.g., port 7 carries VLANs 1,2,3; port 1 mostly VLAN 1). If a port only shows MACs in one VLAN, it's likely an access port for that VLAN. ### Layer 3 Info (IP/ARP) - **IP Config**: Device IP 192.168.1.238/24 on ifIndex 3 (port 3), loopback on 1. Not forwarding (router mode off). Routes include default via 192.168.1.1. - **ARP Table** (ipNetToMedia): 7 entries, all dynamic on ifIndex 3 (port 3). Maps IPs (192.168.1.1,17,62,88,218,220,253) to MACs (e.g., 192.168.1.1 → F4:92:BF:75:C7:2B). - **Counters**: Inbound IP packets ~1.6M, delivers ~286K, no errors/frags. - **Usefulness**: Cross-reference with FDB to identify devices (e.g., match MAC from FDB to IP in ARP → "device at 192.168.1.1 connected via port 7 in VLAN 3"). Helps discover neighbors, but ARP is tied to the switch's management VLAN (likely 1, since PVID=1). ### VLAN-Specific Insights - **Available VLANs**: `dot1qNumVlans=3`, max supported 4093. Likely VLANs 1 (default), 2, 3. - **PVID (Default VLAN)**: `dot1qPvid` is 1 for *all* ports 1-8. This means untagged traffic defaults to VLAN 1 on every port. - **FDB per VLAN**: As above, shows learned MACs segmented by VLAN. VLAN 1 is dominant (46 dynamic entries), VLAN 2 has 5, VLAN 3 has 1. This indicates active traffic in those VLANs, with most devices in VLAN 1. - **Limitations in Data**: We don't have full port-VLAN membership: - No `dot1qVlanStaticEgressPorts` or `dot1qVlanCurrentEgressPorts` (bitmaps for tagged ports per VLAN). - No `dot1qVlanStaticUntaggedPorts` (bitmaps for untagged ports per VLAN). - Without these, we can't directly say "port 7 is trunk for VLANs 1-3" or "port 5 is access for VLAN 2". - **Indirect Inference**: - Ports with MACs in multiple VLANs (e.g., port 7) are likely trunks (tagged). - Ports with MACs only in VLAN 1 (e.g., port 5) are likely access ports. - Multicast forwarding to all ports in VLANs 1-3 suggests no pruning (e.g., via GVRP/IGMP snooping), or all ports are members. - Since PVID=1 everywhere and most activity in VLAN 1, this switch is probably configured with VLAN 1 as the main/management VLAN, and 2/3 for specific isolation (e.g., guest/IoT), but not heavily segmented. - **Usefulness for VLAN Discovery**: Moderately helpful indirectly via FDB and PVID. You can infer VLAN-port associations from where MACs are learned (e.g., if your tool polls over time, track VLAN traffic per port). But for precise assignments, it's incomplete—e.g., a port could be in VLAN 2 tagged but show no learnt MACs if no devices are connected. ### Recommendations for Your SNMP Discovery Tool - **Enhance VLAN Polling**: Walk these additional OIDs to get full VLAN config: - `1.3.6.1.2.1.17.7.1.4.3.1` (dot1qVlanStaticTable) for configured VLANs, including egress/untagged bitmaps. - `1.3.6.1.2.1.17.7.1.4.3.1.2` (dot1qVlanStaticEgressPorts.vlanid) – bitmap of tagged ports. - `1.3.6.1.2.1.17.7.1.4.3.1.4` (dot1qVlanStaticUntaggedPorts.vlanid) – bitmap of untagged ports. - `1.3.6.1.2.1.17.7.1.4.1.1` (dot1qVlanIndex) to list all created VLANs. - Decode bitmaps like the previous hex (e.g., 01 FE = ports 1-8, as bit 0-7 set except LSB of first octet? Wait, recall: octets are MSB first, bits per port starting from 1). - **Topology Mapping**: Combine FDB (MAC-port-VLAN), ARP (IP-MAC), and interface status to build a connected device list. E.g., table: | Port | Status | Speed | Learned MACs (Sample) | Inferred VLANs | Connected IP (via ARP match) | |------|--------|-------|-----------------------|----------------|------------------------------| | 1 | Up | 1G | 1E:14:04:92:15:A9, 56:90:C2:D9:77:EE, 76:83:84:3D:A4:70 | 1 | 192.168.1.218, 192.168.1.220 | | 3 | Up | 1G | D0:21:F9:2F:DF:51 | 1 | (Management port, ARP here) | | 5 | Up | 100M | EC:B5:FA:8D:F1:FC | 1 | None matched | | 7 | Up | 1G | Many (e.g., BC:24:11:F3:5D:50, F4:92:BF:75:C7:2B) | 1,2,3 | 192.168.1.1, 192.168.1.62 | | 8 | Up | 1G | 18:31:BF:26:48:D9 | 1 | None matched | - **Other Discoveries**: Poll PoE-specific OIDs (e.g., POWER-ETHERNET-MIB) since it's a PoE switch. For Ubiquiti, consider their enterprise MIB if available (though this uses standards). - **Potential Issues**: Data shows only 3 VLANs, but if more exist without traffic, FDB won't show them—always poll static config. Ensure your tool handles Net-SNMP quirks (e.g., limited VLAN support in older agents). This data gives a good starting point for device/port discovery and basic VLAN inference, but for full VLAN-to-interface mapping, add those Q-BRIDGE OIDs to your walk. If you share more specific OIDs or tool goals, I can refine further! ``` ``` SNMPv2-MIB::sysDescr.0 = STRING: Linux UBNT 3.18.24 #0 Thu Aug 30 12:10:54 2018 mips SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10 DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (119694500) 13 days, 20:29:05.00 SNMPv2-MIB::sysContact.0 = STRING: mfreeman SNMPv2-MIB::sysName.0 = STRING: USWLite8PoE SNMPv2-MIB::sysLocation.0 = STRING: office IF-MIB::ifNumber.0 = INTEGER: 8 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::ifDescr.1 = STRING: Port 1 IF-MIB::ifDescr.2 = STRING: Port 2 IF-MIB::ifDescr.3 = STRING: Port 3 IF-MIB::ifDescr.4 = STRING: Port 4 IF-MIB::ifDescr.5 = STRING: Port 5 IF-MIB::ifDescr.6 = STRING: Port 6 IF-MIB::ifDescr.7 = STRING: Port 7 IF-MIB::ifDescr.8 = STRING: Port 8 IF-MIB::ifType.1 = INTEGER: ethernetCsmacd(6) 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::ifMtu.1 = INTEGER: 9216 IF-MIB::ifMtu.2 = INTEGER: 9216 IF-MIB::ifMtu.3 = INTEGER: 9216 IF-MIB::ifMtu.4 = INTEGER: 9216 IF-MIB::ifMtu.5 = INTEGER: 9216 IF-MIB::ifMtu.6 = INTEGER: 9216 IF-MIB::ifMtu.7 = INTEGER: 9216 IF-MIB::ifMtu.8 = INTEGER: 9216 IF-MIB::ifSpeed.1 = Gauge32: 1000000000 IF-MIB::ifSpeed.2 = Gauge32: 0 IF-MIB::ifSpeed.3 = Gauge32: 1000000000 IF-MIB::ifSpeed.4 = Gauge32: 0 IF-MIB::ifSpeed.5 = Gauge32: 100000000 IF-MIB::ifSpeed.6 = Gauge32: 0 IF-MIB::ifSpeed.7 = Gauge32: 1000000000 IF-MIB::ifSpeed.8 = Gauge32: 1000000000 IF-MIB::ifPhysAddress.1 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.2 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.3 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.4 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.5 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.6 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.7 = STRING: f4:92:bf:9c:30:43 IF-MIB::ifPhysAddress.8 = STRING: f4:92:bf:9c:30:43 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::ifOperStatus.1 = INTEGER: up(1) IF-MIB::ifOperStatus.2 = INTEGER: down(2) IF-MIB::ifOperStatus.3 = INTEGER: up(1) IF-MIB::ifOperStatus.4 = INTEGER: down(2) IF-MIB::ifOperStatus.5 = INTEGER: up(1) IF-MIB::ifOperStatus.6 = INTEGER: down(2) IF-MIB::ifOperStatus.7 = INTEGER: up(1) IF-MIB::ifOperStatus.8 = INTEGER: up(1) IF-MIB::ifLastChange.1 = Timeticks: (116800300) 13 days, 12:26:43.00 IF-MIB::ifLastChange.2 = Timeticks: (0) 0:00:00.00 IF-MIB::ifLastChange.3 = Timeticks: (9200) 0:01:32.00 IF-MIB::ifLastChange.4 = Timeticks: (0) 0:00:00.00 IF-MIB::ifLastChange.5 = Timeticks: (60408600) 6 days, 23:48:06.00 IF-MIB::ifLastChange.6 = Timeticks: (0) 0:00:00.00 IF-MIB::ifLastChange.7 = Timeticks: (9200) 0:01:32.00 IF-MIB::ifLastChange.8 = Timeticks: (9500) 0:01:35.00 IF-MIB::ifInOctets.1 = Counter32: 1198526514 IF-MIB::ifInOctets.2 = Counter32: 0 IF-MIB::ifInOctets.3 = Counter32: 59177705 IF-MIB::ifInOctets.4 = Counter32: 0 IF-MIB::ifInOctets.5 = Counter32: 480193572 IF-MIB::ifInOctets.6 = Counter32: 0 IF-MIB::ifInOctets.7 = Counter32: 2572041699 IF-MIB::ifInOctets.8 = Counter32: 1700655457 IF-MIB::ifInUcastPkts.1 = Counter32: 45262190 IF-MIB::ifInUcastPkts.2 = Counter32: 0 IF-MIB::ifInUcastPkts.3 = Counter32: 673053 IF-MIB::ifInUcastPkts.4 = Counter32: 0 IF-MIB::ifInUcastPkts.5 = Counter32: 1149114 IF-MIB::ifInUcastPkts.6 = Counter32: 0 IF-MIB::ifInUcastPkts.7 = Counter32: 27356302 IF-MIB::ifInUcastPkts.8 = Counter32: 12700979 IF-MIB::ifInNUcastPkts.1 = Counter32: 38569840 IF-MIB::ifInNUcastPkts.2 = Counter32: 0 IF-MIB::ifInNUcastPkts.3 = Counter32: 99 IF-MIB::ifInNUcastPkts.4 = Counter32: 0 IF-MIB::ifInNUcastPkts.5 = Counter32: 665966 IF-MIB::ifInNUcastPkts.6 = Counter32: 0 IF-MIB::ifInNUcastPkts.7 = Counter32: 40730952 IF-MIB::ifInNUcastPkts.8 = Counter32: 85095 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::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::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::ifOutOctets.1 = Counter32: 196926410 IF-MIB::ifOutOctets.2 = Counter32: 0 IF-MIB::ifOutOctets.3 = Counter32: 307852995 IF-MIB::ifOutOctets.4 = Counter32: 0 IF-MIB::ifOutOctets.5 = Counter32: 104939165 IF-MIB::ifOutOctets.6 = Counter32: 0 IF-MIB::ifOutOctets.7 = Counter32: 850914931 IF-MIB::ifOutOctets.8 = Counter32: 1050934221 IF-MIB::ifOutUcastPkts.1 = Counter32: 31352865 IF-MIB::ifOutUcastPkts.2 = Counter32: 0 IF-MIB::ifOutUcastPkts.3 = Counter32: 669852 IF-MIB::ifOutUcastPkts.4 = Counter32: 0 IF-MIB::ifOutUcastPkts.5 = Counter32: 600105 IF-MIB::ifOutUcastPkts.6 = Counter32: 0 IF-MIB::ifOutUcastPkts.7 = Counter32: 3676811 IF-MIB::ifOutUcastPkts.8 = Counter32: 30979179 IF-MIB::ifOutNUcastPkts.1 = Counter32: 2200240 IF-MIB::ifOutNUcastPkts.2 = Counter32: 0 IF-MIB::ifOutNUcastPkts.3 = Counter32: 40281304 IF-MIB::ifOutNUcastPkts.4 = Counter32: 0 IF-MIB::ifOutNUcastPkts.5 = Counter32: 39681881 IF-MIB::ifOutNUcastPkts.6 = Counter32: 0 IF-MIB::ifOutNUcastPkts.7 = Counter32: 137981 IF-MIB::ifOutNUcastPkts.8 = Counter32: 40226782 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::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::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::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 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.1 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.17 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.62 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.88 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.218 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.220 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.1.3.1.192.168.1.253 = INTEGER: 3 SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.1 = Hex-STRING: F4 92 BF 75 C7 2B SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.17 = Hex-STRING: B8 16 5F EB C1 B4 SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.62 = Hex-STRING: BC 24 11 F3 5D 50 SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.88 = Hex-STRING: 10 96 93 58 9A 0E SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.218 = Hex-STRING: 56 90 C2 D9 77 EE SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.220 = Hex-STRING: 76 83 84 3D A4 70 SNMPv2-SMI::mib-2.3.1.1.2.3.1.192.168.1.253 = Hex-STRING: 08 12 A5 E5 2B 54 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.1 = IpAddress: 192.168.1.1 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.17 = IpAddress: 192.168.1.17 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.62 = IpAddress: 192.168.1.62 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.88 = IpAddress: 192.168.1.88 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.218 = IpAddress: 192.168.1.218 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.220 = IpAddress: 192.168.1.220 SNMPv2-SMI::mib-2.3.1.1.3.3.1.192.168.1.253 = IpAddress: 192.168.1.253 IP-MIB::ipForwarding.0 = INTEGER: notForwarding(2) IP-MIB::ipDefaultTTL.0 = INTEGER: 64 IP-MIB::ipInReceives.0 = Counter32: 1652262 IP-MIB::ipInHdrErrors.0 = Counter32: 0 IP-MIB::ipInAddrErrors.0 = Counter32: 3 IP-MIB::ipForwDatagrams.0 = Counter32: 0 IP-MIB::ipInUnknownProtos.0 = Counter32: 0 IP-MIB::ipInDiscards.0 = Counter32: 0 IP-MIB::ipInDelivers.0 = Counter32: 286193 IP-MIB::ipOutRequests.0 = Counter32: 326109 IP-MIB::ipOutDiscards.0 = Counter32: 0 IP-MIB::ipOutNoRoutes.0 = Counter32: 111 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.127.0.0.1 = IpAddress: 127.0.0.1 IP-MIB::ipAdEntAddr.192.168.1.238 = IpAddress: 192.168.1.238 IP-MIB::ipAdEntIfIndex.127.0.0.1 = INTEGER: 1 IP-MIB::ipAdEntIfIndex.192.168.1.238 = INTEGER: 3 IP-MIB::ipAdEntNetMask.127.0.0.1 = IpAddress: 255.0.0.0 IP-MIB::ipAdEntNetMask.192.168.1.238 = IpAddress: 255.255.255.0 IP-MIB::ipAdEntBcastAddr.127.0.0.1 = INTEGER: 0 IP-MIB::ipAdEntBcastAddr.192.168.1.238 = INTEGER: 1 IP-MIB::ip.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0 IP-MIB::ip.21.1.1.192.168.1.0 = IpAddress: 192.168.1.0 IP-MIB::ip.21.1.2.0.0.0.0 = INTEGER: 3 IP-MIB::ip.21.1.2.192.168.1.0 = INTEGER: 3 IP-MIB::ip.21.1.3.0.0.0.0 = INTEGER: 1 IP-MIB::ip.21.1.3.192.168.1.0 = INTEGER: 0 IP-MIB::ip.21.1.7.0.0.0.0 = IpAddress: 192.168.1.1 IP-MIB::ip.21.1.7.192.168.1.0 = IpAddress: 0.0.0.0 IP-MIB::ip.21.1.8.0.0.0.0 = INTEGER: 4 IP-MIB::ip.21.1.8.192.168.1.0 = INTEGER: 3 IP-MIB::ip.21.1.9.0.0.0.0 = INTEGER: 2 IP-MIB::ip.21.1.9.192.168.1.0 = INTEGER: 2 IP-MIB::ip.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0 IP-MIB::ip.21.1.11.192.168.1.0 = IpAddress: 255.255.255.0 IP-MIB::ip.21.1.13.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero IP-MIB::ip.21.1.13.192.168.1.0 = OID: SNMPv2-SMI::zeroDotZero IP-MIB::ipNetToMediaIfIndex.3.192.168.1.1 = INTEGER: 3 IP-MIB::ipNetToMediaIfIndex.3.192.168.1.17 = INTEGER: 3 IP-MIB::ipNetToMediaIfIndex.3.192.168.1.62 = INTEGER: 3 IP-MIB::ipNetToMediaIfIndex.3.192.168.1.88 = INTEGER: 3 IP-MIB::ipNetToMediaIfIndex.3.192.168.1.218 = INTEGER: 3 IP-MIB::ipNetToMediaIfIndex.3.192.168.1.220 = INTEGER: 3 IP-MIB::ipNetToMediaIfIndex.3.192.168.1.253 = INTEGER: 3 IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.1 = STRING: f4:92:bf:75:c7:2b IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.17 = STRING: b8:16:5f:eb:c1:b4 IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.62 = STRING: bc:24:11:f3:5d:50 IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.88 = STRING: 10:96:93:58:9a:e IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.218 = STRING: 56:90:c2:d9:77:ee IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.220 = STRING: 76:83:84:3d:a4:70 IP-MIB::ipNetToMediaPhysAddress.3.192.168.1.253 = STRING: 8:12:a5:e5:2b:54 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.1 = IpAddress: 192.168.1.1 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.17 = IpAddress: 192.168.1.17 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.62 = IpAddress: 192.168.1.62 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.88 = IpAddress: 192.168.1.88 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.218 = IpAddress: 192.168.1.218 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.220 = IpAddress: 192.168.1.220 IP-MIB::ipNetToMediaNetAddress.3.192.168.1.253 = IpAddress: 192.168.1.253 IP-MIB::ipNetToMediaType.3.192.168.1.1 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.3.192.168.1.17 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.3.192.168.1.62 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.3.192.168.1.88 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.3.192.168.1.218 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.3.192.168.1.220 = INTEGER: dynamic(3) IP-MIB::ipNetToMediaType.3.192.168.1.253 = INTEGER: dynamic(3) IP-MIB::ipRoutingDiscards.0 = Counter32: 0 SNMPv2-MIB::snmpInPkts.0 = Counter32: 129536 SNMPv2-MIB::snmpOutPkts.0 = Counter32: 129536 SNMPv2-MIB::snmpInBadVersions.0 = Counter32: 0 SNMPv2-MIB::snmpInBadCommunityNames.0 = Counter32: 0 SNMPv2-MIB::snmpInBadCommunityUses.0 = Counter32: 0 SNMPv2-MIB::snmpInASNParseErrs.0 = Counter32: 0 SNMPv2-MIB::snmpInTooBigs.0 = Counter32: 0 SNMPv2-MIB::snmpInNoSuchNames.0 = Counter32: 0 SNMPv2-MIB::snmpInBadValues.0 = Counter32: 0 SNMPv2-MIB::snmpInReadOnlys.0 = Counter32: 0 SNMPv2-MIB::snmpInGenErrs.0 = Counter32: 0 SNMPv2-MIB::snmpInTotalReqVars.0 = Counter32: 448266 SNMPv2-MIB::snmpInTotalSetVars.0 = Counter32: 0 SNMPv2-MIB::snmpInGetRequests.0 = Counter32: 94541 SNMPv2-MIB::snmpInGetNexts.0 = Counter32: 450 SNMPv2-MIB::snmpInSetRequests.0 = Counter32: 0 SNMPv2-MIB::snmpInGetResponses.0 = Counter32: 0 SNMPv2-MIB::snmpInTraps.0 = Counter32: 0 SNMPv2-MIB::snmpOutTooBigs.0 = Counter32: 0 SNMPv2-MIB::snmpOutNoSuchNames.0 = Counter32: 0 SNMPv2-MIB::snmpOutBadValues.0 = Counter32: 0 SNMPv2-MIB::snmpOutGenErrs.0 = Counter32: 0 SNMPv2-MIB::snmpOutGetRequests.0 = Counter32: 0 SNMPv2-MIB::snmpOutGetNexts.0 = Counter32: 0 SNMPv2-MIB::snmpOutSetRequests.0 = Counter32: 0 SNMPv2-MIB::snmpOutGetResponses.0 = Counter32: 129560 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 SNMPv2-SMI::mib-2.17.1.1.0 = Hex-STRING: F4 92 BF 9C 30 43 SNMPv2-SMI::mib-2.17.1.2.0 = INTEGER: 8 SNMPv2-SMI::mib-2.17.2.15.1.3.1 = INTEGER: 5 SNMPv2-SMI::mib-2.17.2.15.1.3.2 = INTEGER: 1 SNMPv2-SMI::mib-2.17.2.15.1.3.3 = INTEGER: 5 SNMPv2-SMI::mib-2.17.2.15.1.3.4 = INTEGER: 1 SNMPv2-SMI::mib-2.17.2.15.1.3.5 = INTEGER: 5 SNMPv2-SMI::mib-2.17.2.15.1.3.6 = INTEGER: 1 SNMPv2-SMI::mib-2.17.2.15.1.3.7 = INTEGER: 5 SNMPv2-SMI::mib-2.17.2.15.1.3.8 = INTEGER: 5 SNMPv2-SMI::mib-2.17.2.15.1.5.1 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.2.15.1.5.2 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.2.15.1.5.3 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.2.15.1.5.4 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.2.15.1.5.5 = INTEGER: 200000 SNMPv2-SMI::mib-2.17.2.15.1.5.6 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.2.15.1.5.7 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.2.15.1.5.8 = INTEGER: 20000 SNMPv2-SMI::mib-2.17.4.2.0 = INTEGER: 300 SNMPv2-SMI::mib-2.17.4.3.1.1.0.24.221.10.54.10 = Hex-STRING: 00 18 DD 0A 36 0A SNMPv2-SMI::mib-2.17.4.3.1.1.8.18.165.229.43.84 = Hex-STRING: 08 12 A5 E5 2B 54 SNMPv2-SMI::mib-2.17.4.3.1.1.16.150.147.88.154.14 = Hex-STRING: 10 96 93 58 9A 0E SNMPv2-SMI::mib-2.17.4.3.1.1.20.152.119.116.213.34 = Hex-STRING: 14 98 77 74 D5 22 SNMPv2-SMI::mib-2.17.4.3.1.1.24.49.191.38.72.217 = Hex-STRING: 18 31 BF 26 48 D9 SNMPv2-SMI::mib-2.17.4.3.1.1.28.179.201.18.108.108 = Hex-STRING: 1C B3 C9 12 6C 6C SNMPv2-SMI::mib-2.17.4.3.1.1.28.179.201.39.193.116 = Hex-STRING: 1C B3 C9 27 C1 74 SNMPv2-SMI::mib-2.17.4.3.1.1.28.179.201.43.119.23 = Hex-STRING: 1C B3 C9 2B 77 17 SNMPv2-SMI::mib-2.17.4.3.1.1.30.20.4.146.21.169 = Hex-STRING: 1E 14 04 92 15 A9 SNMPv2-SMI::mib-2.17.4.3.1.1.36.90.76.88.118.138 = Hex-STRING: 24 5A 4C 58 76 8A SNMPv2-SMI::mib-2.17.4.3.1.1.36.90.76.88.118.139 = Hex-STRING: 24 5A 4C 58 76 8B SNMPv2-SMI::mib-2.17.4.3.1.1.64.169.207.206.157.17 = Hex-STRING: 40 A9 CF CE 9D 11 SNMPv2-SMI::mib-2.17.4.3.1.1.68.97.50.253.37.36 = STRING: "Da2�%$" SNMPv2-SMI::mib-2.17.4.3.1.1.72.225.92.168.43.88 = STRING: "H�\\�+X" SNMPv2-SMI::mib-2.17.4.3.1.1.82.236.102.34.172.244 = STRING: "R�f\"��" SNMPv2-SMI::mib-2.17.4.3.1.1.86.144.194.217.119.238 = Hex-STRING: 56 90 C2 D9 77 EE SNMPv2-SMI::mib-2.17.4.3.1.1.104.215.154.76.39.157 = Hex-STRING: 68 D7 9A 4C 27 9D SNMPv2-SMI::mib-2.17.4.3.1.1.112.90.15.226.238.30 = Hex-STRING: 70 5A 0F E2 EE 1E SNMPv2-SMI::mib-2.17.4.3.1.1.118.131.132.61.164.112 = Hex-STRING: 76 83 84 3D A4 70 SNMPv2-SMI::mib-2.17.4.3.1.1.120.69.88.109.30.75 = Hex-STRING: 78 45 58 6D 1E 4B SNMPv2-SMI::mib-2.17.4.3.1.1.148.234.50.125.37.16 = Hex-STRING: 94 EA 32 7D 25 10 SNMPv2-SMI::mib-2.17.4.3.1.1.148.234.50.152.14.44 = Hex-STRING: 94 EA 32 98 0E 2C SNMPv2-SMI::mib-2.17.4.3.1.1.148.234.50.157.36.72 = Hex-STRING: 94 EA 32 9D 24 48 SNMPv2-SMI::mib-2.17.4.3.1.1.152.34.110.183.255.22 = Hex-STRING: 98 22 6E B7 FF 16 SNMPv2-SMI::mib-2.17.4.3.1.1.160.2.220.216.159.112 = Hex-STRING: A0 02 DC D8 9F 70 SNMPv2-SMI::mib-2.17.4.3.1.1.166.124.85.87.0.79 = Hex-STRING: A6 7C 55 57 00 4F SNMPv2-SMI::mib-2.17.4.3.1.1.172.139.169.213.135.101 = Hex-STRING: AC 8B A9 D5 87 65 SNMPv2-SMI::mib-2.17.4.3.1.1.172.139.169.213.135.221 = Hex-STRING: AC 8B A9 D5 87 DD SNMPv2-SMI::mib-2.17.4.3.1.1.172.139.169.213.136.109 = Hex-STRING: AC 8B A9 D5 88 6D SNMPv2-SMI::mib-2.17.4.3.1.1.172.188.181.205.6.208 = Hex-STRING: AC BC B5 CD 06 D0 SNMPv2-SMI::mib-2.17.4.3.1.1.172.188.181.220.69.227 = STRING: "����E�" SNMPv2-SMI::mib-2.17.4.3.1.1.176.247.196.220.21.5 = Hex-STRING: B0 F7 C4 DC 15 05 SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.25.18.49 = Hex-STRING: BC 24 11 19 12 31 SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.97.82.244 = Hex-STRING: BC 24 11 61 52 F4 SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.111.143.107 = Hex-STRING: BC 24 11 6F 8F 6B SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.183.222.200 = Hex-STRING: BC 24 11 B7 DE C8 SNMPv2-SMI::mib-2.17.4.3.1.1.188.36.17.243.93.80 = Hex-STRING: BC 24 11 F3 5D 50 SNMPv2-SMI::mib-2.17.4.3.1.1.194.171.117.101.135.239 = Hex-STRING: C2 AB 75 65 87 EF SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.47.223.81 = STRING: "�!�/�Q" SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.180.50.121 = STRING: "�!�2y" SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.210.225.108 = STRING: "�!���l" SNMPv2-SMI::mib-2.17.4.3.1.1.208.33.249.220.46.140 = Hex-STRING: D0 21 F9 DC 2E 8C SNMPv2-SMI::mib-2.17.4.3.1.1.216.140.121.12.144.7 = Hex-STRING: D8 8C 79 0C 90 07 SNMPv2-SMI::mib-2.17.4.3.1.1.216.140.121.76.53.164 = Hex-STRING: D8 8C 79 4C 35 A4 SNMPv2-SMI::mib-2.17.4.3.1.1.216.179.112.131.119.175 = Hex-STRING: D8 B3 70 83 77 AF SNMPv2-SMI::mib-2.17.4.3.1.1.216.179.112.131.124.1 = Hex-STRING: D8 B3 70 83 7C 01 SNMPv2-SMI::mib-2.17.4.3.1.1.220.218.12.127.113.200 = Hex-STRING: DC DA 0C 7F 71 C8 SNMPv2-SMI::mib-2.17.4.3.1.1.228.35.84.27.145.182 = Hex-STRING: E4 23 54 1B 91 B6 SNMPv2-SMI::mib-2.17.4.3.1.1.236.181.250.141.241.252 = Hex-STRING: EC B5 FA 8D F1 FC SNMPv2-SMI::mib-2.17.4.3.1.1.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B SNMPv2-SMI::mib-2.17.4.3.1.2.0.24.221.10.54.10 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.8.18.165.229.43.84 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.16.150.147.88.154.14 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.20.152.119.116.213.34 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.24.49.191.38.72.217 = INTEGER: 8 SNMPv2-SMI::mib-2.17.4.3.1.2.28.179.201.18.108.108 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.28.179.201.39.193.116 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.28.179.201.43.119.23 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.30.20.4.146.21.169 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.36.90.76.88.118.138 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.36.90.76.88.118.139 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.64.169.207.206.157.17 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.68.97.50.253.37.36 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.72.225.92.168.43.88 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.82.236.102.34.172.244 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.86.144.194.217.119.238 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.104.215.154.76.39.157 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.112.90.15.226.238.30 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.118.131.132.61.164.112 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.120.69.88.109.30.75 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.148.234.50.125.37.16 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.148.234.50.152.14.44 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.148.234.50.157.36.72 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.152.34.110.183.255.22 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.160.2.220.216.159.112 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.166.124.85.87.0.79 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.172.139.169.213.135.101 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.172.139.169.213.135.221 = INTEGER: 1 SNMPv2-SMI::mib-2.17.4.3.1.2.172.139.169.213.136.109 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.172.188.181.205.6.208 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.172.188.181.220.69.227 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.176.247.196.220.21.5 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.25.18.49 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.97.82.244 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.111.143.107 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.183.222.200 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.188.36.17.243.93.80 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.194.171.117.101.135.239 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.47.223.81 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.180.50.121 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.210.225.108 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.208.33.249.220.46.140 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.216.140.121.12.144.7 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.216.140.121.76.53.164 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.216.179.112.131.119.175 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.216.179.112.131.124.1 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.220.218.12.127.113.200 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.228.35.84.27.145.182 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.2.236.181.250.141.241.252 = INTEGER: 5 SNMPv2-SMI::mib-2.17.4.3.1.2.244.146.191.117.199.43 = INTEGER: 7 SNMPv2-SMI::mib-2.17.4.3.1.3.0.24.221.10.54.10 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.8.18.165.229.43.84 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.16.150.147.88.154.14 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.20.152.119.116.213.34 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.24.49.191.38.72.217 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.28.179.201.18.108.108 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.28.179.201.39.193.116 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.28.179.201.43.119.23 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.30.20.4.146.21.169 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.36.90.76.88.118.138 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.36.90.76.88.118.139 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.64.169.207.206.157.17 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.68.97.50.253.37.36 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.72.225.92.168.43.88 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.82.236.102.34.172.244 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.86.144.194.217.119.238 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.104.215.154.76.39.157 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.112.90.15.226.238.30 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.118.131.132.61.164.112 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.120.69.88.109.30.75 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.148.234.50.125.37.16 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.148.234.50.152.14.44 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.148.234.50.157.36.72 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.152.34.110.183.255.22 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.160.2.220.216.159.112 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.166.124.85.87.0.79 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.172.139.169.213.135.101 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.172.139.169.213.135.221 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.172.139.169.213.136.109 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.172.188.181.205.6.208 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.172.188.181.220.69.227 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.176.247.196.220.21.5 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.25.18.49 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.97.82.244 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.111.143.107 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.183.222.200 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.188.36.17.243.93.80 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.194.171.117.101.135.239 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.47.223.81 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.180.50.121 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.210.225.108 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.208.33.249.220.46.140 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.216.140.121.12.144.7 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.216.140.121.76.53.164 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.216.179.112.131.119.175 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.216.179.112.131.124.1 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.220.218.12.127.113.200 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.228.35.84.27.145.182 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.236.181.250.141.241.252 = INTEGER: 3 SNMPv2-SMI::mib-2.17.4.3.1.3.244.146.191.117.199.43 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.1.1.0 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.1.2.0 = INTEGER: 4093 SNMPv2-SMI::mib-2.17.7.1.1.3.0 = INTEGER: 4093 SNMPv2-SMI::mib-2.17.7.1.1.4.0 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.1.1.2.1 = Counter32: 46 SNMPv2-SMI::mib-2.17.7.1.2.1.1.2.2 = Counter32: 5 SNMPv2-SMI::mib-2.17.7.1.2.1.1.2.3 = Counter32: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.0.24.221.10.54.10 = Hex-STRING: 00 18 DD 0A 36 0A SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.8.18.165.229.43.84 = Hex-STRING: 08 12 A5 E5 2B 54 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.16.150.147.88.154.14 = Hex-STRING: 10 96 93 58 9A 0E SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.20.152.119.116.213.34 = Hex-STRING: 14 98 77 74 D5 22 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.24.49.191.38.72.217 = Hex-STRING: 18 31 BF 26 48 D9 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.28.179.201.18.108.108 = Hex-STRING: 1C B3 C9 12 6C 6C SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.28.179.201.39.193.116 = Hex-STRING: 1C B3 C9 27 C1 74 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.28.179.201.43.119.23 = Hex-STRING: 1C B3 C9 2B 77 17 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.30.20.4.146.21.169 = Hex-STRING: 1E 14 04 92 15 A9 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.36.90.76.88.118.138 = Hex-STRING: 24 5A 4C 58 76 8A SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.36.90.76.88.118.139 = Hex-STRING: 24 5A 4C 58 76 8B SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.64.169.207.206.157.17 = Hex-STRING: 40 A9 CF CE 9D 11 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.68.97.50.253.37.36 = STRING: "Da2�%$" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.72.225.92.168.43.88 = STRING: "H�\\�+X" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.82.236.102.34.172.244 = STRING: "R�f\"��" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.86.144.194.217.119.238 = Hex-STRING: 56 90 C2 D9 77 EE SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.104.215.154.76.39.157 = Hex-STRING: 68 D7 9A 4C 27 9D SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.112.90.15.226.238.30 = Hex-STRING: 70 5A 0F E2 EE 1E SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.118.131.132.61.164.112 = Hex-STRING: 76 83 84 3D A4 70 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.120.69.88.109.30.75 = Hex-STRING: 78 45 58 6D 1E 4B SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.148.234.50.125.37.16 = Hex-STRING: 94 EA 32 7D 25 10 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.148.234.50.152.14.44 = Hex-STRING: 94 EA 32 98 0E 2C SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.148.234.50.157.36.72 = Hex-STRING: 94 EA 32 9D 24 48 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.152.34.110.183.255.22 = Hex-STRING: 98 22 6E B7 FF 16 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.160.2.220.216.159.112 = Hex-STRING: A0 02 DC D8 9F 70 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.166.124.85.87.0.79 = Hex-STRING: A6 7C 55 57 00 4F SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.139.169.213.135.101 = Hex-STRING: AC 8B A9 D5 87 65 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.139.169.213.135.221 = Hex-STRING: AC 8B A9 D5 87 DD SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.139.169.213.136.109 = Hex-STRING: AC 8B A9 D5 88 6D SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.188.181.205.6.208 = Hex-STRING: AC BC B5 CD 06 D0 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.172.188.181.220.69.227 = STRING: "����E�" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.176.247.196.220.21.5 = Hex-STRING: B0 F7 C4 DC 15 05 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.188.36.17.243.93.80 = Hex-STRING: BC 24 11 F3 5D 50 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.194.171.117.101.135.239 = Hex-STRING: C2 AB 75 65 87 EF SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.47.223.81 = STRING: "�!�/�Q" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.180.50.121 = STRING: "�!�2y" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.210.225.108 = STRING: "�!���l" SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.208.33.249.220.46.140 = Hex-STRING: D0 21 F9 DC 2E 8C SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.140.121.12.144.7 = Hex-STRING: D8 8C 79 0C 90 07 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.140.121.76.53.164 = Hex-STRING: D8 8C 79 4C 35 A4 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.179.112.131.119.175 = Hex-STRING: D8 B3 70 83 77 AF SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.216.179.112.131.124.1 = Hex-STRING: D8 B3 70 83 7C 01 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.220.218.12.127.113.200 = Hex-STRING: DC DA 0C 7F 71 C8 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.228.35.84.27.145.182 = Hex-STRING: E4 23 54 1B 91 B6 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.236.181.250.141.241.252 = Hex-STRING: EC B5 FA 8D F1 FC SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.1.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.25.18.49 = Hex-STRING: BC 24 11 19 12 31 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.97.82.244 = Hex-STRING: BC 24 11 61 52 F4 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.111.143.107 = Hex-STRING: BC 24 11 6F 8F 6B SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.188.36.17.183.222.200 = Hex-STRING: BC 24 11 B7 DE C8 SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.2.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B SNMPv2-SMI::mib-2.17.7.1.2.2.1.1.3.244.146.191.117.199.43 = Hex-STRING: F4 92 BF 75 C7 2B SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.0.24.221.10.54.10 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.8.18.165.229.43.84 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.16.150.147.88.154.14 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.20.152.119.116.213.34 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.24.49.191.38.72.217 = INTEGER: 8 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.28.179.201.18.108.108 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.28.179.201.39.193.116 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.28.179.201.43.119.23 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.30.20.4.146.21.169 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.36.90.76.88.118.138 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.36.90.76.88.118.139 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.64.169.207.206.157.17 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.68.97.50.253.37.36 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.72.225.92.168.43.88 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.82.236.102.34.172.244 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.86.144.194.217.119.238 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.104.215.154.76.39.157 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.112.90.15.226.238.30 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.118.131.132.61.164.112 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.120.69.88.109.30.75 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.148.234.50.125.37.16 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.148.234.50.152.14.44 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.148.234.50.157.36.72 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.152.34.110.183.255.22 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.160.2.220.216.159.112 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.166.124.85.87.0.79 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.139.169.213.135.101 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.139.169.213.135.221 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.139.169.213.136.109 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.188.181.205.6.208 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.172.188.181.220.69.227 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.176.247.196.220.21.5 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.188.36.17.243.93.80 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.194.171.117.101.135.239 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.47.223.81 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.180.50.121 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.210.225.108 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.208.33.249.220.46.140 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.140.121.12.144.7 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.140.121.76.53.164 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.179.112.131.119.175 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.216.179.112.131.124.1 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.220.218.12.127.113.200 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.228.35.84.27.145.182 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.236.181.250.141.241.252 = INTEGER: 5 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.1.244.146.191.117.199.43 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.25.18.49 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.97.82.244 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.111.143.107 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.188.36.17.183.222.200 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.2.244.146.191.117.199.43 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.2.3.244.146.191.117.199.43 = INTEGER: 7 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.0.24.221.10.54.10 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.8.18.165.229.43.84 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.16.150.147.88.154.14 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.20.152.119.116.213.34 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.24.49.191.38.72.217 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.28.179.201.18.108.108 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.28.179.201.39.193.116 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.28.179.201.43.119.23 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.30.20.4.146.21.169 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.36.90.76.88.118.138 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.36.90.76.88.118.139 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.64.169.207.206.157.17 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.68.97.50.253.37.36 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.72.225.92.168.43.88 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.82.236.102.34.172.244 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.86.144.194.217.119.238 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.104.215.154.76.39.157 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.112.90.15.226.238.30 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.118.131.132.61.164.112 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.120.69.88.109.30.75 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.148.234.50.125.37.16 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.148.234.50.152.14.44 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.148.234.50.157.36.72 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.152.34.110.183.255.22 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.160.2.220.216.159.112 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.166.124.85.87.0.79 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.139.169.213.135.101 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.139.169.213.135.221 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.139.169.213.136.109 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.188.181.205.6.208 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.172.188.181.220.69.227 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.176.247.196.220.21.5 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.188.36.17.243.93.80 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.194.171.117.101.135.239 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.47.223.81 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.180.50.121 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.210.225.108 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.208.33.249.220.46.140 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.140.121.12.144.7 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.140.121.76.53.164 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.179.112.131.119.175 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.216.179.112.131.124.1 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.220.218.12.127.113.200 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.228.35.84.27.145.182 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.236.181.250.141.241.252 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.1.244.146.191.117.199.43 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.25.18.49 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.97.82.244 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.111.143.107 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.188.36.17.183.222.200 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.2.244.146.191.117.199.43 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.2.2.1.3.3.244.146.191.117.199.43 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.4.2.1.3.0.1 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.2.1.3.0.2 = INTEGER: 2 SNMPv2-SMI::mib-2.17.7.1.4.2.1.3.0.3 = INTEGER: 3 SNMPv2-SMI::mib-2.17.7.1.4.2.1.4.0.1 = Hex-STRING: 00 00 00 00 00 00 01 FE SNMPv2-SMI::mib-2.17.7.1.4.2.1.4.0.2 = Hex-STRING: 00 00 00 00 00 00 01 FE SNMPv2-SMI::mib-2.17.7.1.4.2.1.4.0.3 = Hex-STRING: 00 00 00 00 00 00 01 FE SNMPv2-SMI::mib-2.17.7.1.4.2.1.5.0.1 = Hex-STRING: 00 00 00 00 00 00 01 FE SNMPv2-SMI::mib-2.17.7.1.4.2.1.5.0.2 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.7.1.4.2.1.5.0.3 = Hex-STRING: 00 00 00 00 00 00 00 00 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.1 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.2 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.3 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.4 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.5 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.6 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.7 = INTEGER: 1 SNMPv2-SMI::mib-2.17.7.1.4.5.1.1.8 = INTEGER: 1 HOST-RESOURCES-MIB::hrDeviceIndex.196608 = INTEGER: 196608 HOST-RESOURCES-MIB::hrDeviceType.196608 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor HOST-RESOURCES-MIB::hrDeviceDescr.196608 = STRING: HOST-RESOURCES-MIB::hrDeviceID.196608 = OID: SNMPv2-SMI::zeroDotZero HOST-RESOURCES-MIB::hrDeviceStatus.196608 = INTEGER: running(2) HOST-RESOURCES-MIB::hrProcessorFrwID.196608 = OID: SNMPv2-SMI::zeroDotZero HOST-RESOURCES-MIB::hrProcessorLoad.196608 = INTEGER: 8 IF-MIB::ifName.1 = STRING: 0/1 IF-MIB::ifName.2 = STRING: 0/2 IF-MIB::ifName.3 = STRING: 0/3 IF-MIB::ifName.4 = STRING: 0/4 IF-MIB::ifName.5 = STRING: 0/5 IF-MIB::ifName.6 = STRING: 0/6 IF-MIB::ifName.7 = STRING: 0/7 IF-MIB::ifName.8 = STRING: 0/8 IF-MIB::ifInMulticastPkts.1 = Counter32: 28947297 IF-MIB::ifInMulticastPkts.2 = Counter32: 0 IF-MIB::ifInMulticastPkts.3 = Counter32: 91 IF-MIB::ifInMulticastPkts.4 = Counter32: 0 IF-MIB::ifInMulticastPkts.5 = Counter32: 665425 IF-MIB::ifInMulticastPkts.6 = Counter32: 0 IF-MIB::ifInMulticastPkts.7 = Counter32: 30543402 IF-MIB::ifInMulticastPkts.8 = Counter32: 82911 IF-MIB::ifInBroadcastPkts.1 = Counter32: 9622551 IF-MIB::ifInBroadcastPkts.2 = Counter32: 0 IF-MIB::ifInBroadcastPkts.3 = Counter32: 8 IF-MIB::ifInBroadcastPkts.4 = Counter32: 0 IF-MIB::ifInBroadcastPkts.5 = Counter32: 541 IF-MIB::ifInBroadcastPkts.6 = Counter32: 0 IF-MIB::ifInBroadcastPkts.7 = Counter32: 10187896 IF-MIB::ifInBroadcastPkts.8 = Counter32: 2184 IF-MIB::ifOutMulticastPkts.1 = Counter32: 1773309 IF-MIB::ifOutMulticastPkts.2 = Counter32: 0 IF-MIB::ifOutMulticastPkts.3 = Counter32: 30231500 IF-MIB::ifOutMulticastPkts.4 = Counter32: 0 IF-MIB::ifOutMulticastPkts.5 = Counter32: 29632870 IF-MIB::ifOutMulticastPkts.6 = Counter32: 0 IF-MIB::ifOutMulticastPkts.7 = Counter32: 130554 IF-MIB::ifOutMulticastPkts.8 = Counter32: 30179159 IF-MIB::ifOutBroadcastPkts.1 = Counter32: 427191 IF-MIB::ifOutBroadcastPkts.2 = Counter32: 0 IF-MIB::ifOutBroadcastPkts.3 = Counter32: 10050073 IF-MIB::ifOutBroadcastPkts.4 = Counter32: 0 IF-MIB::ifOutBroadcastPkts.5 = Counter32: 10049282 IF-MIB::ifOutBroadcastPkts.6 = Counter32: 0 IF-MIB::ifOutBroadcastPkts.7 = Counter32: 7434 IF-MIB::ifOutBroadcastPkts.8 = Counter32: 10047892 IF-MIB::ifHCInOctets.1 = Counter64: 48443316746 IF-MIB::ifHCInOctets.2 = Counter64: 0 IF-MIB::ifHCInOctets.3 = Counter64: 59178363 IF-MIB::ifHCInOctets.4 = Counter64: 0 IF-MIB::ifHCInOctets.5 = Counter64: 480194536 IF-MIB::ifHCInOctets.6 = Counter64: 0 IF-MIB::ifHCInOctets.7 = Counter64: 32638144986 IF-MIB::ifHCInOctets.8 = Counter64: 1700663293 IF-MIB::ifHCInUcastPkts.1 = Counter64: 45263211 IF-MIB::ifHCInUcastPkts.2 = Counter64: 0 IF-MIB::ifHCInUcastPkts.3 = Counter64: 673061 IF-MIB::ifHCInUcastPkts.4 = Counter64: 0 IF-MIB::ifHCInUcastPkts.5 = Counter64: 1149126 IF-MIB::ifHCInUcastPkts.6 = Counter64: 0 IF-MIB::ifHCInUcastPkts.7 = Counter64: 27358377 IF-MIB::ifHCInUcastPkts.8 = Counter64: 12701006 IF-MIB::ifHCInMulticastPkts.1 = Counter64: 28947297 IF-MIB::ifHCInMulticastPkts.2 = Counter64: 0 IF-MIB::ifHCInMulticastPkts.3 = Counter64: 91 IF-MIB::ifHCInMulticastPkts.4 = Counter64: 0 IF-MIB::ifHCInMulticastPkts.5 = Counter64: 665425 IF-MIB::ifHCInMulticastPkts.6 = Counter64: 0 IF-MIB::ifHCInMulticastPkts.7 = Counter64: 30543402 IF-MIB::ifHCInMulticastPkts.8 = Counter64: 82911 IF-MIB::ifHCInBroadcastPkts.1 = Counter64: 9622551 IF-MIB::ifHCInBroadcastPkts.2 = Counter64: 0 IF-MIB::ifHCInBroadcastPkts.3 = Counter64: 8 IF-MIB::ifHCInBroadcastPkts.4 = Counter64: 0 IF-MIB::ifHCInBroadcastPkts.5 = Counter64: 541 IF-MIB::ifHCInBroadcastPkts.6 = Counter64: 0 IF-MIB::ifHCInBroadcastPkts.7 = Counter64: 10187929 IF-MIB::ifHCInBroadcastPkts.8 = Counter64: 2184 IF-MIB::ifHCOutOctets.1 = Counter64: 25968479899 IF-MIB::ifHCOutOctets.2 = Counter64: 0 IF-MIB::ifHCOutOctets.3 = Counter64: 8897836562 IF-MIB::ifHCOutOctets.4 = Counter64: 0 IF-MIB::ifHCOutOctets.5 = Counter64: 8694923403 IF-MIB::ifHCOutOctets.6 = Counter64: 0 IF-MIB::ifHCOutOctets.7 = Counter64: 851102924 IF-MIB::ifHCOutOctets.8 = Counter64: 48295631649 IF-MIB::ifHCOutUcastPkts.1 = Counter64: 31356141 IF-MIB::ifHCOutUcastPkts.2 = Counter64: 0 IF-MIB::ifHCOutUcastPkts.3 = Counter64: 669857 IF-MIB::ifHCOutUcastPkts.4 = Counter64: 0 IF-MIB::ifHCOutUcastPkts.5 = Counter64: 600119 IF-MIB::ifHCOutUcastPkts.6 = Counter64: 0 IF-MIB::ifHCOutUcastPkts.7 = Counter64: 3677667 IF-MIB::ifHCOutUcastPkts.8 = Counter64: 30979203 IF-MIB::ifHCOutMulticastPkts.1 = Counter64: 1773360 IF-MIB::ifHCOutMulticastPkts.2 = Counter64: 0 IF-MIB::ifHCOutMulticastPkts.3 = Counter64: 30231556 IF-MIB::ifHCOutMulticastPkts.4 = Counter64: 0 IF-MIB::ifHCOutMulticastPkts.5 = Counter64: 29632925 IF-MIB::ifHCOutMulticastPkts.6 = Counter64: 0 IF-MIB::ifHCOutMulticastPkts.7 = Counter64: 130562 IF-MIB::ifHCOutMulticastPkts.8 = Counter64: 30179215 IF-MIB::ifHCOutBroadcastPkts.1 = Counter64: 427225 IF-MIB::ifHCOutBroadcastPkts.2 = Counter64: 0 IF-MIB::ifHCOutBroadcastPkts.3 = Counter64: 10050107 IF-MIB::ifHCOutBroadcastPkts.4 = Counter64: 0 IF-MIB::ifHCOutBroadcastPkts.5 = Counter64: 10049316 IF-MIB::ifHCOutBroadcastPkts.6 = Counter64: 0 IF-MIB::ifHCOutBroadcastPkts.7 = Counter64: 7435 IF-MIB::ifHCOutBroadcastPkts.8 = Counter64: 10047926 IF-MIB::ifHighSpeed.1 = Gauge32: 1000 IF-MIB::ifHighSpeed.2 = Gauge32: 0 IF-MIB::ifHighSpeed.3 = Gauge32: 1000 IF-MIB::ifHighSpeed.4 = Gauge32: 0 IF-MIB::ifHighSpeed.5 = Gauge32: 100 IF-MIB::ifHighSpeed.6 = Gauge32: 0 IF-MIB::ifHighSpeed.7 = Gauge32: 1000 IF-MIB::ifHighSpeed.8 = Gauge32: 1000 IF-MIB::ifPromiscuousMode.1 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.2 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.3 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.4 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.5 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.6 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.7 = INTEGER: true(1) IF-MIB::ifPromiscuousMode.8 = INTEGER: true(1) IF-MIB::ifConnectorPresent.1 = INTEGER: true(1) IF-MIB::ifConnectorPresent.2 = INTEGER: true(1) IF-MIB::ifConnectorPresent.3 = INTEGER: true(1) IF-MIB::ifConnectorPresent.4 = INTEGER: 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::ifAlias.1 = STRING: Port 1 IF-MIB::ifAlias.2 = STRING: Port 2 IF-MIB::ifAlias.3 = STRING: Port 3 IF-MIB::ifAlias.4 = STRING: Port 4 IF-MIB::ifAlias.5 = STRING: Port 5 IF-MIB::ifAlias.6 = STRING: Port 6 IF-MIB::ifAlias.7 = STRING: Port 7 IF-MIB::ifAlias.8 = STRING: Port 8 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::ifTableLastChange.0 = Timeticks: (0) 0:00:00.00 ``` **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here.
mfreeman451 2026-03-28 04:30:55 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
carverauto/serviceradar#1024
No description provided.