diff --git a/html/images/os/gwd.png b/html/images/os/gwd.png
new file mode 100644
index 0000000000..e776905e03
Binary files /dev/null and b/html/images/os/gwd.png differ
diff --git a/includes/definitions/discovery/gwd.yaml b/includes/definitions/discovery/gwd.yaml
new file mode 100644
index 0000000000..8a404fa8e7
--- /dev/null
+++ b/includes/definitions/discovery/gwd.yaml
@@ -0,0 +1,36 @@
+mib: GW-EPON-DEV-MIB:GWTT-SMI:GW-EPON-MIB
+modules:
+ processors:
+ data:
+ -
+ oid: GW-EPON-MIB::boardCpuUsage
+ value: boardCpuUsage
+ snmp_flags: ['-OeQUs', '-Pu']
+ num_oid: '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.19.1.1'
+ sensors:
+ temperature:
+ data:
+ -
+ oid: devTemperature
+ num_oid: '.1.3.6.1.4.1.10072.2.15.1.6.1.1.2.{{ $index }}'
+ descr: 'Temperature board {{ $index }} '
+ -
+ oid: powerTemperature
+ num_oid: '.1.3.6.1.4.1.10072.2.15.1.5.1.1.3.{{ $index }}'
+ descr: 'Temperature power supply {{ $index }} '
+ state:
+ data:
+ -
+ oid: powerRunStatus
+ num_oid: '.1.3.6.1.4.1.10072.2.15.1.5.1.1.2.{{ $index }}'
+ descr: 'Power Run Status {{ $index }}'
+ states:
+ - { descr: Normal, graph: 0, value: 0, generic: 0 }
+ - { descr: Abnormal, graph: 0, value: 1, generic: 2 }
+ -
+ oid: devFanAlarmStatus
+ num_oid: '.1.3.6.1.4.1.10072.2.15.1.4.1.1.3.{{ $index }}'
+ descr: 'Fun status {{ $index }}'
+ states:
+ - { descr: Normal, graph: 0, value: 0, generic: 0 }
+ - { descr: Abnormal, graph: 0, value: 1, generic: 2 }
diff --git a/includes/definitions/gwd.yaml b/includes/definitions/gwd.yaml
new file mode 100644
index 0000000000..f550f924b7
--- /dev/null
+++ b/includes/definitions/gwd.yaml
@@ -0,0 +1,14 @@
+os: gwd
+text: 'gwd'
+type: network
+icon: gwd
+group: gwd
+mib_dir:
+ - gwd
+over:
+ - { graph: device_bits, text: 'Device Traffic' }
+ - { graph: device_processor, text: 'CPU Usage' }
+ - { graph: device_mempool, text: 'Memory Usage' }
+discovery:
+ - sysObjectID:
+ - .1.3.6.1.4.1.10072.2.20
diff --git a/includes/discovery/mempools/gwd.inc.php b/includes/discovery/mempools/gwd.inc.php
new file mode 100644
index 0000000000..42e08c9e71
--- /dev/null
+++ b/includes/discovery/mempools/gwd.inc.php
@@ -0,0 +1,20 @@
+
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or (at your
+ * option) any later version. Please see LICENSE.txt at the top level of
+ * the source code distribution for details.
+ */
+
+if ($device['os'] === 'gwd') {
+ echo 'gwd:';
+ $usage = snmp_get($device, '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1', '-Ovq');
+ if (is_numeric($usage)) {
+ $descr = 'Memory';
+ discover_mempool($valid_mempool, $device, 0, 'gwd', $descr, '1', null, null);
+ }
+}
diff --git a/includes/polling/mempools/gwd.inc.php b/includes/polling/mempools/gwd.inc.php
new file mode 100644
index 0000000000..1668511a19
--- /dev/null
+++ b/includes/polling/mempools/gwd.inc.php
@@ -0,0 +1,17 @@
+
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or (at your
+ * option) any later version. Please see LICENSE.txt at the top level of
+ * the source code distribution for details.
+ */
+
+$temp_data = snmp_get_multi_oid($device, ['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.28.1.1', '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1'], '-OQUn');
+$mempool['total'] = $temp_data['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.28.1.1'];
+$mempool['used'] = $temp_data['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1'];
+$mempool['free'] = $mempool['total'] - $mempool['used'];
+unset($temp_data);
diff --git a/includes/polling/os/gwd.inc.php b/includes/polling/os/gwd.inc.php
new file mode 100644
index 0000000000..59958efd44
--- /dev/null
+++ b/includes/polling/os/gwd.inc.php
@@ -0,0 +1,16 @@
+
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or (at your
+ * option) any later version. Please see LICENSE.txt at the top level of
+ * the source code distribution for details.
+ */
+
+$r_temp = snmp_get_multi_oid($device, ['.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.8.1', '.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.9.1', '.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.18.1.1'], '-OQUn');
+$version = $r_temp['.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.8.1'];
+$hardware = $r_temp['.1.3.6.1.4.1.10072.2.20.1.1.1.1.1.9.1'];
+$serial = $r_temp['.1.3.6.1.4.1.10072.2.20.1.1.2.1.1.18.1.1'];
diff --git a/mibs/gwd/GW-EPON-DEV-MIB b/mibs/gwd/GW-EPON-DEV-MIB
new file mode 100644
index 0000000000..90c5561e92
--- /dev/null
+++ b/mibs/gwd/GW-EPON-DEV-MIB
@@ -0,0 +1,601 @@
+GW-EPON-DEV-MIB DEFINITIONS ::= BEGIN
+ IMPORTS
+ devices
+ FROM GWTT-SMI
+ TruthValue, DateAndTime, RowStatus, DisplayString
+ FROM SNMPv2-TC
+ DisplayString
+ FROM RFC1213-MIB
+ gwDevTrapGroup, deviceIndex,EponDeviceType
+ FROM GW-EPON-MIB
+ MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, NOTIFICATION-TYPE
+ FROM SNMPv2-SMI;
+
+ eponDevManMIB MODULE-IDENTITY
+ LAST-UPDATED "200804090000Z"
+ ORGANIZATION "Organization"
+ CONTACT-INFO "Contact-info"
+ DESCRIPTION "Description"
+ REVISION "200602141321Z"
+ DESCRIPTION ""
+ ::= { devices 15 }
+
+ eponDevManMIBObjects OBJECT IDENTIFIER
+ ::= { eponDevManMIB 1 }
+
+ updateONUGroup OBJECT IDENTIFIER
+ ::= { eponDevManMIBObjects 1 }
+
+-- cfgdataSaveGroup OBJECT IDENTIFIER
+-- ::= { eponDevManMIBObjects 2 }
+
+ logEventGroup OBJECT IDENTIFIER
+ ::= { eponDevManMIBObjects 3 }
+
+ fanAlarmInfoGroup OBJECT IDENTIFIER
+ ::= { eponDevManMIBObjects 4 }
+
+ powerInfoGroup OBJECT IDENTIFIER
+ ::= { eponDevManMIBObjects 5 }
+
+ temperatureInfoGroup OBJECT IDENTIFIER
+ ::= { eponDevManMIBObjects 6 }
+ onuAlarmMaskGroup OBJECT IDENTIFIER
+ ::= { eponDevManMIBObjects 7 }
+
+-- update ONU mib definitions
+
+ onuUpdateTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OnuUpdateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of information about updating onu."
+ ::= { updateONUGroup 1 }
+
+ onuUpdateEntry OBJECT-TYPE
+ SYNTAX OnuUpdateEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing onu update configure information ."
+ INDEX { deviceIndex }
+ ::= { onuUpdateTable 1 }
+
+ OnuUpdateEntry ::= SEQUENCE {
+ updateONUEnable INTEGER,
+ updateCtrlFlag INTEGER
+ }
+
+ updateONUEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "This value of the object indicates whether enable update ONU's software or firmware"
+ ::= { onuUpdateEntry 1 }
+
+ updateCtrlFlag OBJECT-TYPE
+ SYNTAX INTEGER { noop ( 1 ) , update ( 2 ) , inProcess ( 3 ) , forbidden ( 4 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value is a representation of progress for updating."
+ ::= { onuUpdateEntry 2 }
+
+-- log event -------------------------------------------------
+
+ logEventTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF LogEventEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of logged events"
+ ::= { logEventGroup 1 }
+
+ logEventEntry OBJECT-TYPE
+ SYNTAX LogEventEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing logged event ."
+ INDEX { logEventIndex }
+ ::= { logEventTable 1 }
+
+ LogEventEntry ::= SEQUENCE {
+ logEventIndex Integer32,
+ logEventTime DateAndTime,
+ logEventDesc DisplayString
+ }
+
+ logEventIndex OBJECT-TYPE
+ SYNTAX Unsigned32 --Integer32 ( 1 .. 65536 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The vlaue of index of logged event ."
+ ::= { logEventEntry 1 }
+
+ logEventTime OBJECT-TYPE
+ SYNTAX DateAndTime
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "date and time when log event occure."
+ ::= { logEventEntry 2 }
+
+
+ logEventDesc OBJECT-TYPE
+ SYNTAX DisplayString( SIZE(1..64) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Description of the event."
+ ::= { logEventEntry 3 }
+
+ alarmSynTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF AlarmSynEntry
+ ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "The Table of Alarm Synchronization info."
+ ::= { logEventGroup 2 }
+
+ alarmSynEntry OBJECT-TYPE
+ SYNTAX AlarmSynEntry
+ ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Table Entry"
+ INDEX { alarmSynIndex }
+ ::= { alarmSynTable 1 }
+
+ AlarmSynEntry ::= SEQUENCE {
+ alarmSynIndex INTEGER,
+ alarmSynTime DateAndTime,
+ alarmSynData OCTET STRING,
+ alarmSynFlag INTEGER,
+ alarmSynClearTime DateAndTime
+ }
+
+ alarmSynIndex OBJECT-TYPE
+ SYNTAX INTEGER (1..500)
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Alarm Synchronization Information Index."
+ ::= { alarmSynEntry 1 }
+
+ alarmSynTime OBJECT-TYPE
+ SYNTAX DateAndTime
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The time when an alarm occured."
+ ::= { alarmSynEntry 2 }
+
+ alarmSynData OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE (255))
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Alarm Trap PDU."
+ ::= { alarmSynEntry 3 }
+
+ alarmSynFlag OBJECT-TYPE
+ SYNTAX INTEGER { alarm(1), clear(2) }
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The value of this object indicates whether the alarm
+ has been cleared or not."
+ ::= { alarmSynEntry 4 }
+
+ alarmSynClearTime OBJECT-TYPE
+ SYNTAX DateAndTime
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The time when an alarm is cleared."
+ ::= { alarmSynEntry 5 }
+
+ alarmSynEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable(1), disable(2) }
+ ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Alarm Synchronization Enable. If the value of this
+ object is 'disable(2)', all the history alarm will
+ be clear."
+ DEFVAL { enable }
+ ::= { logEventGroup 3 }
+
+ logEventEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value of this object indicates whether enable log event."
+ ::= { logEventGroup 4 }
+
+ lastLogEventIndex OBJECT-TYPE
+ SYNTAX Unsigned32 --Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The vlaue of this object indicates the index of event logged last time."
+ ::= { logEventGroup 5 }
+
+
+-- fanAlarmInfoGroup-------------------------
+
+ devFanAlarmTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF DevFanAlarmEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of fans alarm information"
+ ::= { fanAlarmInfoGroup 1 }
+
+ devFanAlarmEntry OBJECT-TYPE
+ SYNTAX DevFanAlarmEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing status information"
+ INDEX { devFanDeviceIndex , devFanIndex }
+ ::= { devFanAlarmTable 1 }
+
+ DevFanAlarmEntry ::= SEQUENCE {
+ devFanDeviceIndex INTEGER,
+ devFanIndex INTEGER ,
+ devFanAlarmStatus INTEGER ,
+ devFanSpyEnable INTEGER,
+ devFanRev INTEGER
+ }
+
+ devFanDeviceIndex OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of device"
+ ::={ devFanAlarmEntry 1 }
+
+ devFanIndex OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of the fan that the 'devFanDeviceIndex' indicated"
+ ::={ devFanAlarmEntry 2 }
+
+ devFanAlarmStatus OBJECT-TYPE
+ SYNTAX TruthValue { ALARM(1), CLEAR(5) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "alarm status for fan"
+ ::={ devFanAlarmEntry 3 }
+
+ devFanSpyEnable OBJECT-TYPE
+ SYNTAX INTEGER {enable(1),disable(2),notSupport(3)}
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "fan spy enable"
+ ::={ devFanAlarmEntry 4 }
+
+ devFanRev OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the fan speed"
+ ::={ devFanAlarmEntry 5 }
+
+
+
+ devFanNumber OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::={ fanAlarmInfoGroup 2 }
+ devFanAutoTurnOnThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::={ fanAlarmInfoGroup 3 }
+ devFanAutoTurnOffThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::={ fanAlarmInfoGroup 4 }
+ devFanRevThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the speed of fan,default value 1000/minute"
+ ::={ fanAlarmInfoGroup 5}
+
+
+-- power information--------------------------
+ powerInfoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PowerInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of power information"
+ ::={ powerInfoGroup 1 }
+
+ powerInfoEntry OBJECT-TYPE
+ SYNTAX PowerInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table,containing status about power information"
+ INDEX { powerIndex }
+ ::={ powerInfoTable 1 }
+
+ PowerInfoEntry ::= SEQUENCE {
+ powerIndex INTEGER ,
+ powerRunStatus INTEGER ,
+ powerTemperature INTEGER,
+ powerLastChangeTime TimeTicks,
+ powerTMPRisingThreshold Integer32 ,
+ powerTMPFallingThreshold Integer32,
+ powerModuleType INTEGER,
+ powerVoltage INTEGER,
+ powerCurrent INTEGER,
+ PowerVOLTHighThreshold INTEGER,
+ PowerVOLTLowThreshold INTEGER,
+ PowerAlarmInfo INTEGER,
+ PowerAlarmID INTEGER,
+ PowerClearAlarmID INTEGER
+ }
+
+ powerIndex OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the index of power"
+ ::={ powerInfoEntry 1 }
+
+ powerRunStatus OBJECT-TYPE
+ SYNTAX INTEGER { empty(1),powerOff(2), powerOn(3) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value of this object indicates power status"
+ ::={powerInfoEntry 2 }
+
+ powerTemperature OBJECT-TYPE
+ SYNTAX INTEGER( 1..100 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the temperature of power"
+ ::={ powerInfoEntry 3 }
+
+ powerLastChangeTime OBJECT-TYPE
+ SYNTAX TimeTicks
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates time at which powers's satus changed"
+ ::={ powerInfoEntry 4 }
+
+ powerTMPRisingThreshold OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates rising threashold of the temperatur of a power"
+ ::={ powerInfoEntry 5 }
+
+ powerTMPFallingThreshold OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates falling threashold of the temperatur of a power"
+ ::={ powerInfoEntry 6 }
+
+ powerModuleType OBJECT-TYPE
+ SYNTAX INTEGER { AC220V(1), DC48V(2)}
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value of the object indicates power module type"
+ ::={ powerInfoEntry 7 }
+
+ powerVoltage OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the voltage of a power"
+ ::={ powerInfoEntry 8 }
+
+
+ powerCurrent OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the current of a power"
+ ::={ powerInfoEntry 9 }
+
+
+ powerVOLTHighThreshold OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates high threashold of the voltage of a power"
+ ::={ powerInfoEntry 10 }
+
+ powerVOLTLowThreshold OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates low threashold of the voltage of a power"
+ ::={ powerInfoEntry 11 }
+
+ powerAlarmInfo OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the alarminfo of a power
+
+ AlarmID AlarmInfo
+
+ 0x00000000 null
+ 0x00000001 input_volt_abnoarmal
+ 0x00000002 pwu_stat_abnoarmal
+ 0x00000004 pwu_fan_abnoarmal
+ 0x00000008 cur_limit_abnoarmal
+ 0x00000010 ac_volt_abnoarmal
+ 0x00000020 high_volt_abnoarmal
+ 0x00000040 out_cur_abnoarmal
+ 0x00000080 low_line_abnoarmal
+ 0x00000100 pwu_reg_abnoarmal
+ 0x00000200 dc_volt_abnoarmal
+ 0x00000400 power_off_abnoarmal
+ 0x00000800 temp_high_abnoarmal
+
+ "
+ ::={ powerInfoEntry 12 }
+
+
+ powerAlarmID OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the alarmid of a power "
+ ::={ powerInfoEntry 13 }
+
+ powerClearAlarmID OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the clearalarmid of a power"
+ ::={ powerInfoEntry 14 }
+
+
+-------------------------- trap ---------------------------------------------
+
+ devFanAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, devFanIndex }
+ STATUS current
+ DESCRIPTION "fan alarm"
+ ::= { gwDevTrapGroup 28 }
+
+ devFanAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, devFanIndex }
+ STATUS current
+ DESCRIPTION "fan alarm clear"
+ ::= { gwDevTrapGroup 29 }
+
+ deviceTemperatureHigh NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "device temperature high alarm"
+ ::= { gwDevTrapGroup 124 }
+
+ deviceTemperatureHighClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "device temperature high alarm clear"
+ ::= { gwDevTrapGroup 125 }
+
+ deviceTemperatureLow NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "device temperature low alarm"
+ ::= { gwDevTrapGroup 126 }
+
+ deviceTemperatureLowClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "device temperature low alarm clear"
+ ::= { gwDevTrapGroup 127 }
+
+
+-------temperature information--------------------------------------------------------------
+ temperatureInfoTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF TemperatureInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of temperature information"
+ ::= { temperatureInfoGroup 1 }
+
+ temperatureInfoEntry OBJECT-TYPE
+ SYNTAX TemperatureInfoEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table,containing status about temperature information"
+ INDEX {temperatureDeviceIndex}
+ ::={ temperatureInfoTable 1 }
+
+ TemperatureInfoEntry ::= SEQUENCE {
+ temperatureDeviceIndex INTEGER,
+ devTemperature INTEGER ,
+ devTemperatureHighThresholds Integer32 ,
+ devTemperatureLowThreshold Integer32,
+ devTemperatureSpyEnable INTEGER
+ }
+
+
+ temperatureDeviceIndex OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the device temperature"
+ ::={temperatureInfoEntry 1}
+
+ devTemperature OBJECT-TYPE
+ SYNTAX INTEGER
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the device temperature"
+ ::={temperatureInfoEntry 2}
+
+ devTemperatureHighThresholes OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates the device temperature high "
+ ::={temperatureInfoEntry 3}
+
+ devTemperatureLowThresholes OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates the device temperature low "
+ ::={temperatureInfoEntry 4}
+
+ devTemperatureSpyEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable(1), disable(2), notSupport(3)}
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates the device temperature spy enable"
+ ::={temperatureInfoEntry 5}
+ ------------- onuAlarmMaskGroup ---------------------------------------------------
+ onuAlarmMaskTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OnuAlarmMaskEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of onu alarm mask information"
+ ::= { onuAlarmMaskGroup 1 }
+
+ onuAlarmMaskEntry OBJECT-TYPE
+ SYNTAX OnuAlarmMaskEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table,containing status about onu alarm mask information"
+ INDEX {onutypeIndex}
+ ::={ onuAlarmMaskTable 1 }
+
+ OnuAlarmMaskEntry::= SEQUENCE {
+ onutypeIndex EponDeviceType,
+ onualarmMask BITS ,
+ onualarmMaskrowstatus RowStatus
+ }
+
+ onutypeIndex OBJECT-TYPE
+ SYNTAX EponDeviceType
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "onu type vlaue"
+ ::={onuAlarmMaskEntry 1}
+
+ onualarmMask OBJECT-TYPE
+ SYNTAX BITS{power(0),fan(1),cpu(2),temperature(3),register(4),present(5),ethlink(6),ethfer(7),ethflr(8),ethti(9),ethloop(10),ponber(11),ponfer(12),ponabnormal(13),ponaps(14),ponlink(15),onuLaserAlwayOn(16),onuOpticalPowerLow(17),onuOpticalPowerHigh(18)}
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "onu alarm mask type"
+ ::={onuAlarmMaskEntry 2}
+
+ onualarmMaskrowstatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "onu alarm mask table row status"
+ ::={onuAlarmMaskEntry 3}
+
+END
diff --git a/mibs/gwd/GW-EPON-MIB b/mibs/gwd/GW-EPON-MIB
new file mode 100644
index 0000000000..f9221ed5ce
--- /dev/null
+++ b/mibs/gwd/GW-EPON-MIB
@@ -0,0 +1,3042 @@
+
+-- File Name : GW-EPON-MIB.mi2
+-- Date : Tue Nov 27 13:46:08 CST 2012
+-- Author : AdventNet Agent Toolkit C Edition - MibEditor 6
+
+
+
+GW-EPON-MIB DEFINITIONS ::= BEGIN
+ IMPORTS
+ devices
+ FROM GWTT-SMI
+ RowStatus, TruthValue, DisplayString, MacAddress, TEXTUAL-CONVENTION, DateAndTime
+ FROM SNMPv2-TC
+ MODULE-IDENTITY, OBJECT-TYPE, Integer32, TimeTicks, NOTIFICATION-TYPE, Counter32, IpAddress
+ FROM SNMPv2-SMI;
+
+ gwEponMib MODULE-IDENTITY
+ LAST-UPDATED "200804100000Z"
+ ORGANIZATION "Organization"
+ CONTACT-INFO "Contact-info"
+ DESCRIPTION "EPON private MIB information definitions"
+ REVISION "200603240959Z"
+ DESCRIPTION ""
+ ::= { devices 20 }
+
+-- TEXTUAL-CONVENTIONS --
+ ChassisSlotSupportType ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT ""
+ STATUS current
+ DESCRIPTION
+ "The value indicates the type of board this slot surpports."
+ SYNTAX BITS { sw ( 0 ) ,
+ epon ( 1 ) ,
+ gpon ( 2 ) ,
+ get ( 3 ) ,
+ geo ( 4 ) ,
+ tdm ( 5 ) ,
+ stm1 ( 6 ) ,
+ pwu48 ( 7 ) ,
+ pwu220 ( 8 ) ,
+ smb ( 9 ) ,
+ gem ( 10 ) ,
+ sig ( 11 ) ,
+ onuEponB ( 12 ) ,
+ onu6FeC ( 13 ) ,
+ onu8FeD ( 14 ) ,
+ onu16FeD ( 15 ) ,
+ onu8PotsA ( 16 ) ,
+ onu8PotsB ( 17 ) ,
+ onu8FxsA ( 18 ) ,
+ onu8FxsB ( 19 ) ,
+ oltMain ( 20 ) ,
+ olt2Epon ( 21 ) ,
+ e1 ( 22 ) ,
+ oltE1 ( 23 ) ,
+ onuE1A ( 24 ) ,
+ onuE1B ( 25 ) ,
+ sw_6900 ( 26 ) ,
+ olt4epon ( 27 ) ,
+ olt8epon ( 28 ) ,
+ olt12epon ( 29 ) ,
+ gem4ge ( 30 ) ,
+ gem10ge ( 31 ) ,
+ fan_6900 ( 32 ) ,
+ pwu_48 ( 33 ) ,
+ pwu_220 ( 34 ) ,
+ olt4epon4ge(35),
+ pwu_220_6900m(36),
+ pwu_48_6900m(37),
+ fan_6900s(38),
+ pwu_220_6900s(39),
+ pwu_48_6900s(40)}
+
+ OnuAlarmLevelList ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT ""
+ STATUS current
+ DESCRIPTION
+ "Each octet within this value specifies a alarm-level of one ONU of
+ a PON, with the first octet specifying ONU1 alarm-level, and the
+ second octet specifying ONU2 alarm-level, etc.
+ Per octet value is defined:
+ '0' - null
+ '1' - vital
+ '2' - major
+ '3' - minor
+ '4' - warning
+ '5' - clear
+ '6' - information
+ '7' - off-line."
+ SYNTAX OCTET STRING
+
+ EponDeviceType ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT "d"
+ STATUS current
+ DESCRIPTION
+ "The value indicates the type of this device:
+ 1 - unknown,
+ 2 - GFA6700,
+ 3 - GFA6100,
+ 4 - GT811,
+ 5 - GT831,
+ 6 - GT831-CATV,
+ 7 - GT812,
+ 8 - GT813,
+ 9 - GT881,
+ 10 - GT861,
+ 11 - GT891,
+ 12 - GT810,
+ 13 - GT863,
+ 14 - other,
+ 15 - GT865,
+ 16 - GT816,
+ 17 - GT811A,
+ 18 - GT812A,
+ 19 - GT831A,
+ 20 - GT831A-CATV,
+ 21 - GT815,
+ 22 - GT812B,
+ 23 - GT831B,
+ 24 - GT866,
+ 25 - GT811_B,
+ 26 - GT851,
+ 27 - GT813_B,
+ 28 - GT862,
+ 29 - GT892,
+ 30 - GT835,
+ 31 - GT831_B_CATV,
+ 32 - GT815_B,
+ 33 - GT871,
+ 34 - GT871R,
+ 35 - GD5048,
+ 36 - GD6024,
+ 37 - GT872,
+ 38 - GT872P, --GT872B(deprecated)
+ 39 - GT872R,
+ 40 - GT873,
+ 41 - GT873P,
+ 42 - GT873R,
+ 43 - GT871P,
+ 44 - GT870,
+ 45 - GT811_C,
+ 46 - GT810_A,
+ 47 - GT811_D,
+ 96 - GFA6900M,
+ 97 - GGA6900S,
+ 99 - GFA6900"
+ SYNTAX Integer32
+
+ OnuList ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT ""
+ STATUS current
+ DESCRIPTION
+ "Each octet within this value specifies a set of eight ONUs, with
+ the first octet specifying ONUs ID 1 through 8, the second octet
+ specifying ONUs ID 9 through 16, etc. Within each octet, the most
+ significant bit represents the lowest numbered ONU ID, and the
+ least significant bit represents the highest numbered ONU ID. Thus,
+ each ONU of a PON is represented by a single bit within the value
+ of this object. If the bit has a value of '1', then the ONU is
+ registered and included in this list; if the bit has a value of
+ '0', then the ONU is disregistered and not included."
+ SYNTAX OCTET STRING
+
+ ChassisSlotBoardType ::= TEXTUAL-CONVENTION
+ DISPLAY-HINT ""
+ STATUS current
+ DESCRIPTION
+ "The value indicates the type of this board:
+ null(1) - NULL,
+ unknown(2) - Unknown,
+ sw(3) - SW (OLT), master control and switch board.
+ epon(4) - EPON (OLT), slave epon board.
+ gpon(5) - GPON (OLT), slave gpon board.
+ get(6) - GET (OLT, 4GE-TX), using category 5 UTP interface.
+ geo(7) - GEO (OLT, 4GE-XX), using X fiber over PMT interface.
+ tdm(8) - TDM (OLT), slave tdm board.
+ stm1(9) - STM1 (OLT), slave stm1 board.
+ pwu48(10) - PWR48, power board with input of -48V(DC).
+ pwu220(11) - PWR220, power board with input of 220V(AC).
+ smb(12) - SMB (ONU), the simple mainboard of box device.
+ gem(13) - GEM (OLT), slave board.
+ sig(14) - SIG (OLT), slave board.
+ onuEponB(15) - EPON-B (ONU).
+ onu6FeC(16) - 6FE_C (ONU), RJ45 connector.
+ onu8FeD(17) - 8FE_D (ONU), SCSI68 connector.
+ onu16FeD(18) - 16FE_D (ONU), SCSI68 connector.
+ onu8PotsA(19)- 8POTS-A (ONU), RJ11 connector.
+ onu8PotsB(20)- 8POTS-B (ONU), RJ21 connector.
+ onu8FxsA(21) - 8FXS-A (ONU), RJ11 connector.
+ onu8FxsB(22) - 8FXS-B (ONU), RJ21 connector.
+ oltMain(23) - the master board of box-device OLT.
+ olt2Epon(24) - the EPON board of box-device OLT.
+ E1 ( 25 ) -
+ oltE1 ( 26 ) ,
+ onuE1A ( 27 ) ,
+ onuE1B ( 28 ) ,
+ sw_6900 ( 29 ) - SW (OLT), master control and switch board of GFA6900.
+ olt4epon ( 30 ) - EPON (OLT) , PON board with 4 PON ports.
+ olt8epon ( 31 ) - EPON (OLT) , PON board with 8 PON ports.
+ olt12epon ( 32 ) - EPON (OLT) , PON board with 12 PON ports and 4 GE ports.
+ gem4ge ( 33 ) - GEM (OLT) , GEM board with 4 GE ports.
+ gem10ge ( 34 ) - GEM (OLT) , GEM board with 1 10GE port and 4 GE ports.
+ fan_6900 ( 35 ) - FAN (OLT) , FAN board of GFA6900.
+ pwu_48 ( 36 ) - PWU (OLT) , 48V Power board of GFA6900 and GFA6900M.
+ pwu_220 ( 37 ) - PWU (OLT) , 220V Power board of GFA6900.
+ olt4epon4ge(38) - EPON (OLT) , EPON board with 4 PON ports and 4 GE ports
+ pwu_220_6900m(39) - PWU (OLT) , 220V Power board of GFA6900M.
+ fan_6900s(40) - FAN (OLT) , FAN board of GFA6900S.
+ pwu_48_6900s(41) - PWU (OLT) , 48V Power board of GFA6900S.
+ pwu_220_6900s(42) - PWU (OLT) , 220V Power board of GFA6900S. "
+
+ SYNTAX INTEGER { null ( 1 ) ,
+ unknown ( 2 ) ,
+ sw ( 3 ) ,
+ epon ( 4 ) ,
+ gpon ( 5 ) ,
+ get ( 6 ) ,
+ geo ( 7 ) ,
+ tdm ( 8 ) ,
+ stm1 ( 9 ) ,
+ pwu48 ( 10 ) ,
+ pwu220 ( 11 ) ,
+ smb ( 12 ) ,
+ gem ( 13 ) ,
+ sig ( 14 ) ,
+ onuEponB ( 15 ) ,
+ onu6FeC ( 16 ) ,
+ onu8FeD ( 17 ) ,
+ onu16FeD ( 18 ) ,
+ onu8PotsA ( 19 ) ,
+ onu8PotsB ( 20 ) ,
+ onu8FxsA ( 21 ) ,
+ onu8FxsB ( 22 ) ,
+ oltMain ( 23 ) ,
+ olt2Epon ( 24 ) ,
+ e1 ( 25 ) ,
+ oltE1 ( 26 ) ,
+ onuE1A ( 27 ) ,
+ onuE1B ( 28 ) ,
+ sw_6900 ( 29 ) ,
+ olt4epon ( 30 ) ,
+ olt8epon ( 31 ) ,
+ olt12epon ( 32 ) ,
+ gem4ge ( 33 ) ,
+ gem10ge ( 34 ) ,
+ fan_6900 ( 35 ) ,
+ pwu_48 ( 36 ) ,
+ pwu_220 ( 37 ) ,
+ olt4epon4ge(38) ,
+ pwu_220_6900m(39) ,
+ fan_6900s(40) ,
+ pwu_48_6900s(41) ,
+ pwu_220_6900s(42)}
+
+ gwEponMibObjects OBJECT IDENTIFIER
+ ::= { gwEponMib 1 }
+
+ gwEponCfgGroup OBJECT IDENTIFIER
+ ::= { gwEponMibObjects 1 }
+
+ gwEponDevice OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 1 }
+
+ gwEponBoard OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 2 }
+
+ gwEponPon OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 3 }
+
+ gwEponPonOnuAuth OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 4 }
+
+ gwEponLlid OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 5 }
+
+ gwDevTrapGroup OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 6 }
+
+ gwAlarmLevelGroup OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 7 }
+
+ gwConsoleCfgGroup OBJECT IDENTIFIER
+ ::= { gwEponCfgGroup 8 }
+
+
+ gwEponDevTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF GwEponDevEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of device informations"
+ ::= { gwEponDevice 1 }
+
+ gwEponDevEntry OBJECT-TYPE
+ SYNTAX GwEponDevEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing properties and some descriptions"
+ INDEX { deviceIndex }
+ ::= { gwEponDevTable 1 }
+
+ GwEponDevEntry ::= SEQUENCE {
+ deviceIndex Integer32,
+ deviceType EponDeviceType,
+ deviceName DisplayString,
+ deviceDescription DisplayString,
+ deviceLocation DisplayString,
+ deviceVendor DisplayString,
+ deviceFirmWareVersion DisplayString,
+ deviceSoftWareVersion DisplayString,
+ deviceHardWareVersion DisplayString,
+ deviceOperStatus INTEGER,
+ deviceAlarmStatus INTEGER,
+ deviceMacAddress MacAddress,
+ deviceLastChange TimeTicks,
+ deviceReset INTEGER,
+ deviceEntLogicalIndex Integer32,
+ deviceEntLogicalCommunity DisplayString,
+ deviceOnuTestDistance Integer32,
+ deviceUpTime TimeTicks,
+ deviceStpEnable INTEGER,
+ deviceChipsetVendor DisplayString,
+ deviceChipsetMode Integer32,
+ deviceChipsetRevision DisplayString,
+ deviceChipsetDate DisplayString,
+ deviceCapPortDesc DisplayString,
+ deviceCapEthPortNum Integer32,
+ deviceCapIadPotsPortNum Integer32,
+ deviceCapE1PortNum Integer32,
+ deviceCapUQueueTotal Integer32,
+ deviceCapUQueuePort Integer32,
+ deviceCapDQueueTotal Integer32,
+ deviceCapDQueuePort Integer32,
+ deviceCapBattery INTEGER,
+ deviceMulticastSwitch INTEGER,
+ deviceSystemTime DateAndTime,
+ deviceRestartupTime DateAndTime,
+ deviceTrafficServiceStatus INTEGER,
+ deviceAlarmMask BITS,
+ deviceModel DisplayString,
+ deviceMulticastFastLeaveAbility BITS,
+ deviceMulticastFastLeaveOperState INTEGER,
+ deviceMulticastFastLeaveAdminState INTEGER,
+ onuMacTableAlarmThreshold Integer32,
+ onuMacNumbers Integer32
+ }
+
+
+ deviceIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Index of device"
+ ::= { gwEponDevEntry 1 }
+
+
+ deviceType OBJECT-TYPE
+ SYNTAX EponDeviceType
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the type of this device"
+ ::= { gwEponDevEntry 2 }
+
+
+ deviceName OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "A string indicates or configure device name"
+ ::= { gwEponDevEntry 3 }
+
+
+ deviceDescription OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Description for this device"
+ ::= { gwEponDevEntry 4 }
+
+
+ deviceLocation OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "A string indicates and configure the device location"
+ ::= { gwEponDevEntry 5 }
+
+
+ deviceVendor OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "A string indicates the vendor"
+ ::= { gwEponDevEntry 6 }
+
+
+ deviceFirmWareVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the version of firmware"
+ ::= { gwEponDevEntry 7 }
+
+
+ deviceSoftWareVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the version of software"
+ ::= { gwEponDevEntry 8 }
+
+
+ deviceHardWareVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the version of PCB"
+ ::= { gwEponDevEntry 9 }
+
+
+ deviceOperStatus OBJECT-TYPE
+ SYNTAX INTEGER { up ( 1 ) , down ( 2 ) , unknown ( 3 ) , dormant ( 4 ) , powerDown ( 5 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The current operational state of the device, 'down(2)' indicates
+ that the ONU is off-line. 'dormant(4)' indicates the device is
+ waiting for external actions (such as no bandwidth for any service),
+ 'powerDown(5)' indicates the device is power down or dying gasp."
+ DEFVAL { down }
+ ::= { gwEponDevEntry 10 }
+
+
+ deviceAlarmStatus OBJECT-TYPE
+ SYNTAX INTEGER { vital ( 1 ) , major ( 2 ) , minor ( 3 ) , warning ( 4 ) , clear ( 5 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates alarm status for this device, it means unique alarm occur that unique bit is set '1', on the other hand, unique bit is set 0 while this alarm is cleared."
+ ::= { gwEponDevEntry 11 }
+
+
+ deviceMacAddress OBJECT-TYPE
+ SYNTAX MacAddress ( SIZE ( 6 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates and confgure device MAC address"
+ ::= { gwEponDevEntry 12 }
+
+
+ deviceLastChange OBJECT-TYPE
+ SYNTAX TimeTicks
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the last time for this device change"
+ ::= { gwEponDevEntry 15 }
+
+
+ deviceReset OBJECT-TYPE
+ SYNTAX INTEGER { noop ( 1 ) , reset ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Description"
+ DEFVAL { noop }
+ ::= { gwEponDevEntry 16 }
+
+
+ deviceEntLogicalIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value of this object uniquely identifies the logical
+ entity. The value should be a small positive integer; index
+ values for different logical entities are are not
+ necessarily contiguous."
+ ::= { gwEponDevEntry 17 }
+
+
+ deviceEntLogicalCommunity OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "An SNMPv1 or SNMPv2C community-string which can be used to
+ access detailed management information for this logical
+ entity. The agent should allow read access with this
+ community string (to an appropriate subset of all managed
+ objects) and may also return a community string based on the
+ privileges of the request used to read this object. Note
+ that an agent may return a community string with read-only
+ privileges, even if this object is accessed with a read-
+ write community string. However, the agent must take care
+ not to return a community string which allows more
+ privileges than the community string used to access this
+ object.
+
+ A compliant SNMP agent may wish to conserve naming scopes by
+ representing multiple logical entities in a single 'default'
+ naming scope. This is possible when the logical entities
+ represented by the same value of entLogicalCommunity have no
+ object instances in common. For example, 'bridge1' and
+ 'repeater1' may be part of the main naming scope, but at
+ least one additional community string is needed to represent
+ 'bridge2' and 'repeater2'.
+
+ Logical entities 'bridge1' and 'repeater1' would be
+ represented by sysOREntries associated with the 'default'
+ naming scope.
+
+ For agents not accessible via SNMPv1 or SNMPv2C, the value
+ of this object is the empty string. This object may also
+ contain an empty string if a community string has not yet
+ been assigned by the agent, or no community string with
+ suitable access rights can be returned for a particular SNMP
+ request.
+
+ Note that this object is deprecated. Agents which implement
+ SNMPv3 access should use the entLogicalContextEngineID and
+ entLogicalContextName objects to identify the context
+ associated with each logical entity. SNMPv3 agents may
+ return a zero-length string for this object, or may continue
+ to return a community string (e.g., tri-lingual agent
+ support)."
+ ::= { gwEponDevEntry 18 }
+
+
+ deviceOnuTestDistance OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the distance between OLT and unique ONU, unit:meter"
+ ::= { gwEponDevEntry 19 }
+
+
+ deviceUpTime OBJECT-TYPE
+ SYNTAX TimeTicks
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value of this object uniquely identifies up time about this device."
+ ::= { gwEponDevEntry 20 }
+
+
+ deviceStpEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "OLT or ONU spanning tree contral, enable(1)-
+ enable the spanning tree protocol, disable(2)-
+ disable the spanning tree protocol."
+ ::= { gwEponDevEntry 21 }
+
+
+ deviceChipsetVendor OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON chipset vendor ID"
+ ::= { gwEponDevEntry 22 }
+
+
+ deviceChipsetMode OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON chipset type"
+ ::= { gwEponDevEntry 23 }
+
+
+ deviceChipsetRevision OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON chipset revision"
+ ::= { gwEponDevEntry 24 }
+
+
+ deviceChipsetDate OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON chipset design date"
+ ::= { gwEponDevEntry 25 }
+
+
+ deviceCapPortDesc OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Port capabilities description, include GE/FE/E1/POTS etc."
+ ::= { gwEponDevEntry 26 }
+
+
+ deviceCapEthPortNum OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Number of ethernet port supported"
+ ::= { gwEponDevEntry 27 }
+
+
+ deviceCapIadPotsPortNum OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Number of POTS port of IAD supported"
+ ::= { gwEponDevEntry 28 }
+
+
+ deviceCapE1PortNum OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Number of E1 port supported"
+ ::= { gwEponDevEntry 29 }
+
+
+ deviceCapUQueueTotal OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Number of upstream queues"
+ ::= { gwEponDevEntry 30 }
+
+
+ deviceCapUQueuePort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Maximum queues per port upstream"
+ ::= { gwEponDevEntry 31 }
+
+
+ deviceCapDQueueTotal OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Number of downstream queues"
+ ::= { gwEponDevEntry 32 }
+
+
+ deviceCapDQueuePort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Maximum queues per port downstream"
+ ::= { gwEponDevEntry 33 }
+
+
+ deviceCapBattery OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Battery Backup"
+ ::= { gwEponDevEntry 34 }
+
+
+ deviceMulticastSwitch OBJECT-TYPE
+ SYNTAX INTEGER { snooping ( 1 ) , ctc ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "ONU multicast switch"
+ ::= { gwEponDevEntry 35 }
+
+
+ deviceSystemTime OBJECT-TYPE
+ SYNTAX DateAndTime
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Current system clock-time.
+ OCTET-STRING consisting of eleven octets whose contents
+ are defined by RFC2579."
+ ::= { gwEponDevEntry 36 }
+
+
+ deviceRestartupTime OBJECT-TYPE
+ SYNTAX DateAndTime
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The time of device(OLT or ONU) restartup-time.
+ OCTET-STRING consisting of eleven octets whose contents
+ are defined by RFC2579."
+ ::= { gwEponDevEntry 37 }
+
+
+ deviceTrafficServiceStatus OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "ONU traffic service state. 'enable(1)' indicates the traffic is
+ in-service. 'disable(2)' indicates the traffic is out of service,
+ but is still registered."
+ DEFVAL { enable }
+ ::= { gwEponDevEntry 38 }
+
+
+ deviceAlarmMask OBJECT-TYPE
+ SYNTAX BITS { power ( 0 ) , fan ( 1 ) , cpu ( 2 ) , temperature ( 3 ) , register ( 4 ) , present ( 5 ) , ethlink ( 6 ) , ethfer ( 7 ) , ethflr ( 8 ) , ethti ( 9 ) , ethloop ( 10 ) , ponber ( 11 ) , ponfer ( 12 ) , ponabnormal ( 13 ) , ponaps ( 14 ) , ponlink ( 15 ) , onuLaserAlwayOn ( 16 ) , onuOpticalPowerLow ( 17 ) , onuOpticalPowerHigh ( 18 ) , ponLOS ( 19 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "."
+ ::= { gwEponDevEntry 39 }
+
+
+ deviceModel OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 32 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "."
+ ::= { gwEponDevEntry 40 }
+
+
+ deviceMulticastFastLeaveAbility OBJECT-TYPE
+ SYNTAX BITS { ctc ( 0 ) , snooping ( 1 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Fast Leave Mode: If the bit value of 'ctc(0)' is 0, the mode is CTC
+ and non-fast-leave function, if the bit value of 'ctc(0)' is 1, the
+ mode is CTC and fast-leave function; If the bit value of 'snooping(1)'
+ is 0, the mode is snooping and non-fast-leave function, If the bit value
+ of 'snooping(1)' is 1, the mode is snooping and fast-leave function."
+ ::= { gwEponDevEntry 41 }
+
+
+ deviceMulticastFastLeaveOperState OBJECT-TYPE
+ SYNTAX INTEGER { active ( 1 ) , deactive ( 2 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Fast Leave Function is active or deactive"
+ ::= { gwEponDevEntry 42 }
+
+
+ deviceMulticastFastLeaveAdminState OBJECT-TYPE
+ SYNTAX INTEGER { active ( 1 ) , deactive ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "active or deactivate Fast Leave Function"
+ ::= { gwEponDevEntry 43 }
+
+
+ onuMacTableAlarmThreshold OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "onu MAC table alarm threshold"
+ ::= { gwEponDevEntry 44 }
+
+
+ onuMacNumbers OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "show onu actual mac number"
+ ::= { gwEponDevEntry 45 }
+
+ gwEponBoardTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF GwEponBoardEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of board informations"
+ ::= { gwEponBoard 1 }
+
+ gwEponBoardEntry OBJECT-TYPE
+ SYNTAX GwEponBoardEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containig status and configrue information about boards"
+ INDEX { deviceIndex, boardIndex }
+ ::= { gwEponBoardTable 1 }
+
+ GwEponBoardEntry ::= SEQUENCE {
+ boardIndex Integer32,
+ curBoardType ChassisSlotBoardType,
+ boardDescription DisplayString,
+ boardActMode INTEGER,
+ boardOperStatus INTEGER,
+ boardAlarmLevel INTEGER,
+ boardLastChangeTime TimeTicks,
+ boardSupprotType ChassisSlotSupportType,
+ boardReset INTEGER,
+ boardTemperature Integer32,
+ boardEntLogicalIndex Integer32,
+ boardEntLogicalCommunity DisplayString,
+ boardSoftwareVersion DisplayString,
+ boardFirmwareVersion DisplayString,
+ boardBootVersion DisplayString,
+ boardHardwareVersion DisplayString,
+ boardManufactureDate DisplayString,
+ boardSerialNo DisplayString,
+ boardCpuUsage Integer32,
+ boardMemoryUsage Integer32,
+ boardHasSnmpAgent INTEGER,
+ boardSnmpAgentIpAddr IpAddress,
+ boardSnmpAgentReadCommunity DisplayString,
+ boardSnmpAgentWriteCommunity DisplayString,
+ boardTemperatureHighThresholds Integer32,
+ boardCpuUsageThresholds Integer32,
+ boardMemoryUsageThresholds Integer32,
+ boardMemorySize Integer32,
+ boardTemperatureLowThresholds Integer32,
+ boardAdminStatus INTEGER
+ }
+
+
+ boardIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of boards in unique device which is specified by 'deviceIndex'"
+ ::= { gwEponBoardEntry 1 }
+
+
+ curBoardType OBJECT-TYPE
+ SYNTAX ChassisSlotBoardType
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the type of this board."
+ ::= { gwEponBoardEntry 2 }
+
+
+ boardDescription OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates and confgure board description"
+ ::= { gwEponBoardEntry 3 }
+
+
+ boardActMode OBJECT-TYPE
+ SYNTAX INTEGER { master-active ( 1 ) , master-redundancy ( 2 ) , slave ( 3 ) , unknown ( 4 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates acting mode of unique board"
+ ::= { gwEponBoardEntry 4 }
+
+
+ boardOperStatus OBJECT-TYPE
+ SYNTAX INTEGER { null ( 1 ) , initing ( 2 ) , upgrating ( 3 ) , running ( 4 ) , exception ( 5 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The Value indicates board operating status"
+ ::= { gwEponBoardEntry 5 }
+
+
+ boardAlarmLevel OBJECT-TYPE
+ SYNTAX INTEGER { vital ( 1 ) , major ( 2 ) , minor ( 3 ) , warning ( 4 ) , noAlarm ( 5 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates alarm level for unique board"
+ ::= { gwEponBoardEntry 6 }
+
+
+ boardLastChangeTime OBJECT-TYPE
+ SYNTAX TimeTicks
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the time of last change about this board"
+ ::= { gwEponBoardEntry 7 }
+
+
+ boardSupprotType OBJECT-TYPE
+ SYNTAX ChassisSlotSupportType
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the type of board this slot surpports."
+ ::= { gwEponBoardEntry 8 }
+
+
+ boardReset OBJECT-TYPE
+ SYNTAX INTEGER { noop ( 1 ) , reset ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value of this object determines whether reset this board.
+ 'noop(1)' - only read value. 'reset(2)' - only write value,
+ if the active master board is resetted, and another master
+ board is running, then, the two boards will be switchover."
+ DEFVAL { noop }
+ ::= { gwEponBoardEntry 9 }
+
+
+ boardTemperature OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value indicates the temperature of this board"
+ ::= { gwEponBoardEntry 10 }
+
+
+ boardEntLogicalIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value of this object uniquely identifies the logical
+ entity. The value should be a small positive integer; index
+ values for different logical entities are are not
+ necessarily contiguous."
+ ::= { gwEponBoardEntry 11 }
+
+
+ boardEntLogicalCommunity OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "An SNMPv1 or SNMPv2C community-string which can be used to
+ access detailed management information for this logical
+ entity. The agent should allow read access with this
+ community string (to an appropriate subset of all managed
+ objects) and may also return a community string based on the
+ privileges of the request used to read this object. Note
+ that an agent may return a community string with read-only
+ privileges, even if this object is accessed with a read-
+ write community string. However, the agent must take care
+ not to return a community string which allows more
+ privileges than the community string used to access this
+ object.
+
+ A compliant SNMP agent may wish to conserve naming scopes by
+ representing multiple logical entities in a single 'default'
+ naming scope. This is possible when the logical entities
+ represented by the same value of entLogicalCommunity have no
+ object instances in common. For example, 'bridge1' and
+ 'repeater1' may be part of the main naming scope, but at
+ least one additional community string is needed to represent
+ 'bridge2' and 'repeater2'.
+
+ Logical entities 'bridge1' and 'repeater1' would be
+ represented by sysOREntries associated with the 'default'
+ naming scope.
+
+ For agents not accessible via SNMPv1 or SNMPv2C, the value
+ of this object is the empty string. This object may also
+ contain an empty string if a community string has not yet
+ been assigned by the agent, or no community string with
+ suitable access rights can be returned for a particular SNMP
+ request.
+
+ Note that this object is deprecated. Agents which implement
+ SNMPv3 access should use the entLogicalContextEngineID and
+ entLogicalContextName objects to identify the context
+ associated with each logical entity. SNMPv3 agents may
+ return a zero-length string for this object, or may continue
+ to return a community string (e.g., tri-lingual agent
+ support)."
+ ::= { gwEponBoardEntry 12 }
+
+
+ boardSoftwareVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the value indicates the version of software"
+ ::= { gwEponBoardEntry 13 }
+
+
+ boardFirmwareVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the value indicates the version of firmware"
+ ::= { gwEponBoardEntry 14 }
+
+
+ boardBootVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Boot Version"
+ ::= { gwEponBoardEntry 15 }
+
+
+ boardHardwareVersion OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Hardware Version"
+ ::= { gwEponBoardEntry 16 }
+
+
+ boardManufactureDate OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Manufacture Date"
+ ::= { gwEponBoardEntry 17 }
+
+
+ boardSerialNo OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "Manufacture Serial No"
+ ::= { gwEponBoardEntry 18 }
+
+
+ boardCpuUsage OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The percentage of CPU usage"
+ ::= { gwEponBoardEntry 19 }
+
+
+ boardMemoryUsage OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The percentage of used memory"
+ ::= { gwEponBoardEntry 20 }
+
+
+ boardHasSnmpAgent OBJECT-TYPE
+ SYNTAX INTEGER { notpresent ( 0 ) , snmpv1 ( 1 ) , snmpv2c ( 2 ) , snmpv3 ( 3 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the object indicates whether there is a SNMP agent running on this board."
+ ::= { gwEponBoardEntry 21 }
+
+
+ boardSnmpAgentIpAddr OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "this object indicates and configure IP address of SNMP agent running on this board. now, only GT861's IAD boards surpport this function."
+ ::= { gwEponBoardEntry 22 }
+
+
+ boardSnmpAgentReadCommunity OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 0 .. 16 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the object indicates and configure the read-only community of SNMP agent running on the board. now, only GT861's IAD boards surpport this function."
+ ::= { gwEponBoardEntry 23 }
+
+
+ boardSnmpAgentWriteCommunity OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 0 .. 16 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the object indicates and configure the read-write community of SNMP agent running on the board. now, only GT861's IAD boards surpport this function."
+ ::= { gwEponBoardEntry 24 }
+
+
+ boardTemperatureHighThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponBoardEntry 25 }
+
+
+ boardCpuUsageThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponBoardEntry 26 }
+
+
+ boardMemoryUsageThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The percentage of used memory"
+ ::= { gwEponBoardEntry 27 }
+
+
+ boardMemorySize OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponBoardEntry 28 }
+
+
+ boardTemperatureLowThresholds OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponBoardEntry 29 }
+
+ boardAdminStatus OBJECT-TYPE
+ SYNTAX INTEGER { up(1), down(2) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The desired state of the board."
+ ::= { gwEponBoardEntry 30 }
+
+
+
+ ponPortTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PonPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of pon port informations"
+ ::= { gwEponPon 1 }
+
+ ponPortEntry OBJECT-TYPE
+ SYNTAX PonPortEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing status and configure information about pon port"
+ INDEX { deviceIndex, boardIndex, ponPortIndex }
+ ::= { ponPortTable 1 }
+
+ PonPortEntry ::= SEQUENCE {
+ ponPortIndex Integer32,
+ ponPortIfIndex Integer32,
+ ponPortDot1dBasePort Integer32,
+ ponPortPartnerDev Integer32,
+ ponPortPartnerBrd Integer32,
+ ponPortPartnerPort Integer32,
+ ponPortProtectionDev Integer32,
+ ponPortProtectionBrd Integer32,
+ ponPortProtectionPort Integer32,
+ ponPortType INTEGER,
+ ponPortMaxOnu Integer32,
+ ponPortCurrOnu Integer32,
+ ponPortOperStatus INTEGER,
+ ponPortAlarmStatus BITS,
+ ponPortAlarmMask BITS,
+ ponPortMaxBW Integer32,
+ ponPortActBW Integer32,
+ ponPortRemainBW Integer32,
+ ponPortApsCtrl INTEGER,
+ ponPortApsStatus INTEGER,
+ ponPortEncryptSet INTEGER,
+ ponPortOnuLpbCtrl INTEGER,
+ ponPortOnuLpbSource INTEGER,
+ ponPortOnuLpbTime Integer32,
+ ponPortOnuLpbTxFrms Counter32,
+ ponPortOnuLpbRxFrms Counter32,
+ ponEntLogicalIndex Integer32,
+ ponEntLogicalCommunity DisplayString,
+ ponPortLinkedOnuCounter Integer32,
+ ponPortAdminStatus INTEGER,
+ ponPortReset INTEGER,
+ ponPortWindowRange INTEGER,
+ ponPortDownlinkPolicingEbl INTEGER,
+ ponPortAllOnuAlmLevel OnuAlarmLevelList
+ }
+
+
+ ponPortIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of pon port"
+ ::= { ponPortEntry 1 }
+
+
+ ponPortIfIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value equipped to the index of this pon port in the IF-MIB"
+ ::= { ponPortEntry 2 }
+
+
+ ponPortDot1dBasePort OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 65536 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "port id in the bridge, equipped to the value in the bridge 'dot1dBasePort'"
+ ::= { ponPortEntry 3 }
+
+
+ ponPortPartnerDev OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of the device which contains parter pon port"
+ ::= { ponPortEntry 4 }
+
+
+ ponPortPartnerBrd OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of board which contains parter pon port "
+ ::= { ponPortEntry 5 }
+
+
+ ponPortPartnerPort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "partnet physical pon port index"
+ ::= { ponPortEntry 6 }
+
+
+ ponPortProtectionDev OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "PON Automatic Protection Switching, index of device"
+ ::= { ponPortEntry 7 }
+
+
+ ponPortProtectionBrd OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "PON Automatic Protection Switching, index of board"
+ ::= { ponPortEntry 8 }
+
+
+ ponPortProtectionPort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "PON Automatic Protection Switching, index of pon port"
+ ::= { ponPortEntry 9 }
+
+
+ ponPortType OBJECT-TYPE
+ SYNTAX INTEGER { eponMauType1000BasePXOLT ( 1 ) , eponMauType1000BasePXONU ( 2 ) , eponMauType1000BasePX10DOLT ( 3 ) , eponMauType1000BasePX10DONU ( 4 ) , eponMauType1000BasePX10UOLT ( 5 ) , eponMauType1000BasePX10UONU ( 6 ) , eponMauType1000BasePX20DOLT ( 7 ) , eponMauType1000BasePX20DONU ( 8 ) , eponMauType1000BasePX20UOLT ( 9 ) , eponMauType1000BasePX20UONU ( 10 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "type of pon port"
+ ::= { ponPortEntry 10 }
+
+
+ ponPortMaxOnu OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The max number of supported ONUs in this PON port."
+ DEFVAL { 64 }
+ ::= { ponPortEntry 11 }
+
+
+ ponPortCurrOnu OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 64 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The current number of registered ONUs in this PON port."
+ ::= { ponPortEntry 12 }
+
+
+ ponPortOperStatus OBJECT-TYPE
+ SYNTAX INTEGER { up ( 1 ) , down ( 2 ) , unknown ( 3 ) , loop ( 4 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "operation status of unique pon port"
+ DEFVAL { down }
+ ::= { ponPortEntry 13 }
+
+
+ ponPortAlarmStatus OBJECT-TYPE
+ SYNTAX BITS { ber ( 0 ) , fer ( 1 ) , abnormal ( 2 ) , aps ( 3 ) , link ( 4 ) , onuLaserAlwaysOn ( 5 ) , onuOpticalPowerLow ( 6 ) , onuOpticalPowerHigh ( 7 ) , ponLOS ( 8 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON port alarm status, it indicates an alarm with bit=1,
+ if all bit is 0, indicates no alarm."
+ ::= { ponPortEntry 14 }
+
+
+ ponPortAlarmMask OBJECT-TYPE
+ SYNTAX BITS { ber ( 0 ) , fer ( 1 ) , abnormal ( 2 ) , aps ( 3 ) , link ( 4 ) , onuLaserAlwaysOn ( 5 ) , onuOpticalPowerLow ( 6 ) , onuOpticalPowerHigh ( 7 ) , ponLOS ( 8 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "PON Port Alarm mask, the bit=1 indicates mask."
+ ::= { ponPortEntry 15 }
+
+
+ ponPortMaxBW OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 1000000 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The max bandwidth supported, unit:KB."
+ ::= { ponPortEntry 16 }
+
+
+ ponPortActBW OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the actual bandwidth, unit:KB."
+ ::= { ponPortEntry 17 }
+
+
+ ponPortRemainBW OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 1000000 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The current available bandwidth, unit:KB."
+ DEFVAL { 1024 }
+ ::= { ponPortEntry 18 }
+
+
+ ponPortApsCtrl OBJECT-TYPE
+ SYNTAX INTEGER { disable ( 1 ) , auto ( 2 ) , force ( 3 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "PON automatic-protection-switching control."
+ DEFVAL { auto }
+ ::= { ponPortEntry 19 }
+
+
+ ponPortApsStatus OBJECT-TYPE
+ SYNTAX INTEGER { unknown ( 1 ) , active ( 2 ) , passive ( 3 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON automatic-protection-switching status."
+ DEFVAL { active }
+ ::= { ponPortEntry 20 }
+
+
+ ponPortEncryptSet OBJECT-TYPE
+ SYNTAX INTEGER { pure ( 1 ) , downstreamonly ( 2 ) , bidirectional ( 3 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Encryption set according to every ONU, this value is ignored when the pon port belongs to OLT."
+ DEFVAL { pure }
+ ::= { ponPortEntry 21 }
+
+
+ ponPortOnuLpbCtrl OBJECT-TYPE
+ SYNTAX INTEGER { noop ( 1 ) , lpbStart ( 2 ) , lpbStop ( 3 ) , inProcess ( 4 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "ONU Loopback Control, 'noop(1)' is no operation, i.e. the
+ current status is idle; 'lpbStart(2)' is start loopback,
+ only when the object value is 'noop', it can be configurated
+ 'lpbStart(2)', otherwise forbidden, and if success, its
+ value become 'inProcess(4)'; 'lpbStop(3)' is stop loopback,
+ only when the object value is 'inProcess(4)', it can be
+ configurated 'lpbStop(3)', and if success, its value become
+ 'noop(1)'; 'inProcess(4)' is loopbacking status now."
+ DEFVAL { noop }
+ ::= { ponPortEntry 22 }
+
+
+ ponPortOnuLpbSource OBJECT-TYPE
+ SYNTAX INTEGER { internal ( 1 ) , external ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Loopback Data Source, 'internal' indicates internal data source, to
+
+ use testing the link up or down, like ping function; 'external'
+
+ indicates external data source, to use testing the bandwidth of the
+
+ ONU ethernet."
+ DEFVAL { internal }
+ ::= { ponPortEntry 23 }
+
+
+ ponPortOnuLpbTime OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 2147483647 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Loopback Timeout, if the object value is 0, indicate the
+ loopback is processing at all time, if the value is none 0,
+ indicate the loopback time from begin to end, when the time
+ is end it will be auto-stopped. unit:second."
+ DEFVAL { 0 }
+ ::= { ponPortEntry 24 }
+
+
+ ponPortOnuLpbTxFrms OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The number of frames transmit by this ONU Logical Link."
+ ::= { ponPortEntry 25 }
+
+
+ ponPortOnuLpbRxFrms OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The number of frames transmit by this ONU Logical Link."
+ ::= { ponPortEntry 26 }
+
+
+ ponEntLogicalIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value of this object uniquely identifies the logical
+ entity. The value should be a small positive integer; index
+ values for different logical entities are are not
+ necessarily contiguous."
+ ::= { ponPortEntry 27 }
+
+
+ ponEntLogicalCommunity OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "An SNMPv1 or SNMPv2C community-string which can be used to
+ access detailed management information for this logical
+ entity. The agent should allow read access with this
+ community string (to an appropriate subset of all managed
+ objects) and may also return a community string based on the
+ privileges of the request used to read this object. Note
+ that an agent may return a community string with read-only
+ privileges, even if this object is accessed with a read-
+ write community string. However, the agent must take care
+ not to return a community string which allows more
+ privileges than the community string used to access this
+ object.
+ A compliant SNMP agent may wish to conserve naming scopes by
+ representing multiple logical entities in a single 'default'
+ naming scope. This is possible when the logical entities
+ represented by the same value of entLogicalCommunity have no
+ object instances in common. For example, 'bridge1' and
+ 'repeater1' may be part of the main naming scope, but at
+ least one additional community string is needed to represent
+ 'bridge2' and 'repeater2'.
+
+ Logical entities 'bridge1' and 'repeater1' would be
+ represented by sysOREntries associated with the 'default'
+ naming scope.
+
+ For agents not accessible via SNMPv1 or SNMPv2C, the value
+ of this object is the empty string. This object may also
+ contain an empty string if a community string has not yet
+ been assigned by the agent, or no community string with
+ suitable access rights can be returned for a particular SNMP
+ request.
+
+ Note that this object is deprecated. Agents which implement
+ SNMPv3 access should use the entLogicalContextEngineID and
+ entLogicalContextName objects to identify the context
+ associated with each logical entity. SNMPv3 agents may
+ return a zero-length string for this object, or may continue
+ to return a community string (e.g., tri-lingual agent
+ support)."
+ ::= { ponPortEntry 28 }
+
+
+ ponPortLinkedOnuCounter OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 64 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The current number of linked ONUs in this PON port."
+ ::= { ponPortEntry 29 }
+
+
+ ponPortAdminStatus OBJECT-TYPE
+ SYNTAX INTEGER { up ( 1 ) , down ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The desired state of the PON port."
+ ::= { ponPortEntry 30 }
+
+
+ ponPortReset OBJECT-TYPE
+ SYNTAX INTEGER { noop ( 1 ) , reset ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "PON interface reset."
+ ::= { ponPortEntry 31 }
+
+
+ ponPortWindowRange OBJECT-TYPE
+ SYNTAX INTEGER { disable ( 1 ) , wr20km ( 2 ) , wr40km ( 3 ) , wr60km ( 4 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The max window range of ONU register."
+ ::= { ponPortEntry 32 }
+
+
+ ponPortDownlinkPolicingEbl OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Config onu downlink-policer enable"
+ ::= { ponPortEntry 33 }
+
+
+ ponPortAllOnuAlmLevel OBJECT-TYPE
+ SYNTAX OnuAlarmLevelList
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "All ONUs alarm-level list."
+ ::= { ponPortEntry 34 }
+
+ ponOnuMapTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PonOnuMapEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "table of pon-ONU map"
+ ::= { gwEponPon 2 }
+
+ ponOnuMapEntry OBJECT-TYPE
+ SYNTAX PonOnuMapEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table"
+ INDEX { deviceIndex, boardIndex, ponPortIndex, mappingOnuIndex }
+ ::= { ponOnuMapTable 1 }
+
+ PonOnuMapEntry ::= SEQUENCE {
+ mappingOnuIndex Integer32,
+ onuDevIndex Integer32,
+ onuName DisplayString
+ }
+
+
+ mappingOnuIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 64 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "index of mapping onu"
+ ::= { ponOnuMapEntry 1 }
+
+
+ onuDevIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "device index of this ONU"
+ ::= { ponOnuMapEntry 2 }
+
+
+ onuName OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 255 ) )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "device name of this ONU"
+ ::= { ponOnuMapEntry 3 }
+
+ ponPerfMonTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PonPerfMonEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of pon performence"
+ ::= { gwEponPon 3 }
+
+ ponPerfMonEntry OBJECT-TYPE
+ SYNTAX PonPerfMonEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing pon performence monitor information ."
+ INDEX { deviceIndex, boardIndex, ponPortIndex }
+ ::= { ponPerfMonTable 1 }
+
+ PonPerfMonEntry ::= SEQUENCE {
+ ponPerfBER Counter32,
+ ponPerfFER Counter32,
+ ponPerfBerAlmEnable INTEGER,
+ ponPerfFerAlmEnable INTEGER,
+ ponPerfUpBandwidth Counter32,
+ ponPerfDownBandwidth Counter32
+ }
+
+
+ ponPerfBER OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "byte error rate of specified pon port upstream, UNIT: 10E-6"
+ ::= { ponPerfMonEntry 1 }
+
+
+ ponPerfFER OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "frame error rate of specified pon port downstream, UNIT: 10E-6"
+ ::= { ponPerfMonEntry 4 }
+
+
+ ponPerfBerAlmEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates whether enable pon performence BER alarm"
+ DEFVAL { enable }
+ ::= { ponPerfMonEntry 5 }
+
+
+ ponPerfFerAlmEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates whether enable pon performence FER alarm"
+ DEFVAL { enable }
+ ::= { ponPerfMonEntry 6 }
+
+
+ ponPerfUpBandwidth OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the value indicates upstream bandwidth on this port"
+ ::= { ponPerfMonEntry 7 }
+
+
+ ponPerfDownBandwidth OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "the value indicates downstream bandwidth on this port"
+ ::= { ponPerfMonEntry 8 }
+
+ ponHisCtrlTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PonHisCtrlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of pon performence"
+ ::= { gwEponPon 4 }
+
+ ponHisCtrlEntry OBJECT-TYPE
+ SYNTAX PonHisCtrlEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing pon performence monitor information ."
+ INDEX { deviceIndex, boardIndex, ponPortIndex }
+ ::= { ponHisCtrlTable 1 }
+
+ PonHisCtrlEntry ::= SEQUENCE {
+ ponHis15MinuteEnable INTEGER,
+ ponHis24HourEnable INTEGER
+ }
+
+
+ ponHis15MinuteEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates whether enable history statistic with interval 15 minutes"
+ DEFVAL { disable }
+ ::= { ponHisCtrlEntry 1 }
+
+
+ ponHis24HourEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The value indicates whether enable history statistic with interval 24 hours"
+ DEFVAL { disable }
+ ::= { ponHisCtrlEntry 2 }
+
+ ponBERThreashold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 8 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Ber measurement threshold, the value defination: 0=1e-0=1, 1=1e-1=0.1,......"
+ ::= { gwEponPon 5 }
+
+ ponFERThreashold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 10 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Fer measurement threshold, the value defination: 0=1.00e-0=1, 1=1.00e-1=0.1,......"
+ ::= { gwEponPon 6 }
+
+ gwEponPonCtcExt OBJECT IDENTIFIER
+ ::= { gwEponPon 7 }
+
+ onuAuthEnable OBJECT-TYPE
+ SYNTAX INTEGER { disable ( 1 ) , auth_new_only ( 2 ) , auth_all ( 3 ) }
+ MAX-ACCESS read-write
+ STATUS deprecated
+ DESCRIPTION ""
+ ::= { gwEponPonOnuAuth 1 }
+
+ onuAuthTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OnuAuthEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "The table of ONU authentication based MAC address."
+ ::= { gwEponPonOnuAuth 2 }
+
+ onuAuthEntry OBJECT-TYPE
+ SYNTAX OnuAuthEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table"
+ INDEX { eponBoardIndex, eponPonPortIndex, onuAuthIndex }
+ ::= { onuAuthTable 1 }
+
+ OnuAuthEntry ::= SEQUENCE {
+ eponBoardIndex Integer32,
+ eponPonPortIndex Integer32,
+ onuAuthIndex Integer32,
+ onuAuthMacAddress MacAddress,
+ onuAuthRowStatus RowStatus
+ }
+
+
+ eponBoardIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The epon board index"
+ ::= { onuAuthEntry 1 }
+
+
+ eponPonPortIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON port index"
+ ::= { onuAuthEntry 2 }
+
+
+ onuAuthIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "MAC address index"
+ ::= { onuAuthEntry 3 }
+
+
+ onuAuthMacAddress OBJECT-TYPE
+ SYNTAX MacAddress
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "MAC address"
+ ::= { onuAuthEntry 4 }
+
+
+ onuAuthRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "This object indicates the status of this entry."
+ ::= { onuAuthEntry 5 }
+
+ onuToPonBindingEnable OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponPonOnuAuth 3 }
+
+ onuAuthModeTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OnuAuthModeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "The table of ONU authentication Mode."
+ ::= { gwEponPonOnuAuth 4 }
+
+ onuAuthModeEntry OBJECT-TYPE
+ SYNTAX OnuAuthModeEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table"
+ INDEX { onuAuthModeBrdIdx, onuAuthModePonIdx }
+ ::= { onuAuthModeTable 1 }
+
+ OnuAuthModeEntry ::= SEQUENCE {
+ onuAuthModeBrdIdx Integer32,
+ onuAuthModePonIdx Integer32,
+ onuAuthMode INTEGER,
+ onuAuthEnableForPon INTEGER,
+ onuAuthEntryReorganize INTEGER
+ }
+
+
+ onuAuthModeBrdIdx OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthModeEntry 1 }
+
+
+ onuAuthModePonIdx OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthModeEntry 2 }
+
+
+ onuAuthMode OBJECT-TYPE
+ SYNTAX INTEGER { macAddr(1), loid(2), hybrid(3), loidNoPwd(4), hybridNoPwd(5), disable(6) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "'macAddr(1)' : based ONU MAC address.
+ 'loid(2)' : based ONU logical ID.
+ 'hybrid(3)' : based both macAddr and loid.
+ 'loidNoPwd(4) : based loid, but not check password.
+ 'hybridNoPwd(5)' : based hybrid, but not check password."
+ ::= { onuAuthModeEntry 3 }
+
+
+ onuAuthEnableForPon OBJECT-TYPE
+ SYNTAX INTEGER { disable ( 1 ) , auth_new_only ( 2 ) , auth_all ( 3 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Description"
+ ::= { onuAuthModeEntry 4 }
+
+ onuAuthEntryReorganize OBJECT-TYPE
+ SYNTAX INTEGER{ organize(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "For PonPort"
+ ::= { onuAuthModeEntry 5 }
+
+ onuAuthEntryReorganizeForAll OBJECT-TYPE
+ SYNTAX INTEGER { organize(1) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponPonOnuAuth 9 }
+
+
+ onuAuthLoidTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OnuAuthLoidEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "The table of ONU authentication based LOID(Logical ONU ID)."
+ ::= { gwEponPonOnuAuth 5 }
+
+ onuAuthLoidEntry OBJECT-TYPE
+ SYNTAX OnuAuthLoidEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table"
+ INDEX { onuAuthLoidBrdIdx, onuAuthLoidPonIdx, onuAuthLoidIdx }
+ ::= { onuAuthLoidTable 1 }
+
+ OnuAuthLoidEntry ::= SEQUENCE {
+ onuAuthLoidBrdIdx Integer32,
+ onuAuthLoidPonIdx Integer32,
+ onuAuthLoidIdx Integer32,
+ onuAuthLoid DisplayString,
+ onuAuthLoidPassword DisplayString,
+ onuAuthLoidDevIdx Integer32,
+ onuAuthLoidRowStatus RowStatus
+ }
+
+
+ onuAuthLoidBrdIdx OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthLoidEntry 1 }
+
+
+ onuAuthLoidPonIdx OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthLoidEntry 2 }
+
+
+ onuAuthLoidIdx OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 128 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthLoidEntry 3 }
+
+
+ onuAuthLoid OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 24 ) )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthLoidEntry 4 }
+
+
+ onuAuthLoidPassword OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 12 ) )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthLoidEntry 5 }
+
+
+ onuAuthLoidDevIdx OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION ""
+ ::= { onuAuthLoidEntry 6 }
+
+
+ onuAuthLoidRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "This object indicates the status of this entry."
+ ::= { onuAuthLoidEntry 7 }
+
+ onuUnauthenticatedTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF OnuAuth1Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "The table of unauthenticated ONUs based MAC address."
+ ::= { gwEponPonOnuAuth 6 }
+
+ onuUnauthenticatedEntry OBJECT-TYPE
+ SYNTAX OnuAuth1Entry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table"
+ INDEX { eponUnauthenticatedBoardIndex, eponUnauthenticatedPonPortIndex, onuUnauthenticatedIndex }
+ ::= { onuUnauthenticatedTable 1 }
+
+ OnuAuth1Entry ::= SEQUENCE {
+ eponUnauthenticatedBoardIndex Integer32,
+ eponUnauthenticatedPonPortIndex Integer32,
+ onuUnauthenticatedIndex Integer32,
+ onuUnauthenticatedMacAddress MacAddress
+ }
+
+
+ eponUnauthenticatedBoardIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The epon board index"
+ ::= { onuUnauthenticatedEntry 1 }
+
+
+ eponUnauthenticatedPonPortIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "PON port index"
+ ::= { onuUnauthenticatedEntry 2 }
+
+
+ onuUnauthenticatedIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "MAC address index"
+ ::= { onuUnauthenticatedEntry 3 }
+
+
+ onuUnauthenticatedMacAddress OBJECT-TYPE
+ SYNTAX MacAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "MAC address"
+ ::= { onuUnauthenticatedEntry 4 }
+
+ ponLlidTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PonLlidEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of the pon llid information"
+ ::= { gwEponLlid 1 }
+
+ ponLlidEntry OBJECT-TYPE
+ SYNTAX PonLlidEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "An entry in the table, containing status or configure information"
+ INDEX { deviceIndex, ponLlidIndex }
+ ::= { ponLlidTable 1 }
+
+ PonLlidEntry ::= SEQUENCE {
+ ponLlidIndex Integer32,
+ ponLlidType INTEGER,
+ ponLlidOltBoard Integer32,
+ ponLlidOltPort Integer32,
+ ponLlidOltPortIfIndex Integer32,
+ ponLlidOnuPortIfIndex Integer32,
+ ponLlidOnuBoard Integer32,
+ ponLlidOnuPort Integer32,
+ ponLlidLLID Integer32,
+ ponLlidIfIndex Integer32,
+ ponLlidUpFixedBW Integer32,
+ ponLlidDownFixedBW Integer32,
+ ponLlidDesc DisplayString,
+ ponLlidSurportMacNum Integer32,
+ ponLlidOnuMacAddress MacAddress,
+ ponLlidRowStatus RowStatus,
+ ponLlidUpBWClass Integer32,
+ ponLlidUpDelay INTEGER,
+ ponLlidUpAssuredBW Integer32,
+ ponLlidUpBesteffortBW Integer32,
+ ponLlidDownBWClass Integer32,
+ ponLlidDownDelay INTEGER,
+ ponLlidDownAssuredBW Integer32,
+ ponLlidDownBesteffortBW Integer32,
+ ponLlidCtcFecAbility INTEGER,
+ ponLlidCtcFecMode INTEGER,
+ ponLlidCtcEncrypCtrl INTEGER,
+ ponLlidCtcDbaQueSetNum Integer32,
+ ponLlidCtcDbaQueSetCfgStatus INTEGER
+ }
+
+
+ ponLlidIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The pon logic link index"
+ ::= { ponLlidEntry 1 }
+
+
+ ponLlidType OBJECT-TYPE
+ SYNTAX INTEGER { unkown ( 0 ) , ethlink ( 1 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "type of pon logic link"
+ ::= { ponLlidEntry 2 }
+
+
+ ponLlidOltBoard OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "The value equals to entPhysicalIndex in ENTITY-MIB"
+ ::= { ponLlidEntry 3 }
+
+
+ ponLlidOltPort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "the pon port id "
+ ::= { ponLlidEntry 4 }
+
+
+ ponLlidOltPortIfIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "ifIndex of the olt port "
+ ::= { ponLlidEntry 5 }
+
+
+ ponLlidOnuPortIfIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "ifIndex of the onu port "
+ ::= { ponLlidEntry 6 }
+
+
+ ponLlidOnuBoard OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "The value indicates board id for this LLID"
+ ::= { ponLlidEntry 7 }
+
+
+ ponLlidOnuPort OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "The value indicates onu port for this LLID"
+ ::= { ponLlidEntry 8 }
+
+
+ ponLlidLLID OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS obsolete
+ DESCRIPTION "the vlaue of LLID "
+ ::= { ponLlidEntry 9 }
+
+
+ ponLlidIfIndex OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 2147483647 )
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The value equals to ''ifIndex'' in IF-MIB according this object'"
+ ::= { ponLlidEntry 10 }
+
+
+ ponLlidUpFixedBW OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 1000000 )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "upstream fixed bandwidth about this pon port, unit:KBps"
+ ::= { ponLlidEntry 11 }
+
+
+ ponLlidDownFixedBW OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 1000000 )
+ MAX-ACCESS read-write
+ STATUS obsolete
+ DESCRIPTION "upstream fixed bandwidth about this pon port, unit:KBps, not support"
+ ::= { ponLlidEntry 12 }
+
+
+ ponLlidDesc OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "description of the LLID"
+ ::= { ponLlidEntry 13 }
+
+
+ ponLlidSurportMacNum OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 8192 )
+ MAX-ACCESS read-create
+ STATUS deprecated
+ DESCRIPTION "The value of maximum MAC addresses"
+ ::= { ponLlidEntry 14 }
+
+
+ ponLlidOnuMacAddress OBJECT-TYPE
+ SYNTAX MacAddress ( SIZE ( 6 ) )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "The value indicates and confgure onu MAC address"
+ ::= { ponLlidEntry 15 }
+
+
+ ponLlidRowStatus OBJECT-TYPE
+ SYNTAX RowStatus
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "row status of this entry"
+ ::= { ponLlidEntry 16 }
+
+
+ ponLlidUpBWClass OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 7 )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "upstream class level for this pon port bandwidth allocation"
+ ::= { ponLlidEntry 17 }
+
+
+ ponLlidUpDelay OBJECT-TYPE
+ SYNTAX INTEGER { low ( 1 ) , high ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS deprecated
+ DESCRIPTION "upstream delay level for this pon port bandwidth allocation"
+ ::= { ponLlidEntry 18 }
+
+
+ ponLlidUpAssuredBW OBJECT-TYPE
+ SYNTAX Integer32 ( 64 .. 1000000 )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "upstream assured bandwidth about this pon port, unit:KBps"
+ ::= { ponLlidEntry 19 }
+
+
+ ponLlidUpBesteffortBW OBJECT-TYPE
+ SYNTAX Integer32 ( 64 .. 1000000 )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "upstream best-effort bandwidth about this pon port, unit:KBps"
+ ::= { ponLlidEntry 20 }
+
+
+ ponLlidDownBWClass OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 7 )
+ MAX-ACCESS read-write
+ STATUS obsolete
+ DESCRIPTION "upstream class level for this pon port bandwidth allocation"
+ ::= { ponLlidEntry 21 }
+
+
+ ponLlidDownDelay OBJECT-TYPE
+ SYNTAX INTEGER { low ( 1 ) , high ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS obsolete
+ DESCRIPTION "upstream delay level for this pon port bandwidth allocation"
+ ::= { ponLlidEntry 22 }
+
+
+ ponLlidDownAssuredBW OBJECT-TYPE
+ SYNTAX Integer32 ( 64 .. 1000000 )
+ MAX-ACCESS read-create
+ STATUS current
+ DESCRIPTION "downstream assured bandwidth about this pon port, unit:KBps"
+ ::= { ponLlidEntry 23 }
+
+
+ ponLlidDownBesteffortBW OBJECT-TYPE
+ SYNTAX Integer32 ( 64 .. 1000000 )
+ MAX-ACCESS read-write
+ STATUS obsolete
+ DESCRIPTION "downstream best-effort bandwidth about this pon port, unit:KBps"
+ ::= { ponLlidEntry 24 }
+
+
+ ponLlidCtcFecAbility OBJECT-TYPE
+ SYNTAX INTEGER { unknown ( 1 ) , supported ( 2 ) , notSupported ( 3 ) }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "FEC ability"
+ ::= { ponLlidEntry 25 }
+
+
+ ponLlidCtcFecMode OBJECT-TYPE
+ SYNTAX INTEGER { unknown ( 1 ) , enable ( 2 ) , disable ( 3 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "FEC mode, unknown(1)-initializing, true state not yet known.
+ enable(2)-activate FEC. disable(3)-deactivate FEC."
+ ::= { ponLlidEntry 26 }
+
+
+ ponLlidCtcEncrypCtrl OBJECT-TYPE
+ SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "CTC encryption control"
+ ::= { ponLlidEntry 27 }
+
+
+ ponLlidCtcDbaQueSetNum OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 8 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "DBA queue set number"
+ ::= { ponLlidEntry 28 }
+
+
+ ponLlidCtcDbaQueSetCfgStatus OBJECT-TYPE
+ SYNTAX INTEGER { noop ( 1 ) , get ( 2 ) , set ( 3 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "The Queue sets configuration status, this object value is always 'noop(1)'
+ when read, 'get(2)' will refresh the object of ponLlidCtcDbaQueSetNum and
+ the table of ponLlidCtcDbaQueSetTable, 'set(3)' will config the data,
+ include ponLlidCtcDbaQueSetNum and ponLlidCtcDbaQueSetTable. 'get(2)' and
+ 'set(3) are only write value."
+ ::= { ponLlidEntry 29 }
+
+ ponLlidCtcDbaQueSetTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF PonLlidCtcDbaQueSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "Table of the pon llid DBA information"
+ ::= { gwEponLlid 2 }
+
+ ponLlidCtcDbaQueSetEntry OBJECT-TYPE
+ SYNTAX PonLlidCtcDbaQueSetEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION "CTC DBA entry"
+ INDEX { deviceIndex, ponLlidIndex, ponLlidCtcDbaQueSetIndex }
+ ::= { ponLlidCtcDbaQueSetTable 1 }
+
+ PonLlidCtcDbaQueSetEntry ::= SEQUENCE {
+ ponLlidCtcDbaQueSetIndex Integer32,
+ ponLlidCtcDbaReportBitmap BITS,
+ ponLlidCtcDbaQueue0Threshold Integer32,
+ ponLlidCtcDbaQueue1Threshold Integer32,
+ ponLlidCtcDbaQueue2Threshold Integer32,
+ ponLlidCtcDbaQueue3Threshold Integer32,
+ ponLlidCtcDbaQueue4Threshold Integer32,
+ ponLlidCtcDbaQueue5Threshold Integer32,
+ ponLlidCtcDbaQueue6Threshold Integer32,
+ ponLlidCtcDbaQueue7Threshold Integer32
+ }
+
+
+ ponLlidCtcDbaQueSetIndex OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The DBA queue-sets index"
+ ::= { ponLlidCtcDbaQueSetEntry 1 }
+
+
+ ponLlidCtcDbaReportBitmap OBJECT-TYPE
+ SYNTAX BITS { queue0 ( 0 ) , queue1 ( 1 ) , queue2 ( 2 ) , queue3 ( 3 ) , queue4 ( 4 ) , queue5 ( 5 ) , queue6 ( 6 ) , queue7 ( 7 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "bit=0 - queue x report is not present,
+ bit=1 - queue x report is present"
+ ::= { ponLlidCtcDbaQueSetEntry 2 }
+
+
+ ponLlidCtcDbaQueue0Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue0 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 3 }
+
+
+ ponLlidCtcDbaQueue1Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue1 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 4 }
+
+
+ ponLlidCtcDbaQueue2Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue2 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 5 }
+
+
+ ponLlidCtcDbaQueue3Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue3 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 6 }
+
+
+ ponLlidCtcDbaQueue4Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue4 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 7 }
+
+
+ ponLlidCtcDbaQueue5Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue5 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 8 }
+
+
+ ponLlidCtcDbaQueue6Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue6 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 9 }
+
+
+ ponLlidCtcDbaQueue7Threshold OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 65535 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Queue7 threshold"
+ ::= { ponLlidCtcDbaQueSetEntry 10 }
+
+ onuNewRegSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion }
+ STATUS current
+ DESCRIPTION "A new ONU register success."
+ ::= { gwDevTrapGroup 1 }
+
+ onuReregSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion }
+ STATUS current
+ DESCRIPTION "An ONU reregister success."
+ ::= { gwDevTrapGroup 2 }
+
+ onuNotPresent NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "An ONU is not present alarm"
+ ::= { gwDevTrapGroup 3 }
+
+ devPowerOff NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION " device Power Off Alarm"
+ ::= { gwDevTrapGroup 4 }
+
+ devPowerOn NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
+ STATUS current
+ DESCRIPTION " device Power On Alarm"
+ ::= { gwDevTrapGroup 5 }
+
+ cfgDataSaveSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "saving config data to flash successfully"
+ ::= { gwDevTrapGroup 6 }
+
+ cfgDataSaveFail NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "saving config data to flash unsuccessfully"
+ ::= { gwDevTrapGroup 7 }
+
+ flashClearSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "clear config data successfully"
+ ::= { gwDevTrapGroup 8 }
+
+ flashClearFail NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "clear config data unsuccessfully"
+ ::= { gwDevTrapGroup 9 }
+
+ softwareUpdateSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "update software successfully"
+ ::= { gwDevTrapGroup 10 }
+
+ softwareUpdateFail NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "update software unsuccessfully"
+ ::= { gwDevTrapGroup 11 }
+
+ firmwareUpdateSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "firmware update successfully"
+ ::= { gwDevTrapGroup 12 }
+
+ firmwareUpdateFail NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "update firmware unsuccessfully"
+ ::= { gwDevTrapGroup 13 }
+
+ cfgDataBackupSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "backup configuration data to NMS successfully."
+ ::= { gwDevTrapGroup 14 }
+
+ cfgDataBackupFail NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "backup configuration data to NMS unsuccessfully."
+ ::= { gwDevTrapGroup 15 }
+
+ cfgDataRestoreSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "restore configuration data from NMS successfully."
+ ::= { gwDevTrapGroup 16 }
+
+ cfgDataRestoreFail NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "restore configuration data from NMS unsuccessfully."
+ ::= { gwDevTrapGroup 17 }
+
+ autoProtectSwitch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "Auto Protect Switch(APS) occurs"
+ ::= { gwDevTrapGroup 18 }
+
+ cpuUsageFactorHigh NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "high cpu usage factor alarm"
+ ::= { gwDevTrapGroup 19 }
+
+ ponPortBERAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortBER }
+ STATUS current
+ DESCRIPTION "pon port BER alarm"
+ ::= { gwDevTrapGroup 20 }
+
+ ponPortBERAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortBER }
+ STATUS current
+ DESCRIPTION "pon port BER alarm clear"
+ ::= { gwDevTrapGroup 21 }
+
+ ponPortFERAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortFER }
+ STATUS current
+ DESCRIPTION "pon port FER alarm"
+ ::= { gwDevTrapGroup 22 }
+
+ ponPortFERAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortFER }
+ STATUS current
+ DESCRIPTION "pon port FER alarm clear"
+ ::= { gwDevTrapGroup 23 }
+
+ llidActBWExceeding NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponLlidIndex }
+ STATUS current
+ DESCRIPTION "llid bandwidth exceed the limit"
+ ::= { gwDevTrapGroup 24 }
+
+ llidActBWExceedingClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponLlidIndex }
+ STATUS current
+ DESCRIPTION "llid bandwidth return to appropriate value"
+ ::= { gwDevTrapGroup 25 }
+
+ devBoardInterted NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, curBoardType }
+ STATUS current
+ DESCRIPTION "insert a board"
+ ::= { gwDevTrapGroup 26 }
+
+ devBoardPull NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, curBoardType }
+ STATUS current
+ DESCRIPTION "pull a board out"
+ ::= { gwDevTrapGroup 27 }
+
+ powerOffAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "power OFF alarm"
+ ::= { gwDevTrapGroup 30 }
+
+ powerOnAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "power ON alarm"
+ ::= { gwDevTrapGroup 31 }
+
+ boardTemperatureHigh NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "board temperature high alarm"
+ ::= { gwDevTrapGroup 32 }
+
+ boardTemperatureHighClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "board temperature high alarm clear"
+ ::= { gwDevTrapGroup 33 }
+
+ ponBoardReset NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "PON board reset event occur"
+ ::= { gwDevTrapGroup 34 }
+
+ swBoardProtectedSwitch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "sw board protected switch event occur"
+ ::= { gwDevTrapGroup 35 }
+
+ ponPortAbnormal NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "abnormal status on PON port occur"
+ ::= { gwDevTrapGroup 36 }
+
+ onuRegisterConflict NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "onu register conflict"
+ ::= { gwDevTrapGroup 37 }
+
+ firmwareLoadSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "firmware load successfully"
+ ::= { gwDevTrapGroup 38 }
+
+ firmwareLoadFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "firmware load fail"
+ ::= { gwDevTrapGroup 39 }
+
+ dbaUpdateSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "update dba successfully"
+ ::= { gwDevTrapGroup 40 }
+
+ dbaUpdateFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "update dba faul"
+ ::= { gwDevTrapGroup 41 }
+
+ dbaLoadSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "load dba successfully"
+ ::= { gwDevTrapGroup 42 }
+
+ dbaLoadFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "load dba fail"
+ ::= { gwDevTrapGroup 43 }
+
+ ponToEthLinkdown NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "."
+ ::= { gwDevTrapGroup 44 }
+
+ ponToEthLinkup NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION "."
+ ::= { gwDevTrapGroup 45 }
+
+ onuSoftwareLoadSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "load onu software successfully"
+ ::= { gwDevTrapGroup 46 }
+
+ onuSoftwareLoadFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "load onu software fail"
+ ::= { gwDevTrapGroup 47 }
+
+ ethLinkdown NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port linkdown alarm."
+ ::= { gwDevTrapGroup 54 }
+
+ ethLinkup NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port linkup alarm."
+ ::= { gwDevTrapGroup 55 }
+
+ bootUpdateSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "boot firmware update successfully notification"
+ ::= { gwDevTrapGroup 56 }
+
+ bootUpdateFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "boot firmware update fail notification"
+ ::= { gwDevTrapGroup 57 }
+
+ batFileBackupSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "bat file backup successfully notification"
+ ::= { gwDevTrapGroup 58 }
+
+ batFileBackupFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "bat file backup fail notification"
+ ::= { gwDevTrapGroup 59 }
+
+ batFileRestoreSuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "bat file restore successfully notification"
+ ::= { gwDevTrapGroup 60 }
+
+ batFileRestoreFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "bat file restore fail notification"
+ ::= { gwDevTrapGroup 61 }
+
+ onuRegAuthFailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex, deviceMacAddress }
+ STATUS current
+ DESCRIPTION "Illegal ONU register."
+ ::= { gwDevTrapGroup 62 }
+
+ deviceColdStart NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
+ STATUS current
+ DESCRIPTION "Only report OLT cold start. this trap is not sent if a devPowerOn trap
+ is sent for the same restart. Implementation of this trap is optional."
+ ::= { gwDevTrapGroup 63 }
+
+ deviceWarmStart NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
+ STATUS current
+ DESCRIPTION "Only report OLT warm start."
+ ::= { gwDevTrapGroup 64 }
+
+ deviceExceptionRestart NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
+ STATUS current
+ DESCRIPTION "Only report OLT restart because of exception."
+ ::= { gwDevTrapGroup 65 }
+
+ ethLoopAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port loop alarm."
+ ::= { gwDevTrapGroup 84 }
+
+ ethLoopAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port loop clear."
+ ::= { gwDevTrapGroup 85 }
+
+ onuLoopAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "Onu loop alarm."
+ ::= { gwDevTrapGroup 86 }
+
+ onuLoopAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "Onu loop clear."
+ ::= { gwDevTrapGroup 87 }
+
+ backboneEthLinkdown NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port linkdown alarm."
+ ::= { gwDevTrapGroup 88 }
+
+ backboneEthLinkup NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port linkup alarm."
+ ::= { gwDevTrapGroup 89 }
+
+ boardCpuUsageAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "cpu usage factor alarm"
+ ::= { gwDevTrapGroup 116 }
+
+ boardCpuUsageAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION "cpu usage factor alarm clear"
+ ::= { gwDevTrapGroup 117 }
+
+ boardMemoryUsageAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 118 }
+
+ boardMemoryUsageAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 119 }
+
+ ponPortFullAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 132 }
+
+ ponPortAbnormalClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 133 }
+
+ ethPortBroadCastFloodControl NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port broadcast flood alarm."
+ ::= { gwDevTrapGroup 136 }
+
+ ethPortBroadCastFloodControlClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ethPortIndex }
+ STATUS current
+ DESCRIPTION "Ethernet port broadcast flood alarm clear."
+ ::= { gwDevTrapGroup 137 }
+
+ sysfileUploadsuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 138 }
+
+ sysfileUploadfailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 139 }
+
+ sysfileDownloadsuccess NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 140 }
+
+ sysfileDownloadfailure NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 141 }
+
+ ponPortLosAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 142 }
+
+ ponPortLosAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 143 }
+
+ ponFWVersionMismatch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 144 }
+
+ ponFWVersionMatch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 145 }
+
+ ponDBAVersionMismatch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 146 }
+
+ ponDBAVersionMatch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 147 }
+
+ ponSFPTypeMismatch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 148 }
+
+ ponSFPTypeMitch NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 149 }
+
+ ponPortBRASAlarm NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex, brasMacAddress }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 150 }
+
+ ponPortBRASAlarmClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex, brasMacAddress }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 151 }
+
+ ponPortUpNoTraffic NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 152 }
+
+ ponPortUpNoTrafficClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex, boardIndex, ponPortIndex }
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwDevTrapGroup 153 }
+
+ onuDeletingNotify NOTIFICATION-TYPE
+ OBJECTS { onuPredefPonSlotIdx, onuPredefPonPortIdx, onuPredefOnuIdx, onuPredefOnuMacAddr, onuPredefOnuDevIdx }
+ STATUS current
+ DESCRIPTION "Illegal ONU register."
+ ::= { gwDevTrapGroup 154 }
+
+ onuMacTableOverFlow NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "onu mac table over flow."
+ ::= { gwDevTrapGroup 208 }
+
+ onuMacTableOverFlowClear NOTIFICATION-TYPE
+ OBJECTS { deviceIndex }
+ STATUS current
+ DESCRIPTION "onu mac table over flow clear."
+ ::= { gwDevTrapGroup 209 }
+
+ onuNotPresentAlmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 1 }
+
+ devPowerOffAlmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 2 }
+
+ ponPortBERAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 3 }
+
+ ponPortFERAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 4 }
+
+ llidActBWExceedingAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 5 }
+
+ powerOffAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 6 }
+
+ boardTemperatureHighAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 7 }
+
+ devBoardPullAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 8 }
+
+ ethLinkdownAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 9 }
+
+ devFanAlarmAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 10 }
+
+ ethFlrAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 11 }
+
+ ethFerAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 12 }
+
+ ethTransmittalIntermitAlarmLevel OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 4 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the value indicates an alarm level is set on this event"
+ ::= { gwAlarmLevelGroup 13 }
+
+ gwEponPonCtcExtOamDiscoveryTiming OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 2550 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "extended oam discovery timing, unit: ms"
+ ::= { gwEponPonCtcExt 1 }
+
+ gwEponPonCtcExtOamCtcOui OBJECT-TYPE
+ SYNTAX DisplayString ( SIZE ( 16 ) )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION ""
+ ::= { gwEponPonCtcExt 2 }
+
+ gwEponPonCtcExtOamCtcVer OBJECT-TYPE
+ SYNTAX Integer32 ( 1 .. 255 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "CTC ext-oam version"
+ ::= { gwEponPonCtcExt 3 }
+
+ gwEponPonCtcEncrypUpdKeyTime OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 255 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Update key time, unit: s"
+ ::= { gwEponPonCtcExt 4 }
+
+ gwEponPonCtcEncrypNoReplyTimeout OBJECT-TYPE
+ SYNTAX Integer32 ( 0 .. 2550 )
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "No reply timeout, unit: ms"
+ ::= { gwEponPonCtcExt 5 }
+
+ gwEponPonCtcEncrypTimingThreshold OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "Encryption timing threshold"
+ ::= { gwEponPonCtcExt 6 }
+
+gwConsoleBaudRate OBJECT-TYPE
+ SYNTAX INTEGER { b300 ( 1 ) , b600 ( 2 ) , b1200 ( 3 ) , b2400 ( 4 ) , b4800 ( 5 ) , b9600 ( 6 ) , b19200 ( 7 ) , b38400 ( 8 ) , b115200 ( 9 ) , b230400 ( 10 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the baud rate for the system console"
+ ::= { gwConsoleCfgGroup 1 }
+
+
+ gwConsoleDataBits OBJECT-TYPE
+ SYNTAX INTEGER { b5 ( 5 ) , b6 ( 6 ) , b7 ( 7 ) , b8 ( 8 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the data bits length for the system console"
+ ::= { gwConsoleCfgGroup 2 }
+
+
+ gwConsoleStopBitSet OBJECT-TYPE
+ SYNTAX INTEGER { sb1 ( 1 ) , sb2 ( 2 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the stop bits for the system console"
+ ::= { gwConsoleCfgGroup 3 }
+
+
+ gwConsoleParitySet OBJECT-TYPE
+ SYNTAX INTEGER { none ( 1 ) , even ( 2 ) , odd ( 3 ) , space ( 4 ) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the parity set for the system console"
+ ::= { gwConsoleCfgGroup 4 }
+
+ gwConsoleFlowCtrlSet OBJECT-TYPE
+ SYNTAX INTEGER { enable( 1 ) , disable(2) }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION "the flow control set for the system console"
+ ::= { gwConsoleCfgGroup 5 }
+
+END
diff --git a/mibs/gwd/GWTT-SMI b/mibs/gwd/GWTT-SMI
new file mode 100644
index 0000000000..fe6ab8a586
--- /dev/null
+++ b/mibs/gwd/GWTT-SMI
@@ -0,0 +1,14 @@
+GWTT-SMI DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ enterprises
+ FROM RFC1155-SMI;
+
+ gwtt OBJECT IDENTIFIER ::= { enterprises 10072 }
+
+ chips OBJECT IDENTIFIER ::= { gwtt 1 } -- chip
+ devices OBJECT IDENTIFIER ::= { gwtt 2 } -- device
+ cards OBJECT IDENTIFIER ::= { gwtt 3 } -- card
+ snmpProxy OBJECT IDENTIFIER ::= { gwtt 4 } -- snmp proxy
+
+END
\ No newline at end of file
diff --git a/tests/data/gwd.json b/tests/data/gwd.json
new file mode 100644
index 0000000000..8ec748fd47
--- /dev/null
+++ b/tests/data/gwd.json
@@ -0,0 +1,4119 @@
+{
+ "os": {
+ "discovery": {
+ "devices": [
+ {
+ "sysName": "",
+ "sysObjectID": ".1.3.6.1.4.1.10072.2.20",
+ "sysDescr": "EasyPath Ethernet-PON",
+ "sysContact": null,
+ "version": null,
+ "hardware": null,
+ "features": null,
+ "os": "gwd",
+ "type": "network",
+ "serial": null,
+ "icon": "gwd.png",
+ "location": null
+ }
+ ]
+ },
+ "poller": {
+ "devices": [
+ {
+ "sysName": "",
+ "sysObjectID": ".1.3.6.1.4.1.10072.2.20",
+ "sysDescr": "EasyPath Ethernet-PON",
+ "sysContact": "",
+ "version": "V1R12B192sp18",
+ "hardware": "V2.3B1",
+ "features": null,
+ "os": "gwd",
+ "type": "network",
+ "serial": "4PA0S16091000090",
+ "icon": "gwd.png",
+ "location": ""
+ }
+ ]
+ }
+ },
+ "ports": {
+ "discovery": {
+ "ports": [
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "to OLT-Kerro",
+ "ifName": "eth1/1",
+ "portName": null,
+ "ifIndex": 67375104,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "eth1/1",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/2",
+ "ifName": "eth1/2",
+ "portName": null,
+ "ifIndex": 67379200,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "hdh1822",
+ "ifAlias": "eth1/2",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/3",
+ "ifName": "eth1/3",
+ "portName": null,
+ "ifIndex": 67383296,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "hdh1822",
+ "ifAlias": "eth1/3",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/4",
+ "ifName": "eth1/4",
+ "portName": null,
+ "ifIndex": 67387392,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "hdh1822",
+ "ifAlias": "eth1/4",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/5",
+ "ifName": "pon1/5",
+ "portName": null,
+ "ifIndex": 67391488,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/5",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/6",
+ "ifName": "pon1/6",
+ "portName": null,
+ "ifIndex": 67395584,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/6",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/7",
+ "ifName": "pon1/7",
+ "portName": null,
+ "ifIndex": 67399680,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/7",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/8",
+ "ifName": "pon1/8",
+ "portName": null,
+ "ifIndex": 67403776,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/8",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/9",
+ "ifName": "pon1/9",
+ "portName": null,
+ "ifIndex": 67407872,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/9",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/10",
+ "ifName": "pon1/10",
+ "portName": null,
+ "ifIndex": 67411968,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/10",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/11",
+ "ifName": "pon1/11",
+ "portName": null,
+ "ifIndex": 67416064,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/11",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/12",
+ "ifName": "pon1/12",
+ "portName": null,
+ "ifIndex": 67420160,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/12",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/13",
+ "ifName": "pon1/13",
+ "portName": null,
+ "ifIndex": 67424256,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/13",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/14",
+ "ifName": "pon1/14",
+ "portName": null,
+ "ifIndex": 67428352,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/14",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/15",
+ "ifName": "pon1/15",
+ "portName": null,
+ "ifIndex": 67432448,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/15",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/16",
+ "ifName": "pon1/16",
+ "portName": null,
+ "ifIndex": 67436544,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/16",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ip interface 172.16.1.1",
+ "ifName": "telnet",
+ "portName": null,
+ "ifIndex": 134266880,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "regular1822",
+ "ifAlias": "telnet",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ip interface 10.200.12.2",
+ "ifName": "V0105",
+ "portName": null,
+ "ifIndex": 135938048,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "regular1822",
+ "ifAlias": "V0105",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ }
+ ]
+ },
+ "poller": {
+ "ports": [
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "to OLT-Kerro",
+ "ifName": "eth1/1",
+ "portName": null,
+ "ifIndex": 67375104,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "eth1/1",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72692100,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 4363854674,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 2510798266,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 6009636365468,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 689467127083,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 48596,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 5375067,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 5277041,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/2",
+ "ifName": "eth1/2",
+ "portName": null,
+ "ifIndex": 67379200,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "hdh1822",
+ "ifAlias": "eth1/2",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/3",
+ "ifName": "eth1/3",
+ "portName": null,
+ "ifIndex": 67383296,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "hdh1822",
+ "ifAlias": "eth1/3",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/4",
+ "ifName": "eth1/4",
+ "portName": null,
+ "ifIndex": 67387392,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "hdh1822",
+ "ifAlias": "eth1/4",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/5",
+ "ifName": "pon1/5",
+ "portName": null,
+ "ifIndex": 67391488,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/5",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72695400,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 1073445774,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1899809363,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 250062906475,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 2635776331650,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 50601,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 2354150,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 5350822,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 42509,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/6",
+ "ifName": "pon1/6",
+ "portName": null,
+ "ifIndex": 67395584,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/6",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72695400,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 1435791346,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 2463205868,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 429101814583,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 3356966942496,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 223043,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 2931037,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 5350822,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 223034,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/7",
+ "ifName": "pon1/7",
+ "portName": null,
+ "ifIndex": 67399680,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/7",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72695400,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 69759,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 478819022,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 5350822,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/8",
+ "ifName": "pon1/8",
+ "portName": null,
+ "ifIndex": 67403776,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/8",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72695400,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 69759,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 478819022,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 5350822,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/9",
+ "ifName": "pon1/9",
+ "portName": null,
+ "ifIndex": 67407872,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/9",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/10",
+ "ifName": "pon1/10",
+ "portName": null,
+ "ifIndex": 67411968,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/10",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/11",
+ "ifName": "pon1/11",
+ "portName": null,
+ "ifIndex": 67416064,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/11",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/12",
+ "ifName": "pon1/12",
+ "portName": null,
+ "ifIndex": 67420160,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/12",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/13",
+ "ifName": "pon1/13",
+ "portName": null,
+ "ifIndex": 67424256,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/13",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/14",
+ "ifName": "pon1/14",
+ "portName": null,
+ "ifIndex": 67428352,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/14",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/15",
+ "ifName": "pon1/15",
+ "portName": null,
+ "ifIndex": 67432448,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/15",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ethernet port 1/16",
+ "ifName": "pon1/16",
+ "portName": null,
+ "ifIndex": 67436544,
+ "ifSpeed": 1000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 1000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1500,
+ "ifType": "iso88023Csmacd",
+ "ifAlias": "pon1/16",
+ "ifPhysAddress": "000000000000",
+ "ifHardType": null,
+ "ifLastChange": 72697300,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ip interface 172.16.1.1",
+ "ifName": "telnet",
+ "portName": null,
+ "ifIndex": 134266880,
+ "ifSpeed": 10000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "true",
+ "ifHighSpeed": 10,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1,
+ "ifType": "regular1822",
+ "ifAlias": "telnet",
+ "ifPhysAddress": "010203040506",
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 1,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 1,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 1,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "ip interface 10.200.12.2",
+ "ifName": "V0105",
+ "portName": null,
+ "ifIndex": 135938048,
+ "ifSpeed": 10000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "true",
+ "ifHighSpeed": 10,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 1,
+ "ifType": "regular1822",
+ "ifAlias": "V0105",
+ "ifPhysAddress": "010203040506",
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 1,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 1,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 1,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ }
+ ]
+ }
+ },
+ "processors": {
+ "discovery": {
+ "processors": [
+ {
+ "entPhysicalIndex": 0,
+ "hrDeviceIndex": 0,
+ "processor_oid": ".1.3.6.1.4.1.10072.2.20.1.1.2.1.1.19.1.1",
+ "processor_index": "1.1",
+ "processor_type": "gwd",
+ "processor_usage": 4,
+ "processor_descr": "Processor",
+ "processor_precision": 1,
+ "processor_perc_warn": 75
+ }
+ ]
+ },
+ "poller": "matches discovery"
+ },
+ "mempools": {
+ "discovery": {
+ "mempools": [
+ {
+ "mempool_index": "0",
+ "entPhysicalIndex": null,
+ "hrDeviceIndex": null,
+ "mempool_type": "gwd",
+ "mempool_precision": 1,
+ "mempool_descr": "Memory",
+ "mempool_perc": 0,
+ "mempool_used": 0,
+ "mempool_free": 0,
+ "mempool_total": 0,
+ "mempool_largestfree": null,
+ "mempool_lowestfree": null,
+ "mempool_deleted": 0,
+ "mempool_perc_warn": 90
+ }
+ ]
+ },
+ "poller": {
+ "mempools": [
+ {
+ "mempool_index": "0",
+ "entPhysicalIndex": null,
+ "hrDeviceIndex": null,
+ "mempool_type": "gwd",
+ "mempool_precision": 1,
+ "mempool_descr": "Memory",
+ "mempool_perc": 11,
+ "mempool_used": 29,
+ "mempool_free": 227,
+ "mempool_total": 256,
+ "mempool_largestfree": null,
+ "mempool_lowestfree": null,
+ "mempool_deleted": 0,
+ "mempool_perc_warn": 90
+ }
+ ]
+ }
+ },
+ "sensors": {
+ "discovery": {
+ "sensors": [
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "state",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.1",
+ "sensor_index": "1.1",
+ "sensor_type": "devFanAlarmStatus",
+ "sensor_descr": "Fun status 1.1",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 5,
+ "sensor_limit": null,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": null,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": "devFanAlarmStatus"
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "state",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.2",
+ "sensor_index": "1.2",
+ "sensor_type": "devFanAlarmStatus",
+ "sensor_descr": "Fun status 1.2",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 5,
+ "sensor_limit": null,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": null,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": "devFanAlarmStatus"
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "state",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.3",
+ "sensor_index": "1.3",
+ "sensor_type": "devFanAlarmStatus",
+ "sensor_descr": "Fun status 1.3",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 5,
+ "sensor_limit": null,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": null,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": "devFanAlarmStatus"
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "state",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.4",
+ "sensor_index": "1.4",
+ "sensor_type": "devFanAlarmStatus",
+ "sensor_descr": "Fun status 1.4",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 5,
+ "sensor_limit": null,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": null,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": "devFanAlarmStatus"
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "state",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.5.1.1.2.1",
+ "sensor_index": "1",
+ "sensor_type": "powerRunStatus",
+ "sensor_descr": "Power Run Status 1",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 3,
+ "sensor_limit": null,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": null,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": "powerRunStatus"
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "state",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.5.1.1.2.2",
+ "sensor_index": "2",
+ "sensor_type": "powerRunStatus",
+ "sensor_descr": "Power Run Status 2",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 3,
+ "sensor_limit": null,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": null,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": "powerRunStatus"
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "temperature",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.5.1.1.3.1",
+ "sensor_index": "1",
+ "sensor_type": "gwd",
+ "sensor_descr": "Temperature power supply 1 ",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 34,
+ "sensor_limit": 54,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": 24,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": null
+ },
+ {
+ "sensor_deleted": 0,
+ "sensor_class": "temperature",
+ "poller_type": "snmp",
+ "sensor_oid": ".1.3.6.1.4.1.10072.2.15.1.5.1.1.3.2",
+ "sensor_index": "2",
+ "sensor_type": "gwd",
+ "sensor_descr": "Temperature power supply 2 ",
+ "group": null,
+ "sensor_divisor": 1,
+ "sensor_multiplier": 1,
+ "sensor_current": 34,
+ "sensor_limit": 54,
+ "sensor_limit_warn": null,
+ "sensor_limit_low": 24,
+ "sensor_limit_low_warn": null,
+ "sensor_alert": 1,
+ "sensor_custom": "No",
+ "entPhysicalIndex": null,
+ "entPhysicalIndex_measured": null,
+ "sensor_prev": null,
+ "user_func": null,
+ "state_name": null
+ }
+ ],
+ "state_indexes": [
+ {
+ "state_name": "devFanAlarmStatus",
+ "state_descr": "Normal",
+ "state_draw_graph": 0,
+ "state_value": 0,
+ "state_generic_value": 0
+ },
+ {
+ "state_name": "devFanAlarmStatus",
+ "state_descr": "Abnormal",
+ "state_draw_graph": 0,
+ "state_value": 1,
+ "state_generic_value": 2
+ },
+ {
+ "state_name": "powerRunStatus",
+ "state_descr": "Normal",
+ "state_draw_graph": 0,
+ "state_value": 0,
+ "state_generic_value": 0
+ },
+ {
+ "state_name": "powerRunStatus",
+ "state_descr": "Abnormal",
+ "state_draw_graph": 0,
+ "state_value": 1,
+ "state_generic_value": 2
+ }
+ ]
+ },
+ "poller": "matches discovery"
+ }
+}
diff --git a/tests/snmpsim/gwd.snmprec b/tests/snmpsim/gwd.snmprec
new file mode 100644
index 0000000000..0c0b0cd30d
--- /dev/null
+++ b/tests/snmpsim/gwd.snmprec
@@ -0,0 +1,689 @@
+1.3.6.1.2.1.1.1.0|4|EasyPath Ethernet-PON
+1.3.6.1.2.1.1.2.0|6|.1.3.6.1.4.1.10072.2.20
+1.3.6.1.2.1.1.3.0|67|72696432
+1.3.6.1.2.1.1.4.0|4|
+1.3.6.1.2.1.1.5.0|4|
+1.3.6.1.2.1.1.6.0|4|
+1.3.6.1.2.1.2.2.1.2.67375104|4|to OLT-Kerro
+1.3.6.1.2.1.2.2.1.2.67379200|4|ethernet port 1/2
+1.3.6.1.2.1.2.2.1.2.67383296|4|ethernet port 1/3
+1.3.6.1.2.1.2.2.1.2.67387392|4|ethernet port 1/4
+1.3.6.1.2.1.2.2.1.2.67391488|4|ethernet port 1/5
+1.3.6.1.2.1.2.2.1.2.67395584|4|ethernet port 1/6
+1.3.6.1.2.1.2.2.1.2.67399680|4|ethernet port 1/7
+1.3.6.1.2.1.2.2.1.2.67403776|4|ethernet port 1/8
+1.3.6.1.2.1.2.2.1.2.67407872|4|ethernet port 1/9
+1.3.6.1.2.1.2.2.1.2.67411968|4|ethernet port 1/10
+1.3.6.1.2.1.2.2.1.2.67416064|4|ethernet port 1/11
+1.3.6.1.2.1.2.2.1.2.67420160|4|ethernet port 1/12
+1.3.6.1.2.1.2.2.1.2.67424256|4|ethernet port 1/13
+1.3.6.1.2.1.2.2.1.2.67428352|4|ethernet port 1/14
+1.3.6.1.2.1.2.2.1.2.67432448|4|ethernet port 1/15
+1.3.6.1.2.1.2.2.1.2.67436544|4|ethernet port 1/16
+1.3.6.1.2.1.2.2.1.2.134266880|4|ip interface 172.16.1.1
+1.3.6.1.2.1.2.2.1.2.135938048|4|ip interface 10.200.12.2
+1.3.6.1.2.1.2.2.1.3.67375104|2|7
+1.3.6.1.2.1.2.2.1.3.67379200|2|3
+1.3.6.1.2.1.2.2.1.3.67383296|2|3
+1.3.6.1.2.1.2.2.1.3.67387392|2|3
+1.3.6.1.2.1.2.2.1.3.67391488|2|7
+1.3.6.1.2.1.2.2.1.3.67395584|2|7
+1.3.6.1.2.1.2.2.1.3.67399680|2|7
+1.3.6.1.2.1.2.2.1.3.67403776|2|7
+1.3.6.1.2.1.2.2.1.3.67407872|2|7
+1.3.6.1.2.1.2.2.1.3.67411968|2|7
+1.3.6.1.2.1.2.2.1.3.67416064|2|7
+1.3.6.1.2.1.2.2.1.3.67420160|2|7
+1.3.6.1.2.1.2.2.1.3.67424256|2|7
+1.3.6.1.2.1.2.2.1.3.67428352|2|7
+1.3.6.1.2.1.2.2.1.3.67432448|2|7
+1.3.6.1.2.1.2.2.1.3.67436544|2|7
+1.3.6.1.2.1.2.2.1.3.134266880|2|2
+1.3.6.1.2.1.2.2.1.3.135938048|2|2
+1.3.6.1.2.1.2.2.1.4.67375104|2|1500
+1.3.6.1.2.1.2.2.1.4.67379200|2|1500
+1.3.6.1.2.1.2.2.1.4.67383296|2|1500
+1.3.6.1.2.1.2.2.1.4.67387392|2|1500
+1.3.6.1.2.1.2.2.1.4.67391488|2|1500
+1.3.6.1.2.1.2.2.1.4.67395584|2|1500
+1.3.6.1.2.1.2.2.1.4.67399680|2|1500
+1.3.6.1.2.1.2.2.1.4.67403776|2|1500
+1.3.6.1.2.1.2.2.1.4.67407872|2|1500
+1.3.6.1.2.1.2.2.1.4.67411968|2|1500
+1.3.6.1.2.1.2.2.1.4.67416064|2|1500
+1.3.6.1.2.1.2.2.1.4.67420160|2|1500
+1.3.6.1.2.1.2.2.1.4.67424256|2|1500
+1.3.6.1.2.1.2.2.1.4.67428352|2|1500
+1.3.6.1.2.1.2.2.1.4.67432448|2|1500
+1.3.6.1.2.1.2.2.1.4.67436544|2|1500
+1.3.6.1.2.1.2.2.1.4.134266880|2|1
+1.3.6.1.2.1.2.2.1.4.135938048|2|1
+1.3.6.1.2.1.2.2.1.6.67375104|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67379200|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67383296|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67387392|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67391488|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67395584|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67399680|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67403776|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67407872|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67411968|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67416064|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67420160|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67424256|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67428352|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67432448|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.67436544|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.134266880|4x|010203040506
+1.3.6.1.2.1.2.2.1.6.135938048|4x|010203040506
+1.3.6.1.2.1.2.2.1.7.67375104|2|1
+1.3.6.1.2.1.2.2.1.7.67379200|2|1
+1.3.6.1.2.1.2.2.1.7.67383296|2|1
+1.3.6.1.2.1.2.2.1.7.67387392|2|1
+1.3.6.1.2.1.2.2.1.7.67391488|2|1
+1.3.6.1.2.1.2.2.1.7.67395584|2|1
+1.3.6.1.2.1.2.2.1.7.67399680|2|1
+1.3.6.1.2.1.2.2.1.7.67403776|2|1
+1.3.6.1.2.1.2.2.1.7.67407872|2|1
+1.3.6.1.2.1.2.2.1.7.67411968|2|1
+1.3.6.1.2.1.2.2.1.7.67416064|2|1
+1.3.6.1.2.1.2.2.1.7.67420160|2|1
+1.3.6.1.2.1.2.2.1.7.67424256|2|1
+1.3.6.1.2.1.2.2.1.7.67428352|2|1
+1.3.6.1.2.1.2.2.1.7.67432448|2|1
+1.3.6.1.2.1.2.2.1.7.67436544|2|1
+1.3.6.1.2.1.2.2.1.7.134266880|2|1
+1.3.6.1.2.1.2.2.1.7.135938048|2|1
+1.3.6.1.2.1.2.2.1.8.67375104|2|1
+1.3.6.1.2.1.2.2.1.8.67379200|2|2
+1.3.6.1.2.1.2.2.1.8.67383296|2|2
+1.3.6.1.2.1.2.2.1.8.67387392|2|2
+1.3.6.1.2.1.2.2.1.8.67391488|2|1
+1.3.6.1.2.1.2.2.1.8.67395584|2|1
+1.3.6.1.2.1.2.2.1.8.67399680|2|1
+1.3.6.1.2.1.2.2.1.8.67403776|2|1
+1.3.6.1.2.1.2.2.1.8.67407872|2|2
+1.3.6.1.2.1.2.2.1.8.67411968|2|2
+1.3.6.1.2.1.2.2.1.8.67416064|2|2
+1.3.6.1.2.1.2.2.1.8.67420160|2|2
+1.3.6.1.2.1.2.2.1.8.67424256|2|2
+1.3.6.1.2.1.2.2.1.8.67428352|2|2
+1.3.6.1.2.1.2.2.1.8.67432448|2|2
+1.3.6.1.2.1.2.2.1.8.67436544|2|2
+1.3.6.1.2.1.2.2.1.8.134266880|2|1
+1.3.6.1.2.1.2.2.1.8.135938048|2|1
+1.3.6.1.2.1.2.2.1.9.67375104|67|72692100
+1.3.6.1.2.1.2.2.1.9.67379200|67|72697300
+1.3.6.1.2.1.2.2.1.9.67383296|67|72697300
+1.3.6.1.2.1.2.2.1.9.67387392|67|72697300
+1.3.6.1.2.1.2.2.1.9.67391488|67|72695400
+1.3.6.1.2.1.2.2.1.9.67395584|67|72695400
+1.3.6.1.2.1.2.2.1.9.67399680|67|72695400
+1.3.6.1.2.1.2.2.1.9.67403776|67|72695400
+1.3.6.1.2.1.2.2.1.9.67407872|67|72697300
+1.3.6.1.2.1.2.2.1.9.67411968|67|72697300
+1.3.6.1.2.1.2.2.1.9.67416064|67|72697300
+1.3.6.1.2.1.2.2.1.9.67420160|67|72697300
+1.3.6.1.2.1.2.2.1.9.67424256|67|72697300
+1.3.6.1.2.1.2.2.1.9.67428352|67|72697300
+1.3.6.1.2.1.2.2.1.9.67432448|67|72697300
+1.3.6.1.2.1.2.2.1.9.67436544|67|72697300
+1.3.6.1.2.1.2.2.1.9.134266880|67|0
+1.3.6.1.2.1.2.2.1.9.135938048|67|0
+1.3.6.1.2.1.2.2.1.13.67375104|65|48596
+1.3.6.1.2.1.2.2.1.13.67379200|65|0
+1.3.6.1.2.1.2.2.1.13.67383296|65|0
+1.3.6.1.2.1.2.2.1.13.67387392|65|0
+1.3.6.1.2.1.2.2.1.13.67391488|65|50601
+1.3.6.1.2.1.2.2.1.13.67395584|65|223043
+1.3.6.1.2.1.2.2.1.13.67399680|65|0
+1.3.6.1.2.1.2.2.1.13.67403776|65|0
+1.3.6.1.2.1.2.2.1.13.67407872|65|0
+1.3.6.1.2.1.2.2.1.13.67411968|65|0
+1.3.6.1.2.1.2.2.1.13.67416064|65|0
+1.3.6.1.2.1.2.2.1.13.67420160|65|0
+1.3.6.1.2.1.2.2.1.13.67424256|65|0
+1.3.6.1.2.1.2.2.1.13.67428352|65|0
+1.3.6.1.2.1.2.2.1.13.67432448|65|0
+1.3.6.1.2.1.2.2.1.13.67436544|65|0
+1.3.6.1.2.1.2.2.1.13.134266880|65|1
+1.3.6.1.2.1.2.2.1.13.135938048|65|1
+1.3.6.1.2.1.2.2.1.14.67375104|65|0
+1.3.6.1.2.1.2.2.1.14.67379200|65|0
+1.3.6.1.2.1.2.2.1.14.67383296|65|0
+1.3.6.1.2.1.2.2.1.14.67387392|65|0
+1.3.6.1.2.1.2.2.1.14.67391488|65|0
+1.3.6.1.2.1.2.2.1.14.67395584|65|0
+1.3.6.1.2.1.2.2.1.14.67399680|65|0
+1.3.6.1.2.1.2.2.1.14.67403776|65|0
+1.3.6.1.2.1.2.2.1.14.67407872|65|0
+1.3.6.1.2.1.2.2.1.14.67411968|65|0
+1.3.6.1.2.1.2.2.1.14.67416064|65|0
+1.3.6.1.2.1.2.2.1.14.67420160|65|0
+1.3.6.1.2.1.2.2.1.14.67424256|65|0
+1.3.6.1.2.1.2.2.1.14.67428352|65|0
+1.3.6.1.2.1.2.2.1.14.67432448|65|0
+1.3.6.1.2.1.2.2.1.14.67436544|65|0
+1.3.6.1.2.1.2.2.1.14.134266880|65|1
+1.3.6.1.2.1.2.2.1.14.135938048|65|1
+1.3.6.1.2.1.2.2.1.19.67375104|65|0
+1.3.6.1.2.1.2.2.1.19.67379200|65|0
+1.3.6.1.2.1.2.2.1.19.67383296|65|0
+1.3.6.1.2.1.2.2.1.19.67387392|65|0
+1.3.6.1.2.1.2.2.1.19.67391488|65|0
+1.3.6.1.2.1.2.2.1.19.67395584|65|0
+1.3.6.1.2.1.2.2.1.19.67399680|65|0
+1.3.6.1.2.1.2.2.1.19.67403776|65|0
+1.3.6.1.2.1.2.2.1.19.67407872|65|0
+1.3.6.1.2.1.2.2.1.19.67411968|65|0
+1.3.6.1.2.1.2.2.1.19.67416064|65|0
+1.3.6.1.2.1.2.2.1.19.67420160|65|0
+1.3.6.1.2.1.2.2.1.19.67424256|65|0
+1.3.6.1.2.1.2.2.1.19.67428352|65|0
+1.3.6.1.2.1.2.2.1.19.67432448|65|0
+1.3.6.1.2.1.2.2.1.19.67436544|65|0
+1.3.6.1.2.1.2.2.1.19.134266880|65|0
+1.3.6.1.2.1.2.2.1.19.135938048|65|0
+1.3.6.1.2.1.2.2.1.20.67375104|65|0
+1.3.6.1.2.1.2.2.1.20.67379200|65|0
+1.3.6.1.2.1.2.2.1.20.67383296|65|0
+1.3.6.1.2.1.2.2.1.20.67387392|65|0
+1.3.6.1.2.1.2.2.1.20.67391488|65|0
+1.3.6.1.2.1.2.2.1.20.67395584|65|0
+1.3.6.1.2.1.2.2.1.20.67399680|65|0
+1.3.6.1.2.1.2.2.1.20.67403776|65|0
+1.3.6.1.2.1.2.2.1.20.67407872|65|0
+1.3.6.1.2.1.2.2.1.20.67411968|65|0
+1.3.6.1.2.1.2.2.1.20.67416064|65|0
+1.3.6.1.2.1.2.2.1.20.67420160|65|0
+1.3.6.1.2.1.2.2.1.20.67424256|65|0
+1.3.6.1.2.1.2.2.1.20.67428352|65|0
+1.3.6.1.2.1.2.2.1.20.67432448|65|0
+1.3.6.1.2.1.2.2.1.20.67436544|65|0
+1.3.6.1.2.1.2.2.1.20.134266880|65|1
+1.3.6.1.2.1.2.2.1.20.135938048|65|1
+1.3.6.1.2.1.4.3.0|65|810300
+1.3.6.1.2.1.4.4.0|65|0
+1.3.6.1.2.1.4.5.0|65|0
+1.3.6.1.2.1.4.6.0|65|0
+1.3.6.1.2.1.4.7.0|65|0
+1.3.6.1.2.1.4.8.0|65|0
+1.3.6.1.2.1.4.9.0|65|802668
+1.3.6.1.2.1.4.10.0|65|1484849
+1.3.6.1.2.1.4.11.0|65|0
+1.3.6.1.2.1.4.12.0|65|0
+1.3.6.1.2.1.4.14.0|65|0
+1.3.6.1.2.1.4.15.0|65|0
+1.3.6.1.2.1.4.16.0|65|0
+1.3.6.1.2.1.4.17.0|65|0
+1.3.6.1.2.1.4.18.0|65|0
+1.3.6.1.2.1.4.19.0|65|0
+1.3.6.1.2.1.4.20.1.2.10.200.12.2|2|135938048
+1.3.6.1.2.1.4.20.1.2.172.16.1.1|2|134266880
+1.3.6.1.2.1.4.20.1.3.10.200.12.2|64|255.255.254.0
+1.3.6.1.2.1.4.20.1.3.172.16.1.1|64|255.255.128.0
+1.3.6.1.2.1.4.22.1.2.67375104.10.200.12.1|4x|744D2885CC40
+1.3.6.1.2.1.5.1.0|65|7631
+1.3.6.1.2.1.5.2.0|65|0
+1.3.6.1.2.1.5.3.0|65|0
+1.3.6.1.2.1.5.4.0|65|0
+1.3.6.1.2.1.5.5.0|65|0
+1.3.6.1.2.1.5.6.0|65|0
+1.3.6.1.2.1.5.7.0|65|0
+1.3.6.1.2.1.5.8.0|65|7631
+1.3.6.1.2.1.5.9.0|65|0
+1.3.6.1.2.1.5.10.0|65|0
+1.3.6.1.2.1.5.11.0|65|0
+1.3.6.1.2.1.5.12.0|65|0
+1.3.6.1.2.1.5.13.0|65|0
+1.3.6.1.2.1.5.14.0|65|7631
+1.3.6.1.2.1.5.15.0|65|0
+1.3.6.1.2.1.5.16.0|65|0
+1.3.6.1.2.1.5.17.0|65|0
+1.3.6.1.2.1.5.18.0|65|0
+1.3.6.1.2.1.5.19.0|65|0
+1.3.6.1.2.1.5.20.0|65|0
+1.3.6.1.2.1.5.21.0|65|0
+1.3.6.1.2.1.5.22.0|65|7631
+1.3.6.1.2.1.5.23.0|65|0
+1.3.6.1.2.1.5.24.0|65|0
+1.3.6.1.2.1.5.25.0|65|0
+1.3.6.1.2.1.5.26.0|65|0
+1.3.6.1.2.1.6.5.0|65|0
+1.3.6.1.2.1.6.6.0|65|339
+1.3.6.1.2.1.6.7.0|65|0
+1.3.6.1.2.1.6.8.0|65|0
+1.3.6.1.2.1.6.9.0|66|0
+1.3.6.1.2.1.6.10.0|65|544709
+1.3.6.1.2.1.6.11.0|65|695742
+1.3.6.1.2.1.6.12.0|65|36
+1.3.6.1.2.1.6.14.0|65|1
+1.3.6.1.2.1.6.15.0|65|0
+1.3.6.1.2.1.7.1.0|65|257990
+1.3.6.1.2.1.7.2.0|65|0
+1.3.6.1.2.1.7.3.0|65|0
+1.3.6.1.2.1.7.4.0|65|781539
+1.3.6.1.2.1.10.7.2.1.19.1|2|3
+1.3.6.1.2.1.10.7.2.1.19.2|2|3
+1.3.6.1.2.1.10.7.2.1.19.3|2|3
+1.3.6.1.2.1.10.7.2.1.19.4|2|3
+1.3.6.1.2.1.10.7.2.1.19.5|2|3
+1.3.6.1.2.1.10.7.2.1.19.6|2|3
+1.3.6.1.2.1.10.7.2.1.19.7|2|3
+1.3.6.1.2.1.10.7.2.1.19.8|2|3
+1.3.6.1.2.1.10.7.2.1.19.9|2|3
+1.3.6.1.2.1.10.7.2.1.19.10|2|3
+1.3.6.1.2.1.11.1.0|65|257975
+1.3.6.1.2.1.11.2.0|65|257974
+1.3.6.1.2.1.11.3.0|65|0
+1.3.6.1.2.1.11.4.0|65|0
+1.3.6.1.2.1.11.5.0|65|0
+1.3.6.1.2.1.11.6.0|65|0
+1.3.6.1.2.1.11.8.0|65|0
+1.3.6.1.2.1.11.9.0|65|0
+1.3.6.1.2.1.11.10.0|65|0
+1.3.6.1.2.1.11.11.0|65|0
+1.3.6.1.2.1.11.12.0|65|0
+1.3.6.1.2.1.11.13.0|65|2156462
+1.3.6.1.2.1.11.14.0|65|0
+1.3.6.1.2.1.11.15.0|65|223921
+1.3.6.1.2.1.11.16.0|65|34055
+1.3.6.1.2.1.11.17.0|65|0
+1.3.6.1.2.1.11.18.0|65|0
+1.3.6.1.2.1.11.19.0|65|0
+1.3.6.1.2.1.11.20.0|65|0
+1.3.6.1.2.1.11.21.0|65|0
+1.3.6.1.2.1.11.22.0|65|0
+1.3.6.1.2.1.11.24.0|65|0
+1.3.6.1.2.1.11.25.0|65|0
+1.3.6.1.2.1.11.26.0|65|0
+1.3.6.1.2.1.11.27.0|65|0
+1.3.6.1.2.1.11.28.0|65|257976
+1.3.6.1.2.1.11.29.0|65|0
+1.3.6.1.2.1.11.30.0|2|1
+1.3.6.1.2.1.17.1.1.0|4x|000FE941FD2A
+1.3.6.1.2.1.17.1.4.1.2.1|2|67375104
+1.3.6.1.2.1.17.1.4.1.2.2|2|67379200
+1.3.6.1.2.1.17.1.4.1.2.3|2|67383296
+1.3.6.1.2.1.17.1.4.1.2.4|2|67387392
+1.3.6.1.2.1.17.1.4.1.2.5|2|67391488
+1.3.6.1.2.1.17.1.4.1.2.6|2|67395584
+1.3.6.1.2.1.17.1.4.1.2.7|2|67399680
+1.3.6.1.2.1.17.1.4.1.2.8|2|67403776
+1.3.6.1.2.1.17.1.4.1.2.9|2|67407872
+1.3.6.1.2.1.17.1.4.1.2.10|2|67411968
+1.3.6.1.2.1.17.1.4.1.2.11|2|67416064
+1.3.6.1.2.1.17.1.4.1.2.12|2|67420160
+1.3.6.1.2.1.17.1.4.1.2.13|2|67424256
+1.3.6.1.2.1.17.1.4.1.2.14|2|67428352
+1.3.6.1.2.1.17.1.4.1.2.15|2|67432448
+1.3.6.1.2.1.17.1.4.1.2.16|2|67436544
+1.3.6.1.2.1.31.1.1.1.1.67375104|4|eth1/1
+1.3.6.1.2.1.31.1.1.1.1.67379200|4|eth1/2
+1.3.6.1.2.1.31.1.1.1.1.67383296|4|eth1/3
+1.3.6.1.2.1.31.1.1.1.1.67387392|4|eth1/4
+1.3.6.1.2.1.31.1.1.1.1.67391488|4|pon1/5
+1.3.6.1.2.1.31.1.1.1.1.67395584|4|pon1/6
+1.3.6.1.2.1.31.1.1.1.1.67399680|4|pon1/7
+1.3.6.1.2.1.31.1.1.1.1.67403776|4|pon1/8
+1.3.6.1.2.1.31.1.1.1.1.67407872|4|pon1/9
+1.3.6.1.2.1.31.1.1.1.1.67411968|4|pon1/10
+1.3.6.1.2.1.31.1.1.1.1.67416064|4|pon1/11
+1.3.6.1.2.1.31.1.1.1.1.67420160|4|pon1/12
+1.3.6.1.2.1.31.1.1.1.1.67424256|4|pon1/13
+1.3.6.1.2.1.31.1.1.1.1.67428352|4|pon1/14
+1.3.6.1.2.1.31.1.1.1.1.67432448|4|pon1/15
+1.3.6.1.2.1.31.1.1.1.1.67436544|4|pon1/16
+1.3.6.1.2.1.31.1.1.1.1.134266880|4|telnet
+1.3.6.1.2.1.31.1.1.1.1.135938048|4|V0105
+1.3.6.1.2.1.31.1.1.1.2.67375104|65|0
+1.3.6.1.2.1.31.1.1.1.2.67379200|65|0
+1.3.6.1.2.1.31.1.1.1.2.67383296|65|0
+1.3.6.1.2.1.31.1.1.1.2.67387392|65|0
+1.3.6.1.2.1.31.1.1.1.2.67391488|65|42509
+1.3.6.1.2.1.31.1.1.1.2.67395584|65|223034
+1.3.6.1.2.1.31.1.1.1.2.67399680|65|0
+1.3.6.1.2.1.31.1.1.1.2.67403776|65|0
+1.3.6.1.2.1.31.1.1.1.2.67407872|65|0
+1.3.6.1.2.1.31.1.1.1.2.67411968|65|0
+1.3.6.1.2.1.31.1.1.1.2.67416064|65|0
+1.3.6.1.2.1.31.1.1.1.2.67420160|65|0
+1.3.6.1.2.1.31.1.1.1.2.67424256|65|0
+1.3.6.1.2.1.31.1.1.1.2.67428352|65|0
+1.3.6.1.2.1.31.1.1.1.2.67432448|65|0
+1.3.6.1.2.1.31.1.1.1.2.67436544|65|0
+1.3.6.1.2.1.31.1.1.1.2.134266880|65|0
+1.3.6.1.2.1.31.1.1.1.2.135938048|65|0
+1.3.6.1.2.1.31.1.1.1.3.67375104|65|5375067
+1.3.6.1.2.1.31.1.1.1.3.67379200|65|0
+1.3.6.1.2.1.31.1.1.1.3.67383296|65|0
+1.3.6.1.2.1.31.1.1.1.3.67387392|65|0
+1.3.6.1.2.1.31.1.1.1.3.67391488|65|2354150
+1.3.6.1.2.1.31.1.1.1.3.67395584|65|2931037
+1.3.6.1.2.1.31.1.1.1.3.67399680|65|0
+1.3.6.1.2.1.31.1.1.1.3.67403776|65|0
+1.3.6.1.2.1.31.1.1.1.3.67407872|65|0
+1.3.6.1.2.1.31.1.1.1.3.67411968|65|0
+1.3.6.1.2.1.31.1.1.1.3.67416064|65|0
+1.3.6.1.2.1.31.1.1.1.3.67420160|65|0
+1.3.6.1.2.1.31.1.1.1.3.67424256|65|0
+1.3.6.1.2.1.31.1.1.1.3.67428352|65|0
+1.3.6.1.2.1.31.1.1.1.3.67432448|65|0
+1.3.6.1.2.1.31.1.1.1.3.67436544|65|0
+1.3.6.1.2.1.31.1.1.1.3.134266880|65|0
+1.3.6.1.2.1.31.1.1.1.3.135938048|65|0
+1.3.6.1.2.1.31.1.1.1.4.67375104|65|0
+1.3.6.1.2.1.31.1.1.1.4.67379200|65|0
+1.3.6.1.2.1.31.1.1.1.4.67383296|65|0
+1.3.6.1.2.1.31.1.1.1.4.67387392|65|0
+1.3.6.1.2.1.31.1.1.1.4.67391488|65|0
+1.3.6.1.2.1.31.1.1.1.4.67395584|65|0
+1.3.6.1.2.1.31.1.1.1.4.67399680|65|0
+1.3.6.1.2.1.31.1.1.1.4.67403776|65|0
+1.3.6.1.2.1.31.1.1.1.4.67407872|65|0
+1.3.6.1.2.1.31.1.1.1.4.67411968|65|0
+1.3.6.1.2.1.31.1.1.1.4.67416064|65|0
+1.3.6.1.2.1.31.1.1.1.4.67420160|65|0
+1.3.6.1.2.1.31.1.1.1.4.67424256|65|0
+1.3.6.1.2.1.31.1.1.1.4.67428352|65|0
+1.3.6.1.2.1.31.1.1.1.4.67432448|65|0
+1.3.6.1.2.1.31.1.1.1.4.67436544|65|0
+1.3.6.1.2.1.31.1.1.1.4.134266880|65|0
+1.3.6.1.2.1.31.1.1.1.4.135938048|65|0
+1.3.6.1.2.1.31.1.1.1.5.67375104|65|5277041
+1.3.6.1.2.1.31.1.1.1.5.67379200|65|0
+1.3.6.1.2.1.31.1.1.1.5.67383296|65|0
+1.3.6.1.2.1.31.1.1.1.5.67387392|65|0
+1.3.6.1.2.1.31.1.1.1.5.67391488|65|5350822
+1.3.6.1.2.1.31.1.1.1.5.67395584|65|5350822
+1.3.6.1.2.1.31.1.1.1.5.67399680|65|5350822
+1.3.6.1.2.1.31.1.1.1.5.67403776|65|5350822
+1.3.6.1.2.1.31.1.1.1.5.67407872|65|0
+1.3.6.1.2.1.31.1.1.1.5.67411968|65|0
+1.3.6.1.2.1.31.1.1.1.5.67416064|65|0
+1.3.6.1.2.1.31.1.1.1.5.67420160|65|0
+1.3.6.1.2.1.31.1.1.1.5.67424256|65|0
+1.3.6.1.2.1.31.1.1.1.5.67428352|65|0
+1.3.6.1.2.1.31.1.1.1.5.67432448|65|0
+1.3.6.1.2.1.31.1.1.1.5.67436544|65|0
+1.3.6.1.2.1.31.1.1.1.5.134266880|65|0
+1.3.6.1.2.1.31.1.1.1.5.135938048|65|0
+1.3.6.1.2.1.31.1.1.1.6.67375104|70|6009636365468
+1.3.6.1.2.1.31.1.1.1.6.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.6.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.6.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.6.67391488|70|250062906475
+1.3.6.1.2.1.31.1.1.1.6.67395584|70|429101814583
+1.3.6.1.2.1.31.1.1.1.6.67399680|70|0
+1.3.6.1.2.1.31.1.1.1.6.67403776|70|0
+1.3.6.1.2.1.31.1.1.1.6.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.6.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.6.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.6.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.6.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.6.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.6.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.6.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.6.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.6.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.7.67375104|70|4363854674
+1.3.6.1.2.1.31.1.1.1.7.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.7.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.7.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.7.67391488|70|1073445774
+1.3.6.1.2.1.31.1.1.1.7.67395584|70|1435791346
+1.3.6.1.2.1.31.1.1.1.7.67399680|70|0
+1.3.6.1.2.1.31.1.1.1.7.67403776|70|0
+1.3.6.1.2.1.31.1.1.1.7.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.7.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.7.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.7.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.7.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.7.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.7.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.7.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.7.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.7.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.8.67375104|70|0
+1.3.6.1.2.1.31.1.1.1.8.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.8.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.8.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.8.67391488|70|42509
+1.3.6.1.2.1.31.1.1.1.8.67395584|70|223034
+1.3.6.1.2.1.31.1.1.1.8.67399680|70|0
+1.3.6.1.2.1.31.1.1.1.8.67403776|70|0
+1.3.6.1.2.1.31.1.1.1.8.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.8.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.8.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.8.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.8.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.8.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.8.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.8.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.8.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.8.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.9.67375104|70|5375067
+1.3.6.1.2.1.31.1.1.1.9.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.9.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.9.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.9.67391488|70|2354150
+1.3.6.1.2.1.31.1.1.1.9.67395584|70|2931037
+1.3.6.1.2.1.31.1.1.1.9.67399680|70|0
+1.3.6.1.2.1.31.1.1.1.9.67403776|70|0
+1.3.6.1.2.1.31.1.1.1.9.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.9.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.9.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.9.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.9.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.9.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.9.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.9.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.9.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.9.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.10.67375104|70|689467127083
+1.3.6.1.2.1.31.1.1.1.10.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.10.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.10.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.10.67391488|70|2635776331650
+1.3.6.1.2.1.31.1.1.1.10.67395584|70|3356966942496
+1.3.6.1.2.1.31.1.1.1.10.67399680|70|478819022
+1.3.6.1.2.1.31.1.1.1.10.67403776|70|478819022
+1.3.6.1.2.1.31.1.1.1.10.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.10.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.10.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.10.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.10.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.10.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.10.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.10.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.10.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.10.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.11.67375104|70|2510798266
+1.3.6.1.2.1.31.1.1.1.11.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.11.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.11.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.11.67391488|70|1899809363
+1.3.6.1.2.1.31.1.1.1.11.67395584|70|2463205868
+1.3.6.1.2.1.31.1.1.1.11.67399680|70|69759
+1.3.6.1.2.1.31.1.1.1.11.67403776|70|69759
+1.3.6.1.2.1.31.1.1.1.11.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.11.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.11.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.11.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.11.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.11.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.11.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.11.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.11.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.11.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.12.67375104|70|0
+1.3.6.1.2.1.31.1.1.1.12.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.12.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.12.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.12.67391488|70|0
+1.3.6.1.2.1.31.1.1.1.12.67395584|70|0
+1.3.6.1.2.1.31.1.1.1.12.67399680|70|0
+1.3.6.1.2.1.31.1.1.1.12.67403776|70|0
+1.3.6.1.2.1.31.1.1.1.12.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.12.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.12.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.12.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.12.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.12.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.12.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.12.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.12.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.12.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.13.67375104|70|5277041
+1.3.6.1.2.1.31.1.1.1.13.67379200|70|0
+1.3.6.1.2.1.31.1.1.1.13.67383296|70|0
+1.3.6.1.2.1.31.1.1.1.13.67387392|70|0
+1.3.6.1.2.1.31.1.1.1.13.67391488|70|5350822
+1.3.6.1.2.1.31.1.1.1.13.67395584|70|5350822
+1.3.6.1.2.1.31.1.1.1.13.67399680|70|5350822
+1.3.6.1.2.1.31.1.1.1.13.67403776|70|5350822
+1.3.6.1.2.1.31.1.1.1.13.67407872|70|0
+1.3.6.1.2.1.31.1.1.1.13.67411968|70|0
+1.3.6.1.2.1.31.1.1.1.13.67416064|70|0
+1.3.6.1.2.1.31.1.1.1.13.67420160|70|0
+1.3.6.1.2.1.31.1.1.1.13.67424256|70|0
+1.3.6.1.2.1.31.1.1.1.13.67428352|70|0
+1.3.6.1.2.1.31.1.1.1.13.67432448|70|0
+1.3.6.1.2.1.31.1.1.1.13.67436544|70|0
+1.3.6.1.2.1.31.1.1.1.13.134266880|70|0
+1.3.6.1.2.1.31.1.1.1.13.135938048|70|0
+1.3.6.1.2.1.31.1.1.1.14.67375104|2|2
+1.3.6.1.2.1.31.1.1.1.14.67379200|2|2
+1.3.6.1.2.1.31.1.1.1.14.67383296|2|2
+1.3.6.1.2.1.31.1.1.1.14.67387392|2|2
+1.3.6.1.2.1.31.1.1.1.14.67391488|2|2
+1.3.6.1.2.1.31.1.1.1.14.67395584|2|2
+1.3.6.1.2.1.31.1.1.1.14.67399680|2|2
+1.3.6.1.2.1.31.1.1.1.14.67403776|2|2
+1.3.6.1.2.1.31.1.1.1.14.67407872|2|2
+1.3.6.1.2.1.31.1.1.1.14.67411968|2|2
+1.3.6.1.2.1.31.1.1.1.14.67416064|2|2
+1.3.6.1.2.1.31.1.1.1.14.67420160|2|2
+1.3.6.1.2.1.31.1.1.1.14.67424256|2|2
+1.3.6.1.2.1.31.1.1.1.14.67428352|2|2
+1.3.6.1.2.1.31.1.1.1.14.67432448|2|2
+1.3.6.1.2.1.31.1.1.1.14.67436544|2|2
+1.3.6.1.2.1.31.1.1.1.14.134266880|2|2
+1.3.6.1.2.1.31.1.1.1.14.135938048|2|2
+1.3.6.1.2.1.31.1.1.1.15.67375104|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67379200|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67383296|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67387392|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67391488|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67395584|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67399680|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67403776|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67407872|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67411968|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67416064|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67420160|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67424256|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67428352|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67432448|66|1000
+1.3.6.1.2.1.31.1.1.1.15.67436544|66|1000
+1.3.6.1.2.1.31.1.1.1.15.134266880|66|10
+1.3.6.1.2.1.31.1.1.1.15.135938048|66|10
+1.3.6.1.2.1.31.1.1.1.16.67375104|2|2
+1.3.6.1.2.1.31.1.1.1.16.67379200|2|2
+1.3.6.1.2.1.31.1.1.1.16.67383296|2|2
+1.3.6.1.2.1.31.1.1.1.16.67387392|2|2
+1.3.6.1.2.1.31.1.1.1.16.67391488|2|2
+1.3.6.1.2.1.31.1.1.1.16.67395584|2|2
+1.3.6.1.2.1.31.1.1.1.16.67399680|2|2
+1.3.6.1.2.1.31.1.1.1.16.67403776|2|2
+1.3.6.1.2.1.31.1.1.1.16.67407872|2|2
+1.3.6.1.2.1.31.1.1.1.16.67411968|2|2
+1.3.6.1.2.1.31.1.1.1.16.67416064|2|2
+1.3.6.1.2.1.31.1.1.1.16.67420160|2|2
+1.3.6.1.2.1.31.1.1.1.16.67424256|2|2
+1.3.6.1.2.1.31.1.1.1.16.67428352|2|2
+1.3.6.1.2.1.31.1.1.1.16.67432448|2|2
+1.3.6.1.2.1.31.1.1.1.16.67436544|2|2
+1.3.6.1.2.1.31.1.1.1.16.134266880|2|1
+1.3.6.1.2.1.31.1.1.1.16.135938048|2|1
+1.3.6.1.2.1.31.1.1.1.17.67375104|2|1
+1.3.6.1.2.1.31.1.1.1.17.67379200|2|1
+1.3.6.1.2.1.31.1.1.1.17.67383296|2|1
+1.3.6.1.2.1.31.1.1.1.17.67387392|2|1
+1.3.6.1.2.1.31.1.1.1.17.67391488|2|1
+1.3.6.1.2.1.31.1.1.1.17.67395584|2|1
+1.3.6.1.2.1.31.1.1.1.17.67399680|2|1
+1.3.6.1.2.1.31.1.1.1.17.67403776|2|1
+1.3.6.1.2.1.31.1.1.1.17.67407872|2|1
+1.3.6.1.2.1.31.1.1.1.17.67411968|2|1
+1.3.6.1.2.1.31.1.1.1.17.67416064|2|1
+1.3.6.1.2.1.31.1.1.1.17.67420160|2|1
+1.3.6.1.2.1.31.1.1.1.17.67424256|2|1
+1.3.6.1.2.1.31.1.1.1.17.67428352|2|1
+1.3.6.1.2.1.31.1.1.1.17.67432448|2|1
+1.3.6.1.2.1.31.1.1.1.17.67436544|2|1
+1.3.6.1.2.1.31.1.1.1.17.134266880|2|2
+1.3.6.1.2.1.31.1.1.1.17.135938048|2|2
+1.3.6.1.2.1.31.1.1.1.18.67375104|4|eth1/1
+1.3.6.1.2.1.31.1.1.1.18.67379200|4|eth1/2
+1.3.6.1.2.1.31.1.1.1.18.67383296|4|eth1/3
+1.3.6.1.2.1.31.1.1.1.18.67387392|4|eth1/4
+1.3.6.1.2.1.31.1.1.1.18.67391488|4|pon1/5
+1.3.6.1.2.1.31.1.1.1.18.67395584|4|pon1/6
+1.3.6.1.2.1.31.1.1.1.18.67399680|4|pon1/7
+1.3.6.1.2.1.31.1.1.1.18.67403776|4|pon1/8
+1.3.6.1.2.1.31.1.1.1.18.67407872|4|pon1/9
+1.3.6.1.2.1.31.1.1.1.18.67411968|4|pon1/10
+1.3.6.1.2.1.31.1.1.1.18.67416064|4|pon1/11
+1.3.6.1.2.1.31.1.1.1.18.67420160|4|pon1/12
+1.3.6.1.2.1.31.1.1.1.18.67424256|4|pon1/13
+1.3.6.1.2.1.31.1.1.1.18.67428352|4|pon1/14
+1.3.6.1.2.1.31.1.1.1.18.67432448|4|pon1/15
+1.3.6.1.2.1.31.1.1.1.18.67436544|4|pon1/16
+1.3.6.1.2.1.31.1.1.1.18.134266880|4|telnet
+1.3.6.1.2.1.31.1.1.1.18.135938048|4|V0105
+1.3.6.1.2.1.31.1.1.1.19.67375104|67|0
+1.3.6.1.2.1.31.1.1.1.19.67379200|67|0
+1.3.6.1.2.1.31.1.1.1.19.67383296|67|0
+1.3.6.1.2.1.31.1.1.1.19.67387392|67|0
+1.3.6.1.2.1.31.1.1.1.19.67391488|67|0
+1.3.6.1.2.1.31.1.1.1.19.67395584|67|0
+1.3.6.1.2.1.31.1.1.1.19.67399680|67|0
+1.3.6.1.2.1.31.1.1.1.19.67403776|67|0
+1.3.6.1.2.1.31.1.1.1.19.67407872|67|0
+1.3.6.1.2.1.31.1.1.1.19.67411968|67|0
+1.3.6.1.2.1.31.1.1.1.19.67416064|67|0
+1.3.6.1.2.1.31.1.1.1.19.67420160|67|0
+1.3.6.1.2.1.31.1.1.1.19.67424256|67|0
+1.3.6.1.2.1.31.1.1.1.19.67428352|67|0
+1.3.6.1.2.1.31.1.1.1.19.67432448|67|0
+1.3.6.1.2.1.31.1.1.1.19.67436544|67|0
+1.3.6.1.2.1.31.1.1.1.19.134266880|67|0
+1.3.6.1.2.1.31.1.1.1.19.135938048|67|0
+1.3.6.1.2.1.31.1.2.1.3.1.2|2|1
+1.3.6.1.2.1.31.1.2.1.3.2.3|2|1
+1.3.6.1.2.1.31.1.2.1.3.3.4|2|1
+1.3.6.1.2.1.31.1.2.1.3.4.5|2|1
+1.3.6.1.2.1.31.1.2.1.3.5.6|2|1
+1.3.6.1.2.1.31.1.2.1.3.6.7|2|1
+1.3.6.1.2.1.31.1.2.1.3.7.8|2|1
+1.3.6.1.2.1.31.1.2.1.3.8.9|2|1
+1.3.6.1.2.1.31.1.2.1.3.9.10|2|1
+1.3.6.1.2.1.31.1.2.1.3.10.11|2|1
+1.3.6.1.2.1.31.1.2.1.3.11.12|2|1
+1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.1|2|5
+1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.2|2|5
+1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.3|2|5
+1.3.6.1.4.1.10072.2.15.1.4.1.1.3.1.4|2|5
+1.3.6.1.4.1.10072.2.15.1.5.1.1.2.1|2|3
+1.3.6.1.4.1.10072.2.15.1.5.1.1.2.2|2|3
+1.3.6.1.4.1.10072.2.15.1.5.1.1.3.1|2|34
+1.3.6.1.4.1.10072.2.15.1.5.1.1.3.2|2|34
+1.3.6.1.4.1.10072.2.15.1.6.1.1.2.1|2|34
+1.3.6.1.4.1.10072.2.20.1.1.1.1.1.7.1|4|V5.2.59.0
+1.3.6.1.4.1.10072.2.20.1.1.1.1.1.8.1|4|V1R12B192sp18
+1.3.6.1.4.1.10072.2.20.1.1.1.1.1.9.1|4|V2.3B1
+1.3.6.1.4.1.10072.2.20.1.1.2.1.1.18.1.1|4|4PA0S16091000090
+1.3.6.1.4.1.10072.2.20.1.1.2.1.1.19.1.1|2|4
+1.3.6.1.4.1.10072.2.20.1.1.2.1.1.20.1.1|2|29
+1.3.6.1.4.1.10072.2.20.1.1.2.1.1.28.1.1|2|256