From 7e18a0708813fbb9d682c2d864a8c5d7475e0f36 Mon Sep 17 00:00:00 2001 From: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Date: Mon, 11 Feb 2019 00:31:25 +0100 Subject: [PATCH] FS.COM (Fiberstore) 'GBN' and 'SWITCH' devices support (#9734) * Basic Support for Fiberstore devices * Basic Support for Fiberstore devices * mib files * sysObjectID added * mibs added * MIB corrections + CPU discovery + version and SN * CodeClimate + mempools * CodeClimate + mempools * mempools * 5800 * testdata * 5800 * tests * mempools for 5800 * CodeClimate * CodeClimate * Cleaning and comments * Tests for 5800 * CodeClimate * Update Fs.php * init processors[] * optimized logo * optimized logo * optimized logo * optimized logo * split FS devices * split FS devices * split FS devices - tests * split FS devices - class * split FS devices - class * split FS devices - tests * removing un-necessry condition * text and comments --- LibreNMS/OS/FsGbn.php | 60 + LibreNMS/OS/FsSwitch.php | 60 + html/images/os/fs.svg | 1 + includes/definitions/fs-gbn.yaml | 14 + includes/definitions/fs-switch.yaml | 16 + includes/discovery/mempools/fs-gbn.inc.php | 34 + includes/discovery/mempools/fs-switch.inc.php | 22 + includes/polling/mempools/fs-gbn.inc.php | 38 + includes/polling/mempools/fs-switch.inc.php | 27 + includes/polling/os/fs-gbn.inc.php | 42 + includes/polling/os/fs-switch.inc.php | 42 + mibs/MGMD-STD-MIB | 1610 + mibs/MSTP-MIB | 774 + mibs/STP-MIB | 841 + mibs/fs/ADMIN-MASTER-MIB | 119 + mibs/fs/ERRP-MIB | 506 + mibs/fs/GARP-MIB | 2886 + mibs/fs/GBNDeviceOEM-MIB | 425 + mibs/fs/GBNDevicePoe-MIB | 287 + mibs/fs/GBNDeviceSWAPI-MIB | 3259 + mibs/fs/GBNDeviceStack-MIB | 437 + mibs/fs/GBNDeviceSwitch-MIB | 2796 + mibs/fs/GBNL2Dhcp6Snooping-MIB | 364 + mibs/fs/GBNL2DhcpSnooping-MIB | 192 + mibs/fs/GBNL2PortSecurity-MIB | 501 + mibs/fs/GBNL2PppoePlus-MIB | 51 + mibs/fs/GBNL2QACL-MIB | 5675 ++ mibs/fs/GBNL2Switch-MIB | 1303 + mibs/fs/GBNL3-MIB | 1138 + mibs/fs/GBNL3DhcpRelay-MIB | 238 + mibs/fs/GBNL3IPPool-MIB | 450 + mibs/fs/GBNL3If-MIB | 469 + mibs/fs/GBNL3Igmp-MIB | 527 + mibs/fs/GBNL3Ospf-MIB | 224 + mibs/fs/GBNL3PIM-MIB | 336 + mibs/fs/GBNL3Rip-MIB | 350 + mibs/fs/GBNL3RouteCommon-MIB | 57 + mibs/fs/GBNPlatformChassis-MIB | 541 + mibs/fs/GBNPlatformGNLink-MIB | 1359 + mibs/fs/GBNPlatformOAM-MIB | 1613 + mibs/fs/GBNPlatformOAMMailalarm-MIB | 160 + mibs/fs/GBNPlatformOAMSntpClient-MIB | 305 + mibs/fs/GBNPlatformOAMSsh-MIB | 96 + mibs/fs/GBNPlatformOAMSyslog-MIB | 434 + mibs/fs/GBNPlatformOAMTelnet-MIB | 153 + mibs/fs/GBNServiceCM-MIB | 245 + mibs/fs/GBNServiceMACAUTHEN-MIB | 356 + mibs/fs/GBNServiceRADIUS-MIB | 229 + mibs/fs/GBNServiceRMON-MIB | 1560 + mibs/fs/GBNServiceTACACS-MIB | 112 + mibs/fs/LAG-ARCH-MIB | 153 + mibs/fs/LLDPPRIVATE-MIB | 54 + mibs/fs/MAC-NOTIFICATION-MIB | 437 + mibs/fs/NSCRTV-EPON-ALARM-MGM-MIB | 649 + mibs/fs/NSCRTV-EPON-IGMP-MGM-MIB | 732 + mibs/fs/NSCRTV-EPON-PERFORMANCE-STAT-MIB | 1773 + mibs/fs/NSCRTV-EPON-QOS-MGM-MIB | 524 + mibs/fs/NSCRTV-EPON-SNI-MIB | 719 + mibs/fs/NSCRTV-EPON-STP-MGM-MIB | 493 + mibs/fs/NSCRTV-EPON-SYSTEM-MIB | 1138 + mibs/fs/NSCRTV-EPON-VLAN-MGM-MIB | 947 + mibs/fs/NSCRTV-EPONEOC-EPON-MIB | 312 + mibs/fs/PIM-BSR-MIB | 715 + mibs/fs/SWITCH | 65200 ++++++++++++++++ tests/data/fs-gbn_2800.json | 6982 ++ tests/data/fs-gbn_3800.json | 23420 ++++++ tests/data/fs-switch_5800.json | 5178 ++ tests/snmpsim/fs-gbn_2800.snmprec | 1529 + tests/snmpsim/fs-gbn_3800.snmprec | 4594 ++ tests/snmpsim/fs-switch_5800.snmprec | 1101 + 70 files changed, 149984 insertions(+) create mode 100644 LibreNMS/OS/FsGbn.php create mode 100644 LibreNMS/OS/FsSwitch.php create mode 100644 html/images/os/fs.svg create mode 100644 includes/definitions/fs-gbn.yaml create mode 100644 includes/definitions/fs-switch.yaml create mode 100644 includes/discovery/mempools/fs-gbn.inc.php create mode 100644 includes/discovery/mempools/fs-switch.inc.php create mode 100644 includes/polling/mempools/fs-gbn.inc.php create mode 100644 includes/polling/mempools/fs-switch.inc.php create mode 100644 includes/polling/os/fs-gbn.inc.php create mode 100644 includes/polling/os/fs-switch.inc.php create mode 100644 mibs/MGMD-STD-MIB create mode 100644 mibs/MSTP-MIB create mode 100644 mibs/STP-MIB create mode 100644 mibs/fs/ADMIN-MASTER-MIB create mode 100644 mibs/fs/ERRP-MIB create mode 100644 mibs/fs/GARP-MIB create mode 100644 mibs/fs/GBNDeviceOEM-MIB create mode 100644 mibs/fs/GBNDevicePoe-MIB create mode 100644 mibs/fs/GBNDeviceSWAPI-MIB create mode 100644 mibs/fs/GBNDeviceStack-MIB create mode 100644 mibs/fs/GBNDeviceSwitch-MIB create mode 100644 mibs/fs/GBNL2Dhcp6Snooping-MIB create mode 100644 mibs/fs/GBNL2DhcpSnooping-MIB create mode 100644 mibs/fs/GBNL2PortSecurity-MIB create mode 100644 mibs/fs/GBNL2PppoePlus-MIB create mode 100644 mibs/fs/GBNL2QACL-MIB create mode 100644 mibs/fs/GBNL2Switch-MIB create mode 100644 mibs/fs/GBNL3-MIB create mode 100644 mibs/fs/GBNL3DhcpRelay-MIB create mode 100644 mibs/fs/GBNL3IPPool-MIB create mode 100644 mibs/fs/GBNL3If-MIB create mode 100644 mibs/fs/GBNL3Igmp-MIB create mode 100644 mibs/fs/GBNL3Ospf-MIB create mode 100644 mibs/fs/GBNL3PIM-MIB create mode 100644 mibs/fs/GBNL3Rip-MIB create mode 100644 mibs/fs/GBNL3RouteCommon-MIB create mode 100644 mibs/fs/GBNPlatformChassis-MIB create mode 100644 mibs/fs/GBNPlatformGNLink-MIB create mode 100644 mibs/fs/GBNPlatformOAM-MIB create mode 100644 mibs/fs/GBNPlatformOAMMailalarm-MIB create mode 100644 mibs/fs/GBNPlatformOAMSntpClient-MIB create mode 100644 mibs/fs/GBNPlatformOAMSsh-MIB create mode 100644 mibs/fs/GBNPlatformOAMSyslog-MIB create mode 100644 mibs/fs/GBNPlatformOAMTelnet-MIB create mode 100644 mibs/fs/GBNServiceCM-MIB create mode 100644 mibs/fs/GBNServiceMACAUTHEN-MIB create mode 100644 mibs/fs/GBNServiceRADIUS-MIB create mode 100644 mibs/fs/GBNServiceRMON-MIB create mode 100644 mibs/fs/GBNServiceTACACS-MIB create mode 100644 mibs/fs/LAG-ARCH-MIB create mode 100644 mibs/fs/LLDPPRIVATE-MIB create mode 100644 mibs/fs/MAC-NOTIFICATION-MIB create mode 100644 mibs/fs/NSCRTV-EPON-ALARM-MGM-MIB create mode 100644 mibs/fs/NSCRTV-EPON-IGMP-MGM-MIB create mode 100644 mibs/fs/NSCRTV-EPON-PERFORMANCE-STAT-MIB create mode 100644 mibs/fs/NSCRTV-EPON-QOS-MGM-MIB create mode 100644 mibs/fs/NSCRTV-EPON-SNI-MIB create mode 100644 mibs/fs/NSCRTV-EPON-STP-MGM-MIB create mode 100644 mibs/fs/NSCRTV-EPON-SYSTEM-MIB create mode 100644 mibs/fs/NSCRTV-EPON-VLAN-MGM-MIB create mode 100644 mibs/fs/NSCRTV-EPONEOC-EPON-MIB create mode 100644 mibs/fs/PIM-BSR-MIB create mode 100644 mibs/fs/SWITCH create mode 100644 tests/data/fs-gbn_2800.json create mode 100644 tests/data/fs-gbn_3800.json create mode 100644 tests/data/fs-switch_5800.json create mode 100644 tests/snmpsim/fs-gbn_2800.snmprec create mode 100644 tests/snmpsim/fs-gbn_3800.snmprec create mode 100644 tests/snmpsim/fs-switch_5800.snmprec diff --git a/LibreNMS/OS/FsGbn.php b/LibreNMS/OS/FsGbn.php new file mode 100644 index 0000000000..7594597b81 --- /dev/null +++ b/LibreNMS/OS/FsGbn.php @@ -0,0 +1,60 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 PipoCanaja + * @author PipoCanaja + */ + +namespace LibreNMS\OS; + +use LibreNMS\Device\Processor; +use LibreNMS\Interfaces\Discovery\ProcessorDiscovery; +use LibreNMS\OS; + +class FsGbn extends OS implements ProcessorDiscovery +{ + /** + * Discover processors. + * Returns an array of LibreNMS\Device\Processor objects that have been discovered + * + * @return array Processors + */ + public function discoverProcessors() + { + $processors = []; + + // Test first pair of OIDs from GBNPlatformOAM-MIB + $processors_data = snmpwalk_cache_oid($this->getDevice(), 'cpuDescription', [], 'GBNPlatformOAM-MIB', 'fs'); + $processors_data = snmpwalk_cache_oid($this->getDevice(), 'cpuIdle', $processors_data, 'GBNPlatformOAM-MIB', 'fs'); + foreach ($processors_data as $index => $entry) { + $processors[] = Processor::discover( + $this->getName(), + $this->getDeviceId(), + '.1.3.6.1.4.1.13464.1.2.1.1.2.11.'.$index, //GBNPlatformOAM-MIB::cpuIdle.0 = INTEGER: 95 + $index, + $entry['cpuDescription'], + -1, + 100 - $entry['cpuIdle'] + ); + } + return $processors; + } +} diff --git a/LibreNMS/OS/FsSwitch.php b/LibreNMS/OS/FsSwitch.php new file mode 100644 index 0000000000..2c230fb85d --- /dev/null +++ b/LibreNMS/OS/FsSwitch.php @@ -0,0 +1,60 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 PipoCanaja + * @author PipoCanaja + */ + +namespace LibreNMS\OS; + +use LibreNMS\Device\Processor; +use LibreNMS\Interfaces\Discovery\ProcessorDiscovery; +use LibreNMS\OS; + +class FsSwitch extends OS implements ProcessorDiscovery +{ + /** + * Discover processors. + * Returns an array of LibreNMS\Device\Processor objects that have been discovered + * + * @return array Processors + */ + public function discoverProcessors() + { + $processors = []; + + // Tests OID from SWITCH MIB. + $processors_data = snmpwalk_cache_oid($this->getDevice(), 'ssCpuIdle', [], 'SWITCH', 'fs'); + + foreach ($processors_data as $index => $entry) { + $processors[] = Processor::discover( + "fs-SWITCHMIB", + $this->getDeviceId(), + '.1.3.6.1.4.1.27975.1.2.11.' . $index, + $index, + "CPU", + -1, + 100 - $entry['ssCpuIdle'] + ); + } + return $processors; + } +} diff --git a/html/images/os/fs.svg b/html/images/os/fs.svg new file mode 100644 index 0000000000..44deecff9a --- /dev/null +++ b/html/images/os/fs.svg @@ -0,0 +1 @@ + diff --git a/includes/definitions/fs-gbn.yaml b/includes/definitions/fs-gbn.yaml new file mode 100644 index 0000000000..fbd32a4969 --- /dev/null +++ b/includes/definitions/fs-gbn.yaml @@ -0,0 +1,14 @@ +os: fs-gbn +text: 'Fiberstore GBN' +type: network +icon: fs +group: fs +over: + - { graph: device_bits, text: 'Device Traffic' } + - { graph: device_processor, text: 'Processor Usage' } + - { graph: device_mempool, text: 'Memory Usage' } +mib_dir: + - fs +discovery: + - sysObjectID: + - .1.3.6.1.4.1.13464 diff --git a/includes/definitions/fs-switch.yaml b/includes/definitions/fs-switch.yaml new file mode 100644 index 0000000000..310117462f --- /dev/null +++ b/includes/definitions/fs-switch.yaml @@ -0,0 +1,16 @@ +os: fs-switch +text: 'Fiberstore Switch' +type: network +icon: fs +group: fs +over: + - { graph: device_bits, text: 'Device Traffic' } + - { graph: device_processor, text: 'Processor Usage' } + - { graph: device_mempool, text: 'Memory Usage' } +mib_dir: + - fs +discovery: + - sysObjectID: + - .1.3.6.1.4.1.51134 + - .1.3.6.1.4.1.27975 + - .1.3.6.1.4.1.12345 diff --git a/includes/discovery/mempools/fs-gbn.inc.php b/includes/discovery/mempools/fs-gbn.inc.php new file mode 100644 index 0000000000..df69f8935d --- /dev/null +++ b/includes/discovery/mempools/fs-gbn.inc.php @@ -0,0 +1,34 @@ + $entry) { + // + // We keep the foreach in case multiple replies are seen here. + // We could replace it with a condition (if we suppose only 1 reply will ever come) but + // this would not change the complexity. + // + if ($entry['memorySize'] != 0) { + d_echo($index.' '.$entry['memorySize'].' -> '.$entry['memoryIdle'].' ('.$entry['cpuDescription'].")\n"); + $descr = $entry['cpuDescription']; + if (empty($descr)) { + $descr = "Chassis CPU"; + } + $descr .= " Memory"; + $usage = $entry['memoryIdle']; + discover_mempool($valid_mempool, $device, $index, 'fs-gbn', $descr, '1', null, null); + } //end if + } //end foreach +} //end if +unset($mempools_array); diff --git a/includes/discovery/mempools/fs-switch.inc.php b/includes/discovery/mempools/fs-switch.inc.php new file mode 100644 index 0000000000..7fbbf75d34 --- /dev/null +++ b/includes/discovery/mempools/fs-switch.inc.php @@ -0,0 +1,22 @@ + $entry) { + if ($entry['memTotalReal'] > 0) { + d_echo($index.' '.$entry['memTotalReal'].' -> '.$entry['memTotalFree']."\n"); + $descr = "Chassis"; + $descr .= " Memory"; + $usage = $entry['memTotalFree']; + discover_mempool($valid_mempool, $device, $index, 'fs-switch', $descr, '1', null, null); + } //end if + } //end foreach +} //end if +unset($mempools_array); diff --git a/includes/polling/mempools/fs-gbn.inc.php b/includes/polling/mempools/fs-gbn.inc.php new file mode 100644 index 0000000000..fbb890c074 --- /dev/null +++ b/includes/polling/mempools/fs-gbn.inc.php @@ -0,0 +1,38 @@ + 0) { + $perc = ($entry['memorySize'] - $entry['memoryIdle']) / $entry['memorySize'] * 100; + $mempool['total'] = $entry['memorySize']; + $mempool['used'] = ($entry['memorySize'] - $entry['memoryIdle']); + $mempool['free'] = ($entry['memoryIdle']); +} diff --git a/includes/polling/mempools/fs-switch.inc.php b/includes/polling/mempools/fs-switch.inc.php new file mode 100644 index 0000000000..3da9aa148d --- /dev/null +++ b/includes/polling/mempools/fs-switch.inc.php @@ -0,0 +1,27 @@ + 0) { + $perc = ($entry['memTotalUsed']) / $entry['memTotalReal'] * 100; + $mempool['total'] = ($entry['memTotalReal'] * 1024); + $mempool['used'] = ($entry['memTotalUsed'] * 1024); + $mempool['free'] = ($entry['memTotalFree'] * 1024); +} diff --git a/includes/polling/os/fs-gbn.inc.php b/includes/polling/os/fs-gbn.inc.php new file mode 100644 index 0000000000..3230afcd4f --- /dev/null +++ b/includes/polling/os/fs-gbn.inc.php @@ -0,0 +1,42 @@ += 3 * HelloTimer " + --Ö÷½ÚµãºÍ±ß½ç½ÚµãʹÓô˶¨Ê±Æ÷¶Ô»·Â·µÄÍêÕûÐÔ½øÐÐÖÜÆÚÐÔ¼ì²â + ::= { errp 2 } + + errpHealthTimeout OBJECT-TYPE + SYNTAX Integer32(3..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The timeout value used by master during ring health detection. + The correct operational formula: FailedTimer >= 3 * HelloTimer" + --Ö÷½Úµã¼ì²â»·Â·ÍêÕûÐÔʹÓõij¬Ê±¶¨Ê±Æ÷Öµ£¬¸ÃÖµ±ØÐë´óÓÚµÈÓÚHelloTimerµÄ3±¶¡£ + ::= { errp 3 } + + errpMajorFaultTime OBJECT-TYPE + SYNTAX Integer32(2..29) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timeout value used by assitant edge during ring health detection." + --¸¨Öú±ßÔµ½Úµã¼ì²â»·Â·ÍêÕûÐÔʹÓõij¬Ê±¶¨Ê±Æ÷Öµ + ::= { errp 4 } + + errpPrefwdTimeout OBJECT-TYPE + SYNTAX Integer32(3..30) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The block timeout value used by node when portup event occurs." + --¶Ë¿ÚUPʱ½ÚµãʹÓõĶ˿Ú×èÈû³¬Ê±¶¨Ê±Æ÷ + ::= { errp 5 } + + errpDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF ErrpDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains domain-specific information." + --ÓÉerrpÓò±íÏî¹¹³ÉµÄ±í + ::= { errp 6 } + + errpDomainEntry OBJECT-TYPE + SYNTAX ErrpDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information maintained by every domain." + --»ùÓÚÿ¸öÓòµÄ±íÏî + INDEX { errpDomainId } + ::= { errpDomainTable 1 } + + ErrpDomainEntry ::= + SEQUENCE { + errpDomainId Integer32, + errpMVlanId Integer32, + errpWorkMode INTEGER, + errpDomainRowStatus RowStatus + } + + errpDomainId OBJECT-TYPE + SYNTAX Integer32(0..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The domain ID is used when network is managed in unit of domain, one + domain should be a set of contiguous bridges." + --ÓòIDÔÚÍøÂç·ÖÓò¹ÜÀíʱʹÓã¬Ò»¸öÓò¾ÍÊÇÒ»¸öÅþÁÚµÄÍøÇż¯ºÏ + ::= { errpDomainEntry 1 } + + errpMVlanId OBJECT-TYPE + SYNTAX Integer32 (1..4093) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The manage VLAN ID of the domain, can not be an existing vlan." + --ÓòµÄ¹ÜÀíVLAN ID, ÿ¸öÓò¾ßÓÐÁ½¸ö¿ØÖÆVLAN£¬·Ö±ð½Ð×öÖ÷¿ØÖÆVLANºÍ×Ó¿ØÖÆVLAN¡£ + --Ö÷»·µÄЭÒ鱨ÎÄÔÚÖ÷¿ØÖÆVLANÖд«²¥£¬×Ó»·µÄЭÒ鱨ÎÄÔÚ×Ó¿ØÖÆVLANÖд«²¥¡£ + --ÅäÖÃʱֻÐèÒªÖ¸¶¨Ö÷¿ØÖÆVLAN£¬¶ø°Ñ±ÈÖ÷¿ØÖÆVLAN IDÖµ´ó1µÄVLAN×÷Ϊ×Ó¿ØÖÆVLAN¡£ + --Ö÷¿ØÖÆVLANºÍ×Ó¿ØÖÆVLAN¶¼²»ÄÜÖ¸¶¨ÎªÒѾ­´æÔÚµÄVLAN£¬MACµØÖ·Ñ§Ï°Ä£Ê½±ØÐëÅäÖÃΪIVL¡£ + ::= { errpDomainEntry 2 } + + errpWorkMode OBJECT-TYPE + SYNTAX INTEGER { + standard(1), + huaWei(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The work mode of the domain. If standard(1) is set, then the domain works on RFC3619 + standard. If huaWei(2) is set, then the domain works on RRPP standard, and is able + to work together with the Huawei equipment." + --ÓòµÄ¹¤×÷ģʽ + ::= { errpDomainEntry 3 } + + errpDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus { + active(1), + createAndGo(4), + destroy(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to create or delete a domain." + ::= { errpDomainEntry 4 } + + errpRingTable OBJECT-TYPE + SYNTAX SEQUENCE OF ErrpRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains domain-and-ring-specific information." + --ÓÉerrp»·±íÏî¹¹³ÉµÄ±í + ::= { errp 7 } + + errpRingEntry OBJECT-TYPE + SYNTAX ErrpRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information maintained by every ring." + --»ùÓÚÿ¸ö»·µÄ±íÏî + INDEX { errpDomainId, errpRingId } + ::= { errpRingTable 1 } + + ErrpRingEntry ::= + SEQUENCE { + errpRingId Integer32, + errpRingLevel Integer32, + errpBrdgRole INTEGER, + errpPriComPortId Integer32, + errpSecEdgePortId Integer32, + errpRingRowStatus RowStatus, + errpNodeState INTEGER, + errpPriComPortState INTEGER, + errpSecEdgePortState INTEGER, + errpQuerySolicit INTEGER + } + + errpRingId OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of ethernet ring which reside in a domain." + --ÓòÄÚÒÔÌ«»·µÄID + ::= { errpRingEntry 1 } + + errpRingLevel OBJECT-TYPE + SYNTAX Integer32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ring level,0 means master ring, while 1 means sub ring." + --»·µÄ¼¶±ð,0ΪÖ÷»·,1Ϊ×Ó»· + ::= { errpRingEntry 2 } + + errpBrdgRole OBJECT-TYPE + SYNTAX INTEGER { + master(1), + trans(2), + edge(3), + assEdge(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bridge role in ethernet ring." + --ÍøÇÅÔÚ»·ÖеĽÇÉ« + ::= { errpRingEntry 3 } + + errpPriComPortId OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The primary port id when bridge is master or transmit,the common port id otherwise." + --ÍøÇÅΪÖ÷½Úµã»òÕß´«Êä½Úµãʱ´ËÖµ´ú±íÖ÷¶Ë¿Ú,·ñÔò´ú±í¹«¹²¶Ë¿Ú + ::= { errpRingEntry 4 } + + errpSecEdgePortId OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The secondary port id when bridge is master or transmit,the edge port id otherwise." + --ÍøÇÅΪÖ÷½Úµã»òÕß´«Êä½Úµãʱ´ËÖµ´ú±í¸±¶Ë¿Ú,·ñÔò´ú±í±ß½ç¶Ë¿Ú + ::= { errpRingEntry 5 } + + errpRingRowStatus OBJECT-TYPE + SYNTAX RowStatus { + active(1), + notInService(2), + notReady(3), + createAndGo(4), + createAndWait(5), + destroy(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of this ring." + --ָʾµ±Ç°»·µÄ»î¶¯×´Ì¬ + ::= { errpRingEntry 6 } + + errpNodeState OBJECT-TYPE + SYNTAX INTEGER { + begin(0), + health(1), + fault(2), + linkUp(3), + linkDown(4), + preforwarding(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The node state in the ring. begin(0) means node is inactive or inital state. + health(1) means master node detects the ring in a health state. + fault(2) means master node detects the ring in a fault state. + linkUp(3) means both ring ports of the transmit node are link up and in the forwarding state. + linkDown(4) means at least one ring port of the transmit node is link down. + preforwarding(5) means at least one ring port of the transmit node is just link up and in the blocking state. + Edge node and assistant edge node are same as transmit node, but only concern about the edge port state." + ::= { errpRingEntry 7 } + + errpPriComPortState OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + forwarding(1), + blocking(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The primary port or common port state in the ring. disabled(0) means port is link down. + forwarding(1) means port is in the forwarding state. + blocking(2) means port is in the blocking or discarding state." + ::= { errpRingEntry 8 } + + errpSecEdgePortState OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + forwarding(1), + blocking(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The secondary port or edge port state in the ring. disabled(0) means port is link down. + forwarding(1) means port is in the forwarding state. + blocking(2) means port is in the blocking or discarding state." + ::= { errpRingEntry 9 } + + errpQuerySolicit OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable Query Solicit function of the ring." + ::= { errpRingEntry 10 } + + errpRingStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF ErrpRingStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains statistics for the ERRP ring ports." + ::= { errp 8 } + + errpRingStatsEntry OBJECT-TYPE + SYNTAX ErrpRingStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of statistics maintained by every ring port. The sequence is: + (domain,ring,priComPort),(domain,ring,secEdgePort), + (domain,next ring,priComPort),(domain,next ring,secEdgePort),..., + (next domain,ring,priComPort),(next domain,ring,secEdgePort), + (next domain,next ring,priComPort),......" + INDEX { errpDomainId, errpRingId, errpRingPortId } + ::= { errpRingStatsTable 1 } + + ErrpRingStatsEntry ::= + SEQUENCE { + errpRingPortId Integer32, + errpHealthTx Counter32, + errpHealthRx Counter32, + errpCommonFlushTx Counter32, + errpCommonFlushRx Counter32, + errpCompleteFlushTx Counter32, + errpCompleteFlushRx Counter32, + errpLinkDownTx Counter32, + errpLinkDownRx Counter32, + errpLinkUpTx Counter32, + errpLinkUpRx Counter32, + errpEdgeHelloTx Counter32, + errpEdgeHelloRx Counter32, + errpMajorFaultTx Counter32, + errpMajorFaultRx Counter32 + } + + errpRingPortId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port equals to errpPriComPortId or errpSecEdgePortId of the ring within errpRingTable." + ::= { errpRingStatsEntry 1 } + + errpHealthTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Health(or Hello) packets transmitted on this port." + ::= { errpRingStatsEntry 2 } + + errpHealthRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Health(or Hello) packets received on this port." + ::= { errpRingStatsEntry 3 } + + errpCommonFlushTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Common Flush packets transmitted on this port." + ::= { errpRingStatsEntry 4 } + + errpCommonFlushRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Common Flush packets received on this port." + ::= { errpRingStatsEntry 5 } + + errpCompleteFlushTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Complete Flush packets transmitted on this port." + ::= { errpRingStatsEntry 6 } + + errpCompleteFlushRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Complete Flush packets received on this port." + ::= { errpRingStatsEntry 7 } + + errpLinkDownTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Link Down packets transmitted on this port." + ::= { errpRingStatsEntry 8 } + + errpLinkDownRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Link Down packets received on this port." + ::= { errpRingStatsEntry 9 } + + errpLinkUpTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Link Up packets transmitted on this port." + ::= { errpRingStatsEntry 10 } + + errpLinkUpRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Link Up packets received on this port." + ::= { errpRingStatsEntry 11 } + + errpEdgeHelloTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Edge Hello packets transmitted on this port." + ::= { errpRingStatsEntry 12 } + + errpEdgeHelloRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Edge Hello packets received on this port." + ::= { errpRingStatsEntry 13 } + + errpMajorFaultTx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Major Fault packets transmitted on this port." + ::= { errpRingStatsEntry 14 } + + errpMajorFaultRx OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of Major Fault packets received on this port." + ::= { errpRingStatsEntry 15 } + + errpTrap OBJECT IDENTIFIER ::= { errp 9 } + ---------------------------------------------------------------------------------- + --ERRP TRAP MIB-- + ---------------------------------------------------------------------------------- + + errpRingNodeStateChange NOTIFICATION-TYPE + OBJECTS { errpNodeState } + STATUS current + DESCRIPTION + "The node state in the ring turns to health or fault. + health(1) means master node detects the ring in a health state. + fault(2) means master node detects the ring in a fault state." + ::= { errpTrap 1 } + + errpPriComPortStateChange NOTIFICATION-TYPE + OBJECTS { errpPriComPortState } + STATUS current + DESCRIPTION + "The primary port or common port state in the ring turns to disabled, forwarding, or blocking. + disabled(0) means port is link down. + forwarding(1) means port is in the forwarding state. + blocking(2) means port is in the blocking or discarding state." + ::= { errpTrap 2 } + + errpSecEdgePortStateChange NOTIFICATION-TYPE + OBJECTS { errpSecEdgePortState } + STATUS current + DESCRIPTION + "The secondary port or edge port state in the ring turns to disabled, forwarding, or blocking. + disabled(0) means port is link down. + forwarding(1) means port is in the forwarding state. + blocking(2) means port is in the blocking or discarding state." + ::= { errpTrap 3 } + END diff --git a/mibs/fs/GARP-MIB b/mibs/fs/GARP-MIB new file mode 100644 index 0000000000..5a27190eb7 --- /dev/null +++ b/mibs/fs/GARP-MIB @@ -0,0 +1,2886 @@ +GARP-MIB DEFINITIONS ::= BEGIN + +-- ------------------------------------------------------------- +-- Internal GARP MIB +-- ------------------------------------------------------------- + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + TimeInterval, RowStatus, TruthValue, DisplayString, + TEXTUAL-CONVENTION, MacAddress + FROM SNMPv2-TC + gbnL2 + FROM ADMIN-MASTER-MIB + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + +garpMib MODULE-IDENTITY + LAST-UPDATED "9907060000Z" + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO + "admin Systems" + DESCRIPTION + "GARP Module Management" + +-- revision history + + REVISION "9907060000Z" + DESCRIPTION + "Initial version" + + ::= { gbnL2 2 } + +garpMIBObjects OBJECT IDENTIFIER ::= { garpMib 1 } + +-- ------------------------------------------------------------- +-- Textual Conventions +-- ------------------------------------------------------------- + +EnabledStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A simple status value for the object." + SYNTAX INTEGER { + enabled(1), disabled(2) } + +TimeFilter ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "To be used for the index to a table. Allows an application + to download only those rows changed since a particular time. + A row is considered changed if the value of any object in the + row changes or if the row is created or deleted. + + When sysUpTime is equal to zero, this table shall be empty. + + One entry exists for each past value of sysUpTime, except that + the whole table is purged should sysUpTime wrap. + + As this basic row is updated new conceptual rows are created + (which still share the now updated object values with all + other instances). The number of instances which are created + is determined by the value of sysUpTime at which the basic row + was last updated. One instance will exist for each value of + sysUpTime at the last update time for the row. A new + timeMark instance is created for each new sysUpTime value. + Each new conceptual row will be associated with the timeMark + instance which was created at the value of sysUpTime with + which the conceptual row is to be associated. + + By definition all conceptual rows were updated at or after + time zero and so at least one conceptual row (associated with + timeMark.0) must exist for each underlying (basic) row. + + See the appendix for further discussion of this variable. + + Consider the following fooTable: + + fooTable ... + INDEX { fooTimeMark, fooIndex } + + FooEntry { + fooTimeMark TimeFilter + fooIndex INTEGER, + fooCounts Counter + } + + Should there be two basic rows in this table (fooIndex == 1, + fooIndex == 2) and row 1 was updated most recently at time 6, + while row 2 was updated most recently at time 8, and both rows + had been updated on several earlier occasions such that the + current values were 5 and 9 respectively then the following + fooCounts instances would exist. + + fooCounts.0.1 5 + fooCounts.0.2 9 + fooCounts.1.1 5 + fooCounts.1.2 9 + fooCounts.2.1 5 + fooCounts.2.2 9 + fooCounts.3.1 5 + fooCounts.3.2 9 + fooCounts.4.1 5 + fooCounts.4.2 9 + fooCounts.5.1 5 + fooCounts.5.2 9 + fooCounts.6.1 5 + fooCounts.6.2 9 + fooCounts.7.2 9 -- note that row 1 doesn't exist for + fooCounts.8.2 9 -- times 7 and 8" + SYNTAX TimeTicks + +PortList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + ports, with the first octet specifying ports 1 through + 8, the second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered port, and the least significant bit + represents the highest numbered port. Thus, each port + of the bridge is represented by a single bit within the + value of this object. If that bit has a value of '1' + then that port is included in the set of ports; the port + is not included if its bit has a value of '0'." + SYNTAX OCTET STRING + +VlanIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A value used to index per-VLAN tables: values of 0 and + 4095 are not permitted; if the value is between 1 and + 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with + global scope within a given bridged domain (see VlanId + textual convention). If the value is greater than 4095 + then it represents a VLAN with scope local to the + particular agent, i.e. one without a global VLAN-ID + assigned to it. Such VLANs are outside the scope of + IEEE 802.1Q but it is convenient to be able to manage them + in the same way using this MIB." + SYNTAX Unsigned32 + +VlanId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A 12-bit VLAN ID used in the VLAN Tag header." + SYNTAX INTEGER (1..4094) + +-- ------------------------------------------------------------- +-- groups in the GARP MIB +-- ------------------------------------------------------------- + +gDot1qBase OBJECT IDENTIFIER ::= { garpMIBObjects 1 } +gDot1qTp OBJECT IDENTIFIER ::= { garpMIBObjects 2 } +gDot1qStatic OBJECT IDENTIFIER ::= { garpMIBObjects 3 } +gDot1qVlan OBJECT IDENTIFIER ::= { garpMIBObjects 4 } +gDot1dGarp OBJECT IDENTIFIER ::= { garpMIBObjects 5 } +gDot1dGmrp OBJECT IDENTIFIER ::= { garpMIBObjects 6 } +gDot1dExtBase OBJECT IDENTIFIER ::= { garpMIBObjects 7 } +gDot1qExtend OBJECT IDENTIFIER ::= { garpMIBObjects 8 } + +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- gDot1qBase group +-- ------------------------------------------------------------- + +gDot1qVlanVersionNumber OBJECT-TYPE + SYNTAX INTEGER { + version1(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version number of IEEE 802.1Q that this device + supports." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.1" + DEFVAL { 1 } + ::= { gDot1qBase 1 } + +gDot1qMaxVlanId OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum IEEE 802.1Q VLAN ID that this device + supports." + REFERENCE + "IEEE 802.1Q/D11 Section 9.3.2.3" + ::= { gDot1qBase 2 } + +gDot1qMaxSupportedVlans OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of IEEE 802.1Q VLANs that this + device supports." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.1" + ::= { gDot1qBase 3 } + +gDot1qNumVlans OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of IEEE 802.1Q VLANs that are + configured in this device." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.1.1" + ::= { gDot1qBase 4 } + +gDot1qGvrpStatus OBJECT-TYPE + SYNTAX EnabledStatus{ enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { enabled } + The administrative status requested by management for + GVRP. The value enabled(1) indicates that GVRP should + be enabled on this device, on all ports for which it has + not been specifically disabled. When disabled(2), GVRP + is disabled on all ports and all GVRP packets will be + forwarded transparently. This object affects all GVRP + Applicant and Registrar state machines. A transition + from disabled(2) to enabled(1) will cause a reset of all + GVRP state machines on all ports." + DEFVAL { disabled } + ::= { gDot1qBase 5 } + +gDot1qVlanIndexMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanIndexMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table gives the mapping of linear indices to + VLAN Indices. It is necessary because CCDGEN doesn't + support nonlinear indices." + REFERENCE + "No reference" + ::= { gDot1qBase 6 } + +gDot1qVlanIndexMappingEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanIndexMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry maps a linear index to a VLAN index." + INDEX { gDot1qVlanSlotIndex } + ::= { gDot1qVlanIndexMappingTable 1 } + +GarpDot1qVlanIndexMappingEntry ::= + SEQUENCE { + gDot1qVlanSlotIndex + INTEGER, + gDot1qVlanSlotActualIndex + VlanIndex + } + +gDot1qVlanSlotIndex OBJECT-TYPE + SYNTAX INTEGER (1..64) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The durable slot index for this VLAN" + ::= { gDot1qVlanIndexMappingEntry 1 } + +gDot1qVlanSlotActualIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The actual VLAN index for this durable VLAN slot" + ::= { gDot1qVlanIndexMappingEntry 2 } + +-- ------------------------------------------------------------- +-- the gDot1qTp group +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- the current Filtering Database Table +-- ------------------------------------------------------------- + +gDot1qFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains configuration and control + information for each Filtering Database currently + operating on this device. Entries in this table appear + automatically when VLANs are assigned FDB IDs in the + gDot1qVlanCurrentTable." + ::= { gDot1qTp 1 } + +gDot1qFdbEntry OBJECT-TYPE + SYNTAX GarpDot1qFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific Filtering Database." + INDEX { gDot1qFdbId } + ::= { gDot1qFdbTable 1 } + +GarpDot1qFdbEntry ::= + SEQUENCE { + gDot1qFdbId + Unsigned32, + gDot1qFdbDynamicCount + Counter32 + } + +gDot1qFdbId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identity of this Filtering Database." + ::= { gDot1qFdbEntry 1 } + +gDot1qFdbDynamicCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of dynamic entries in this + Filtering Database." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.1.1.3" + ::= { gDot1qFdbEntry 2 } + +-- ------------------------------------------------------------- +-- Multiple Forwarding Databases for 802.1Q Transparent devices +-- This table is an alternative to the dot1dTpFdbTable, +-- previously defined for 802.1D devices which only support a +-- single Forwarding Database. +-- ------------------------------------------------------------- + +gDot1qTpFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qTpFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about unicast entries + for which the device has forwarding and/or filtering + information. This information is used by the + transparent bridging function in determining how to + propagate a received frame." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7" + ::= { gDot1qTp 2 } + +gDot1qTpFdbEntry OBJECT-TYPE + SYNTAX GarpDot1qTpFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific unicast MAC address for + which the device has some forwarding and/or filtering + information." + INDEX { gDot1qFdbId, gDot1qTpFdbAddress } + ::= { gDot1qTpFdbTable 1 } + +GarpDot1qTpFdbEntry ::= + SEQUENCE { + gDot1qTpFdbAddress + MacAddress, + gDot1qTpFdbPort + INTEGER, + gDot1qTpFdbStatus + INTEGER + } + +gDot1qTpFdbAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unicast MAC address for which the device has + forwarding and/or filtering information." + ::= { gDot1qTpFdbEntry 1 } + +gDot1qTpFdbPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Either the value '0', or the port number of the port on + which a frame having a source address equal to the value + of the corresponding instance of gDot1qTpFdbAddress has + been seen. A value of '0' indicates that the port + number has not been learned but that the device does + have some forwarding/filtering information about this + address (e.g. in the gDot1qStaticUnicastTable). + Implementors are encouraged to assign the port value to + this object whenever it is learned even for addresses + for which the corresponding value of gDot1qTpFdbStatus is + not learned(3)." + ::= { gDot1qTpFdbEntry 2 } + +gDot1qTpFdbStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + learned(3), + self(4), + mgmt(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this entry. The meanings of the values + are: + other(1) - none of the following. This may include + the case where some other MIB object (not the + corresponding instance of gDot1qTpFdbPort, nor an + entry in the gDot1qStaticUnicastTable) is being + used to determine if and how frames addressed to + the value of the corresponding instance of + gDot1qTpFdbAddress are being forwarded. + invalid(2) - this entry is no longer valid (e.g., it + was learned but has since aged out), but has not + yet been flushed from the table. + learned(3) - the value of the corresponding instance + of gDot1qTpFdbPort was learned and is being used. + self(4) - the value of the corresponding instance of + gDot1qTpFdbAddress represents one of the device's + addresses. The corresponding instance of + gDot1qTpFdbPort indicates which of the device's + ports has this address. + mgmt(5) - the value of the corresponding instance of + gDot1qTpFdbAddress is also the value of an + existing instance of gDot1qStaticAddress." + ::= { gDot1qTpFdbEntry 3 } +-- ------------------------------------------------------------- +-- Dynamic Group Registration Table +-- ------------------------------------------------------------- + +gDot1qTpGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qTpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing filtering information for VLANs + configured into the bridge by (local or network) + management, or learnt dynamically, specifying the set of + ports to which frames received on a VLAN for this FDB + and containing a specific Group destination address are + allowed to be forwarded." + ::= { gDot1qTp 3 } + +gDot1qTpGroupEntry OBJECT-TYPE + SYNTAX GarpDot1qTpGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Filtering information configured into the bridge by + management, or learnt dynamically, specifying the set of + ports to which frames received on a VLAN and containing + a specific Group destination address, are allowed to be + forwarded. The subset of these ports learnt dynamically + is also provided." + INDEX { gDot1qVlanIndex, gDot1qTpGroupAddress } + ::= { gDot1qTpGroupTable 1 } + +GarpDot1qTpGroupEntry ::= + SEQUENCE { + gDot1qTpGroupAddress + MacAddress, + gDot1qTpGroupEgressPorts + PortList, + gDot1qTpGroupLearnt + PortList + } + +gDot1qTpGroupAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination Group MAC address in a frame to which + this entry's filtering information applies." + ::= { gDot1qTpGroupEntry 1 } + +gDot1qTpGroupEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete set of ports, in this VLAN, to which + frames destined for this Group MAC address are currently + being explicitly forwarded. This does not include ports + for which this address is only implicitly forwarded, in + the gDot1qForwardAllPorts list." + ::= { gDot1qTpGroupEntry 2 } + +gDot1qTpGroupLearnt OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The subset of ports in gDot1qTpGroupEgressPorts which + were learnt by GMRP or some other dynamic mechanism, in + this Filtering database." + ::= { gDot1qTpGroupEntry 3 } + +-- ------------------------------------------------------------- +-- Service Requirements Group +-- ------------------------------------------------------------- + +gDot1qForwardAllTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qForwardAllEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing forwarding information for each + VLAN, specifying the set of ports to which forwarding of + all multicasts applies, configured statically by + management or dynamically by GMRP. An entry appears in + this table for all VLANs that are currently + instantiated." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.2, 12.7.7" + ::= { gDot1qTp 4 } +gDot1qForwardAllEntry OBJECT-TYPE + SYNTAX GarpDot1qForwardAllEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Forwarding information for a VLAN, specifying the set + of ports to which all multicasts should be forwarded, + configured statically by management or dynamically by + GMRP." +-- +-- This table is actually indexed by VLAN ID, however for the purposes +-- of default value table generation, we introduce a phony index of +-- the dimension of the VLAN slot table. +-- +-- INDEX { gDot1qVlanIndex } +-- + INDEX { gDot1qVlanSlotIndex } -- Don't use this index at runtime + ::= { gDot1qForwardAllTable 1 } + +GarpDot1qForwardAllEntry ::= + SEQUENCE { + gDot1qForwardAllPorts + PortList, + gDot1qForwardAllVlanIndex + VlanIndex, + gDot1qForwardAllStaticPorts + PortList, + gDot1qForwardAllForbiddenPorts + PortList + } + +gDot1qForwardAllPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete set of ports in this VLAN to which all + multicast group-addressed frames are to be forwarded. + This includes ports for which this need has been + determined dynamically by GMRP, or configured statically + by management." + ::= { gDot1qForwardAllEntry 1 } + +gDot1qForwardAllVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + This is here only to allow the VLAN index to be saved along + with the corresponding forward all table entry." + ::= { gDot1qForwardAllEntry 2 } + +gDot1qForwardAllStaticPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports configured by management in this VLAN + to which all multicast group-addressed frames are to be + forwarded. Ports entered in this list will also appear + in the complete set shown by gDot1qForwardAllPorts. This + value will be restored after the device is reset. This + only applies to ports that are members of the VLAN, + defined by gDot1qVlanCurrentEgressPorts. A port may not + be added in this set if it is already a member of the + set of ports in gDot1qForwardAllForbiddenPorts. The + default value is a string of ones of appropriate length, + to indicate standard non-EFS behaviour, i.e. forward + all multicasts to all ports." + ::= { gDot1qForwardAllEntry 3 } + +gDot1qForwardAllForbiddenPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports configured by management in this VLAN + for which the Service Requirement attribute Forward All + Multicast Groups may not be dynamically registered by + GMRP. This value will be restored after the device is + reset. A port may not be added in this set if it is + already a member of the set of ports in + gDot1qForwardAllStaticPorts. The default value is a + string of zeros of appropriate length." + ::= { gDot1qForwardAllEntry 4 } + +gDot1qForwardUnregisteredTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qForwardUnregisteredEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing forwarding information for each + VLAN, specifying the set of ports to which forwarding of + multicast group-addressed frames for which there is no + more specific forwarding information applies. This is + configured statically by management and determined + dynamically by GMRP. An entry appears in this table for + all VLANs that are currently instantiated." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.2, 12.7.7" + ::= { gDot1qTp 5 } + +gDot1qForwardUnregisteredEntry OBJECT-TYPE + SYNTAX GarpDot1qForwardUnregisteredEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Forwarding information for a VLAN, specifying the set + of ports to which all multicasts for which there is no + more specific forwarding information shall be forwarded. + This is configured statically by management or + dynamically by GMRP." +-- +-- This table is actually indexed by VLAN ID, however for the purposes +-- of default value table generation, we introduce a phony index of +-- the dimension of the VLAN slot table. +-- +-- INDEX { gDot1qVlanIndex } +-- + INDEX { gDot1qVlanSlotIndex } -- Don't use this index at runtime + ::= { gDot1qForwardUnregisteredTable 1 } + +GarpDot1qForwardUnregisteredEntry ::= + SEQUENCE { + gDot1qForwardUnregisteredPorts + PortList, + gDot1qForwardUnregisteredVlanIndex + VlanIndex, + gDot1qForwardUnregisteredStaticPorts + PortList, + gDot1qForwardUnregisteredForbiddenPorts + PortList + } + +gDot1qForwardUnregisteredPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete set of ports in this VLAN to which + multicast group-addressed frames for which there is no + more specific forwarding information will be forwarded. + This includes ports for which this need has been + determined dynamically by GMRP, or configured statically + by management." + ::= { gDot1qForwardUnregisteredEntry 1 } + +gDot1qForwardUnregisteredVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + This is here only to allow the VLAN index to be saved along + with the corresponding forward unregistered table entry." + ::= { gDot1qForwardUnregisteredEntry 2 } + +gDot1qForwardUnregisteredStaticPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports configured by management, in this + VLAN, to which multicast group-addressed frames for + which there is no more specific forwarding information + are to be forwarded. Ports entered in this list will + also appear in the complete set shown by + gDot1qForwardUnregisteredPorts. This value will be + restored after the device is reset. A port may not be + added in this set if it is already a member of the set + of ports in gDot1qForwardUnregisteredForbiddenPorts. The + default value is a string of zeros of appropriate + length, although this has no effect with the default + value of gDot1qForwardAllStaticPorts." + ::= { gDot1qForwardUnregisteredEntry 3 } + +gDot1qForwardUnregisteredForbiddenPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports configured by management in this VLAN + for which the Service Requirement attribute Forward + Unregistered Multicast Groups may not be dynamically + registered by GMRP. This value will be restored after + the device is reset. A port may not be added in this + set if it is already a member of the set of ports in + gDot1qForwardUnregisteredStaticPorts. The default value + is a string of zeros of appropriate length." + ::= { gDot1qForwardUnregisteredEntry 4 } + +-- ------------------------------------------------------------- +-- The Static (Destination-Address Filtering) Database +-- ------------------------------------------------------------- + +gDot1qStaticUnicastTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qStaticUnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing filtering information for Unicast + MAC addresses for each Filtering Database, configured + into the device by (local or network) management + specifying the set of ports to which frames received + from specific ports and containing specific unicast + destination addresses are allowed to be forwarded. A + value of zero in this table as the port number from + which frames with a specific destination address are + received, is used to specify all ports for which there + is no specific entry in this table for that particular + destination address. Entries are valid for unicast + addresses only." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7, + ISO/IEC 15802-3 Section 7.9.1" + ::= { gDot1qStatic 1 } + +gDot1qStaticUnicastEntry OBJECT-TYPE + SYNTAX GarpDot1qStaticUnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Filtering information configured into the device by + (local or network) management specifying the set of + ports to which frames received from a specific port and + containing a specific unicast destination address are + allowed to be forwarded." + INDEX { + gDot1qFdbId, + gDot1qStaticUnicastAddress, + gDot1qStaticUnicastReceivePort + } + ::= { gDot1qStaticUnicastTable 1 } + +GarpDot1qStaticUnicastEntry ::= + SEQUENCE { + gDot1qStaticUnicastAddress + MacAddress, + gDot1qStaticUnicastReceivePort + INTEGER, + gDot1qStaticUnicastAllowedToGoTo + PortList, + gDot1qStaticUnicastStatus + INTEGER + } + +gDot1qStaticUnicastAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination MAC address in a frame to which this + entry's filtering information applies. This object must + take the value of a unicast address." + ::= { gDot1qStaticUnicastEntry 1 } + +gDot1qStaticUnicastReceivePort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Either the value '0', or the port number of the port + from which a frame must be received in order for this + entry's filtering information to apply. A value of zero + indicates that this entry applies on all ports of the + device for which there is no other applicable entry." + ::= { gDot1qStaticUnicastEntry 2 } + +gDot1qStaticUnicastAllowedToGoTo OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The set of ports for which a frame with a specific + unicast address will be flooded in the event that it + has not been learned. It also specifies the set of + ports a specific unicast address may be dynamically + learnt on. The gDot1qTpFdbTable will have an equivalent + entry with a gDot1qTpFdbPort value of '0' until this + address has been learnt, when it will be updated with + the port the address has been seen on. This only + applies to ports that are members of the VLAN, defined + by gDot1qVlanCurrentEgressPorts. The default value of + this object is a string of ones of appropriate length." + REFERENCE + "IEEE 802.1Q/D11 Table 8-5, ISO/IEC 15802-3 Table 7-5" + ::= { gDot1qStaticUnicastEntry 3 } + +gDot1qStaticUnicastStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + permanent(3), + deleteOnReset(4), + deleteOnTimeout(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of this entry. + other(1) - this entry is currently in use but + the conditions under which it will remain + so differ from the following values. + invalid(2) - writing this value to the object + removes the corresponding entry. + permanent(3) - this entry is currently in use + and will remain so after the next reset of + the bridge. + deleteOnReset(4) - this entry is currently in + use and will remain so until the next + reset of the bridge. + deleteOnTimeout(5) - this entry is currently in + use and will remain so until it is aged out." + DEFVAL { permanent } + ::= { gDot1qStaticUnicastEntry 4 } + +gDot1qStaticMulticastTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qStaticMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing filtering information for Multicast + and Broadcast MAC addresses for each VLAN, configured + into the device by (local or network) management + specifying the set of ports to which frames received + from specific ports and containing specific Multicast + and Broadcast destination addresses are allowed to be + forwarded. A value of zero in this table as the port + number from which frames with a specific destination + address are received, is used to specify all ports for + which there is no specific entry in this table for that + particular destination address. Entries are valid for + Multicast and Broadcast addresses only." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7, + ISO/IEC 15802-3 Section 7.9.1" + ::= { gDot1qStatic 2 } + +gDot1qStaticMulticastEntry OBJECT-TYPE + SYNTAX GarpDot1qStaticMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Filtering information configured into the device by + (local or network) management specifying the set of + ports to which frames received from this specific port + for this VLAN and containing this Multicast or Broadcast + destination address are allowed to be forwarded." + INDEX { + gDot1qVlanIndex, + gDot1qStaticMulticastAddress, + gDot1qStaticMulticastReceivePort + } + ::= { gDot1qStaticMulticastTable 1 } + +GarpDot1qStaticMulticastEntry ::= + SEQUENCE { + gDot1qStaticMulticastVlanIndex + VlanIndex, + gDot1qStaticMulticastAddress + MacAddress, + gDot1qStaticMulticastReceivePort + INTEGER, + gDot1qStaticMulticastStaticEgressPorts + PortList, + gDot1qStaticMulticastForbiddenEgressPorts + PortList, + gDot1qStaticMulticastStatus + INTEGER, + gDot1qGmrpLearningPermit + INTEGER + } + +gDot1qStaticMulticastVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + This is here to allow the VLAN Index to be saved along with + the corresponding multicast table entry." + ::= { gDot1qStaticMulticastEntry 1 } + +gDot1qStaticMulticastAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: { 0:all} + The destination MAC address in a frame to which this + entry's filtering information applies. This object must + take the value of a Multicast or Broadcast address." + ::= { gDot1qStaticMulticastEntry 2 } + +gDot1qStaticMulticastReceivePort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + Either the value '0', or the port number of the port + from which a frame must be received in order for this + entry's filtering information to apply. A value of zero + indicates that this entry applies on all ports of the + device for which there is no other applicable entry." + ::= { gDot1qStaticMulticastEntry 3 } + +gDot1qStaticMulticastStaticEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports to which frames received from a + specific port and destined for a specific Multicast or + Broadcast MAC address must be forwarded, regardless of + any dynamic information e.g. from GMRP. A port may not + be added in this set if it is already a member of the + set of ports in gDot1qStaticMulticastForbiddenEgressPorts. + The default value of this object is a string of ones of + appropriate length." + ::= { gDot1qStaticMulticastEntry 4 } + +gDot1qStaticMulticastForbiddenEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports to which frames received from a + specific port and destined for a specific Multicast or + Broadcast MAC address must not be forwarded, regardless + of any dynamic information e.g. from GMRP. A port may + not be added in this set if it is already a member of the + set of ports in gDot1qStaticMulticastStaticEgressPorts. + The default value of this object is a string of zeros of + appropriate length." + ::= { gDot1qStaticMulticastEntry 5 } + +gDot1qStaticMulticastStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + permanent(3), + deleteOnReset(4), + deleteOnTimeout(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + This object indicates the status of this entry. + other(1) - this entry is currently in use but + the conditions under which it will remain + so differ from the following values. + invalid(2) - writing this value to the object + removes the corresponding entry. + permanent(3) - this entry is currently in use + and will remain so after the next reset of + the bridge. + deleteOnReset(4) - this entry is currently in + use and will remain so until the next + reset of the bridge. + deleteOnTimeout(5) - this entry is currently in + use and will remain so until it is aged out." + DEFVAL { permanent } + ::= { gDot1qStaticMulticastEntry 6 } + +gDot1qGmrpLearningPermit OBJECT-TYPE + SYNTAX INTEGER { + gmrpLearningEnable(1), + gmrpLearningDisable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to add a mcast to garp so that other devices can learn it." + ::= { gDot1qStaticMulticastEntry 7 } + +-- ------------------------------------------------------------- +-- The Current VLAN Database +-- ------------------------------------------------------------- + +gDot1qVlanNumDeletes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times a VLAN entry has been deleted from + the gDot1qVlanCurrentTable (for any reason). If an entry + is deleted, then inserted, and then deleted, this + counter will be incremented by 2." + ::= { gDot1qVlan 1 } + +gDot1qVlanCurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanCurrentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing current configuration information + for each VLAN currently configured into the device by + (local or network) management, or dynamically created + as a result of GVRP requests received." + ::= { gDot1qVlan 2 } + +gDot1qVlanCurrentEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanCurrentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information for a VLAN configured into the device by + (local or network) management, or dynamically created + as a result of GVRP requests received." + INDEX { gDot1qVlanTimeMark, gDot1qVlanIndex } + ::= { gDot1qVlanCurrentTable 1 } + +GarpDot1qVlanCurrentEntry ::= + SEQUENCE { + gDot1qVlanTimeMark + TimeFilter, + gDot1qVlanIndex + VlanIndex, + gDot1qVlanFdbId + Unsigned32, + gDot1qVlanCurrentEgressPorts + PortList, + gDot1qVlanCurrentUntaggedPorts + PortList, + gDot1qVlanStatus + INTEGER, + gDot1qVlanCreationTime + TimeTicks + } + +gDot1qVlanTimeMark OBJECT-TYPE + SYNTAX TimeFilter + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A TimeFilter for this entry. See the TimeFilter + textual convention to see how this works." + ::= { gDot1qVlanCurrentEntry 1 } + +gDot1qVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN-ID or other identifier refering to this VLAN." + ::= { gDot1qVlanCurrentEntry 2 } + +gDot1qVlanFdbId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Filtering Database used by this VLAN. This is one + of the gDot1qFdbId values in the gDot1qFdbTable. This + value is allocated automatically by the device whenever + the VLAN is created: either dynamically by GVRP, or by + management, in gDot1qVlanStaticTable. Allocation of this + value follows the learning constraints defined for this + VLAN in gDot1qLearningConstraintsTable." + ::= { gDot1qVlanCurrentEntry 3 } + +gDot1qVlanCurrentEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The set of ports which are transmitting traffic for + this VLAN as either tagged or untagged frames." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { gDot1qVlanCurrentEntry 4 } + +gDot1qVlanCurrentUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The set of ports which are transmitting traffic for + this VLAN as untagged frames." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { gDot1qVlanCurrentEntry 5 } + +gDot1qVlanStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + permanent(2), + dynamicGvrp(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the status of this entry. + other(1) - this entry is currently in use but the + conditions under which it will remain so differ + from the following values. + permanent(2) - this entry, corresponding to an entry + in gDot1qVlanStaticTable, is currently in use and + will remain so after the next reset of the + device. The port lists for this entry include + ports from the equivalent gDot1qVlanStaticTable + entry and ports learnt dynamically. + dynamicGvrp(3) - this entry is currently in use + and will remain so until removed by GVRP. There + is no static entry for this VLAN and it will be + removed when the last port leaves the VLAN." + ::= { gDot1qVlanCurrentEntry 6 } + +gDot1qVlanCreationTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when this VLAN was created." + ::= { gDot1qVlanCurrentEntry 7 } + +-- ------------------------------------------------------------- +-- The Static VLAN Database +-- ------------------------------------------------------------- + +gDot1qVlanStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing static configuration information for + each VLAN configured into the device by (local or + network) management. All entries are permanent and will + be restored after the device is reset." + ::= { gDot1qVlan 3 } + +gDot1qVlanStaticEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Static information for a VLAN configured into the + device by (local or network) management." +-- +-- This table is actually indexed by VLAN ID, however for the purposes +-- of default value table generation, we introduce a phony index of +-- the dimension of the VLAN slot table. +-- +-- INDEX { gDot1qVlanIndex } +-- + INDEX { gDot1qVlanSlotIndex } -- Don't use this index at runtime + ::= { gDot1qVlanStaticTable 1 } + +GarpDot1qVlanStaticEntry ::= + SEQUENCE { + gDot1qVlanStaticName + DisplayString, +-- SnmpAdminString, + gDot1qVlanStaticEgressPorts + PortList, + gDot1qVlanForbiddenEgressPorts + PortList, + gDot1qVlanStaticUntaggedPorts + PortList, + gDot1qVlanStaticRowStatus + RowStatus, + gDot1qGvrpLearningPermit + INTEGER, + gDot1qVlanSpanningTreeGroup + INTEGER + + } + +gDot1qVlanStaticName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) +-- SYNTAX SnmpAdminString (SIZE (0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { 'Default' } + An administratively assigned string, which may be used + to identify the VLAN." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { gDot1qVlanStaticEntry 1 } + +gDot1qVlanStaticEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports which are permanently assigned to the + egress list for this VLAN by management. Changes to a + bit in this object affect the per-port per-VLAN + Registrar control for Registration Fixed for the + relevant GVRP state machine on each port. A port may + not be added in this set if it is already a member of + the set of ports in gDot1qVlanForbiddenEgressPorts. The + default value of this object is a string of zeros of + appropriate length, indicating not fixed." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3" + ::= { gDot1qVlanStaticEntry 2 } + +gDot1qVlanForbiddenEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports which are prohibited by management + from being included in the egress list for this VLAN. + Changes to this object that cause a port to be included + or excluded affect the per-port per-VLAN Registrar + control for Registration Forbidden for the relevant GVRP + state machine on each port. A port may not be added in + this set if it is already a member of the set of ports + in gDot1qVlanStaticEgressPorts. The default value of + this object is a string of zeros of appropriate length, + excluding all ports from the forbidden set." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3" + ::= { gDot1qVlanStaticEntry 3 } + +gDot1qVlanStaticUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The set of ports which should transmit egress packets + for this VLAN as untagged. The default value of this + object for the default VLAN (gDot1qVlanIndex = 1) is a string + of appropriate length including all ports. There is no + specified default for other VLANs. If a device agent cannot + support the set of ports being set then it will reject the + set operation with an error. An example might be if a + manager attempts to set more than one VLAN to be untagged + on egress where the device does not support this IEEE 802.1Q + option." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { gDot1qVlanStaticEntry 4 } + +gDot1qVlanStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { gDot1qVlanStaticEntry 5 } + +gDot1qGvrpLearningPermit OBJECT-TYPE + SYNTAX INTEGER { + gvrpLearningEnable(1), + gvrpLearningDisable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to add a vlan to garp so that other devices can learn it." + --½«Ò»¸övlan¼ÓÈëµ½garpÖÐÒÔÔÊÐíÆäËû½»»»»úѧϰ¸Ãvlan + ::= { gDot1qVlanStaticEntry 6 } + +gDot1qVlanSpanningTreeGroup OBJECT-TYPE + SYNTAX INTEGER (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to Get/Set current vlan's spanning-tree group num" + --ÓÃÓÚ»ñÈ¡/ÉèÖÃvlanµÄÉú³ÉÊ÷×é + ::= { gDot1qVlanStaticEntry 7 } + +gDot1qNextFreeLocalVlanIndex OBJECT-TYPE + SYNTAX INTEGER (0|4096..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The next available value for gDot1qVlanIndex of a local + VLAN entry in gDot1qVlanStaticTable. This will report + values >=4096 if a new Local VLAN may be created or else + the value 0 if this is not possible. + + A row creation operation in this table for an entry with a local + VlanIndex value may fail if the current value of this object + is not used as the index. Even if the value read is used, + there is no guarantee that it will still be the valid index + when the create operation is attempted - another manager may + have already got in during the intervening time interval. + In this case, gDot1qNextFreeLocalVlanIndex should be re-read + and the creation re-tried with the new value. + + This value will automatically change when the current value is + used to create a new row." + ::= { gDot1qVlan 4 } + +-- ------------------------------------------------------------- +-- The VLAN Port Configuration Table +-- ------------------------------------------------------------- + +gDot1qPortVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qPortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing per port control and status + information for VLAN configuration in the device." + ::= { gDot1qVlan 5 } + +gDot1qPortVlanEntry OBJECT-TYPE + SYNTAX GarpDot1qPortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information controlling VLAN configuration for a port + on the device. This is indexed by dot1dBasePort." + INDEX { gDot1dPortGmrp } + ::= { gDot1qPortVlanTable 1 } + +GarpDot1qPortVlanEntry ::= + SEQUENCE { + gDot1qPvid + VlanIndex, + gDot1qPortAcceptableFrameTypes + INTEGER, + gDot1qPortIngressFiltering + TruthValue, + gDot1qPortGvrpStatus + EnabledStatus, + gDot1qPortGvrpFailedRegistrations + Counter32, + gDot1qPortGvrpLastPduOrigin + MacAddress + } + +gDot1qPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1:all } + The PVID, the VLAN ID assigned to untagged frames or + Prority-Tagged frames received on this port." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.1" + DEFVAL { 1 } + ::= { gDot1qPortVlanEntry 1 } + +gDot1qPortAcceptableFrameTypes OBJECT-TYPE + SYNTAX INTEGER { + admitAll(1), + admitOnlyVlanTagged(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1:all } + When this is admitOnlyVlanTagged(2) the device will + discard untagged frames or Prority-Tagged frames + received on this port. When admitAll(1), untagged + frames or Prority-Tagged frames received on this port + will be accepted and assigned to the PVID for this port. + + This control does not affect VLAN independent BPDU + frames, such as GVRP and STP. It does affect VLAN + dependent BPDU frames, such as GMRP." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.3" + DEFVAL { admitAll } + ::= { gDot1qPortVlanEntry 2 } + +gDot1qPortIngressFiltering OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: {1:all} + When this is true(1) the device will discard incoming + frames for VLANs which do not include this Port in its + Member set. When false(2), the port will accept all + incoming frames. + + This control does not affect VLAN independent BPDU + frames, such as GVRP and STP. It does affect VLAN + dependent BPDU frames, such as GMRP." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.4" + DEFVAL { false } + ::= { gDot1qPortVlanEntry 3 } + +gDot1qPortGvrpStatus OBJECT-TYPE + SYNTAX EnabledStatus { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: {enabled:all} + The state of GVRP operation on this port. The value + enabled(1) indicates that GVRP is enabled on this port, + as long as gDot1qGvrpStatus is also enabled for this + device. When disabled(2) but gDot1qGvrpStatus is still + enabled for the device, GVRP is disabled on this port: + any GVRP packets received will be silently discarded and + no GVRP registrations will be propagated from other + ports. This object affects all GVRP Applicant and + Registrar state machines on this port. A transition + from disabled(2) to enabled(1) will cause a reset of all + GVRP state machines on this port." + DEFVAL { disabled } + ::= { gDot1qPortVlanEntry 4 } + +gDot1qPortGvrpFailedRegistrations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of failed GVRP registrations, for any + reason, on this port." + ::= { gDot1qPortVlanEntry 5 } + +gDot1qPortGvrpLastPduOrigin OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Source MAC Address of the last GVRP message + received on this port." + ::= { gDot1qPortVlanEntry 6 } + +-- ------------------------------------------------------------- +-- The GARP Port Table +-- ------------------------------------------------------------- + +gDot1dPortGarpTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1dPortGarpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of GARP control information about every bridge + port. This is indexed by gDot1qBasePort." + ::= { gDot1dGarp 1 } + +gDot1dPortGarpEntry OBJECT-TYPE + SYNTAX GarpDot1dPortGarpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "GARP control information for a bridge port." + INDEX { gDot1dPortGmrp } + ::= { gDot1dPortGarpTable 1 } + +GarpDot1dPortGarpEntry ::= + SEQUENCE { + gDot1dPortEnable + INTEGER, + gDot1dPortGarpJoinTime + TimeInterval, + gDot1dPortGarpLeaveTime + TimeInterval, + gDot1dPortGarpLeaveAllTime + TimeInterval + } + +gDot1dPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enabled/disabled status of the port for all + GARP protocol instances. This should be set + according to the current link state of the port" + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.2" + ::= { gDot1dPortGarpEntry 1 } + +gDot1dPortGarpJoinTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 20:all } + The GARP Join time, in centiseconds." + DEFVAL { 20 } + ::= { gDot1dPortGarpEntry 2 } + +gDot1dPortGarpLeaveTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 60:all } + The GARP Leave time, in centiseconds." + DEFVAL { 60 } + ::= { gDot1dPortGarpEntry 3 } + +gDot1dPortGarpLeaveAllTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1000:all } + The GARP LeaveAll time, in centiseconds." + DEFVAL { 1000 } + ::= { gDot1dPortGarpEntry 4 } + +gDot1dGmrpStatus OBJECT-TYPE + SYNTAX EnabledStatus { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { enabled } + The administrative status requested by management for + GMRP. The value enabled(1) indicates that GMRP should + be enabled on this device, in all VLANs, on all ports + for which it has not been specifically disabled. When + disabled(2), GMRP is disabled, in all VLANs, on all + ports and all GMRP packets will be forwarded + transparently. This object affects both Applicant and + Registrar state machines. A transition from disabled(2) + to enabled(1) will cause a reset of all GMRP state + machines on all ports." + DEFVAL { disabled } + ::= { gDot1dExtBase 1 } + +-- ------------------------------------------------------------- +-- The GMRP Port Configuration and Status Table +-- ------------------------------------------------------------- + +gDot1dPortGmrpTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1dPortGmrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of GMRP control and status information about + every bridge port. Augments the gDot1qBasePortTable." + ::= { gDot1dGmrp 1 } + +gDot1dPortGmrpEntry OBJECT-TYPE + SYNTAX GarpDot1dPortGmrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "GMRP control and status information for a bridge port." + INDEX { gDot1dPortGmrp } + ::= { gDot1dPortGmrpTable 1 } + +GarpDot1dPortGmrpEntry ::= + SEQUENCE { + gDot1dPortGmrp + INTEGER, + gDot1dPortGmrpStatus + EnabledStatus, + gDot1dPortGmrpFailedRegistrations + Counter32, + gDot1dPortGmrpLastPduOrigin + MacAddress + } + +gDot1dPortGmrp OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number of the port for which this entry + contains GMRP management information." + REFERENCE + "IEEE 802.1D-1990: Section 6.8.2.1.2" + ::= { gDot1dPortGmrpEntry 1 } + +gDot1dPortGmrpStatus OBJECT-TYPE + SYNTAX EnabledStatus { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { enabled:all } + The administrative state of GMRP operation on this port. The + value enabled(1) indicates that GMRP is enabled on this port + in all VLANs as long as garpGmrpStatus is also enabled(1). + A value of disabled(2) indicates that GMRP is disabled on this + port in all VLANs: any GMRP packets received will + be silently discarded and no GMRP registrations will be + propagated from other ports. Setting this to a value of + enabled(1) will be stored by the agent but will only take effect + on the GMRP protocol operation if garpGmrpStatus also + indicates the value enabled(1). This object affects all + GMRP Applicant and Registrar state machines on this + port. A transition from disabled(2) to enabled(1) will + cause a reset of all GMRP state machines on this port." + DEFVAL { disabled } + ::= { gDot1dPortGmrpEntry 2 } + +gDot1dPortGmrpFailedRegistrations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of failed GMRP registrations, for any + reason, in all VLANs, on this port." + ::= { gDot1dPortGmrpEntry 3 } + +gDot1dPortGmrpLastPduOrigin OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Source MAC Address of the last GMRP message + received on this port." + ::= { gDot1dPortGmrpEntry 4 } + + +-- ------------------------------------------------------------- +-- The VLAN Learning Constraints Table +-- ------------------------------------------------------------- + +gDot1qLearningConstraintsTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qLearningConstraintsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing learning constraints for sets of + Shared and Independendent VLANs." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.3.1" + ::= { gDot1qVlan 6 } + +gDot1qLearningConstraintsEntry OBJECT-TYPE + SYNTAX GarpDot1qLearningConstraintsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A learning constraint defined for a VLAN." + INDEX { gDot1qConstraintVlan, gDot1qConstraintSet } + ::= { gDot1qLearningConstraintsTable 1 } + +GarpDot1qLearningConstraintsEntry ::= + SEQUENCE { + gDot1qConstraintVlan + VlanIndex, + gDot1qConstraintSet + INTEGER, + gDot1qConstraintType + INTEGER, + gDot1qConstraintStatus + RowStatus + } + +gDot1qConstraintVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of the row in gDot1qVlanCurrentTable for the + VLAN constrained by this entry." + ::= { gDot1qLearningConstraintsEntry 1 } + +gDot1qConstraintSet OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identity of the constraint set to which + gDot1qConstraintVlan belongs. These values may be chosen + by the management station." + ::= { gDot1qLearningConstraintsEntry 2 } + +gDot1qConstraintType OBJECT-TYPE + SYNTAX INTEGER { + independent(1), + shared(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of constraint this entry defines. + independent(1) - the VLAN, gDot1qConstraintVlan, + uses an independent filtering database from all + other VLANs in the same set, defined by + gDot1qConstraintSet. + shared(2) - the VLAN, gDot1qConstraintVlan, shares + the same filtering database as all other VLANs + in the same set, defined by gDot1qConstraintSet." + ::= { gDot1qLearningConstraintsEntry 3 } + +gDot1qConstraintStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this entry." + ::= { gDot1qLearningConstraintsEntry 4 } + +gDot1qConstraintSetDefault OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The identity of the constraint set to which a VLAN + belongs, if there is not an explicit entry for that VLAN + in gDot1qLearningConstraintsTable." + ::= { gDot1qVlan 7 } + +gDot1qConstraintTypeDefault OBJECT-TYPE + SYNTAX INTEGER { + independent(1), + shared(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of constraint set to which a VLAN belongs, if + there is not an explicit entry for that VLAN in + gDot1qLearningConstraintsTable. The types are as defined + for gDot1qConstraintType." + ::= { gDot1qVlan 8 } + +-- ------------------------------------------------------------- +-- GARP MIB - Conformance Information +-- ------------------------------------------------------------- + +garpMIBConformance OBJECT IDENTIFIER ::= { garpMib 2 } +garpMIBGroups OBJECT IDENTIFIER ::= { garpMIBConformance 1 } +garpMIBCompliances OBJECT IDENTIFIER + ::= { garpMIBConformance 2 } + +-- ------------------------------------------------------------- +-- units of conformance +-- ------------------------------------------------------------- + +garpMIBBaseGroup OBJECT-GROUP + OBJECTS { + gDot1qVlanVersionNumber, + gDot1qMaxVlanId, + gDot1qMaxSupportedVlans, + gDot1qNumVlans, + gDot1qGvrpStatus, + gDot1qFdbDynamicCount, + gDot1qTpFdbPort, + gDot1qTpFdbStatus, + gDot1qTpGroupEgressPorts, + gDot1qTpGroupLearnt, + gDot1qForwardAllPorts, + gDot1qForwardAllStaticPorts, + gDot1qForwardAllForbiddenPorts, + gDot1qForwardUnregisteredPorts, + gDot1qForwardUnregisteredStaticPorts, + gDot1qForwardUnregisteredForbiddenPorts, + gDot1qStaticUnicastAllowedToGoTo, + gDot1qStaticUnicastStatus, + gDot1qStaticMulticastStaticEgressPorts, + gDot1qStaticMulticastForbiddenEgressPorts, + gDot1qStaticMulticastStatus, + gDot1qVlanNumDeletes, + gDot1qVlanFdbId, + gDot1qVlanCurrentEgressPorts, + gDot1qVlanCurrentUntaggedPorts, + gDot1qVlanStatus, + gDot1qVlanCreationTime, + gDot1qVlanStaticName, + gDot1qVlanStaticEgressPorts, + gDot1qVlanForbiddenEgressPorts, + gDot1qVlanStaticUntaggedPorts, + gDot1qVlanStaticRowStatus, + gDot1qNextFreeLocalVlanIndex, + gDot1qPvid, + gDot1qPortAcceptableFrameTypes, + gDot1qPortIngressFiltering, + gDot1qPortGvrpStatus, + gDot1qPortGvrpFailedRegistrations, + gDot1qPortGvrpLastPduOrigin, + gDot1dPortGarpJoinTime, + gDot1dPortGarpLeaveTime, + gDot1dPortGarpLeaveAllTime, + gDot1dPortGmrpStatus, + gDot1dPortGmrpFailedRegistrations, + gDot1dPortGmrpLastPduOrigin, + gDot1dGmrpStatus, + gDot1qConstraintType, + gDot1qConstraintStatus, + gDot1qConstraintSetDefault, + gDot1qConstraintTypeDefault + } + STATUS current + DESCRIPTION + "GARP module groups." + ::= { garpMIBGroups 1 } + +-- ------------------------------------------------------------- +-- the gDot1qExtend group +-- ------------------------------------------------------------- +-- ------------------------------------------------------------- +-- the double tagging table +-- ------------------------------------------------------------- +gDot1qDoubleTagging OBJECT-TYPE + SYNTAX INTEGER{ + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The global QinQ status" + --È«¾ÖQinQµÄ״̬ + ::= { gDot1qExtend 1 } + +gDot1qTpid OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The tag protocol id of service provider, this value is used to + determine if a incoming packets is tagged and used when insert a + new tag" + --ÓÃÓÚÅäÖ÷þÎñÌṩÕßµÄvlanЭÒéºÅ,ÓÃÓÚÅж϶˿ÚÊÇ·ñΪtagged»òÕßÊÇ + --Ϊ±¨ÎIJåÈëÒ»¸öеÄtagͷʱʹÓà + ::= { gDot1qExtend 2 } + +gDot1qDoubleTaggingTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qDoubleTaggingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to config the double tagging function." + --¸Ã±íÓÃÓÚÅäÖÃË«tagÍ·Ïà¹ØµÄ¹¦ÄÜ. + ::= { gDot1qExtend 3 } + +gDot1qDoubleTaggingEntry OBJECT-TYPE + SYNTAX GarpDot1qDoubleTaggingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about double tagging table entry." + --Ë«tag±íÏî + INDEX { gDot1qDoubleTaggingPort } + ::= { gDot1qDoubleTaggingTable 1 } + +GarpDot1qDoubleTaggingEntry ::= + SEQUENCE { + gDot1qDoubleTaggingPort + INTEGER, + gDot1qDoubleTaggingMode + INTEGER, + gDot1qPortInnerTpid + INTEGER, + gDot1qPortOuterTpid + INTEGER + } + +gDot1qDoubleTaggingPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of double tagging entry." + --Ë«tag±íµÄË÷Òý + ::= { gDot1qDoubleTaggingEntry 1 } + +gDot1qDoubleTaggingMode OBJECT-TYPE + SYNTAX INTEGER{ + dtagModeNone(0), + dtagModeInternal(1), + dtagModeExternal(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port's 8021q-in-8021q mode: + dtagModeNone means QinQ is disabled; + dtagModeInternal means incoming pkt's will be inserted a tag + if it has no tag or its' tag-id doesn't match that of the port. + dtagModeExternal means incoming pkt's tag is always be ignored + and a new tag is inserted." + --ÅäÖö˿ڵÄQinQģʽ£¬dtagModeNoneΪ¹Ø±Õ¶Ë¿ÚµÄQinQ£¬dtagModeInternalÖ»ÓÐ + --vlanЭÒéºÅÓë¶Ë¿ÚµÄÅäÖò»Í¬Ê±²ÅÔÚ±¨ÎÄÖвåÈëеÄtagÍ·£¬dtagModeExternalÒâ + --ζ×Ŷ˿Ú×ÜÊǺöÂÔ±¨ÎĵÄtagÊôÐÔ¶øÎª±¨ÎÄÐÂÌíÒ»¸ötagÍ· + ::= { gDot1qDoubleTaggingEntry 2 } + +gDot1qPortInnerTpid OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to change the original tag's(i.e.customer tag) tpid of packet when dtag enabled." + --Ë«tagʹÄÜʱ,ÓÃÓÚÅäÖñ¨ÎÄԭʼtagÍ·µÄtpid + ::= { gDot1qDoubleTaggingEntry 3 } + +gDot1qPortOuterTpid OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to change the new tag's(i.e.service-provider tag) tpid of packet when dtag enabled." + --Ë«tagʹÄÜʱ,ÓÃÓÚÅäÖñ¨ÎÄÐÂtagÍ·µÄtpid + ::= { gDot1qDoubleTaggingEntry 4 } + +gDot1qInnerTpid OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to change the original tag's(i.e.customer tag) tpid of packet when dtag enabled." + --Ë«tagʹÄÜʱ,ÓÃÓÚÅäÖñ¨ÎÄԭʼtagÍ·µÄtpid + ::= { gDot1qExtend 4 } +-- ------------------------------------------------------------- +-- the current VLAN MAC Table +-- ------------------------------------------------------------- +gDot1qVlanMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to assign a VLAN ID for a packet based on + the source MAC Address. If an entry is found, then the VLAN + ID, PRIORITY of vlan mac table will be used for the packet." + --¸Ã±íÓÃÓÚ»ùÓÚ±¨ÎĵÄÔ´MACµØÖ·Îª±¨ÎÄÌí¼ÓÒ»¸ötagÍ·£¬Èç¹ûÕÒµ½Æ¥ÅäµÄ±í + --ÏÄÇôVLAN MAC±íµÄvlan idÒÔ¼°ÓÅÏȼ¶¾Í»á±»Ìí¼Óµ½±¨ÎÄÉÏ. + ::= { gDot1qExtend 5 } + +gDot1qVlanMacEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan mac table entry." + --vlan mac±íÏîµÄÐÅÏ¢ + INDEX { gDot1qVlanMacAddress } + ::= { gDot1qVlanMacTable 1 } + +GarpDot1qVlanMacEntry ::= + SEQUENCE { + gDot1qVlanMacAddress + MacAddress, + gDot1qVlanMacNewVlanId + INTEGER, + gDot1qVlanMacNewPriority + INTEGER, + gDot1qVlanMacStatus + INTEGER + } + +gDot1qVlanMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of vlan mac table entry." + --vlan mac±íµÄË÷Òý + ::= { gDot1qVlanMacEntry 1 } + +gDot1qVlanMacNewVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id to be assigned to the packet." + --½«ÒªÎª±¨ÎÄÌí¼ÓµÄvlan id + ::= { gDot1qVlanMacEntry 2 } + +gDot1qVlanMacNewPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Priority to be assigned to the packet." + --½«ÒªÎª±¨ÎÄÌí¼ÓµÄÓÅÏȼ¶ + ::= { gDot1qVlanMacEntry 3 } + +gDot1qVlanMacStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + createAndGo(2), + destroy(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "table entry status." + --±íÏîµÄ״̬ + ::= { gDot1qVlanMacEntry 4 } +-- ------------------------------------------------------------- +-- the current VLAN SUBNET Table +-- ------------------------------------------------------------- +gDot1qVlanSubnetTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanSubnetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to assign a VLAN ID for a packet based on + the source IP Address." + --¸Ã±íÓÃÓÚ»ùÓÚ±¨ÎĵÄÔ´ipΪ±¨ÎÄÌí¼ÓtagÍ· + ::= { gDot1qExtend 6 } + +gDot1qVlanSubnetEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanSubnetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan subnet table entry." + --vlan subnet±íµÄ±íÏîÐÅÏ¢ + INDEX { gDot1qVlanSubnetIpAddress, gDot1qVlanSubnetIpMask } + ::= { gDot1qVlanSubnetTable 1 } + +GarpDot1qVlanSubnetEntry ::= + SEQUENCE { + gDot1qVlanSubnetIpAddress + IpAddress, + gDot1qVlanSubnetIpMask + IpAddress, + gDot1qVlanSubnetNewVlanId + INTEGER, + gDot1qVlanSubnetNewPriority + INTEGER, + gDot1qVlanSubnetStatus + INTEGER + } + +gDot1qVlanSubnetIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first index of vlan subnet table entry." + --vlan subnet ±íµÄµÚÒ»¸öË÷Òý + ::= { gDot1qVlanSubnetEntry 1 } + +gDot1qVlanSubnetIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The second index of vlan subnet table entry." + --vlan subnet ±íµÄµÚ¶þ¸öË÷Òý + ::= { gDot1qVlanSubnetEntry 2 } + +gDot1qVlanSubnetNewVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id to be assigned to the packet." + --½«ÒªÎª±¨ÎÄÌí¼ÓµÄvlan id + ::= { gDot1qVlanSubnetEntry 3 } + +gDot1qVlanSubnetNewPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Priority to be assigned to the packet." + --½«ÒªÌí¼Ó¸ø±¨ÎĵÄÓÅÏȼ¶Öµ + ::= { gDot1qVlanSubnetEntry 4 } + +gDot1qVlanSubnetStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + createAndGo(2), + destroy(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "table entry status." + --±íÏîµÄ״̬ + ::= { gDot1qVlanSubnetEntry 5 } +-- ------------------------------------------------------------- +-- the current VLAN PROTOCOL Table +-- ------------------------------------------------------------- +gDot1qVlanProtoTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanProtoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to assign a VLAN for a packet based + on the protocol(FrameType,EtherType)and the ingress port." + --¸Ã±íÓÃÓÚ»ùÓÚ±¨ÎĵÄЭÒé×Ö¶ÎΪ±¨ÎÄÌí¼ÓеÄtagÍ· + ::= { gDot1qExtend 7 } + +gDot1qVlanProtoEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanProtoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan protocol table entry." + --»ùÓÚЭÒéµÄvlan±íµÄ±íÏî + INDEX { gDot1qVlanProtoFrameType, gDot1qVlanProtoEthertype, gDot1qVlanProtoPortId } + ::= { gDot1qVlanProtoTable 1 } + +GarpDot1qVlanProtoEntry ::= + SEQUENCE { + gDot1qVlanProtoFrameType + INTEGER, + gDot1qVlanProtoEthertype + INTEGER, + gDot1qVlanProtoPortId + INTEGER, + gDot1qVlanProtoNewVlanId + INTEGER, + gDot1qVlanProtoStatus + INTEGER + } + +gDot1qVlanProtoFrameType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Frame type£ºthe first index of vlan protocol entry." + --Frame type£º»ùÓÚЭÒéµÄvlan±íµÄµÚÒ»¸öË÷Òý. + ::= { gDot1qVlanProtoEntry 1 } + +gDot1qVlanProtoEthertype OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ether type£ºthe second index of vlan protocol entry." + --Ether type£º»ùÓÚЭÒéµÄvlan±íµÄµÚ¶þ¸öË÷Òý. + ::= { gDot1qVlanProtoEntry 2 } + +gDot1qVlanProtoPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress, wthe third index of vlan protocol entry." + --±¨ÎĵÄÈë¶Ë¿Ú,»ùÓÚЭÒéµÄvlan±íµÄµÚÈý¸öË÷Òý + ::= { gDot1qVlanProtoEntry 3 } + +gDot1qVlanProtoNewVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vlan id to be assigned to packet." + --½«Òª¸³Ó豨ÎĵÄvlan id + ::= { gDot1qVlanProtoEntry 4 } + +gDot1qVlanProtoStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + createAndGo(2), + destroy(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "table entry status." + --±íÏîµÄ״̬ + ::= { gDot1qVlanProtoEntry 5 } +-- ------------------------------------------------------------- +-- the current VLAN TRANSLATION Table +-- ------------------------------------------------------------- +gDot1qVlanTranslationTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanTransEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to to translate the VLAN ID of an incoming + tagged packet to another VLAN ID based on the ingress port and + incoming packet VLAN ID." + --¸Ã±íÓÃÓÚ»ùÓÚ±¨ÎĵÄvlanºÅºÍÈë¶Ë¿Úת»»±¨ÎĵÄvlan id + ::= { gDot1qExtend 8 } + +gDot1qVlanTransEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanTransEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan translation table entry." + --vlanת»»±íµÄ±íÏîÐÅÏ¢ + INDEX { gDot1qVlanTransVlanId, gDot1qVlanTransPortId } + ::= { gDot1qVlanTranslationTable 1 } + +GarpDot1qVlanTransEntry ::= + SEQUENCE { + gDot1qVlanTransVlanId + INTEGER, + gDot1qVlanTransPortId + INTEGER, + gDot1qVlanTransNewVlanId + INTEGER, + gDot1qVlanTransNewPriority + INTEGER, + gDot1qVlanTransStatus + INTEGER + } + +gDot1qVlanTransVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first index of vlan translation table entry." + --vlanת»»±íÏîµÄµÚÒ»¸öË÷Òý + ::= { gDot1qVlanTransEntry 1 } + +gDot1qVlanTransPortId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The second index of vlan translation table entry." + --vlanת»»±íÏîµÄµÚ¶þ¸öË÷Òý + ::= { gDot1qVlanTransEntry 2 } + +gDot1qVlanTransNewVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The new vlan id to be assigned to the packet who match + a vlan translation table entry." + --ת»»ºóµÄ±¨ÎĵÄеÄvlan idÖµ + ::= { gDot1qVlanTransEntry 3 } + +gDot1qVlanTransNewPriority OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The priority field of vlan translation table." + --VLANת»»±íÖеı¨ÎÄÓÅÏȼ¶×Ö¶Î + ::= { gDot1qVlanTransEntry 4 } + +gDot1qVlanTransStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + createAndGo(2), + destroy(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "table entry status." + --±íÏîµÄ״̬ + ::= { gDot1qVlanTransEntry 5 } +-- ------------------------------------------------------------- +-- gDot1qExtend other +-- ------------------------------------------------------------- +gDot1qVlanSubnetPrecede OBJECT-TYPE + SYNTAX INTEGER{ + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to config whether the IP-Subnet Based VLAN has a higher + precedence than the MAC Based VLAN." + --ÓÃÓÚÅäÖÃÊÇ·ñ»ùÓÚipµÄvlan±È»ùÓÚMACµÄvlan¾ßÓиü¸ßµÄÓÅÏȼ¶ + ::= { gDot1qExtend 9 } + +gDot1qVlanTransEnable OBJECT-TYPE + SYNTAX INTEGER{ + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Used to config current vlan-translation's status." + --vlanת»»µÄʹÄÜ¿ª¹Ø + ::= { gDot1qExtend 10 } + +-- ------------------------------------------------------------- +-- The Stack VLAN Database +-- ------------------------------------------------------------- +gDot1qStackVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qStackVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing stack vlan configuration information for + each stack vlan configured into the device by management." + --¸Ã±íÓÃÓÚÏÔʾºÍÅäÖÃStack VLANÏà¹ØµÄÐÅÏ¢. + ::={ gDot1qExtend 11 } + + gDot1qStackVlanEntry OBJECT-TYPE + SYNTAX GarpDot1qStackVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information controlling stack VLAN configuration for a port + on the device. This is indexed by port and end vlan id." + --Stack VLAN±íÏî,ÒԶ˿ںźͽáÊøVLAN IDΪË÷Òý. + INDEX { gDot1qStackVlanPort, gDot1qEndStackVlan } + ::= { gDot1qStackVlanTable 1 } + + GarpDot1qStackVlanEntry ::= + SEQUENCE { + gDot1qStackVlanPort + INTEGER, + gDot1qStartStackVlan + INTEGER, + gDot1qEndStackVlan + INTEGER, + gDot1qTargetStackVlan + INTEGER, + gDot1qStackVlanRowStatus + RowStatus + } + + gDot1qStackVlanPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The index of stack vlan." + --Stack VLANµÄË÷Òý. + ::={ gDot1qStackVlanEntry 1 } + + gDot1qStartStackVlan OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start vlan of the serial vlans we want to insert a new vlan tag." + --Stack VLAN·¶Î§µÄÆðʼVLAN ID. + ::={ gDot1qStackVlanEntry 2 } + + gDot1qEndStackVlan OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end vlan of the serial vlans we want to insert a new vlan tag." + --Stack VLAN·¶Î§µÄ½áÊøVLAN ID. + ::={ gDot1qStackVlanEntry 3 } + + gDot1qTargetStackVlan OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The target vlan of the serial vlans we want to insert." + --Òª²åÈëµÄÄ¿±êVLAN ID. + ::={ gDot1qStackVlanEntry 4 } + + gDot1qStackVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describe the oprations for the entry:4-create 6-delete" + --ÉèÖÃStack VLAN:4-Ìí¼Ó 6-ɾ³ý. + ::= { gDot1qStackVlanEntry 5 } + +-- ------------------------------------------------------------- +-- The VLAN Passthrough Database +-- ------------------------------------------------------------- +gDot1qVlanPassthroughTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanPassthroughEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing vlan passthrough configuration information for + each vlan passthrough configured into the device by management." + --¸Ã±íÓÃÓÚÏÔʾºÍÅäÖÃVLAN͸´«Ïà¹ØµÄÐÅÏ¢. + ::={ gDot1qExtend 12 } + + gDot1qVlanPassthroughEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanPassthroughEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information controlling VLAN passthrough configuration for a port + on the device. This is indexed by port and end vlan id." + --VLAN͸´«±íÏî,ÒԶ˿ںźͽáÊøVLAN IDΪË÷Òý. + INDEX { gDot1qPassthroughPort, gDot1qEndPassthroughVlan } + ::= { gDot1qVlanPassthroughTable 1 } + +GarpDot1qVlanPassthroughEntry ::= + SEQUENCE { + gDot1qPassthroughPort + INTEGER, + gDot1qStartPassthroughVlan + INTEGER, + gDot1qEndPassthroughVlan + INTEGER, + gDot1qPassthroughRowStatus + RowStatus + } + + gDot1qPassthroughPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The index of passthrough entry." + --VLAN͸´«µÄË÷Òý + ::={ gDot1qVlanPassthroughEntry 1 } + + gDot1qStartPassthroughVlan OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start vlan of the serial vlans we want to passthrough." + --ÅäÖÃVLAN͸´«·¶Î§µÄÆðʼVLAN + ::={ gDot1qVlanPassthroughEntry 2 } + + gDot1qEndPassthroughVlan OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end vlan of the serial vlans we want to passthrough. " + --ÅäÖÃVLAN͸´«·¶Î§µÄ½áÊøVLAN + ::={ gDot1qVlanPassthroughEntry 3 } + + gDot1qPassthroughRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describe the oprations for the entry:4-create 6-delete." + --ÉèÖÃVLAN͸´«:4-Ìí¼Ó 6-ɾ³ý. + ::= { gDot1qVlanPassthroughEntry 4 } + +-- ------------------------------------------------------------- +-- The VLAN SWAP Database +-- ------------------------------------------------------------- + gDot1qVlanSwapTable OBJECT-TYPE + SYNTAX SEQUENCE OF GarpDot1qVlanSwapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing vlan swap configuration information for + each vlan swap configured into the device by management." + --¸Ã±íÓÃÓÚÏÔʾºÍÅäÖÃVLAN½»»»Ïà¹ØµÄÐÅÏ¢. + ::={ gDot1qExtend 13 } + + gDot1qVlanSwapEntry OBJECT-TYPE + SYNTAX GarpDot1qVlanSwapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information controlling VLAN swap configuration for a port + on the device. This is indexed by port and end vlan id." + --VLAN½»»»±íÏî,ÒԶ˿ںźͽáÊøVLAN IDΪË÷Òý. + INDEX { gDot1qVlanSwapPort, gDot1qEndSwapVlan } + ::= { gDot1qVlanSwapTable 1 } + + GarpDot1qVlanSwapEntry ::= + SEQUENCE { + gDot1qVlanSwapPort + INTEGER, + gDot1qStartSwapVlan + INTEGER, + gDot1qEndSwapVlan + INTEGER, + gDot1qTargetSwapVlan + INTEGER, + gDot1qVlanSwapRowStatus + RowStatus + } + + gDot1qVlanSwapPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The index of vlan swap entry." + --VLAN½»»»µÄË÷Òý + ::={ gDot1qVlanSwapEntry 1 } + + gDot1qStartSwapVlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start vlan of the serial vlans we want to swap." + --ÅäÖÃVLAN½»»»·¶Î§µÄÆðʼVLAN + ::={ gDot1qVlanSwapEntry 2 } + + gDot1qEndSwapVlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end vlan of the serial vlans we want to swap. " + --ÅäÖÃVLAN½»»»·¶Î§µÄ½áÊøVLAN + ::={ gDot1qVlanSwapEntry 3 } + + gDot1qTargetSwapVlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The target vlan of the serial vlans we want to swap." + --Òª½»»»µÄÄ¿±êVLAN ID. + ::={ gDot1qVlanSwapEntry 4 } + + gDot1qVlanSwapRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describe the oprations for the entry:4-create 6-delete." + --ÉèÖÃVLAN½»»»:4-Ìí¼Ó 6-ɾ³ý. + ::= { gDot1qVlanSwapEntry 5 } + +---ÔÚmarvellоƬÖÐʹÓà +gDot1qProtocolVlan OBJECT IDENTIFIER ::= { gDot1qExtend 14 } + +gDot1qProtocolVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF GDot1qProtocolVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to classify a packet based on the protocol(FrameType,EtherType).only for marvell chip" + --¸Ã±íÓÃÓÚ»ùÓÚ±¨ÎĵÄЭÒé×Ö¶ÎΪ±¨ÎĽøÐзÖÀ࣬ÔÚmarvellоƬÖÐʹÓà + ::= { gDot1qProtocolVlan 1 } + +gDot1qProtocolVlanEntry OBJECT-TYPE + SYNTAX GDot1qProtocolVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan protocol table entry." + --»ùÓÚЭÒéµÄvlan±íµÄ±íÏî + INDEX { protocolVlanTableIndex } + ::= { gDot1qProtocolVlanTable 1 } + +GDot1qProtocolVlanEntry ::= + SEQUENCE { + protocolVlanTableIndex + INTEGER, + protocolVlanTableEthertype + INTEGER, + protocolVlanTableProtocol + INTEGER, + protocolVlanTableStatus + RowStatus + } + +protocolVlanTableIndex OBJECT-TYPE + SYNTAX INTEGER(0..11) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "index of vlan protocol entry." + --»ùÓÚЭÒéµÄvlan±íµÄË÷Òý. + ::= { gDot1qProtocolVlanEntry 1 } + +protocolVlanTableEthertype OBJECT-TYPE + SYNTAX INTEGER(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ether type of packet." + --±¨ÎĵÄÒÔÌ«ÍøÀàÐÍ. + ::= { gDot1qProtocolVlanEntry 2 } + +protocolVlanTableProtocol OBJECT-TYPE + SYNTAX INTEGER{ + ethernetv2(1), + non-snap-llc(2), + ethernetv2-non-snap-llc(3), + snap-llc(4), + ethernetv2-snap-llc(5), + non-snap-llc-snap-llc(6), + ethernetv2-non-snap-llc-snap-llc(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "protocol of packet.bit 0 is ethernetv2, bit 1 is non-snap-llc, bit 2 is snap-llc." + --±¨ÎĵÄЭÒéÀàÐÍ£¬Î»0±íʾethernetv2£¬Î»1±íʾnon-snap-llc£¬Î»2±íʾsnap-llc + ::= { gDot1qProtocolVlanEntry 3 } + +protocolVlanTableStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "table entry status." + --±íÏîµÄ״̬ + ::= { gDot1qProtocolVlanEntry 4 } + +gDot1qProtocolVlanActionTable OBJECT-TYPE + SYNTAX SEQUENCE OF GDot1qProtocolVlanActionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to assign a VLAN for a packet based + on the protocol(FrameType,EtherType)and the ingress port.only for marvell chip" + --¸Ã±íÓÃÓÚ»ùÓÚ±¨ÎĵÄЭÒé×Ö¶ÎΪ±¨ÎÄÌí¼ÓеÄtagÍ·£¬ÔÚmarvellоƬÖÐʹÓà + ::= { gDot1qProtocolVlan 2 } + +gDot1qProtocolVlanActionEntry OBJECT-TYPE + SYNTAX GDot1qProtocolVlanActionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan protocol aciton table entry." + --»ùÓÚЭÒéµÄvlan¶¯×÷±íµÄ±íÏî + INDEX { protocolVlanAcitonTablePort, protocolVlanTableIndex} + ::= { gDot1qProtocolVlanActionTable 1 } + +GDot1qProtocolVlanActionEntry ::= + SEQUENCE { + protocolVlanAcitonTablePort + INTEGER, + protocolVlanActionTableNewVlan + VlanId, + protocolVlanActionTableStatus + RowStatus + } + +protocolVlanAcitonTablePort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port index." + --¶Ë¿ÚË÷Òý + ::= { gDot1qProtocolVlanActionEntry 1 } + +protocolVlanActionTableNewVlan OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "new vlan id of packet." + --±¨ÎÄеÄVLANºÅ. + ::= { gDot1qProtocolVlanActionEntry 2 } + +protocolVlanActionTableStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "table entry status." + --±íÏîµÄ״̬ + ::= { gDot1qProtocolVlanActionEntry 3 } + +gDot1qProtocolVlanAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF GDot1qProtocolVlanAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to enable assign a VLAN for a packet based + on the protocol(FrameType,EtherType)and the ingress port.only for marvell chip" + --¸Ã±íÓÃÓÚʹÄÜ»ùÓÚ±¨ÎĵÄЭÒé×Ö¶ÎΪ±¨ÎÄÌí¼ÓеÄtagÍ·£¬ÔÚmarvellоƬÖÐʹÓà + ::= { gDot1qProtocolVlan 3 } + +gDot1qProtocolVlanAdminEntry OBJECT-TYPE + SYNTAX GDot1qProtocolVlanAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a vlan protocol admin table entry." + --ʹÄÜ»ùÓÚЭÒéµÄvlan±íµÄ±íÏî + INDEX { protocolVlanAdminTablePort } + ::= { gDot1qProtocolVlanAdminTable 1 } + +GDot1qProtocolVlanAdminEntry ::= + SEQUENCE { + protocolVlanAdminTablePort + INTEGER, + protocolVlanAdminTableEnable + TruthValue, + } + +protocolVlanAdminTablePort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port index." + --¶Ë¿ÚË÷Òý + ::= { gDot1qProtocolVlanAdminEntry 1 } + +protocolVlanAdminTableEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable protocol-based vlan function of a port." + --ʹÄܶ˿ڵĻùÓÚЭÒéµÄVLAN¹¦ÄÜ. + ::= { gDot1qProtocolVlanAdminEntry 2 } + + +gDot1qTranslateVlan OBJECT IDENTIFIER ::= { gDot1qExtend 15 } + +gDot1qTranslateVlanIngressTable OBJECT-TYPE + SYNTAX SEQUENCE OF GDot1qTranslateVlanIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to classify a packet based on the protocol(FrameType,EtherType).only for marvell chip" + --Ìæ»»vlanÈ«¾Ö±íÏî + ::= { gDot1qTranslateVlan 1 } + + +gDot1qTranslateVlanIngressEntry OBJECT-TYPE + SYNTAX GDot1qTranslateVlanIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "entry of ingress vlan translate." + --Èë¿ÚvlanÌæ»»±íÏî + INDEX { translateVlanIngressTableIndex } + ::= { gDot1qTranslateVlanIngressTable 1 } + +GDot1qTranslateVlanIngressEntry ::= + SEQUENCE { + translateVlanIngressTableIndex + INTEGER, + translateIngressTargetVlanID + INTEGER, + } + +translateVlanIngressTableIndex OBJECT-TYPE + SYNTAX INTEGER(1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "index of ingress vlan." + --Èë¿ÚVLAN Ë÷Òý. + ::= { gDot1qTranslateVlanIngressEntry 1 } + +translateIngressTargetVlanID OBJECT-TYPE + SYNTAX INTEGER(0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Target vlan ID. + 0 means not set" + --Ä¿±êvlan ID. 0:±íʾûÓÐÉèÖÃ,²»Äܽ«Ä¿±êvlanÓëÔ­vlanÉèÖÃÏàͬ + ::= { gDot1qTranslateVlanIngressEntry 2 } + +gDot1qTranslateVlanEgressTable OBJECT-TYPE + SYNTAX SEQUENCE OF GDot1qTranslateVlanEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to classify a packet based on the protocol(FrameType,EtherType).only for marvell chip" + --Ìæ»»vlanÈ«¾Ö±íÏî + ::= { gDot1qTranslateVlan 2 } + +gDot1qTranslateVlanEgressEntry OBJECT-TYPE + SYNTAX GDot1qTranslateVlanEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "entry of Egress vlan translate." + --³ö¿ÚvlanÌæ»»±íÏî + INDEX { translateVlanEgressTableIndex } + ::= { gDot1qTranslateVlanEgressTable 1 } + +GDot1qTranslateVlanEgressEntry ::= + SEQUENCE { + translateVlanEgressTableIndex + INTEGER, + translateEgressTargetVlanID + INTEGER, + } +translateVlanEgressTableIndex OBJECT-TYPE + SYNTAX INTEGER(1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "index of Egress vlan." + --³ö¿ÚVLAN Ë÷Òý. + ::= { gDot1qTranslateVlanEgressEntry 1 } + +translateEgressTargetVlanID OBJECT-TYPE + SYNTAX INTEGER(0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Target vlan ID. + 0 means not set" + --Ä¿±êvlan ID. 0:±íʾûÓÐÉèÖÃ,²»Äܽ«Ä¿±êvlanÓëÔ­vlanÉèÖÃÏàͬ + ::= { gDot1qTranslateVlanEgressEntry 2 } + + + +gDot1qTranslateVlanPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF GDot1qTranslateVlanPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "translate vlan port list" + --Ìæ»»vlan¶Ë¿Ú¿ªÆôÁбí + ::= { gDot1qTranslateVlan 3 } + +gDot1qTranslateVlanPortEntry OBJECT-TYPE + SYNTAX GDot1qTranslateVlanPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port entry of vlan translate." + --vlanÌæ»»¶Ë¿ÚʹÄܱíÏî + INDEX { translateVlanTablePort } + ::= { gDot1qTranslateVlanPortTable 1 } + +GDot1qTranslateVlanPortEntry ::= + SEQUENCE { + translateVlanTablePort + INTEGER, + translateTargetVlanIngressTableEnable + TruthValue, + translateTargetVlanEgressTableEnable + TruthValue + } +translateVlanTablePort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port index." + --¶Ë¿ÚË÷Òý + ::= { gDot1qTranslateVlanPortEntry 1 } + +translateTargetVlanIngressTableEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable ingress Translate vlan function of a port.1:enable;2:disable" + --ʹÄÜÈë¶Ë¿ÚµÄVLANÌæ»»¹¦ÄÜ 1±íʾʹÄÜ£¬2±íʾ½ûÖ¹. + ::= { gDot1qTranslateVlanPortEntry 2 } + + translateTargetVlanEgressTableEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable Egress Translate vlan function of a port.1:enable;2:disable" + --ʹÄܳö¶Ë¿ÚµÄVLANÌæ»»¹¦ÄÜ 1±íʾʹÄÜ£¬2±íʾ½ûÖ¹. + ::= { gDot1qTranslateVlanPortEntry 3 } + + +-- ------------------------------------------------------------- +-- GARP MIB - compliance statements +-- ------------------------------------------------------------- + +garpMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the GARP module." + + MODULE + MANDATORY-GROUPS { + garpMIBBaseGroup + } + ::= { garpMIBCompliances 1 } + +END diff --git a/mibs/fs/GBNDeviceOEM-MIB b/mibs/fs/GBNDeviceOEM-MIB new file mode 100644 index 0000000000..282e9e5e7f --- /dev/null +++ b/mibs/fs/GBNDeviceOEM-MIB @@ -0,0 +1,425 @@ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- +-- File : bcm5600-oem.mi2 +-- Description : GBN OEM Product Enterprise MIB +-- Version : 0.03 +-- Date : May 03, 2001 +-- Copyright (c) 2002-2005 admin Systems, Inc. All Rights Reserved. +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNDeviceOEM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter64 FROM SNMPv2-SMI + + DisplayString, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnDevice FROM ADMIN-MASTER-MIB + + PortList FROM Q-BRIDGE-MIB; + + bcm5600 MODULE-IDENTITY + LAST-UPDATED "0105030000Z" -- May 03,2001 + ORGANIZATION "Admin Systems, Inc." + CONTACT-INFO "Admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Broadcom BCM5600 StrataSwitch OEM-Product + Enterprise MIB definition." + + REVISION "0105030000Z" -- May 03,2001 + DESCRIPTION "Initial MIB creation." + + ::= { gbnDevice 3 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ +-- +-- "DURABLE": +-- Objects that are saved across a system reset and/or power cycle +-- are noted as "DURABLE" for convenience in the DESCRIPTION +-- section of the object definition. Code must be explicitly +-- written to implement these DURABLE objects. +-- + + +------------------------------------------------------------------------------ +-- define groups in OEM-BCM5600-MIB +------------------------------------------------------------------------------ + oemArchIface OBJECT IDENTIFIER ::= { bcm5600 1 } + oemChip OBJECT IDENTIFIER ::= { bcm5600 2 } + oemProdConformance OBJECT IDENTIFIER ::= { bcm5600 3 } + oemProdGroups OBJECT IDENTIFIER ::= { oemProdConformance 1 } + oemProdCompliances OBJECT IDENTIFIER ::= { oemProdConformance 2 } + +------------------------------------------------------------------------------ + oemArchIfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF OemArchIfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of switch interfaces and associated properties." + ::= { oemArchIface 1 } + + oemArchIfaceEntry OBJECT-TYPE + SYNTAX OemArchIfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { oemArchIfaceUnit, oemArchIfacePort } + ::= { oemArchIfaceTable 1 } + + OemArchIfaceEntry ::= SEQUENCE { + oemArchIfaceUnit Integer32, + oemArchIfacePort Integer32, + oemArchIfaceLLWHPort Integer32, + oemArchIfaceIfIndex Integer32, + oemArchIfaceName DisplayString, + oemArchIfaceEnable TruthValue, + oemArchIfaceSTPEnable TruthValue, + oemArchIfaceLink INTEGER, + oemArchIfaceDuplexSpeedSet INTEGER, + oemArchIfaceDuplexSpeedGet INTEGER, + oemArchIfacePortLoop INTEGER, + oemArchIfaceFlowControl INTEGER, + oemArchIfaceTxVlanTagPkts Counter64, + oemArchIfaceTxL3Pkts Counter64, + oemArchIfaceTxL3AbortedPkts Counter64, + oemArchIfaceRxIpInHdrErrors Counter64, + oemArchIfaceL2Tunneling INTEGER, + oemArchIfaceLinkUpTime Integer32, + oemArchIfaceMasterMode INTEGER + } + + oemArchIfaceUnit OBJECT-TYPE + SYNTAX Integer32 (1..4) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a unit in the TiNet Switch + stack. If an invalid value is used for the index, a SNMP + 'noSuchName' error (SNMPv1) or 'noSuchInstance' exception + (SNMPv2/v3) is returned. For implementations that do not support + stacking, the same response is returned for any unit index other + than 1." + ::= { oemArchIfaceEntry 1 } + + oemArchIfacePort OBJECT-TYPE + SYNTAX Integer32 (1..26) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a GBN Application 'logical port' + (i.e., IEEE 802.3ad Aggregator) within the oemArchIfaceUnit." + ::= { oemArchIfaceEntry 2 } + + oemArchIfaceLLWHPort OBJECT-TYPE + SYNTAX Integer32 (8193..8296) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value that uniquely identifies a GBN Application 'logical port' + (i.e., IEEE 802.3ad Aggregator) in the GBN BCM5600 stack. This is + a 'Layered Linear With Holes' (LLWH) port number that may may have + holes for missing ports or units. For this MIB, 26 port numbers + are reserved for each unit in the stack. For example, LLHW port + 8193 is unit 1, port 1 ." + ::= { oemArchIfaceEntry 3 } + + oemArchIfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ifIndex of this GBN Application 'logical port' (i.e., IEEE + 802.3ad Aggregator). Note that an ifIndex value of 34603009 + (0x02100001) represents the Aggregator layer, unit 1, slot 0 + (base unit ports), port 1." + ::= { oemArchIfaceEntry 4 } + + oemArchIfaceName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The textual name of this interface, e.g., 'John'." + ::= { oemArchIfaceEntry 5 } + + oemArchIfaceEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { true:all } + This object is true(1) when this interface is enabled and + false(1) when it is disabled. For this product, this is the + ONLY way to enable or disable this interface. Note that + 'ifAdminStatus' in RFC1213 and RFC2233 and 'dot1dStpPortEnable' + in RFC1493 are each implemented as 'read-only'." + ::= { oemArchIfaceEntry 6 } + + oemArchIfaceSTPEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { true:all } + This object is true(1) when Spanning Tree operation is enabled + for this interface and false(2) when it is disabled." + ::= { oemArchIfaceEntry 7 } + + oemArchIfaceLink OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of Link Detect on this interface." + ::= { oemArchIfaceEntry 8 } + + oemArchIfaceDuplexSpeedSet OBJECT-TYPE + SYNTAX INTEGER { + autonegotiate(1), + half-10(2), + full-10(3), + half-100(4), + full-100(5), + half-1000(6), + full-1000(7), + auto-10(8), + auto-100(9), + auto-1000(10), + full-10000(11), + illegal(99), + full-2500(13), + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { autonegotiate:all } + The desired speed and duplex for this interface. If the selected + control is not possible on the interface, a value of illegal(99) + is returned. If the port type does NOT support the default + of autonegotiate(1), then the application initializes the + port to a valid value (e.g., 1000full(6)). Note that not all + controls are possible for all interfaces. For example, only + full-1000(6) is available for Gigabit Ethernet interfaces." + ::= { oemArchIfaceEntry 9 } + + oemArchIfaceDuplexSpeedGet OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + half-10(2), + full-10(3), + half-100(4), + full-100(5), + half-1000(6), + full-1000(7), + auto10(8), + auto100(9), + auto1000(10), + full-10000(11), + illegal(99), + full-2500(13), + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The actual speed and duplex for this interface. If the + interface is not configured for an acceptable value, a value of + illegal(99) is returned. A value of unknown(1) is returned when + the 'oemArchIfaceLink' indicates down(2) for this interface." + ::= { oemArchIfaceEntry 10 } + + oemArchIfacePortLoop OBJECT-TYPE + SYNTAX INTEGER { + internalEnable(1), + externalEnable(2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of Link Detect on this interface." + ::= { oemArchIfaceEntry 11 } + + oemArchIfaceFlowControl OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { enable } + Set the flow control on the interface to enable(1) or disable(2)." + ::= { oemArchIfaceEntry 12 } + + oemArchIfaceTxVlanTagPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VLAN tagged packets transmitted on this interface." + ::= { oemArchIfaceEntry 13 } + + oemArchIfaceTxL3Pkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Layer 3 packets transmitted on this interface." + ::= { oemArchIfaceEntry 14 } + + oemArchIfaceTxL3AbortedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Layer 3 transmit packets aborted on this interface." + ::= { oemArchIfaceEntry 15 } + + oemArchIfaceRxIpInHdrErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Layer 3 packets received on this interface that + were discarded due to IP header errors (e.g., bad checksum, + invalid versions, format errors)." + ::= { oemArchIfaceEntry 16 } + + oemArchIfaceL2Tunneling OBJECT-TYPE + SYNTAX INTEGER(1..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When l2 entities (such as STP bridges) conneted across a VPN network, l2 PDUs need + delivering through VPN without being processed.To achieve this, users need enbling l2- + tunneling on VPN's edge ports, i.e. ports connected to customer bridges. One 32bits + width integer variable is used for each port to represent what kind of PDUs need tunneling + when coming in this ports.Notes, only the six least-significant bits are used here ,each + bit corresponds to one protocol, following is the detail: + bit0 <----> CDP + bit1 <----> LACP + bit2 <----> PAGP + bit3 <----> STP + bit4 <----> UDLD + bit5 <----> VTP + bit6-bit31 <--> reserved. + when set one, corresponding PDU tunneling is asserted, deasserted otherwise." + ::= { oemArchIfaceEntry 17 } + + oemArchIfaceLinkUpTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The duration of linkup on this interface. The unit is second." + ::= { oemArchIfaceEntry 18 } + + oemArchIfaceMasterMode OBJECT-TYPE + SYNTAX INTEGER { + slave(0), + master(1), + auto(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The master/slave mode on this interface." + ::= { oemArchIfaceEntry 19 } + +------------------------------------------------------------------------------ +-- Chip Interface Section +------------------------------------------------------------------------------ +-- + oemChipStub OBJECT-TYPE + SYNTAX INTEGER { + noop(1), + chip-value2(2), + chip-value3(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is a place holder for the OEM Chip interface." + ::= { oemChip 1 } + +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- conformance information +------------------------------------------------------------------------------ + +-- -------------------------------------------------------------------------- +-- units of conformance +-- -------------------------------------------------------------------------- + + oemArchIfaceGroup OBJECT-GROUP + OBJECTS { + oemArchIfaceLLWHPort, + oemArchIfaceIfIndex, + oemArchIfaceName, + oemArchIfaceEnable, + oemArchIfaceSTPEnable, + oemArchIfaceLink, + oemArchIfaceDuplexSpeedSet, + oemArchIfaceDuplexSpeedGet, + oemArchIfacePortLoop, + oemArchIfaceFlowControl, + oemArchIfaceTxVlanTagPkts, + oemArchIfaceTxL3Pkts, + oemArchIfaceTxL3AbortedPkts, + oemArchIfaceRxIpInHdrErrors + } + STATUS current + DESCRIPTION + "This group configures and retrieves Architecture interface + specific objects." + ::= { oemProdGroups 1 } + + oemChipGroup OBJECT-GROUP + OBJECTS { + oemChipStub + } + STATUS current + DESCRIPTION + "This group configures OEM Chip specific objects." + ::= { oemProdGroups 2 } + + +-- -------------------------------------------------------------------------- +-- compliance statements +-- -------------------------------------------------------------------------- + + oemProdCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement." + MODULE -- this module + MANDATORY-GROUPS { + oemArchIfaceGroup + } + + GROUP oemChipGroup + DESCRIPTION + "This group is optional." + + ::= { oemProdCompliances 1 } + +-- +-- END of OEM-BCM5600-MIB +-- + +END diff --git a/mibs/fs/GBNDevicePoe-MIB b/mibs/fs/GBNDevicePoe-MIB new file mode 100644 index 0000000000..8e2efff4ec --- /dev/null +++ b/mibs/fs/GBNDevicePoe-MIB @@ -0,0 +1,287 @@ +GBNDevicePoe-MIB DEFINITIONS ::= BEGIN + IMPORTS + Integer32 FROM SNMPv2-SMI + gbnDevice FROM ADMIN-MASTER-MIB + DisplayString FROM SNMPv2-TC; + + gbnDevicePoe MODULE-IDENTITY + LAST-UPDATED "0011020000Z" -- November 2, 2000 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "Gbn Common Enterprise MIB definition." + + REVISION "0011020000Z" -- November 2, 2000 + DESCRIPTION "Initial MIB creation." + + ::= { gbnDevice 4 } + +poePowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoePowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of power supply." + ::= { gbnDevicePoe 2 } + + poePowerSupplyEntry OBJECT-TYPE + SYNTAX PoePowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of power supply." + INDEX { powerindex } + ::= { poePowerSupplyTable 1 } + + PoePowerSupplyEntry ::= SEQUENCE { + powerindex Integer32, + poeVersion DisplayString, + powerstatus DisplayString, + poeDevicePowerLimit Integer32, + poeDevicePowerConsume Integer32 + } + + powerindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "unit index, start from 1 " + ::= { poePowerSupplyEntry 1 } + + poeVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of poe firmware." + ::= { poePowerSupplyEntry 2 } + + powerstatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "descriptions of power supply" + ::= { poePowerSupplyEntry 3 } + + poeDevicePowerLimit OBJECT-TYPE + SYNTAX Integer32(37..806) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "power limit of device.unit is Watt" + ::= { poePowerSupplyEntry 4 } + + poeDevicePowerConsume OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "power consumption of device.unit is Watt" + ::= { poePowerSupplyEntry 5 } + +poePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of poe port." + ::= { gbnDevicePoe 4 } + + poePortEntry OBJECT-TYPE + SYNTAX PoePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of poe port." + INDEX { portIndex } + ::= { poePortTable 1 } + + PoePortEntry ::= SEQUENCE { + portIndex + Integer32, + powerlimit + Integer32, + powerConsume + Integer32 + } + + portIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port index, start from 1 " + ::= { poePortEntry 1 } + + powerlimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "power limit of port.unit is mW" + ::= { poePortEntry 2 } + + powerConsume OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "power consumption of port.unit is mW" + ::= { poePortEntry 3 } + +poePdPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoePdPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of poe port." + ::= { gbnDevicePoe 5 } + + poePdPortEntry OBJECT-TYPE + SYNTAX PoePdPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of poe port." + INDEX { portPdIndex } + ::= { poePdPortTable 1 } + + PoePdPortEntry ::= SEQUENCE { + portPdIndex + Integer32, + portPoePdEnable + Integer32, + portPoePdConfig + Integer32 +} + + portPdIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port index, start from 1 " + ::= { poePdPortEntry 1 } + + portPoePdEnable OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "poe feedback real time port enable state.unit is mW" + ::= { poePdPortEntry 2 } + + portPoePdConfig OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "poe feedback config port enable.unit is mW" + ::= { poePdPortEntry 3 } + +poeFanControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoeFanControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of poe fan set." + ::= { gbnDevicePoe 6 } + + poeFanControlEntry OBJECT-TYPE + SYNTAX PoeFanControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of poe fan set." + INDEX { poeFandefault } + ::= { poeFanControlTable 1 } + + PoeFanControlEntry ::= SEQUENCE { + poeFandefault + INTEGER, + poeFanlowVaule + Integer32, + poeFanmiddleVaule + Integer32, + poeFanhighVaule + Integer32, + poeFanModeSet + INTEGER, + poeFan1Speed + Integer32, + poeFan2Speed + Integer32, + poeTemperature + DisplayString + } + + poeFandefault OBJECT-TYPE + SYNTAX INTEGER { + default(1), + user-defined(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "poe fans' mode set or get." + ::= { poeFanControlEntry 1 } + + poeFanlowVaule OBJECT-TYPE + SYNTAX Integer32(0..25) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "poe fan-control low-temperature" + ::= { poeFanControlEntry 2 } + + poeFanmiddleVaule OBJECT-TYPE + SYNTAX Integer32(26..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "poe fan-control middle-temperature" + ::= { poeFanControlEntry 3 } + + poeFanhighVaule OBJECT-TYPE + SYNTAX Integer32(61..70) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "poe fan-control high-temperature" + ::= { poeFanControlEntry 4 } + + poeFanModeSet OBJECT-TYPE + SYNTAX INTEGER { + default(0), + user-defined(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "poe fan-control user defined set" + ::= { poeFanControlEntry 5 } + poeFan1Speed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the fan1 speed of the switch" + ::= { poeFanControlEntry 6 } + poeFan2Speed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the fan2 speed of the switch" + ::= { poeFanControlEntry 7 } + poeTemperature OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the temperture of the switch" + ::= { poeFanControlEntry 8 } +END diff --git a/mibs/fs/GBNDeviceSWAPI-MIB b/mibs/fs/GBNDeviceSWAPI-MIB new file mode 100644 index 0000000000..d939dce884 --- /dev/null +++ b/mibs/fs/GBNDeviceSWAPI-MIB @@ -0,0 +1,3259 @@ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- +-- File : bcmSwapi.mib +-- +-- +-- Copyright (c) 1999 admin Systems, Inc. All Rights Reserved. +-- +-- Reproduction of this document is authorized on condition that this +-- copyright notice is included. This GBN CCD MIB Specification +-- embodies proprietary intellectual property of admin Systems (ADMIN). +-- ADMIN retains all title and ownership in the specification, including any +-- revisions. +-- +-- It is the intent of ADMIN to encourage the widespread use of this +-- specification in connection with the management of GBN products. +-- ADMIN grants vendor, end-users, and other interested parties a non-exclusive +-- license to use this specification in connection with the management of +-- GBN based products. +-- +-- This specification is supplied "AS IS", and ADMIN makes no +-- warranty, either express or implied, as to the use, operations, +-- condition, or performance of this specification. +-- +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- Groups in the ADMIN SWAPI MIB +-- +-- The following groups are supported for the ADMIN GBN Enterprise MIB: +-- +-- sRFC1573MIB Support for RFC1213 and RFC1573 +-- sRFC1493MIB Support for multiple SPT's +-- sRFC1757MIB Support for Stat's group only +-- sRFC2233MIB Support for the Mau Mib (AutoNeg) +-- sDot1QMIB Support for the 802.1Q Mib +-- sDot1XMIB Support for the 802.1X Mib +-- sDot1pMIB Support for the 802.1p Mib +-- sRFC1643MIB Support for the Ether like Interfaces Mib +-- sArch Support for Architecture +-- sChip Support for Switch (NOT Supported Yet) +-- +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +GBNDeviceSWAPI-MIB + + DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Integer32, Unsigned32, TimeTicks, BITS, + Gauge32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, TruthValue, MacAddress, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + DisplayString, PhysAddress FROM RFC1213-MIB + gbnDevice FROM ADMIN-MASTER-MIB + IANAifType FROM IANAifType-MIB; + + + bcmSwapi MODULE-IDENTITY + LAST-UPDATED "0105030000Z" -- May 03,2001 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin E-mail: " + + DESCRIPTION "SWAPI for Switch End Driver + 100Mb/s and 1000Mb/s Management." + + REVISION "0105030000Z" -- May 03,2001 + DESCRIPTION "Updated to include support for 1000 Mb/sec + MAUs and flow control negotiation." + + ::= { gbnDevice 2 } + +--SMI BITS + -- + -- SWAPI MIB Extensions + -- + + sRFC1573MIB OBJECT IDENTIFIER ::= { bcmSwapi 2 } + sRFC1573Interfaces OBJECT IDENTIFIER ::= { sRFC1573MIB 3 } + + -- Bridge MIB starts at 17 + sRFC1493MIB OBJECT IDENTIFIER ::= { bcmSwapi 4 } + sDot1dBase OBJECT IDENTIFIER ::= { sRFC1493MIB 1 } + sDot1dStp OBJECT IDENTIFIER ::= { sRFC1493MIB 2 } + sDot1dTp OBJECT IDENTIFIER ::= { sRFC1493MIB 4 } + + -- RMON starts at MIB-II + sRFC1757MIB OBJECT IDENTIFIER ::= { bcmSwapi 5} + sRFC1757Statistics OBJECT IDENTIFIER ::= {sRFC1757MIB 1 } + + sRFC2239MIB OBJECT IDENTIFIER ::= { bcmSwapi 6} + sDot3IfMauBasicGroup OBJECT IDENTIFIER ::= { sRFC2239MIB 2 } + sDot3IfMauAutoNegGroup OBJECT IDENTIFIER ::= { sRFC2239MIB 5 } + + sDot1pMIB OBJECT IDENTIFIER ::= { bcmSwapi 7} + sDot1dExtBase OBJECT IDENTIFIER ::= { sDot1pMIB 1 } + sDot1dPriority OBJECT IDENTIFIER ::= { sDot1pMIB 2 } + sDot1dGarp OBJECT IDENTIFIER ::= { sDot1pMIB 3 } + sDot1dGmrp OBJECT IDENTIFIER ::= { sDot1pMIB 4 } + + sDot1QMIB OBJECT IDENTIFIER ::= { bcmSwapi 8} + sDot1qBase OBJECT IDENTIFIER ::= { sDot1QMIB 1 } + sDot1qTp OBJECT IDENTIFIER ::= { sDot1QMIB 2 } + sDot1qStatic OBJECT IDENTIFIER ::= { sDot1QMIB 3 } + sDot1qVlan OBJECT IDENTIFIER ::= { sDot1QMIB 4 } + + sRFC1643MIB OBJECT IDENTIFIER ::= { bcmSwapi 9} + sRFC1643Dot3 OBJECT IDENTIFIER ::= { sRFC1643MIB 1 } + + sDot1XMIB OBJECT IDENTIFIER ::= { bcmSwapi 10} + sDot1xBase OBJECT IDENTIFIER ::= { sDot1XMIB 1 } + + + sArch OBJECT IDENTIFIER ::= { bcmSwapi 4096} + sArchSwitchInfo OBJECT IDENTIFIER ::= { sArch 1 } + sSwitchStatsInfo OBJECT IDENTIFIER ::= { sArch 2 } + +-- ------------------------------------------------------------- +-- Textual Conventions +-- ------------------------------------------------------------- + +EnabledStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A simple status value for the object." + SYNTAX INTEGER { enabled(1), disabled(2) } + +PortList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + ports, with the first octet specifying ports 1 through + 8, the second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered port, and the least significant bit + represents the highest numbered port. Thus, each port + of the bridge is represented by a single bit within the + value of this object. If that bit has a value of '1' + then that port is included in the set of ports; the port + is not included if its bit has a value of '0'." + SYNTAX OCTET STRING + +VlanIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A value used to index per-VLAN tables: values of 0 and + 4095 are not permitted; if the value is between 1 and + 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with + global scope within a given bridged domain (see VlanId + textual convention). If the value is greater than 4095 + then it represents a VLAN with scope local to the + particular agent, i.e. one without a global VLAN-ID + assigned to it. Such VLANs are outside the scope of + IEEE 802.1Q but it is convenient to be able to manage them + in the same way using this MIB." + SYNTAX Unsigned32 + +TimeFilter ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "To be used for the index to a table. Allows an application + to download only those rows changed since a particular time. + A row is considered changed if the value of any object in the + row changes or if the row is created or deleted. + + When sysUpTime is equal to zero, this table shall be empty. + + One entry exists for each past value of sysUpTime, except that + the whole table is purged should sysUpTime wrap. + + As this basic row is updated new conceptual rows are created + (which still share the now updated object values with all + other instances). The number of instances which are created + is determined by the value of sysUpTime at which the basic row + was last updated. One instance will exist for each value of + sysUpTime at the last update time for the row. A new + timeMark instance is created for each new sysUpTime value. + Each new conceptual row will be associated with the timeMark + instance which was created at the value of sysUpTime with + which the conceptual row is to be associated. + + By definition all conceptual rows were updated at or after + time zero and so at least one conceptual row (associated with + timeMark.0) must exist for each underlying (basic) row. + + See the appendix for further discussion of this variable. + + Consider the following fooTable: + + fooTable ... + INDEX { fooTimeMark, fooIndex } + + FooEntry { + fooTimeMark TimeFilter + fooIndex INTEGER, + fooCounts Counter + } + + Should there be two basic rows in this table (fooIndex == 1, + fooIndex == 2) and row 1 was updated most recently at time 6, + while row 2 was updated most recently at time 8, and both rows + had been updated on several earlier occasions such that the + current values were 5 and 9 respectively then the following + fooCounts instances would exist. + + fooCounts.0.1 5 + fooCounts.0.2 9 + fooCounts.1.1 5 + fooCounts.1.2 9 + fooCounts.2.1 5 + fooCounts.2.2 9 + fooCounts.3.1 5 + fooCounts.3.2 9 + fooCounts.4.1 5 + fooCounts.4.2 9 + fooCounts.5.1 5 + fooCounts.5.2 9 + fooCounts.6.1 5 + fooCounts.6.2 9 + fooCounts.7.2 9 -- note that row 1 doesn't exist for + fooCounts.8.2 9 -- times 7 and 8" + SYNTAX TimeTicks + +-- The Generic Bridge Port Table + + sDot1dBasePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dBasePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains generic information about + every port that is associated with this bridge. + Transparent, source-route, and srt ports are + included." + ::= { sDot1dBase 4 } + + sDot1dBasePortEntry OBJECT-TYPE + SYNTAX SwapiDot1dBasePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information for each port of the + bridge." + REFERENCE + "IEEE 802.1D-1990: Section 6.4.2, 6.6.1" + INDEX { sDot1dBasePort } + ::= { sDot1dBasePortTable 1 } + + + SwapiDot1dBasePortEntry ::= + SEQUENCE { + sDot1dBasePort + INTEGER, + sDot1dBaseIfIndex + INTEGER, + sDot1dBasePortMtuExceededDiscards + Counter32 + } + + + sDot1dBasePort OBJECT-TYPE + SYNTAX INTEGER (1..256) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number of the port for which this entry + contains bridge management information." + ::= { sDot1dBasePortEntry 1 } + + + sDot1dBaseIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the instance of the ifIndex object, + defined in MIB-II, for the interface corresponding + to this port." + ::= { sDot1dBasePortEntry 2 } + + + sDot1dBasePortMtuExceededDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of frames discarded by this port due + to an excessive size. It is incremented by both + transparent and source route bridges." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { sDot1dBasePortEntry 5 } + +-- The Spanning Tree Port Table + + sDot1dStpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dStpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains port-specific information + for the Spanning Tree Protocol." + ::= { sDot1dStp 15 } + + sDot1dStpPortEntry OBJECT-TYPE + SYNTAX SwapiDot1dStpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information maintained by every port + about the Spanning Tree Protocol state for that + port." + INDEX { sDot1dStpPort } + ::= { sDot1dStpPortTable 1 } + + SwapiDot1dStpPortEntry ::= + SEQUENCE { + sDot1dStpPort INTEGER, + sDot1dStpPortState INTEGER, + sDot1dStpPortEnable INTEGER + } + + sDot1dStpPort OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number of the port for which this entry + contains Spanning Tree Protocol management + information." + REFERENCE + "IEEE 802.1D-1990: Section 6.8.2.1.2" + ::= { sDot1dStpPortEntry 1 } + + sDot1dStpPortState OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + blocking(2), + listening(3), + learning(4), + forwarding(5), + broken(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's current state as defined by + application of the Spanning Tree Protocol. This + state controls what action a port takes on + reception of a frame. If the bridge has detected + a port that is malfunctioning it will place that + port into the broken(6) state. For ports which + are disabled (see dot1dStpPortEnable), this object + will have a value of disabled(1)." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.2" + ::= { sDot1dStpPortEntry 2 } + + + sDot1dStpPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enabled/disabled status of the port." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.2" + ::= { sDot1dStpPortEntry 3 } + + sDot1dTpLearnedEntryDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Forwarding Database entries, + which have been or would have been learnt, but + have been discarded due to a lack of space to + store them in the Forwarding Database. If this + counter is increasing, it indicates that the + Forwarding Database is regularly becoming full (a + condition which has unpleasant performance effects + on the subnetwork). If this counter has a + significant value but is not presently increasing, + it indicates that the problem has been occurring + but is not persistent." + REFERENCE + "IEEE 802.1D-1990: Section 6.7.1.1.3" + ::= { sDot1dTp 1 } + + + sDot1dTpAgingTime OBJECT-TYPE + SYNTAX INTEGER (10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The timeout period in seconds for aging out + dynamically learned forwarding information. + 802.1D-1990 recommends a default of 300 seconds.But in TiNet S2008Ei, + the value is from 16 to 4080 in 16 increments." + --"¶ÔÓÚTiNet S2008EI£¬´ËֵΪ16µ½4080£¬¶øÇÒ±ØÐëΪ16µÄ±¶Êý¡£" + REFERENCE + "IEEE 802.1D-1990: Section 6.7.1.1.3" + ::= { sDot1dTp 2 } + + -- The Forwarding Database for Transparent Bridges + + sDot1dTpFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF Sdot1dTpFdbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains information about unicast + entries for which the bridge has forwarding and/or + filtering information. This information is used + by the transparent bridging function in + determining how to propagate a received frame." + ::= { sDot1dTp 3 } + + sDot1dTpFdbEntry OBJECT-TYPE + SYNTAX Sdot1dTpFdbEntry + ACCESS not-accessible + + + STATUS mandatory + DESCRIPTION + "Information about a specific unicast MAC address + for which the bridge has some forwarding and/or + filtering information." + INDEX { sDot1dTpFdbAddress } + ::= { sDot1dTpFdbTable 1 } + + Sdot1dTpFdbEntry ::= + SEQUENCE { + sDot1dTpFdbAddress + MacAddress, + sDot1dTpFdbPort + INTEGER, + sDot1dTpFdbStatus + INTEGER + } + + sDot1dTpFdbAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unicast MAC address for which the bridge has + forwarding and/or filtering information." + REFERENCE + "IEEE 802.1D-1990: Section 3.9.1, 3.9.2" + ::= { sDot1dTpFdbEntry 1 } + + sDot1dTpFdbPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Either the value '0', or the port number of the + port on which a frame having a source address + equal to the value of the corresponding instance + of dot1dTpFdbAddress has been seen. A value of + '0' indicates that the port number has not been + learned but that the bridge does have some + forwarding/filtering information about this + address (e.g. in the dot1dStaticTable). + Implementors are encouraged to assign the port + value to this object whenever it is learned even + for addresses for which the corresponding value of + dot1dTpFdbStatus is not learned(3)." + ::= { sDot1dTpFdbEntry 2 } + + + + sDot1dTpFdbStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + learned(3), + self(4), + mgmt(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of this entry. The meanings of the + values are: + + other(1) : none of the following. This would + include the case where some other + MIB object (not the corresponding + instance of dot1dTpFdbPort, nor an + entry in the dot1dStaticTable) is + being used to determine if and how + frames addressed to the value of + the corresponding instance of + dot1dTpFdbAddress are being + forwarded. + + invalid(2) : this entry is not longer valid + (e.g., it was learned but has since + aged-out), but has not yet been + flushed from the table. + + learned(3) : the value of the corresponding + instance of dot1dTpFdbPort was + learned, and is being used. + + self(4) : the value of the corresponding + instance of dot1dTpFdbAddress + represents one of the bridge's + addresses. The corresponding + instance of dot1dTpFdbPort + indicates which of the bridge's + ports has this address. + + mgmt(5) : the value of the corresponding + instance of dot1dTpFdbAddress is + also the value of an existing + instance of dot1dStaticAddress." + ::= { sDot1dTpFdbEntry 3 } + +-- Start of RMON statistics Group + +-- The Ethernet Statistics Group +-- +-- Implementation of the Ethernet Statistics group is +-- optional. +-- +-- The ethernet statistics group contains statistics +-- measured by the probe for each monitored interface on +-- this device. These statistics take the form of free +-- running counters that start from zero when a valid entry +-- is created. +-- +-- This group currently has statistics defined only for +-- Ethernet interfaces. Each etherStatsEntry contains +-- statistics for one Ethernet interface. The probe must +-- create one etherStats entry for each monitored Ethernet +-- interface on the device. + + sEtherStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiEtherStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Ethernet statistics entries." + ::= { sRFC1757Statistics 1 } + + + sEtherStatsEntry OBJECT-TYPE + SYNTAX SwapiEtherStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A collection of statistics kept for a particular + Ethernet interface. As an example, an instance of the + etherStatsPkts object might be named etherStatsPkts.1" + INDEX { sEtherStatsIndex } + ::= { sEtherStatsTable 1 } + + SwapiEtherStatsEntry ::= SEQUENCE { + sEtherStatsIndex INTEGER, + sEtherStatsDropEvents Counter32, + sEtherStatsOctets Counter32, + sEtherStatsPkts Counter32, + sEtherStatsBroadcastPkts Counter32, + sEtherStatsMulticastPkts Counter32, + sEtherStatsCRCAlignErrors Counter32, + sEtherStatsUndersizePkts Counter32, + sEtherStatsOversizePkts Counter32, + sEtherStatsFragments Counter32, + sEtherStatsJabbers Counter32, + sEtherStatsCollisions Counter32, + sEtherStatsPkts64Octets Counter32, + sEtherStatsPkts65to127Octets Counter32, + sEtherStatsPkts128to255Octets Counter32, + sEtherStatsPkts256to511Octets Counter32, + sEtherStatsPkts512to1023Octets Counter32, + sEtherStatsPkts1024to1518Octets Counter32, + sEtherStatsRXMACControlFrames Counter32, + sEtherStatsRXPauseMACCtrlFrames Counter32, + sEtherStatsTXPauseMACCtrlFrames Counter32, + sEtherStatsBcmIPMCBridgedPckts Counter32, + sEtherStatsBcmIPMCRoutedPckts Counter32, + sEtherStatsBcmIPMCInDroppedPckts Counter32, + sEtherStatsBcmIPMCOutDroppedPckts Counter32, + sEtherStatsIfInFrameRate Counter32, + sEtherStatsIfInOctetRate Counter32, + sEtherStatsIfOutFrameRate Counter32, + sEtherStatsIfOutOctetRate Counter32 + } + + sEtherStatsIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this + etherStats entry. Defined as a single port via the MIB-II ifIndex." + ::= { sEtherStatsEntry 1 } + + + sEtherStatsDropEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of events in which packets + were dropped by the probe due to lack of resources. + Note that this number is not necessarily the number of + packets dropped; it is just the number of times this + condition has been detected." + ::= { sEtherStatsEntry 3 } + + sEtherStatsOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets of data (including + those in bad packets) received on the + network (excluding framing bits but including + FCS octets). + + This object can be used as a reasonable estimate of + ethernet utilization. If greater precision is + desired, the etherStatsPkts and etherStatsOctets + objects should be sampled before and after a common + interval. The differences in the sampled values are + Pkts and Octets, respectively, and the number of + seconds in the interval is Interval. These values + are used to calculate the Utilization as follows: + + Pkts * (9.6 + 6.4) + (Octets * .8) + Utilization = ------------------------------------- + Interval * 10,000 + + The result of this equation is the value Utilization + which is the percent utilization of the ethernet + segment on a scale of 0 to 100 percent." + ::= { sEtherStatsEntry 4 } + + sEtherStatsPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad packets, + broadcast packets, and multicast packets) received." + ::= { sEtherStatsEntry 5 } + + sEtherStatsBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of good packets received that were + directed to the broadcast address. Note that this + does not include multicast packets." + ::= { sEtherStatsEntry 6 } + + sEtherStatsMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of good packets received that were + directed to a multicast address. Note that this + number does not include packets directed to the + broadcast address." + ::= { sEtherStatsEntry 7 } + + sEtherStatsCRCAlignErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that + had a length (excluding framing bits, but + including FCS octets) of between 64 and 1518 + octets, inclusive, but but had either a bad + Frame Check Sequence (FCS) with an integral + number of octets (FCS Error) or a bad FCS with + a non-integral number of octets (Alignment Error)." + ::= { sEtherStatsEntry 8 } + + sEtherStatsUndersizePkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + less than 64 octets long (excluding framing bits, + but including FCS octets) and were otherwise well + formed." + ::= { sEtherStatsEntry 9 } + + sEtherStatsOversizePkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets) and were otherwise + well formed." + ::= { sEtherStatsEntry 10 } + + sEtherStatsFragments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were less + than 64 octets in length (excluding framing bits but + including FCS octets) and had either a bad Frame + Check Sequence (FCS) with an integral number of + octets (FCS Error) or a bad FCS with a non-integral + number of octets (Alignment Error). + + Note that it is entirely normal for + etherStatsFragments to increment. This is because + it counts both runts (which are normal occurrences + due to collisions) and noise hits." + ::= { sEtherStatsEntry 11 } + + sEtherStatsJabbers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets), and had either a bad + Frame Check Sequence (FCS) with an integral number + of octets (FCS Error) or a bad FCS with a + non-integral number of octets (Alignment Error). + + Note that this definition of jabber is different + than the definition in IEEE-802.3 section 8.2.1.5 + (10BASE5) and section 10.3.1.4 (10BASE2). These + documents define jabber as the condition where any + packet exceeds 20 ms. The allowed range to detect + jabber is between 20 ms and 150 ms." + ::= { sEtherStatsEntry 12 } + + sEtherStatsCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The best estimate of the total number of collisions + on this Ethernet segment. + + The value returned will depend on the location of + the RMON probe. Section 8.2.1.3 (10BASE-5) and + section 10.3.1.3 (10BASE-2) of IEEE standard 802.3 + states that a station must detect a collision, in + the receive mode, if three or more stations are + transmitting simultaneously. A repeater port must + detect a collision when two or more stations are + transmitting simultaneously. Thus a probe placed on + a repeater port could record more collisions than a + probe connected to a station on the same segment + would. + + Probe location plays a much smaller role when + considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE + standard 802.3 defines a collision as the + simultaneous presence of signals on the DO and RD + circuits (transmitting and receiving at the same + time). A 10BASE-T station can only detect + collisions when it is transmitting. Thus probes + placed on a station and a repeater, should report + the same number of collisions. + + Note also that an RMON probe inside a repeater + should ideally report collisions between the + repeater and one or more other hosts (transmit + collisions as defined by IEEE 802.3k) plus receiver + collisions observed on any coax segments to which + the repeater is connected." + ::= { sEtherStatsEntry 13 } + + sEtherStatsPkts64Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were 64 octets in length + (excluding framing bits but including FCS octets)." + ::= { sEtherStatsEntry 14 } + + sEtherStatsPkts65to127Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 65 and 127 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { sEtherStatsEntry 15 } + + sEtherStatsPkts128to255Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 128 and 255 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { sEtherStatsEntry 16 } + + sEtherStatsPkts256to511Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 256 and 511 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { sEtherStatsEntry 17 } + + sEtherStatsPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 512 and 1023 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { sEtherStatsEntry 18 } + + sEtherStatsPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 1024 and 1518 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { sEtherStatsEntry 19 } + + sEtherStatsRXMACControlFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of MAC control frames received." + --½ÓÊÕµÄMAC¿ØÖÆÖ¡×ÜÊý. + ::= { sEtherStatsEntry 20 } + + sEtherStatsRXPauseMACCtrlFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of pause frames received." + --½ÓÊÕµÄPAUSE¿ØÖÆÖ¡×ÜÊý. + ::= { sEtherStatsEntry 21 } + + sEtherStatsTXPauseMACCtrlFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of pause frames transmitted." + --·¢Ë͵ÄPAUSE¿ØÖÆÖ¡×ÜÊý. + ::= { sEtherStatsEntry 22 } + + sEtherStatsBcmIPMCBridgedPckts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IPMC packets bridged." + --¶þ²ãת·¢µÄIPMC±¨ÎÄ×ÜÊý. + ::= { sEtherStatsEntry 23 } + + sEtherStatsBcmIPMCRoutedPckts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IPMC packets routed." + --Èý²ã·ÓɵÄIPMC±¨ÎÄ×ÜÊý. + ::= { sEtherStatsEntry 24 } + + sEtherStatsBcmIPMCInDroppedPckts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IPMC dropped packets for this port in the ingress." + --¸Ã¶Ë¿ÚingressÂß¼­¶ªÆúµÄIPMC±¨ÎÄ×ÜÊý. + ::= { sEtherStatsEntry 25 } + + sEtherStatsBcmIPMCOutDroppedPckts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IPMC dropped packets for this port in the egress." + --¸Ã¶Ë¿ÚegressÂß¼­¶ªÆúµÄIPMC±¨ÎÄ×ÜÊý. + ::= { sEtherStatsEntry 26 } + + sEtherStatsIfInFrameRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress packet rate of this port." + --¸Ã¶Ë¿Ú½ÓÊÕ±¨ÎĵÄËÙÂÊ + ::= { sEtherStatsEntry 27 } + + sEtherStatsIfInOctetRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress octet rate of this port." + --¸Ã¶Ë¿Ú½ÓÊÕ±¨ÎÄ×Ö½ÚµÄËÙÂÊ + ::= { sEtherStatsEntry 28 } + + sEtherStatsIfOutFrameRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress packet rate of this port." + --¸Ã¶Ë¿Ú·¢Ëͱ¨ÎĵÄËÙÂÊ + ::= { sEtherStatsEntry 29 } + + sEtherStatsIfOutOctetRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress octet rate of this port." + --¸Ã¶Ë¿Ú·¢Ëͱ¨ÎÄ×Ö½ÚµÄËÙÂÊ + ::= { sEtherStatsEntry 30 } + +-- +-- The Basic Interface MAU Table +-- + + sIfMauTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiIfMauEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of descriptive and status information about + MAU(s) attached to an interface." + + ::= { sDot3IfMauBasicGroup 1 } + + sIfMauEntry OBJECT-TYPE + SYNTAX SwapiIfMauEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table, containing information + about a single MAU." + INDEX { sIfMauIndex } + ::= { sIfMauTable 1 } + + SwapiIfMauEntry ::= + SEQUENCE { + sIfMauIndex Integer32, + sIfMauType OBJECT IDENTIFIER, + sIfMauMediaAvailable INTEGER, + sIfMauJabberState INTEGER, + sIfMauDefaultType OBJECT IDENTIFIER + } + + sIfMauIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable uniquely identifies the MAU + described by this entry from among other MAUs + connected to the same interface (sIfMauIfIndex)." + REFERENCE + "[IEEE 802.3 Mgt], 30.5.1.1.1, aMAUID." + ::= { sIfMauEntry 2 } + + sIfMauType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the 10 or 100 Mb/s + baseband or broadband MAU type. An initial set of + MAU types are defined above. The assignment of + OBJECT IDENTIFIERs to new types of MAUs is managed + by the IANA. If the MAU type is unknown, the + object identifier + + unknownMauType OBJECT IDENTIFIER ::= { 0 0 } + + is returned. Note that unknownMauType is a + syntactically valid object identifier, and any + conformant implementation of ASN.1 and the BER + must be able to generate and recognize this value. + + This object represents the operational type of the + MAU, as determined by either (1) the result of the + auto-negotiation function or (2) if auto- + negotiation is not enabled or is not implemented + for this MAU, by the value of the object + sIfMauDefaultType. In case (2), a set to the + object sIfMauDefaultType will force the MAU into + the new operating mode." + REFERENCE + "[IEEE 802.3 Mgt], 30.5.1.1.2, aMAUType." + ::= { sIfMauEntry 3 } + + sIfMauMediaAvailable OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + available(3), + notAvailable(4), + remoteFault(5), + invalidSignal(6), + remoteJabber(7), + remoteLinkLoss(8), + remoteTest(9), + offline(10), + autoNegError(11) + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "If the MAU is a link or fiber type (FOIRL, + 10BASE-T, 10BASE-F) then this is equivalent to + the link test fail state/low light function. + For an AUI or a coax (including broadband) MAU + this indicates whether or not loopback is + detected on the DI circuit. The value of this + attribute persists between packets for MAU types + AUI, 10BASE5, 10BASE2, 10BROAD36, and 10BASE-FP. + + The value other(1) is returned if the + mediaAvailable state is not one of 2 through 11. + The value unknown(2) is returned when the MAU's + true state is unknown; for example, when it is + being initialized. At power-up or following a + reset, the value of this attribute will be + unknown for AUI, coax, and 10BASE-FP MAUs. For + these MAUs loopback will be tested on each + transmission during which no collision is + detected. If DI is receiving input when DO + returns to IDL after a transmission and there + has been no collision during the transmission + then loopback will be detected. The value of + this attribute will only change during + non-collided transmissions for AUI, coax, and + 10BASE-FP MAUs. + + For 100Mbps and 1000Mbps MAUs, the enumerations + match the states within the respective link + integrity state diagrams, fig 32-16, 23-12 and + 24-15 of sections 32, 23 and 24 of [2]. Any MAU + which implements management of auto-negotiation + will map remote fault indication to remote + fault. + + The value available(3) indicates that the link, + light, or loopback is normal. The value + notAvailable(4) indicates link loss, low light, + or no loopback. + + The value remoteFault(5) indicates that a fault + has been detected at the remote end of the link. + This value applies to 10BASE-FB, 100BASE-T4 Far + End Fault Indication and non-specified remote + faults from a system running auto-negotiation. + The values remoteJabber(7), remoteLinkLoss(8), + and remoteTest(9) SHOULD be used instead of + remoteFault(5) where the reason for remote fault + is identified in the remote signaling protocol. + + The value invalidSignal(6) indicates that an + invalid signal has been received from the other + end of the link. InvalidSignal(6) applies only + to MAUs of type 10BASE-FB. + + Where an IEEE Std 802.3u-1995 clause 22 MII + is present, a logic one in the remote fault bit + (reference section 22.2.4.2.8 of that document) + maps to the value remoteFault(5), and a logic + zero in the link status bit (reference section + 22.2.4.2.10 of that document) maps to the value + notAvailable(4). The value notAvailable(4) + takes precedence over the value remoteFault(5). + + Any MAU that implements management of clause 37 + Auto-Negotiation will map the received RF1 and + RF2 bit values for Offline to offline(10), Link + Failure to remoteFault(5) and Auto-Negotiation + Error to autoNegError(11)." + + REFERENCE + "[IEEE 802.3 Mgt], 30.5.1.1.4, aMediaAvailable." + ::= { sIfMauEntry 5 } + + sIfMauJabberState OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + noJabber(3), + jabbering(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value other(1) is returned if the jabber + state is not 2, 3, or 4. The agent must always + return other(1) for MAU type dot3MauTypeAUI. + + The value unknown(2) is returned when the MAU's + true state is unknown; for example, when it is + being initialized. + + If the MAU is not jabbering the agent returns + noJabber(3). This is the 'normal' state. + + If the MAU is in jabber state the agent returns + the jabbering(4) value." + REFERENCE + "[IEEE 802.3 Mgt], 30.5.1.1.6, + aJabber.jabberFlag." + ::= { sIfMauEntry 7 } + + sIfMauDefaultType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object identifies the default administrative + 10 or 100 Mb/s baseband MAU type, to be used in + conjunction with the operational MAU type denoted + by sIfMauType. + + The set of possible values for this object is the + same as the set defined for the sIfMauType object. + + This object represents the administratively- + configured type of the MAU. If auto-negotiation + is not enabled or is not implemented for this MAU, + the value of this object determines the + operational type of the MAU. In this case, a set + to this object will force the MAU into the + specified operating mode. + + If auto-negotiation is implemented and enabled for + this MAU, the operational type of the MAU is + determined by auto-negotiation, and the value of + this object denotes the type to which the MAU will + automatically revert if/when auto-negotiation is + later disabled. + + NOTE TO IMPLEMENTORS: It may be necessary to + provide for underlying hardware implementations + which do not follow the exact behavior specified + above. In particular, when + sIfMauAutoNegAdminStatus transitions from enabled + to disabled, the agent implementation must ensure + that the operational type of the MAU (as reported + by sIfMauType) correctly transitions to the value + specified by this object, rather than continuing + to operate at the value earlier determined by the + auto-negotiation function." + REFERENCE + "[IEEE 802.3 Mgt], 30.5.1.1.1, aMAUID, and [IEEE + 802.3 Std], 22.2.4.1.4." + ::= { sIfMauEntry 11 } + +-- The sIfMauAutoNegTable applies to systems in which +-- auto-negotiation is supported on one or more MAUs +-- attached to interfaces. Note that if auto-negotiation +-- is present and enabled, the sIfMauType object reflects +-- the result of the auto-negotiation function. + + sIfMauAutoNegTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiIfMauAutoNegEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration and status objects for the auto- + negotiation function of MAUs attached to + interfaces." + ::= { sDot3IfMauAutoNegGroup 1 } + + sIfMauAutoNegEntry OBJECT-TYPE + SYNTAX SwapiIfMauAutoNegEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table, containing configuration + and status information for the auto-negotiation + function of a particular MAU." + INDEX { sIfMauIndex } + ::= { sIfMauAutoNegTable 1 } + + SwapiIfMauAutoNegEntry ::= + SEQUENCE { + sIfMauAutoNegAdminStatus INTEGER, + sIfMauAutoNegRestart INTEGER, + sIfMauAutoControl INTEGER, + sIfMauAutoNegCapAdvertisedBits BITS, + sIfMauAutoNegCapReceivedBits BITS + } + + + sIfMauAutoNegAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object to enabled(1) will cause the + interface which has the auto-negotiation signaling + ability to be enabled. + + If the value of this object is disabled(2) then + the interface will act as it would if it had no + auto-negotiation signaling. Under these + conditions, an IEEE 802.3 MAU will immediately be + forced to the state indicated by the value of the + object sIfMauDefaultType. + + NOTE TO IMPLEMENTORS: When + sIfMauAutoNegAdminStatus transitions from enabled + to disabled, the agent implementation must ensure + that the operational type of the MAU (as reported + by sIfMauType) correctly transitions to the value + specified by the sIfMauDefaultType object, rather + than continuing to operate at the value earlier + determined by the auto-negotiation function." + REFERENCE + "[IEEE 802.3 Mgt], 30.6.1.1.2, aAutoNegAdminState + and 30.6.1.2.2, acAutoNegAdminControl." + ::= { sIfMauAutoNegEntry 1 } + + sIfMauAutoNegRestart OBJECT-TYPE + SYNTAX INTEGER { + restart(1), + norestart(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If the value of this object is set to restart(1) + then this will force auto-negotiation to begin + link renegotiation. If auto-negotiation signaling + is disabled, a write to this object has no effect. + + Setting the value of this object to norestart(2) + has no effect." + REFERENCE + "[IEEE 802.3 Mgt], 30.6.1.2.1, + acAutoNegRestartAutoConfig." + ::= { sIfMauAutoNegEntry 8 } + + sIfMauAutoNegCapAdvertisedBits OBJECT-TYPE + SYNTAX BITS { + bOther(0), -- other or unknown + b10baseT(1), -- 10BASE-T half duplex mode + b10baseTFD(2), -- 10BASE-T full duplex mode + b100baseT4(3), -- 100BASE-T4 + b100baseTX(4), -- 100BASE-TX half duplex mode + b100baseTXFD(5), -- 100BASE-TX full duplex mode + b100baseT2(6), -- 100BASE-T2 half duplex mode + b100baseT2FD(7), -- 100BASE-T2 full duplex mode + bFdxPause(8), -- PAUSE for full-duplex links + bFdxAPause(9), -- Asymmetric PAUSE for full-duplex + -- links + bFdxSPause(10), -- Symmetric PAUSE for full-duplex + -- links + bFdxBPause(11), -- Asymmetric and Symmetric PAUSE for + -- full-duplex links + b1000baseX(12), -- 1000BASE-X, -LX, -SX, -CX half + -- duplex mode + b1000baseXFD(13), -- 1000BASE-X, -LX, -SX, -CX full + -- duplex mode + b1000baseT(14), -- 1000BASE-T half duplex mode + b1000baseTFD(15) -- 1000BASE-T full duplex mode + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A value that uniquely identifies the set of + capabilities advertised by the local + auto-negotiation entity. + + Capabilities in this object that are not + available in ifMauAutoNegCapability cannot be + enabled." + REFERENCE "[IEEE 802.3 Std], 30.6.1.1.6, + aAutoNegAdvertisedTechnologyAbility." + ::= { sIfMauAutoNegEntry 10 } + + sIfMauAutoNegCapReceivedBits OBJECT-TYPE + SYNTAX BITS { + bOther(0), -- other or unknown + b10baseT(1), -- 10BASE-T half duplex mode + b10baseTFD(2), -- 10BASE-T full duplex mode + b100baseT4(3), -- 100BASE-T4 + b100baseTX(4), -- 100BASE-TX half duplex mode + b100baseTXFD(5), -- 100BASE-TX full duplex mode + b100baseT2(6), -- 100BASE-T2 half duplex mode + b100baseT2FD(7), -- 100BASE-T2 full duplex mode + bFdxPause(8), -- PAUSE for full-duplex links + bFdxAPause(9), -- Asymmetric PAUSE for full-duplex + -- links + bFdxSPause(10), -- Symmetric PAUSE for full-duplex + -- links + bFdxBPause(11), -- Asymmetric and Symmetric PAUSE for + -- full-duplex links + b1000baseX(12), -- 1000BASE-X, -LX, -SX, -CX half + -- duplex mode + b1000baseXFD(13), -- 1000BASE-X, -LX, -SX, -CX full + -- duplex mode + b1000baseT(14), -- 1000BASE-T half duplex mode + b1000baseTFD(15) -- 1000BASE-T full duplex mode + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that uniquely identifies the set of + capabilities received from the remote + auto-negotiation entity. + + Note that interfaces that support this MIB may + be attached to remote auto-negotiation entities + which have capabilities beyond the scope of this + MIB." + REFERENCE "[IEEE 802.3 Std], 30.6.1.1.7, + aAutoNegReceivedTechnologyAbility." + ::= { sIfMauAutoNegEntry 11 } + + +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- The following are from the 802.1p MIB +-- ------------------------------------------------------------- + + +-- ------------------------------------------------------------- +-- the sDot1dExtBase group +-- ------------------------------------------------------------- + + sDot1dDeviceCapabilities OBJECT-TYPE + SYNTAX BITS { + sDot1dExtendedFilteringServices(0), + -- can perform filtering of + -- individual multicast addresses + -- controlled by GMRP. + sDot1dTrafficClasses(1), + -- can map user priority to + -- multiple traffic classes. + dot1qStaticEntryIndividualPort(2), + -- dot1qStaticUnicastReceivePort & + -- dot1qStaticMulticastReceivePort + -- can represent non-zero entries. + dot1qIVLCapable(3), -- Independent VLAN Learning. + dot1qSVLCapable(4), -- Shared VLAN Learning. + dot1qHybridCapable(5), + -- both IVL & SVL simultaneously. + dot1qConfigurablePvidTagging(6), + -- whether the implementation + -- supports the ability to + -- override the default PVID + -- setting and its egress status + -- (VLAN-Tagged or Untagged) on + -- each port. + sDot1dLocalVlanCapable(7) + -- can support multiple local + -- bridges, outside of the scope + -- of 802.1Q defined VLANs. + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the optional parts of IEEE 802.1D and 802.1Q + that are implemented by this device and are manageable + through this MIB. Capabilities that are allowed on a + per-port basis are indicated in sDot1dPortCapabilities." + REFERENCE + "ISO/IEC 15802-3 Section 5.2, + IEEE 802.1Q/D11 Section 5.2, 12.10.1.1.3/b/2" + ::= { sDot1dExtBase 1 } + + sDot1dTrafficClassesEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { true } + The value true(1) indicates that Traffic Classes are + enabled on this bridge. When false(2), the bridge + operates with a single priority level for all traffic." + DEFVAL { true } + ::= { sDot1dExtBase 2 } + + sDot1dGmrpStatus OBJECT-TYPE + SYNTAX EnabledStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { enable } + The administrative status requested by management for + GMRP. The value enabled(1) indicates that GMRP should + be enabled on this device, in all VLANs, on all ports + for which it has not been specifically disabled. When + disabled(2), GMRP is disabled, in all VLANs, on all + ports and all GMRP packets will be forwarded + transparently. This object affects both Applicant and + Registrar state machines. A transition from disabled(2) + to enabled(1) will cause a reset of all GMRP state + machines on all ports." + DEFVAL { enabled } + ::= { sDot1dExtBase 3 } + +-- ------------------------------------------------------------- +-- Port Capabilities Table +-- ------------------------------------------------------------- + + sDot1dPortCapabilitiesTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dPortCapabilitiesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains capabilities information about + every port that is associated with this bridge." + ::= { sDot1dExtBase 4 } + + sDot1dPortCapabilitiesEntry OBJECT-TYPE + SYNTAX SwapiDot1dPortCapabilitiesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A set of capabilities information about this port + indexed by sDot1dBasePort." + AUGMENTS { sDot1dBasePortEntry } + ::= { sDot1dPortCapabilitiesTable 1 } + + SwapiDot1dPortCapabilitiesEntry ::= + SEQUENCE { + sDot1dPortCapabilities + BITS + } + + sDot1dPortCapabilities OBJECT-TYPE + SYNTAX BITS { + dot1qDot1qTagging(0), -- supports 802.1Q VLAN tagging of + -- frames and GVRP. + dot1qConfigurableAcceptableFrameTypes(1), + -- allows modified values of + -- dot1qPortAcceptableFrameTypes. + dot1qIngressFiltering(2) + -- supports the discarding of any + -- frame received on a Port whose + -- VLAN classification does not + -- include that Port in its Member + -- set. + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the parts of IEEE 802.1D and 802.1Q that are + optional on a per-port basis that are implemented by + this device and are manageable through this MIB." + REFERENCE + "ISO/IEC 15802-3 Section 5.2, + IEEE 802.1Q/D11 Section 5.2" + ::= { sDot1dPortCapabilitiesEntry 1 } + +-- ------------------------------------------------------------- +-- the sDot1dPriority group +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- Port Priority Table +-- ------------------------------------------------------------- + + sDot1dPortPriorityTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dPortPriorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about every port that + is associated with this transparent bridge." + ::= { sDot1dPriority 1 } + + sDot1dPortPriorityEntry OBJECT-TYPE + SYNTAX SwapiDot1dPortPriorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Default User Priorities for each port of a + transparent bridge. This is indexed by sDot1dBasePort." + AUGMENTS { sDot1dBasePortEntry } + ::= { sDot1dPortPriorityTable 1 } + + SwapiDot1dPortPriorityEntry ::= + SEQUENCE { + sDot1dPortDefaultUserPriority + INTEGER, + sDot1dPortNumTrafficClasses + INTEGER + } + + sDot1dPortDefaultUserPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The default ingress User Priority for this port. This + only has effect on media, such as Ethernet, that do not + support native User Priority." + ::= { sDot1dPortPriorityEntry 1 } + + sDot1dPortNumTrafficClasses OBJECT-TYPE + SYNTAX INTEGER (1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of egress traffic classes supported on this + port. This object may optionally be read-only." + ::= { sDot1dPortPriorityEntry 2 } + +-- ------------------------------------------------------------- +-- User Priority Regeneration Table +-- ------------------------------------------------------------- + + sDot1dUserPriorityRegenTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dUserPriorityRegenEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Regenerated User Priorities for each received + User Priority on each port of a bridge. The Regenerated + User Priority value may be used to index the Traffic + Class Table for each input port. This only has effect + on media that support native User Priority. The default + values for Regenerated User Priorities are the same as + the User Priorities." + REFERENCE + "ISO/IEC 15802-3 Section 6.4" + ::= { sDot1dPriority 2 } + + sDot1dUserPriorityRegenEntry OBJECT-TYPE + SYNTAX SwapiDot1dUserPriorityRegenEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A mapping of incoming User Priority to a Regenerated + User Priority." + INDEX { sDot1dBasePort, sDot1dUserPriority } + ::= { sDot1dUserPriorityRegenTable 1 } + + SwapiDot1dUserPriorityRegenEntry ::= + SEQUENCE { + sDot1dUserPriority + INTEGER, + sDot1dRegenUserPriority + INTEGER + } + + sDot1dUserPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The User Priority for a frame received on this port." + ::= { sDot1dUserPriorityRegenEntry 1 } + + sDot1dRegenUserPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Regenerated User Priority the incoming User + Priority is mapped to for this port." + ::= { sDot1dUserPriorityRegenEntry 2 } + +-- ------------------------------------------------------------- +-- Traffic Class Table +-- ------------------------------------------------------------- + + sDot1dTrafficClassTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dTrafficClassEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table mapping evaluated User Priority to Traffic + Class, for forwarding by the bridge. Traffic class is a + number in the range (0..(sDot1dPortNumTrafficClasses-1))." + REFERENCE + "ISO/IEC 15802-3 Table 7-2" + ::= { sDot1dPriority 3 } + + sDot1dTrafficClassEntry OBJECT-TYPE + SYNTAX SwapiDot1dTrafficClassEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User Priority to Traffic Class mapping." + INDEX { sDot1dBasePort, sDot1dTrafficClassPriority } + ::= { sDot1dTrafficClassTable 1 } + + SwapiDot1dTrafficClassEntry ::= + SEQUENCE { + sDot1dTrafficClassPriority + INTEGER, + sDot1dTrafficClass + INTEGER + } + + sDot1dTrafficClassPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Priority value determined for the received frame. + This value is equivalent to the priority indicated in + the tagged frame received, or one of the evaluated + priorities, determined according to the media-type. + + For untagged frames received from Ethernet media, this + value is equal to the sDot1dPortDefaultUserPriority value + for the ingress port. + + For untagged frames received from non-Ethernet media, + this value is equal to the sDot1dRegenUserPriority value + for the ingress port and media-specific user priority." + ::= { sDot1dTrafficClassEntry 1 } + + sDot1dTrafficClass OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0:all } + The Traffic Class the received frame is mapped to." + ::= { sDot1dTrafficClassEntry 2 } + +-- ------------------------------------------------------------- +-- Outbound Access Priority Table +-- ------------------------------------------------------------- + + sDot1dPortOutboundAccessPriorityTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dPortOutboundAccessPriorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table mapping Regenerated User Priority to Outbound + Access Priority. This is a fixed mapping for all port + types, with two options for 802.5 Token Ring." + REFERENCE + "ISO/IEC 15802-3 Table 7-3" + ::= { sDot1dPriority 4 } + + sDot1dPortOutboundAccessPriorityEntry OBJECT-TYPE + SYNTAX SwapiDot1dPortOutboundAccessPriorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Regenerated User Priority to Outbound Access Priority + mapping." + INDEX { sDot1dBasePort, sDot1dRegenUserPriority } + ::= { sDot1dPortOutboundAccessPriorityTable 1 } + + SwapiDot1dPortOutboundAccessPriorityEntry ::= + SEQUENCE { + sDot1dPortOutboundAccessPriority + INTEGER + } + + sDot1dPortOutboundAccessPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Outbound Access Priority the received frame is + mapped to." + ::= { sDot1dPortOutboundAccessPriorityEntry 1 } + +------------------------------------------------------------------------------ +--Ôö¼ÓÓйØÐ¾Æ¬¶ÓÁÐweightµÄMIB +------------------------------------------------------------------------------ + oemQueueWeightTable OBJECT-TYPE + SYNTAX SEQUENCE OF oemQueueWeightEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of weight of queue ." + ::= { sDot1dPriority 5 } + + oemQueueWeightEntry OBJECT-TYPE + SYNTAX oemQueueWeightEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry of weight of queue." + INDEX { oemQueue } + ::= { oemQueueWeightTable 1 } + + oemQueueWeightEntry ::= SEQUENCE { + oemQueue Integer32, + oemQueueWeight Integer32 + } + + oemQueue OBJECT-TYPE + SYNTAX Integer32 (1..4) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Queue of class" + ::= { oemQueueWeightEntry 1 } + + oemQueueWeight OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Weight of queue" + ::= { oemQueueWeightEntry 2 } + + oemDscpToCosMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF OemDscpToCosMapEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A table mapping evaluated DSCP to CoS." + ::= { sDot1dPriority 6 } + + oemDscpToCosMapEntry OBJECT-TYPE + SYNTAX OemDscpToCosMapEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "DSCP to CoS mapping. " + INDEX { oemDscpToCosMapDscp } + ::= { oemDscpToCosMapTable 1 } + + OemDscpToCosMapEntry ::= + SEQUENCE { + oemDscpToCosMapDscp + INTEGER, + oemDscpToCosMapCos + INTEGER + } + + oemDscpToCosMapDscp OBJECT-TYPE + SYNTAX INTEGER(0..63) + ACCESS read-only + STATUS current + DESCRIPTION + "the DSCP value used to map to CoS. " + ::= { oemDscpToCosMapEntry 1 } + + oemDscpToCosMapCos OBJECT-TYPE + SYNTAX INTEGER(0..7) + ACCESS read-write + STATUS current + DESCRIPTION + "the map result CoS. " + ::= { oemDscpToCosMapEntry 2 } + +-- The OEM DSCP to Cos map status + + oemDscpToCosMapStatus OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "the DSCP to CoS map status. " + ::= { sDot1dPriority 7 } + +-- ------------------------------------------------------------- +-- The GMRP Port Configuration and Status Table +-- ------------------------------------------------------------- + + sDot1dPortGmrpTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1dPortGmrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of GMRP control and status information about + every bridge port. Augments the sDot1dBasePortTable." + ::= { sDot1dGmrp 1 } + + sDot1dPortGmrpEntry OBJECT-TYPE + SYNTAX SwapiDot1dPortGmrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "GMRP control and status information for a bridge port." + AUGMENTS { sDot1dBasePortEntry } + ::= { sDot1dPortGmrpTable 1 } + + SwapiDot1dPortGmrpEntry ::= + SEQUENCE { + sDot1dPortGmrpStatus + EnabledStatus + } + + sDot1dPortGmrpStatus OBJECT-TYPE + SYNTAX EnabledStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The administrative state of GMRP operation on this port. The + value enabled(1) indicates that GMRP is enabled on this port + in all VLANs as long as sDot1dGmrpStatus is also enabled(1). + A value of disabled(2) indicates that GMRP is disabled on this + port in all VLANs: any GMRP packets received will + be silently discarded and no GMRP registrations will be + propagated from other ports. Setting this to a value of + enabled(1) will be stored by the agent but will only take effect + on the GMRP protocol operation if sDot1dGmrpStatus also + indicates the value enabled(1). This object affects all + GMRP Applicant and Registrar state machines on this + port. A transition from disabled(2) to enabled(1) will + cause a reset of all GMRP state machines on this port." + DEFVAL { enabled } + ::= { sDot1dPortGmrpEntry 1 } + + sDot1qMaxSupportedVlans OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of IEEE 802.1Q VLANs that this + device supports." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.1" + ::= { sDot1qBase 3 } + + sDot1qGvrpStatus OBJECT-TYPE + SYNTAX EnabledStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The administrative status requested by management for + GVRP. The value enabled(1) indicates that GVRP should + be enabled on this device, on all ports for which it has + not been specifically disabled. When disabled(2), GVRP + is disabled on all ports and all GVRP packets will be + forwarded transparently. This object affects all GVRP + Applicant and Registrar state machines. A transition + from disabled(2) to enabled(1) will cause a reset of all + GVRP state machines on all ports." + DEFVAL { enabled } + ::= { sDot1qBase 5 } + + sDot1xStatus OBJECT-TYPE + SYNTAX EnabledStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "802.1x status" + DEFVAL { enabled } + ::= { sDot1xBase 1 } + +-- ------------------------------------------------------------- +-- the dot1qTp group +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- the current Filtering Database Table +-- ------------------------------------------------------------- + + sDot1qFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains configuration and control + information for each Filtering Database currently + operating on this device. Entries in this table appear + automatically when VLANs are assigned FDB IDs in the + dot1qVlanCurrentTable." + ::= { sDot1qTp 1 } + + sDot1qFdbEntry OBJECT-TYPE + SYNTAX SwapiDot1qFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific Filtering Database." + INDEX { sDot1qFdbId } + ::= { sDot1qFdbTable 1 } + + SwapiDot1qFdbEntry ::= + SEQUENCE { + sDot1qFdbId + Unsigned32, + sDot1qFdbDynamicCount + Counter32 + } + + sDot1qFdbId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The identity of this Filtering Database." + ::= { sDot1qFdbEntry 1 } + + sDot1qFdbDynamicCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of dynamic entries in this + Filtering Database." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.1.1.3" + ::= { sDot1qFdbEntry 2 } + +-- ------------------------------------------------------------- +-- Multiple Forwarding Databases for 802.1Q Transparent devices +-- This table is an alternative to the dot1dTpFdbTable, +-- previously defined for 802.1D devices which only support a +-- single Forwarding Database. +-- ------------------------------------------------------------- + + sDot1qTpFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF Sdot1qTpFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about unicast entries + for which the device has forwarding and/or filtering + information. This information is used by the + transparent bridging function in determining how to + propagate a received frame." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7" + ::= { sDot1qTp 2 } + + sDot1qTpFdbEntry OBJECT-TYPE + SYNTAX Sdot1qTpFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific unicast MAC address for + which the device has some forwarding and/or filtering + information." + INDEX { sDot1qFdbId, sDot1qTpFdbAddress } + ::= { sDot1qTpFdbTable 1 } + + Sdot1qTpFdbEntry ::= + SEQUENCE { + sDot1qTpFdbAddress + MacAddress, + sDot1qTpFdbPort + INTEGER, + sDot1qTpFdbStatus + INTEGER + } + + + sDot1qTpFdbAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + + DESCRIPTION + "A unicast MAC address for which the device has + forwarding and/or filtering information." + ::= { sDot1qTpFdbEntry 1 } + + sDot1qTpFdbPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Either the value '0', or the port number of the port on + which a frame having a source address equal to the value + of the corresponding instance of dot1qTpFdbAddress has + been seen. A value of '0' indicates that the port + number has not been learned but that the device does + have some forwarding/filtering information about this + address (e.g. in the dot1qStaticUnicastTable). + Implementors are encouraged to assign the port value to + this object whenever it is learned even for addresses + for which the corresponding value of dot1qTpFdbStatus is + not learned(3)." + ::= { sDot1qTpFdbEntry 2 } + + sDot1qTpFdbStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + learned(3), + self(4), + mgmt(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this entry. The meanings of the values + are: + other(1) - none of the following. This may include + the case where some other MIB object (not the + corresponding instance of dot1qTpFdbPort, nor an + entry in the dot1qStaticUnicastTable) is being + used to determine if and how frames addressed to + the value of the corresponding instance of + dot1qTpFdbAddress are being forwarded. + invalid(2) - this entry is no longer valid (e.g., it + was learned but has since aged out), but has not + yet been flushed from the table. + learned(3) - the value of the corresponding instance + of dot1qTpFdbPort was learned and is being used. + + self(4) - the value of the corresponding instance of + dot1qTpFdbAddress represents one of the device's + addresses. The corresponding instance of + dot1qTpFdbPort indicates which of the device's + ports has this address. + mgmt(5) - the value of the corresponding instance of + dot1qTpFdbAddress is also the value of an + existing instance of dot1qStaticAddress." + ::= { sDot1qTpFdbEntry 3 } + + sDot1qForwardUnregisteredTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qForwardUnregisteredEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing forwarding information for each + VLAN, specifying the set of ports to which forwarding of + multicast group-addressed frames for which there is no + more specific forwarding information applies. This is + configured statically by management and determined + dynamically by GMRP. An entry appears in this table for + all VLANs that are currently instantiated." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.2, 12.7.7" + ::= { sDot1qTp 5 } + + sDot1qForwardUnregisteredEntry OBJECT-TYPE + SYNTAX SwapiDot1qForwardUnregisteredEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Forwarding information for a VLAN, specifying the set + of ports to which all multicasts for which there is no + more specific forwarding information shall be forwarded. + This is configured statically by management or + dynamically by GMRP." + INDEX { sDot1qVlanIndex } + ::= { sDot1qForwardUnregisteredTable 1 } + + SwapiDot1qForwardUnregisteredEntry ::= + SEQUENCE { + sDot1qForwardUnregisteredPorts + PortList + } + + sDot1qForwardUnregisteredPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The complete set of ports in this VLAN to which + multicast group-addressed frames for which there is no + more specific forwarding information will be forwarded. + This includes ports for which this need has been + determined dynamically by GMRP, or configured statically + by management." + ::= { sDot1qForwardUnregisteredEntry 1 } + +-- +-- sDot1qStatic Group +-- +-- ------------------------------------------------------------- +-- The Static (Destination-Address Filtering) Database +-- ------------------------------------------------------------- + + sDot1qStaticUnicastTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qStaticUnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing filtering information for Unicast + MAC addresses for each Filtering Database, configured + into the device by (local or network) management + specifying the set of ports to which frames received + from specific ports and containing specific unicast + destination addresses are allowed to be forwarded. A + value of zero in this table as the port number from + which frames with a specific destination address are + received, is used to specify all ports for which there + is no specific entry in this table for that particular + destination address. Entries are valid for unicast + addresses only." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7, + ISO/IEC 15802-3 Section 7.9.1" + ::= { sDot1qStatic 1 } + + sDot1qStaticUnicastEntry OBJECT-TYPE + SYNTAX SwapiDot1qStaticUnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Filtering information configured into the device by + (local or network) management specifying the set of + ports to which frames received from a specific port and + containing a specific unicast destination address are + allowed to be forwarded." + INDEX { + sDot1qFdbId, + sDot1qStaticUnicastAddress, + sDot1qStaticUnicastReceivePort + } + ::= { sDot1qStaticUnicastTable 1 } + + SwapiDot1qStaticUnicastEntry ::= + SEQUENCE { + sDot1qStaticUnicastAddress + MacAddress, + sDot1qStaticUnicastReceivePort + INTEGER, + sDot1qStaticUnicastAllowedToGoTo + PortList + } + + sDot1qStaticUnicastAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination MAC address in a frame to which this + entry's filtering information applies. This object must + take the value of a unicast address." + ::= { sDot1qStaticUnicastEntry 1 } + + sDot1qStaticUnicastReceivePort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Either the value '0', or the port number of the port + from which a frame must be received in order for this + entry's filtering information to apply. A value of zero + indicates that this entry applies on all ports of the + device for which there is no other applicable entry." + ::= { sDot1qStaticUnicastEntry 2 } + + sDot1qStaticUnicastAllowedToGoTo OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The set of ports for which a frame with a specific + unicast address will be flooded in the event that it + has not been learned. It also specifies the set of + ports a specific unicast address may be dynamically + learnt on. The dot1qTpFdbTable will have an equivalent + entry with a dot1qTpFdbPort value of '0' until this + address has been learnt, when it will be updated with + the port the address has been seen on. This only + applies to ports that are members of the VLAN, defined + by dot1qVlanCurrentEgressPorts. The default value of + this object is a string of ones of appropriate length." + REFERENCE + "IEEE 802.1Q/D11 Table 8-5, ISO/IEC 15802-3 Table 7-5" + ::= { sDot1qStaticUnicastEntry 3 } + + sDot1qStaticMulticastTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qStaticMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing filtering information for Multicast + and Broadcast MAC addresses for each VLAN, configured + into the device by (local or network) management + specifying the set of ports to which frames received + from specific ports and containing specific Multicast + and Broadcast destination addresses are allowed to be + forwarded. A value of zero in this table as the port + number from which frames with a specific destination + address are received, is used to specify all ports for + which there is no specific entry in this table for that + particular destination address. Entries are valid for + Multicast and Broadcast addresses only." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7, + ISO/IEC 15802-3 Section 7.9.1" + ::= { sDot1qStatic 2 } + + sDot1qStaticMulticastEntry OBJECT-TYPE + SYNTAX SwapiDot1qStaticMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Filtering information configured into the device by + (local or network) management specifying the set of + ports to which frames received from this specific port + for this VLAN and containing this Multicast or Broadcast + destination address are allowed to be forwarded." + INDEX { + sDot1qVlanIndex, + sDot1qStaticMulticastAddress, + sDot1qStaticMulticastReceivePort + } + ::= { sDot1qStaticMulticastTable 1 } + + SwapiDot1qStaticMulticastEntry ::= + SEQUENCE { + sDot1qStaticMulticastAddress + MacAddress, + sDot1qStaticMulticastReceivePort + INTEGER, + sDot1qStaticMulticastStaticEgressPorts + PortList, + sDot1qStaticMulticastStatus + INTEGER + } + + sDot1qStaticMulticastAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination MAC address in a frame to which this + entry's filtering information applies. This object must + take the value of a Multicast or Broadcast address." + ::= { sDot1qStaticMulticastEntry 1 } + + sDot1qStaticMulticastReceivePort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Either the value '0', or the port number of the port + from which a frame must be received in order for this + entry's filtering information to apply. A value of zero + indicates that this entry applies on all ports of the + device for which there is no other applicable entry." + ::= { sDot1qStaticMulticastEntry 2 } + + sDot1qStaticMulticastStaticEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The set of ports to which frames received from a + specific port and destined for a specific Multicast or + Broadcast MAC address must be forwarded, regardless of + any dynamic information e.g. from GMRP. A port may not + be added in this set if it is already a member of the + set of ports in dot1qStaticMulticastForbiddenEgressPorts. + The default value of this object is a string of ones of + appropriate length." + ::= { sDot1qStaticMulticastEntry 3 } + + sDot1qStaticMulticastStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + permanent(3), + deleteOnReset(4), + deleteOnTimeout(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of this entry. + other(1) - this entry is currently in use but + the conditions under which it will remain + so differ from the following values. + invalid(2) - writing this value to the object + removes the corresponding entry. + permanent(3) - this entry is currently in use + and will remain so after the next reset of + the bridge. + deleteOnReset(4) - this entry is currently in + use and will remain so until the next + reset of the bridge. + deleteOnTimeout(5) - this entry is currently in + use and will remain so until it is aged out." + DEFVAL { permanent } + ::= { sDot1qStaticMulticastEntry 5 } + +-- ------------------------------------------------------------- +-- The Current VLAN Database +-- ------------------------------------------------------------- + + sDot1qVlanCurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qVlanCurrentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing current configuration information + for each VLAN currently configured into the device by + (local or network) management, or dynamically created + as a result of GVRP requests received." + ::= { sDot1qVlan 2 } + + sDot1qVlanCurrentEntry OBJECT-TYPE + SYNTAX SwapiDot1qVlanCurrentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information for a VLAN configured into the device by + (local or network) management, or dynamically created + as a result of GVRP requests received." + INDEX { sDot1qVlanTimeMark, sDot1qVlanIndex } + ::= { sDot1qVlanCurrentTable 1 } + + SwapiDot1qVlanCurrentEntry ::= + SEQUENCE { + sDot1qVlanTimeMark + TimeFilter, + sDot1qVlanIndex + VlanIndex, + sDot1qVlanFdbId + Unsigned32, + sDot1qVlanCurrentEgressPorts + PortList, + sDot1qVlanCurrentUntaggedPorts + PortList + } + + sDot1qVlanTimeMark OBJECT-TYPE + SYNTAX TimeFilter + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A TimeFilter for this entry. See the TimeFilter + textual convention to see how this works." + ::= { sDot1qVlanCurrentEntry 1 } + + sDot1qVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN-ID or other identifier refering to this VLAN." + ::= { sDot1qVlanCurrentEntry 2 } + + sDot1qVlanFdbId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Filtering Database used by this VLAN. This is one + of the dot1qFdbId values in the sDot1qFdbTable. This + value is allocated automatically by the device whenever + the VLAN is created: either dynamically by GVRP, or by + management, in dot1qVlanStaticTable. Allocation of this + value follows the learning constraints defined for this + VLAN in dot1qLearningConstraintsTable." + ::= { sDot1qVlanCurrentEntry 3 } + + sDot1qVlanCurrentEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The set of ports which are transmitting traffic for + this VLAN as either tagged or untagged frames." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { sDot1qVlanCurrentEntry 4 } + + sDot1qVlanCurrentUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The set of ports which are transmitting traffic for + this VLAN as untagged frames." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { sDot1qVlanCurrentEntry 5 } + +-- ------------------------------------------------------------- +-- The Static VLAN Database +-- ------------------------------------------------------------- + + sDot1qVlanStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qVlanStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing static configuration information for + each VLAN configured into the device by (local or + network) management. All entries are permanent and will + be restored after the device is reset." + ::= { sDot1qVlan 3 } + + sDot1qVlanStaticEntry OBJECT-TYPE + SYNTAX SwapiDot1qVlanStaticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Static information for a VLAN configured into the + device by (local or network) management." + INDEX { sDot1qVlanIndex } + ::= { sDot1qVlanStaticTable 1 } + + SwapiDot1qVlanStaticEntry ::= + SEQUENCE { + sDot1qVlanStaticEgressPorts + PortList, + sDot1qVlanStaticUntaggedPorts + PortList, + sDot1qVlanStaticRowStatus + RowStatus + } + + sDot1qVlanStaticEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which are permanently assigned to the + egress list for this VLAN by management. Changes to a + bit in this object affect the per-port per-VLAN + Registrar control for Registration Fixed for the + relevant GVRP state machine on each port. A port may + not be added in this set if it is already a member of + the set of ports in sDot1qVlanForbiddenEgressPorts. The + default value of this object is a string of zeros of + appropriate length, indicating not fixed." + REFERENCE + "IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3" + ::= { sDot1qVlanStaticEntry 2 } + + sDot1qVlanStaticUntaggedPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The set of ports which should transmit egress packets + for this VLAN as untagged. The default value of this + object for the default VLAN (sDot1qVlanIndex = 1) is a string + of appropriate length including all ports. There is no + specified default for other VLANs. If a device agent cannot + support the set of ports being set then it will reject the + set operation with an error. An example might be if a + manager attempts to set more than one VLAN to be untagged + on egress where the device does not support this IEEE 802.1Q + option." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.2.1" + ::= { sDot1qVlanStaticEntry 4 } + + sDot1qVlanStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { sDot1qVlanStaticEntry 5 } + +-- ------------------------------------------------------------- +-- The VLAN Port Configuration Table +-- ------------------------------------------------------------- + + sDot1qPortVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot1qPortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing per port control and status + information for VLAN configuration in the device." + ::= { sDot1qVlan 5 } + + sDot1qPortVlanEntry OBJECT-TYPE + SYNTAX SwapiDot1qPortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information controlling VLAN configuration for a port + on the device. This is indexed by sDot1dBasePort." + AUGMENTS { sDot1dBasePortEntry } + ::= { sDot1qPortVlanTable 1 } + + SwapiDot1qPortVlanEntry ::= + SEQUENCE { + sDot1qPvid + VlanIndex, + sDot1qPortAcceptableFrameTypes + INTEGER, + sDot1qPortIngressFiltering + TruthValue, + sDot1qPortGvrpStatus + EnabledStatus + } + + sDot1qPvid OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1:all } + The PVID, the VLAN ID assigned to untagged frames or + Prority-Tagged frames received on this port." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.1" + DEFVAL { 1 } + ::= { sDot1qPortVlanEntry 1 } + + sDot1qPortAcceptableFrameTypes OBJECT-TYPE + SYNTAX INTEGER { + admitAll(1), + admitOnlyVlanTagged(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1:all } + When this is admitOnlyVlanTagged(2) the device will + discard untagged frames or Priority-Tagged frames + received on this port. When admitAll(1), untagged + frames or Prority-Tagged frames received on this port + will be accepted and assigned to the PVID for this port. + + This control does not affect VLAN independent BPDU + frames, such as GVRP and STP. It does affect VLAN + dependent BPDU frames, such as GMRP." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.3" + DEFVAL { admitAll } + ::= { sDot1qPortVlanEntry 2 } + + sDot1qPortIngressFiltering OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 2:all } + When this is true(1) the device will discard incoming + frames for VLANs which do not include this Port in its + Member set. When false(2), the port will accept all + incoming frames. + + This control does not affect VLAN independent BPDU + frames, such as GVRP and STP. It does affect VLAN + dependent BPDU frames, such as GMRP." + REFERENCE + "IEEE 802.1Q/D11 Section 12.10.1.4" + DEFVAL { false } + ::= { sDot1qPortVlanEntry 3 } + + sDot1qPortGvrpStatus OBJECT-TYPE + SYNTAX EnabledStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of GVRP operation on this port. The value + enabled(1) indicates that GVRP is enabled on this port, + as long as dot1qGvrpStatus is also enabled for this + device. When disabled(2) but dot1qGvrpStatus is still + enabled for the device, GVRP is disabled on this port: + any GVRP packets received will be silently discarded and + no GVRP registrations will be propagated from other + ports. This object affects all GVRP Applicant and + Registrar state machines on this port. A transition + from disabled(2) to enabled(1) will cause a reset of all + GVRP state machines on this port." + DEFVAL { enabled } + ::= { sDot1qPortVlanEntry 4 } + +-- +-- sRFC1643 Group +-- + sDot3StatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiDot3StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Statistics for a collection of ethernet-like + interfaces attached to a particular system." + ::= { sRFC1643Dot3 2 } + + sDot3StatsEntry OBJECT-TYPE + SYNTAX SwapiDot3StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Statistics for a particular interface to an + ethernet-like medium." + INDEX { sDot3StatsIndex } + ::= { sDot3StatsTable 1 } + + + SwapiDot3StatsEntry ::= SEQUENCE { + sDot3StatsIndex INTEGER, + sDot3StatsAlignmentErrors Counter32, + sDot3StatsFCSErrors Counter32, + sDot3StatsSingleCollisionFrames Counter32, + sDot3StatsMultipleCollisionFrames Counter32, + sDot3StatsSQETestErrors Counter32, + sDot3StatsDeferredTransmissions Counter32, + sDot3StatsLateCollisions Counter32, + sDot3StatsExcessiveCollisions Counter32, + sDot3StatsInternalMacTransmitErrors Counter32, + sDot3StatsCarrierSenseErrors Counter32, + sDot3StatsFrameTooLongs Counter32, + sDot3StatsInternalMacReceiveErrors Counter32, + sDot3StatsEtherChipSet OBJECT IDENTIFIER, + sDot3StatsSymbolErrors Counter32, + sDot3StatsDuplexStatus INTEGER + } + + sDot3StatsIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index value that uniquely identifies an + interface to an ethernet-like medium. The + interface identified by a particular value of + this index is the same interface as identified + by the same value of ifIndex." + ::= { sDot3StatsEntry 1 } + + sDot3StatsAlignmentErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received on a particular + interface that are not an integral number of + octets in length and do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the alignmentError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + + + ::= { sDot3StatsEntry 2 } + + sDot3StatsFCSErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received on a particular + interface that are an integral number of octets + in length but do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the frameCheckError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 3 } + + sDot3StatsSingleCollisionFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of successfully transmitted frames on + a particular interface for which transmission + is inhibited by exactly one collision. + + A frame that is counted by an instance of this + object is also counted by the corresponding + instance of either the ifOutUcastPkts, + ifOutMulticastPkts, or ifOutBroadcastPkts, + and is not counted by the corresponding + instance of the sDot3StatsMultipleCollisionFrames + object." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 4 } + + sDot3StatsMultipleCollisionFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + + + "A count of successfully transmitted frames on + a particular interface for which transmission + is inhibited by more than one collision. + + A frame that is counted by an instance of this + object is also counted by the corresponding + instance of either the ifOutUcastPkts, + ifOutMulticastPkts, or ifOutBroadcastPkts, + and is not counted by the corresponding + instance of the sDot3StatsSingleCollisionFrames + object." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 5 } + + sDot3StatsSQETestErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of times that the SQE TEST ERROR + message is generated by the PLS sublayer for a + particular interface. The SQE TEST ERROR + message is defined in section 7.2.2.2.4 of + ANSI/IEEE 802.3-1985 and its generation is + described in section 7.2.4.6 of the same + document." + REFERENCE + "ANSI/IEEE Std 802.3-1985 Carrier Sense + Multiple Access with Collision Detection Access + Method and Physical Layer Specifications" + ::= { sDot3StatsEntry 6 } + + sDot3StatsDeferredTransmissions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames for which the first + transmission attempt on a particular interface + is delayed because the medium is busy. + + The count represented by an instance of this + object does not include frames involved in + collisions." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 7 } + + + sDot3StatsLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that a collision is + detected on a particular interface later than + 512 bit-times into the transmission of a + packet. + + Five hundred and twelve bit-times corresponds + to 51.2 microseconds on a 10 Mbit/s system. A + (late) collision included in a count + represented by an instance of this object is + also considered as a (generic) collision for + purposes of other collision-related + statistics." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 8 } + + sDot3StatsExcessiveCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames for which transmission on a + particular interface fails due to excessive + collisions." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 9 } + + sDot3StatsInternalMacTransmitErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames for which transmission on a + particular interface fails due to an internal + MAC sublayer transmit error. A frame is only + counted by an instance of this object if it is + not counted by the corresponding instance of + either the sDot3StatsLateCollisions object, the + sDot3StatsExcessiveCollisions object, or the + sDot3StatsCarrierSenseErrors object. + + + The precise meaning of the count represented by + an instance of this object is implementation- + specific. In particular, an instance of this + object may represent a count of transmission + errors on a particular interface that are not + otherwise counted." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 10 } + + sDot3StatsCarrierSenseErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that the carrier sense + condition was lost or never asserted when + attempting to transmit a frame on a particular + interface. + + The count represented by an instance of this + object is incremented at most once per + transmission attempt, even if the carrier sense + condition fluctuates during a transmission + attempt." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 11 } + + -- { sDot3StatsEntry 12 } is not assigned + + sDot3StatsFrameTooLongs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received on a particular + interface that exceed the maximum permitted + frame size. + + The count represented by an instance of this + object is incremented when the frameTooLong + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + + + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 13 } + + -- { sDot3StatsEntry 14 } is not assigned + + -- { sDot3StatsEntry 15 } is not assigned + + sDot3StatsInternalMacReceiveErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames for which reception on a + particular interface fails due to an internal + MAC sublayer receive error. A frame is only + counted by an instance of this object if it is + not counted by the corresponding instance of + either the sDot3StatsFrameTooLongs object, the + sDot3StatsAlignmentErrors object, or the + sDot3StatsFCSErrors object. + + The precise meaning of the count represented by + an instance of this object is implementation- + specific. In particular, an instance of this + object may represent a count of receive errors + on a particular interface that are not + otherwise counted." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { sDot3StatsEntry 16 } + + sDot3StatsEtherChipSet OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an OBJECT IDENTIFIER + which identifies the chipset used to + realize the interface. Ethernet-like + interfaces are typically built out of + several different chips. The MIB implementor + is presented with a decision of which chip + to identify via this object. The implementor + should identify the chip which is usually + called the Medium Access Control chip. + If no such chip is easily identifiable, + the implementor should identify the chip + + + which actually gathers the transmit + and receive statistics and error + indications. This would allow a + manager station to correlate the + statistics and the chip generating + them, giving it the ability to take + into account any known anomalies + in the chip." + ::= { sDot3StatsEntry 17 } + + sDot3StatsSymbolErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For an interface operating at 100 Mb/s, the + number of times there was an invalid data symbol + when a valid carrier was present. + + For an interface operating in half-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle (a carrier event) for a period + of time equal to or greater than slotTime, and + during which there was at least one occurrence + of an event that causes the PHY to indicate + 'Data reception error' or 'carrier extend error' + on the GMII. + + For an interface operating in full-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle a carrier event) for a period + of time equal to or greater than minFrameSize, + and during which there was at least one + occurrence of an event that causes the PHY to + indicate 'Data reception error' on the GMII. + + The count represented by an instance of this + object is incremented at most once per carrier + event, even if multiple symbol errors occur + during the carrier event. This count does + not increment if a collision is present. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE + "[IEEE 802.3 Std.], 30.3.2.1.5, + aSymbolErrorDuringCarrier." + ::= { sDot3StatsEntry 18 } + + sDot3StatsDuplexStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + halfDuplex(2), + fullDuplex(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current mode of operation of the MAC + entity. 'unknown' indicates that the current + duplex mode could not be determined. + + Management control of the duplex mode is + accomplished through the MAU MIB. When + an interface does not support autonegotiation, + or when autonegotiation is not enabled, the + duplex mode is controlled using + ifMauDefaultType. When autonegotiation is + supported and enabled, duplex mode is controlled + using ifMauAutoNegAdvertisedBits. In either + case, the currently operating duplex mode is + reflected both in this object and in ifMauType. + + Note that this object provides redundant + information with ifMauType. Normally, redundant + objects are discouraged. However, in this + instance, it allows a management application to + determine the duplex status of an interface + without having to know every possible value of + ifMauType. This was felt to be sufficiently + valuable to justify the redundancy." + REFERENCE + "[IEEE 802.3 Std.], 30.3.1.1.32, + aDuplexStatus." + ::= { sDot3StatsEntry 19 } + + +-- +-- sArch Group +-- +-- Needs to be replaced with the 64-bit counters +-- + + sSwitchStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwapiSwitchStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of ifNumber." + ::= { sSwitchStatsInfo 1 } + + + sSwitchStatsEntry OBJECT-TYPE + SYNTAX SwapiSwitchStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { sSwitchPortIndex } + ::= { sSwitchStatsTable 1 } + + SwapiSwitchStatsEntry ::= + SEQUENCE { + sSwitchPortIndex INTEGER, + sSwitchStatsTXOctetsNoErr Counter32, + sSwitchStatsTXPacketsNoErr Counter32, + sSwitchStatsRXOctetsNoErr Counter32, + sSwitchStatsRXPacketsNoErr Counter32 + } + + sSwitchPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..65536) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, uses linear port number with holes." + ::= { sSwitchStatsEntry 1 } + + sSwitchStatsTXOctetsNoErr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of octets transmitted from the interface. This + number does not include octets in error." + ::= { sSwitchStatsEntry 2 } + + sSwitchStatsTXPacketsNoErr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets transmitted from the interface. This + number does not include packets in error." + ::= { sSwitchStatsEntry 3 } + + sSwitchStatsRXOctetsNoErr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of octets received on the interface. This + number does not include octets in error." + ::= { sSwitchStatsEntry 4 } + + sSwitchStatsRXPacketsNoErr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received on the interface. This + number does not include packets in error." + ::= { sSwitchStatsEntry 5 } + +-- ---------------------------------------------------------------- +-- Conformance groups. This is required by SMIv2 +-- ---------------------------------------------------------------- +sMIBConformance OBJECT IDENTIFIER ::= { bcmSwapi 1 } +sMIBGroups OBJECT IDENTIFIER ::= { sMIBConformance 1 } +sMIBCompliances OBJECT IDENTIFIER ::= { sMIBConformance 2 } + + sMIBDot1dGroup OBJECT-GROUP + OBJECTS { + sDot1dBasePort, + sDot1dBasePortMtuExceededDiscards, + sDot1dStpPort, + sDot1dStpPortState, + sDot1dStpPortEnable, + sDot1dTpLearnedEntryDiscards, + sDot1dTpAgingTime + } + STATUS current + DESCRIPTION + "Swapi dot1d support objects." + ::= { sMIBGroups 3 } + + sMIBRMONGroup OBJECT-GROUP + OBJECTS { + sEtherStatsIndex, + sEtherStatsDropEvents, + sEtherStatsOctets, + sEtherStatsPkts, + sEtherStatsBroadcastPkts, + sEtherStatsMulticastPkts, + sEtherStatsCRCAlignErrors, + sEtherStatsUndersizePkts, + sEtherStatsOversizePkts, + sEtherStatsFragments, + sEtherStatsJabbers, + sEtherStatsCollisions, + sEtherStatsPkts64Octets, + sEtherStatsPkts65to127Octets, + sEtherStatsPkts128to255Octets, + sEtherStatsPkts256to511Octets, + sEtherStatsPkts512to1023Octets, + sEtherStatsPkts1024to1518Octets, + sEtherStatsRXMACControlFrames, + sEtherStatsRXPauseMACCtrlFrames, + sEtherStatsTXPauseMACCtrlFrames, + sEtherStatsBcmIPMCBridgedPckts, + sEtherStatsBcmIPMCRoutedPckts, + sEtherStatsBcmIPMCInDroppedPckts, + sEtherStatsBcmIPMCOutDroppedPckts, + sEtherStatsIfInFrameRate, + sEtherStatsIfInOctetRate, + sEtherStatsIfOutFrameRate, + sEtherStatsIfOutOctetRate + } + STATUS current + DESCRIPTION + "Swapi RMON support objects." + ::= { sMIBGroups 4 } + + sMIBMauGroup OBJECT-GROUP + OBJECTS { + sIfMauIndex, + sIfMauType, + sIfMauMediaAvailable, + sIfMauJabberState, + sIfMauDefaultType, + sIfMauAutoNegAdminStatus, + sIfMauAutoNegRestart, + sIfMauAutoNegCapAdvertisedBits, + sIfMauAutoNegCapReceivedBits + } + STATUS current + DESCRIPTION + "Swapi MAU support objects." + ::= { sMIBGroups 5 } + + sMIBDot1pGroup OBJECT-GROUP + OBJECTS { + sDot1dDeviceCapabilities, + sDot1dTrafficClassesEnabled, + sDot1dGmrpStatus, + sDot1dPortCapabilities, + sDot1dPortDefaultUserPriority, + sDot1dPortNumTrafficClasses, + sDot1dRegenUserPriority, + sDot1dTrafficClass, + sDot1dPortOutboundAccessPriority, + sDot1dPortGmrpStatus + } + STATUS current + DESCRIPTION + "Swapi Dot1p dependent support objects." + ::= { sMIBGroups 6 } + + sMIBDot1QGroup OBJECT-GROUP + OBJECTS { + sDot1qGvrpStatus, + sDot1qFdbDynamicCount, + sDot1qStaticUnicastAllowedToGoTo, + sDot1qStaticMulticastStaticEgressPorts, + sDot1qStaticMulticastStatus, + sDot1qVlanFdbId, + sDot1qForwardUnregisteredPorts, + sDot1qVlanCurrentEgressPorts, + sDot1qVlanCurrentUntaggedPorts, + sDot1qVlanStaticEgressPorts, + sDot1qVlanStaticUntaggedPorts, + sDot1qVlanStaticRowStatus, + sDot1qPvid, + sDot1qPortAcceptableFrameTypes, + sDot1qPortIngressFiltering, + sDot1qPortGvrpStatus + } + STATUS current + DESCRIPTION + "Swapi Dot1Q dependent support objects." + ::= { sMIBGroups 7 } + + sMIBDot3Group OBJECT-GROUP + OBJECTS { + sDot3StatsIndex, + sDot3StatsAlignmentErrors, + sDot3StatsFCSErrors, + sDot3StatsSingleCollisionFrames, + sDot3StatsMultipleCollisionFrames, + sDot3StatsSQETestErrors, + sDot3StatsDeferredTransmissions, + sDot3StatsLateCollisions, + sDot3StatsExcessiveCollisions, + sDot3StatsInternalMacTransmitErrors, + sDot3StatsCarrierSenseErrors, + sDot3StatsFrameTooLongs, + sDot3StatsInternalMacReceiveErrors, + sDot3StatsEtherChipSet + } + STATUS current + DESCRIPTION + "Swapi RFC1643 dependent support objects." + ::= { sMIBGroups 8 } + + sMIBArchGroup OBJECT-GROUP + OBJECTS { + sSwitchPortIndex, + sSwitchStatsTXOctetsNoErr, + sSwitchStatsTXPacketsNoErr, + sSwitchStatsRXOctetsNoErr, + sSwitchStatsRXPacketsNoErr + } + STATUS current + DESCRIPTION + "Swapi architectural dependent support objects." + ::= { sMIBGroups 9 } + + + sMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for s module." + MODULE + MANDATORY-GROUPS { + sMIBDot1dGroup, + sMIBRMONGroup, + sMIBMauGroup, + sMIBDot1pGroup, + sMIBDot1QGroup, + sMIBDot3Group, + sMIBArchGroup + } + ::= { sMIBCompliances 1 } + + END + diff --git a/mibs/fs/GBNDeviceStack-MIB b/mibs/fs/GBNDeviceStack-MIB new file mode 100644 index 0000000000..00249df402 --- /dev/null +++ b/mibs/fs/GBNDeviceStack-MIB @@ -0,0 +1,437 @@ + + GBNDeviceStack-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnDevice FROM ADMIN-MASTER-MIB + ; + + gbnDeviceStackMib MODULE-IDENTITY + LAST-UPDATED "2013/07/09" -- July 09, 2013 + ORGANIZATION "ADMIN" + CONTACT-INFO "ADMIN + E-mail: support@admin.com" + + DESCRIPTION "gbn stack Enterprise MIB definition." + + REVISION "2013/07/09" -- July 09, 2013 + DESCRIPTION "Initial MIB creation." + + ::= { gbnDevice 5 } + + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + -- + -- "DURABLE": + -- Objects that are saved across a system reset and/or power cycle + -- are noted as "DURABLE" for convenience in the DESCRIPTION + -- section of the object definition. Code must be explicitly + -- written to implement these DURABLE objects. + -- + +------------------------------------------------------------------------------ +-- define groups in gbn-stack-MIB + +stackEnableRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "stack mode running status." + ::= { gbnDeviceStackMib 1 } + +stackEnableConfig OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "trigger to enable or disable stack mode, need to reboot to take effect." + ::= { gbnDeviceStackMib 2 } + +stackUnitMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "max unit members support in stack mode." + ::= { gbnDeviceStackMib 3 } + +stackPortVirtualLinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF StackPortVirtualLinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of virtual link." + REFERENCE + "9.6.1" + ::= { gbnDeviceStackMib 4 } + +stackPortVirtualLinkEntry OBJECT-TYPE + SYNTAX StackPortVirtualLinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "virtuallink is a virtual link, it includes none or some real physical ports.System have two virtuallink:virtuallink 1 and virtualink 2." + INDEX { stackPortVirtualLinkPhyPort } + ::= { stackPortVirtualLinkTable 1 } + +StackPortVirtualLinkEntry ::= + SEQUENCE { + stackPortVirtualLinkDevice + Integer32, + stackPortVirtualLinkSlot + Integer32, + stackPortVirtualLinkPortNum + Integer32, + stackPortVirtualLinkPhyPort + Integer32, + stackPortVirtualLinkModeRunning + INTEGER, + stackPortVirtualLinkModeConfig + INTEGER, + stackPortVirtualLinkLinkStatus + INTEGER, + stackPortVirtualLinkLinkSpeed + INTEGER, + } + +stackPortVirtualLinkPhyPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port number of switch." + ::= { stackPortVirtualLinkEntry 1 } + +stackPortVirtualLinkDevice OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "device in ." + ::= { stackPortVirtualLinkEntry 2 } + +stackPortVirtualLinkSlot OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "slot in ." + ::= { stackPortVirtualLinkEntry 3 } + +stackPortVirtualLinkPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "portnum in ." + ::= { stackPortVirtualLinkEntry 4 } + +stackPortVirtualLinkModeRunning OBJECT-TYPE + SYNTAX INTEGER { + none(0), + virtuallink1(1), + virtuallink2(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "running status." + ::= { stackPortVirtualLinkEntry 5 } + +stackPortVirtualLinkModeConfig OBJECT-TYPE + SYNTAX INTEGER { + none(0), + virtuallink1(1), + virtuallink2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "trigger to change virtuallink mode of phyical port, need to reboot to tabke effect." + ::= { stackPortVirtualLinkEntry 6 } + +stackPortVirtualLinkLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + linkdown(0), + linkup(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "link status of this phyical port." + ::= { stackPortVirtualLinkEntry 7 } + +stackPortVirtualLinkLinkSpeed OBJECT-TYPE + SYNTAX INTEGER { + s10g(0), + s12g(1), + s1g(2), + s2-5g(3), + s5g(4), + s10m(5), + s100m(6), + unknow(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "link speed of this phyical port." + ::= { stackPortVirtualLinkEntry 8 } + +stackMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF StackMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of stack members." + REFERENCE + "9.6.1" + ::= { gbnDeviceStackMib 5 } + +stackMemberEntry OBJECT-TYPE + SYNTAX StackMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "members of stack system, when stack is not running, only unit 0 can use." + INDEX { stackMemberUnit } + ::= { stackMemberTable 1 } + +StackMemberEntry ::= + SEQUENCE { + stackMemberUnit + Integer32, + stackMemberMode + INTEGER, + stackMemberNewUnit + Integer32, + stackMemberPriorityRunning + Integer32, + stackMemberPriorityConfig + Integer32, + stackMemberReboot + TruthValue, + stackMemberVirtualLink1Hop + Integer32, + stackMemberVirtualLink2Hop + Integer32, + stackMemberMac + MacAddress, + } + +stackMemberUnit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "unit number, range is form 0 to (stackUnitMax - 1)." + ::= { stackMemberEntry 1 } + +stackMemberMode OBJECT-TYPE + SYNTAX INTEGER { + slave(0), + master(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "member unit is master or slave." + ::= { stackMemberEntry 2 } + +stackMemberNewUnit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "trigger to change unit number, range is form 0 to (stackUnitMax - 1).need to reboot to tabke effect" + ::= { stackMemberEntry 3 } + +stackMemberPriorityRunning OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "running priorty of this unit.default is 0" + ::= { stackMemberEntry 4 } + +stackMemberPriorityConfig OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "trigger to change priortiy of this unit, need to reboot to tabke effect.default is 0.need to reboot to tabke effect" + ::= { stackMemberEntry 5 } + +stackMemberReboot OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "trigger to reboot this unit." + ::= { stackMemberEntry 6 } + +stackMemberVirtualLink1Hop OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "how many hops can master unit reach this unit from virtuallink 1.range is from 0 to stackUnitMax, and stackUnitMax means infinite." + ::= { stackMemberEntry 7 } + +stackMemberVirtualLink2Hop OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "how many hops can master unit reach this unit from virtuallink 2.range is from 0 to stackUnitMax, and stackUnitMax means infinite." + ::= { stackMemberEntry 8 } + +stackMemberMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "mac address of this unit." + ::= { stackMemberEntry 9 } + +stackLinkdownDelay OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable linkdown-delay function.default is disable.this mib can be accessed only when stackEnableRunning is true." + ::= { gbnDeviceStackMib 6 } + +stackHelloTimeOut OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable linkdown-delay function.default is disable.default is 30 seconds.this mib can be accessed only when stackEnableRunning is true." + ::= { gbnDeviceStackMib 7 } + +stackLacpMadDomain OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "lacp mad domain id.default is 0.this mib can be accessed only when stackEnableRunning is true." + ::= { gbnDeviceStackMib 8 } + +stackLacpMadTable OBJECT-TYPE + SYNTAX SEQUENCE OF StackLacpMadEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of lacp mad.this mib can be accessed only when stackEnableRunning is true." + REFERENCE + "9.6.1" + ::= { gbnDeviceStackMib 9 } + +stackLacpMadEntry OBJECT-TYPE + SYNTAX StackLacpMadEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of lacp mad." + INDEX { lacpMadChannelGroup } + ::= { stackLacpMadTable 1 } + +StackLacpMadEntry ::= + SEQUENCE { + lacpMadChannelGroup + Integer32, + lacpMadEnable + TruthValue, + } + +lacpMadChannelGroup OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "lacp channel group number." + ::= { stackLacpMadEntry 1 } + +lacpMadEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable lacp mad function.default is disable." + ::= { stackLacpMadEntry 2 } + +stackMadExcludeTable OBJECT-TYPE + SYNTAX SEQUENCE OF StackMadExcludeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of mad exclude of port.this mib can be accessed only when stackEnableRunning is true." + REFERENCE + "9.6.1" + ::= { gbnDeviceStackMib 10 } + +stackMadExcludeEntry OBJECT-TYPE + SYNTAX StackMadExcludeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of mad exclude of port." + INDEX { madExcludePort } + ::= { stackMadExcludeTable 1 } + +StackMadExcludeEntry ::= + SEQUENCE { + madExcludePort + Integer32, + macExcludeEnable + TruthValue, + } + +madExcludePort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port number of system." + ::= { stackMadExcludeEntry 1 } + +macExcludeEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable mad exclude function.default is disable." + ::= { stackMadExcludeEntry 2 } + + ---------------------------------------------------------------------------------- + --stack TRAP MIB-- + ---------------------------------------------------------------------------------- +stackTrap OBJECT IDENTIFIER ::= { gbnDeviceStackMib 11 } + stackPortVirtualLinkStateChange NOTIFICATION-TYPE + OBJECTS { stackPortVirtualLinkDevice, stackPortVirtualLinkSlot, + stackPortVirtualLinkPortNum, stackPortVirtualLinkLinkStatus } + STATUS current + DESCRIPTION + "A link state change trap signifies that the SNMP entity, + acting in an agent role, has detected that the + stackPortVirtualLinkLinkStatus object for one of its communication + links is about to enter the down or up state from some other state." + ::= { stackTrap 1 } +-- +-- END of gbn-stack-MIB +-- + +END + diff --git a/mibs/fs/GBNDeviceSwitch-MIB b/mibs/fs/GBNDeviceSwitch-MIB new file mode 100644 index 0000000000..5fcb8cfd7e --- /dev/null +++ b/mibs/fs/GBNDeviceSwitch-MIB @@ -0,0 +1,2796 @@ + GBNDeviceSwitch-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue,DateAndTime FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnDevice FROM ADMIN-MASTER-MIB + + SnmpAdminString FROM SNMP-FRAMEWORK-MIB + + VlanIndex FROM Q-BRIDGE-MIB + + PortList, dot1qStaticMulticastEntry FROM Q-BRIDGE-MIB; + + gbnDeviceSwitch MODULE-IDENTITY + LAST-UPDATED "0011020000Z" -- November 2, 2000 + ORGANIZATION "Admin Co., Ltd." + CONTACT-INFO "Admin Co., Ltd. + E-mail: support@admin.com" + + DESCRIPTION "ADMIN Common Enterprise MIB definition." + + REVISION "0011020000Z" -- November 2, 2000 + DESCRIPTION "Initial MIB creation." + + ::= { gbnDevice 1 } + +MirrorMacType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "null¡¢destination¡¢source" + SYNTAX INTEGER { null(0), destination (1), source(2) } + +------------------------------------------------------------------------------ +-- define groups in gbnDeviceSwitch-MIB +------------------------------------------------------------------------------ + gbnDeviceSwitchMirror OBJECT IDENTIFIER ::= { gbnDeviceSwitch 1 } + gbnDeviceSwitchPort OBJECT IDENTIFIER ::= { gbnDeviceSwitch 2 } + gbnDeviceSwitchAggregation OBJECT IDENTIFIER ::= { gbnDeviceSwitch 3 } + gbnDeviceSwitchL3 OBJECT IDENTIFIER ::= { gbnDeviceSwitch 4 } + gbnDeviceSwitchLoopTest OBJECT IDENTIFIER ::= { gbnDeviceSwitch 5 } + gbnDeviceSwitchSRM OBJECT IDENTIFIER ::= { gbnDeviceSwitch 6 } + gbnDeviceSwitchFlowAlarm OBJECT IDENTIFIER ::= { gbnDeviceSwitch 7 } + gbnDeviceSwitchQueneScheduer OBJECT IDENTIFIER ::= { gbnDeviceSwitch 8 } + gbnDeviceSwitchLineRate OBJECT IDENTIFIER ::= { gbnDeviceSwitch 9 } + gbnDeviceSwitchPortIsolation OBJECT IDENTIFIER ::= { gbnDeviceSwitch 10 } + gbnDeviceSwitchStormControl OBJECT IDENTIFIER ::= { gbnDeviceSwitch 11 } + gbnDeviceSwitchAntiDos OBJECT IDENTIFIER ::= { gbnDeviceSwitch 12 } + gbnDeviceSwitchBandWidth OBJECT IDENTIFIER ::= { gbnDeviceSwitch 13 } + gbnDeviceSwitchHigigStatistics OBJECT IDENTIFIER ::= { gbnDeviceSwitch 14 } + gbnDeviceSwitchChannelStats OBJECT IDENTIFIER ::= { gbnDeviceSwitch 15 } + gbnDeviceSwitchRmoteMirror OBJECT IDENTIFIER ::= { gbnDeviceSwitch 16 } + gbnDeviceSwitchPortSFPInfo OBJECT IDENTIFIER ::= { gbnDeviceSwitch 17 } + gbnDeviceSwitchPortAvgRate OBJECT IDENTIFIER ::= { gbnDeviceSwitch 18 } + gbnDeviceSwitchPortbandwidthUtilization OBJECT IDENTIFIER ::= { gbnDeviceSwitch 19 } +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchMirror - Mirror Group +-- +------------------------------------------------------------------------------ + mirroringPort OBJECT-TYPE + SYNTAX INTEGER (0..26) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This port which all packets send to." + ::= { gbnDeviceSwitchMirror 1 } + + mirroredEgrPort OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The egress ports which need to monitor." + ::= { gbnDeviceSwitchMirror 2 } + + mirroredIgrPort OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ingress ports which need to monitor." + ::= { gbnDeviceSwitchMirror 3 } + + ingressMirrorMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MAC address which will be compared with the ingress frame, Only the matched frame will be mirrored" + --ÓÃÓÚÆ¥Åäingress±¨ÎĵÄMACµØÖ· + ::= { gbnDeviceSwitchMirror 4 } + + egressMirrorMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MAC address which will be compared with the egress frame, Only the matched frame will be mirrored" + --ÓÃÓÚÆ¥Åäegress±¨ÎĵÄMACµØÖ· + ::= { gbnDeviceSwitchMirror 5 } + + ingressMirrorMacType OBJECT-TYPE + SYNTAX MirrorMacType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination or source MAC address which will be compared with the ingress frame" + --Ö¸¶¨ÓÃÓÚÆ¥Åäingress±¨ÎĵÄÊÇÄ¿µÄ»¹ÊÇÔ´MACµØÖ· + ::= { gbnDeviceSwitchMirror 6 } + + egressMirrorMacType OBJECT-TYPE + SYNTAX MirrorMacType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination or source MAC address which will be compared with the egress frame" + --Ö¸¶¨ÓÃÓÚÆ¥Åäegress±¨ÎĵÄÊÇÄ¿µÄ»¹ÊÇÔ´MACµØÖ· + ::= { gbnDeviceSwitchMirror 7 } + + ingressMirrorDivider OBJECT-TYPE + SYNTAX INTEGER(0..1023) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the mirror sampling divider" + --ingress±¨ÎĵIJÉÑùÖµ + ::= { gbnDeviceSwitchMirror 8 } + + egressMirrorDivider OBJECT-TYPE + SYNTAX INTEGER(0..1023) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the mirror sampling divider" + --egress±¨ÎĵIJÉÑùÖµ + ::= { gbnDeviceSwitchMirror 9 } + + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchPort - Port Group +-- +------------------------------------------------------------------------------ + portTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of switch interfaces and associated properties." + ::= { gbnDeviceSwitchPort 1 } + + portTypeEntry OBJECT-TYPE + SYNTAX PortTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { portNumber } + ::= { portTypeTable 1 } + + PortTypeEntry ::= SEQUENCE { + portNumber INTEGER, + portType INTEGER + + } + + portNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the index of port." + ::= { portTypeEntry 1 } + + portType OBJECT-TYPE + SYNTAX INTEGER { + blank(1), + FE(2), + single100FX(3), + double100FX(4), + single1000FX(5), + double1000FX(6), + fE1000(7), + cpu(8), + FX10000(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "¶Ë¿ÚÀàÐÍ:1Ϊ²»´æÔÚ£»2Ϊ10/100Mµç¿Ú£»3Ϊ100Mµ¥Ä£¹â¿Ú£» + 4Ϊ100M¶àÄ£¹â¿Ú£»5Ϊ1000M¹â¿Ú£»6Ϊ1000M¹â¿Ú£» + 7Ϊ1000Mµç¿Ú; 8ΪCPU½Ó¿Ú;9Ϊ10000M¹â¿Ú" + ::= { portTypeEntry 2 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchAggregation - Port Trunk Group +-- +------------------------------------------------------------------------------ + aggTable OBJECT-TYPE + SYNTAX SEQUENCE OF AggEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A table that contains information about every + Aggregator that is associated with this System." + ::= { gbnDeviceSwitchAggregation 1 } + + aggEntry OBJECT-TYPE + SYNTAX AggEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A list of the Aggregator parameters. This is indexed + by the ifIndex of the Aggregator." + INDEX { aggUnit, aggPort } + ::= { aggTable 1 } + + AggEntry ::= + SEQUENCE { + aggUnit + INTEGER, + aggPort + INTEGER, + aggPortListPorts + PortList, + aggRule + INTEGER, + aggRowstatus + RowStatus + } + + aggUnit OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The Interface Unit of the Aggregation." + ::= { aggEntry 1 } + + aggPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The MasterPort of the Aggregation." + ::= { aggEntry 2 } + + aggPortListPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The complete set of ports currently associated with + this Aggregator. Each bit set in this list represents + an Actor Port member of this Link Aggregation." + ::= { aggEntry 3 } + + aggRule OBJECT-TYPE + SYNTAX INTEGER { + srcMAC(1), + destMAC(2), + srcXORDestMAC(3), + srcIP(4), + destIP(5), + srcXORDestIP(6) + } + ACCESS read-write + STATUS obsolete + DESCRIPTION + " The Rule to be applied to this Link Aggregator's Trunk Group + Table. The rules are based on the following selections SrcMAC (1), + means that the last three bits of the Source MAC Address are used to + index the Trunk Group to get the destination port. DestMAC (2), means + the last three bits of the Destination MAC Address are used to index + into the Trunk Group to get the destination port. SrcXORDestMAC (3), + means that the last three bits of the Source MAC Address are logically + XORed with the last three bits of the Destination MAC Address and used + to index into the Trunk Group to get the destination port. SrcIP (4), + means the last three bits of the Source IP Address are used to index + into the Trunk Group to get the destination port. DestIP (5), means + the last three bits of the Destination IP Address are used to index + into the Trunk Group to get the destination port. SrcXORDestIP (6), + means the last three bits of the Source IP Address are logically XORed + with the last three bits of the Destination IP Address and used to + index into the Trunk Group to get the destination port. This rule + defines the distribution algorithm applied to the aggregated link." + ::= { aggEntry 4 } + + aggRowstatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "rowstatus of trunk." + ::= { aggEntry 5 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchL3 - L3 Group +-- +------------------------------------------------------------------------------ + l3Table OBJECT-TYPE + SYNTAX SEQUENCE OF L3Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "´Ë±íΪ½»»»Ð¾Æ¬µÄL3±íÏîÄÚÈÝ¡£" + ::= { gbnDeviceSwitchL3 1 } + + l3Entry OBJECT-TYPE + SYNTAX L3Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "½»»»Ð¾Æ¬µÄL3±íÏ´Ë±íΪֻ¶Á¡£" + INDEX { l3IpAddress } + ::= { l3Table 1 } + + L3Entry ::= + SEQUENCE { + l3IpAddress IpAddress, + l3NextHopMacAddress MacAddress, + l3Vlan VlanIndex, + l3Port INTEGER, + l3CreateTime DateAndTime, + l3UpdateTime DateAndTime + } + + l3IpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ä¿µÄIPµØÖ·£¬×÷ΪË÷Òý¡£" + ::= { l3Entry 1 } + + l3NextHopMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "ÏÂÒ»ÌøIPµÄMACµØÖ·¡£" + ::= { l3Entry 2 } + + l3Vlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "ÏÂÒ»ÌøIPËùÔÚµÄVLAN¡£" + ::= { l3Entry 3 } + + l3Port OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "±¨Îĵijö¶Ë¿Ú¡£" + ::= { l3Entry 4 } + + l3CreateTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Create Time,such as 2004-07-29,13:30:15.0" + ::= { l3Entry 5 } + + l3UpdateTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Update Time,such as 2004-07-29,13:30:15.0" + ::= { l3Entry 6 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchLoopTest - Loop Test Group +-- +------------------------------------------------------------------------------ + loopTestPortno OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "port bitmap:Numbers of the port to be tested. + The highest bit is port 1, the second bit is port 2, and so on." + ::= { gbnDeviceSwitchLoopTest 1 } + + loopTestType OBJECT-TYPE + SYNTAX INTEGER { + noop(1), -- no operation + local(2), -- for both vdsl and ethernet port + remote(3), -- for both vdsl and ethernet port + other(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 4 } + Setting this object to 2-4 enables loop back test. + Setting it to 1 disables loop back test." + ::= { gbnDeviceSwitchLoopTest 2 } + + loopTestSuccess OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "if the highest bit is + 0:the port 1 loop fail, + 1,the port 1 loop success, + and so on. + " + ::= { gbnDeviceSwitchLoopTest 3 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchSRM - SRM Group +-- +------------------------------------------------------------------------------ + srmHardwareEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Add network routes to hardware table or not.Default is enable." + -- "ÊÇ·ñÏ·¢Íø¶Î·Óɵ½Ó²¼þ±íÖС£Ä¬ÈÏΪÏ·¢¡£" + ::= { gbnDeviceSwitchSRM 1 } + + srmHardwareDEFCPU OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The DEF routes goes to CPU." + -- "Ó²¼þ²éÕÒʧ°ÜµÄ·ÓÉ·¢Ë͵½CPU£¬´Ë¹¦ÄÜÖ»ÓÐTiNet S3750Ö§³Ö£¬Ä¬ÈÏΪdisable" + ::= { gbnDeviceSwitchSRM 2 } +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchFlowAlarm - Port Flow Alarm Group +-- +------------------------------------------------------------------------------ + portFlowAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortFlowAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of port flow alarm." + --¶Ë¿ÚÁ÷Á¿¸æ¾¯±í + ::= { gbnDeviceSwitchFlowAlarm 1 } + + portFlowAlarmEntry OBJECT-TYPE + SYNTAX PortFlowAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port flow alarm." + --¶Ë¿ÚÁ÷Á¿¸æ¾¯Áбí + INDEX { portFlowAlarmPort } + ::= { portFlowAlarmTable 1 } + + PortFlowAlarmEntry ::= SEQUENCE { + portFlowAlarmPort Integer32, + portFlowAlarmEnable TruthValue, + portFlowAlarmExceedStatus TruthValue, + portFlowAlarmExceedThreshold Integer32, + portFlowAlarmNormalThreshold Integer32 + } + + portFlowAlarmPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number." + --¶Ë¿ÚºÅ£¬¶Ë¿ÚÁ÷Á¿¸æ¾¯±íµÄË÷ÒýÖµ + ::= { portFlowAlarmEntry 1 } + + portFlowAlarmEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enable status of the port flow alarm" + --¶Ë¿ÚÁ÷Á¿¸æ¾¯¿ªÆô/¹Ø±Õ״̬ + ::= { portFlowAlarmEntry 2 } + + portFlowAlarmExceedStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The exceed status of the port flow alarm" + --¶Ë¿ÚÁ÷Á¿¸æ¾¯Á÷Á¿×´Ì¬ + ::= { portFlowAlarmEntry 3 } + + portFlowAlarmExceedThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The exceed threshold of port flow alarm." + --¶Ë¿ÚÁ÷Á¿¹ý´óµÄãÐÖµ + ::= { portFlowAlarmEntry 4 } + + portFlowAlarmNormalThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The normal threshold of port flow alarm." + --¶Ë¿ÚÁ÷Á¿Õý³£µÄãÐÖµ + ::= { portFlowAlarmEntry 5 } + + portFlowAlarmGlobalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The global enable status of port flow alarm." + --È«¾Ö¶Ë¿ÚÁ÷Á¿¸æ¾¯¿ªÆô/¹Ø±Õ״̬ + ::= { gbnDeviceSwitchFlowAlarm 2 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchTrap - gbn device switch TRAP +-- +------------------------------------------------------------------------------ + portFlowAlarmTrap OBJECT IDENTIFIER ::= { gbnDeviceSwitchFlowAlarm 5 } + + portFlowAlarmExceedTrap NOTIFICATION-TYPE + OBJECTS { portFlowAlarmPort } + STATUS current + DESCRIPTION + "Port ingress packet rate become too big, port flow exceed alarm happen." + ::= { portFlowAlarmTrap 1 } + + portFlowAlarmNormalTrap NOTIFICATION-TYPE + OBJECTS { portFlowAlarmPort } + STATUS current + DESCRIPTION + "Port ingress packet rate become normal, port flow normal alarm happen." + --Èç¹û¶Ë¿Ú½øÀ´µÄ±¨ÎÄËÙÂʻָ´Õý³££¬Ôò·¢³ö¶Ë¿ÚËÙÂÊÕý³£µÄtrap + ::= { portFlowAlarmTrap 2 } + +-- the quene-scheduer QOS + + qosQueueSchedulerGroup OBJECT IDENTIFIER ::= { gbnDeviceSwitchQueneScheduer 1 } + + qosWrrQueue1Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 1th queue(%). for 3650, the range is 1 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ1µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª1µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 1 } + + qosWrrQueue2Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 2th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ2µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 2 } + + + qosWrrQueue3Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 3th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ3µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 3 } + + + qosWrrQueue4Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 4th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ4µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 4 } + + qosWrrMaxDelayValue OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS current + DESCRIPTION + "the maximum allowable latency for packet transmission on the priorest COS" + --¶ÓÁе÷¶Èʱ×î¸ßÓÅÏȼ¶µÄ¶ÓÁÐ×µÈ´ýʱ¼ä + ::= { qosQueueSchedulerGroup 5 } + + qosQueueSchedulerMode OBJECT-TYPE + SYNTAX INTEGER { + strictPriority (1), + wrr(2), + sp-wrr(3) } + ACCESS read-write + STATUS current + DESCRIPTION + "queue scheduler mode: strict priority, weighted round robin, strict priority+weighted round robin" + --¶ÓÁе÷¶Èģʽ:¾ø¶ÔÓÅÏȼ¶¡¢¼ÓȨÂÖÑ­µ÷¶È + DEFVAL { strictPriority } + ::= { qosQueueSchedulerGroup 6 } + + qosWrrQueue5Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 5th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ5µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 7 } + + qosWrrQueue6Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 6th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ6µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 8 } + + + qosWrrQueue7Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 7th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ7µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 9 } + + + qosWrrQueue8Weight OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 8th queue(%). for 3650, the range is 0 to 255, for 3750-24/48,the range is 1 to 15." + --¶ÓÁÐ8µÄÈ¨ÖØ¡£¶ÔÓÚ3650£¬·¶Î§Îª0µ½255£¬¶ÔÓÚ3750-24/48£¬·¶Î§Îª1µ½15 + ::= { qosQueueSchedulerGroup 10 } + + qosLineRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosLineRateEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of line-rate QOS entries. " + --¶Ë¿ÚÏÞËÙÈë¿Ú±í + ::= { gbnDeviceSwitchLineRate 1 } + + qosLineRateEntry OBJECT-TYPE + SYNTAX QosLineRateEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of line-rate QOS entries. " + --¶Ë¿ÚÏÞËÙÈë¿Ú + INDEX { qosLineRateInterface } + ::= { qosLineRateTable 1 } + + QosLineRateEntry ::= + SEQUENCE { + qosLineRateInterface + INTEGER, + qosLineRateTargetRate + INTEGER, + qosLineRateTargetBurst + INTEGER, + qosLineRateTargetRateIngress + INTEGER, + qosLineRateRowStatus + RowStatus + } + + qosLineRateInterface OBJECT-TYPE + SYNTAX INTEGER (1..26) + ACCESS read-only + STATUS current + DESCRIPTION + "the line rate interface. " + --¶Ë¿ÚÏÞËÙ¶Ë¿Ú + ::= { qosLineRateEntry 1 } + + qosLineRateTargetRate OBJECT-TYPE + SYNTAX INTEGER (64..1000000) + ACCESS read-write + STATUS current + DESCRIPTION + "The target rate(Kbps) of the line-rate QOS. Must be a multiple of 64Kbps " + --¶Ë¿ÚÏÞËÙÄ¿±êËÙÂÊ(Kbps),±ØÐëÊÇ64KbpsµÄ±¶Êý + ::= { qosLineRateEntry 2 } + + qosLineRateTargetBurst OBJECT-TYPE + SYNTAX INTEGER (64..1000000) + ACCESS read-write + STATUS current + DESCRIPTION + "The target burst(Kbps) of the line-rate QOS. Must be a multiple of 64Kbps " + --¶Ë¿ÚÏÞËÙÔÊÐíÍ»·¢ËÙÂÊ(Kbps),±ØÐëÊÇ64KbpsµÄ±¶Êý + ::= { qosLineRateEntry 3 } + + qosLineRateTargetRateIngress OBJECT-TYPE + SYNTAX INTEGER (0..1024000) + ACCESS read-write + STATUS current + DESCRIPTION + "The ingress target rate(Kbps) of the line-rate QOS.0 means disable" + --Èë¿Ú¶Ë¿ÚÏÞËÙÄ¿±êËÙÂÊ(Kbps) + ::= { qosLineRateEntry 4 } + + portIsolationGroup OBJECT IDENTIFIER ::= { gbnDeviceSwitchPortIsolation 1 } + + portIsolationDownLinkPorts OBJECT-TYPE + SYNTAX PortList + ACCESS read-write + STATUS current + DESCRIPTION + "port isolation down link portlist" + -- ¶Ë¿Ú¸ôÀëµÄÏÂÐж˿ÚÁбí -- + ::= { portIsolationGroup 1 } + + portIsolationUpLinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortIsolationUpLinkEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of uplink-ports of portisolation entries. conflict with portIsolationDownLinkPorts." + --»ùÓڶ˿ڵĶ˿ڸôÀëÉÏÐпÚÁÐ±í£¬²»Äܹ»¸úportIsolationDownLinkPortsͬʱʹÓà + ::= { portIsolationGroup 2 } + + portIsolationUpLinkEntry OBJECT-TYPE + SYNTAX PortIsolationUpLinkEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of uplink-ports of portisolation entries. " + --»ùÓڶ˿ڵĶ˿ڸôÀëÉÏÐпÚÁбí + INDEX { portisolationInterface } + ::= { portIsolationUpLinkTable 1 } + + PortIsolationUpLinkEntry ::= + SEQUENCE { + portisolationInterface + INTEGER, + portisolationUplinkList + PortList + } + + portisolationInterface OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "port index, start from 1. " + --¶Ë¿ÚË÷Òý + ::= { portIsolationUpLinkEntry 1 } + + portisolationUplinkList OBJECT-TYPE + SYNTAX PortList + ACCESS read-write + STATUS current + DESCRIPTION + "portlist of uplink ports,when configured , a port can only communicate with it's uplink ports. " + --ÉÏÐпÚÁÐ±í£¬µ±ÅäÖú󣬶˿ÚÖ»ÔÊÐí¸úËüµÄÉÏÐпÚͨÐÅ + ::= { portIsolationUpLinkEntry 2 } + + + stormControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF StormControlEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of storm control entries. " + --·ç±©¿ØÖÆÈë¿Ú±í + ::= { gbnDeviceSwitchStormControl 1 } + + stormControlEntry OBJECT-TYPE + SYNTAX StormControlEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of storm control entries. " + --·ç±©¿ØÖÆÈë¿Ú + INDEX { stormControlInterface, stormControlType } + ::= { stormControlTable 1 } + + StormControlEntry ::= + SEQUENCE { + stormControlInterface + INTEGER, + stormControlType + INTEGER, + stormControlTargetRate + INTEGER, + stormControlRowStatus + RowStatus, + stormControlMode + INTEGER + } + + stormControlInterface OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the storm control interface. " + --·ç±©¿ØÖÆ¶Ë¿Ú + ::= { stormControlEntry 1 } + + stormControlType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the pack flow type of the storm control. " + --·ç±©¿ØÖƱ¨ÎÄÁ÷ÀàÐÍ + ::= { stormControlEntry 2 } + + stormControlTargetRate OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-write + STATUS current + DESCRIPTION + "the target rate of the storm control. " + --·ç±©¿ØÖÆÄ¿±êËÙÂÊ + ::= { stormControlEntry 3 } + + stormControlRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "row status of the storm control" + --·ç±©¿ØÖÆÐÐ״̬ + ::= { stormControlEntry 4 } + + stormControlMode OBJECT-TYPE + SYNTAX INTEGER { + pps(0), + bps(1) } + ACCESS read-write + STATUS current + DESCRIPTION + "the mode of the storm control. " + ::= { stormControlEntry 5 } + + ipfragmnetnumber OBJECT-TYPE + SYNTAX INTEGER (0..800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip fragment number." + ::= { gbnDeviceSwitchAntiDos 1 } + + ipTTL OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Control IP with TTL=0 packet,default is not traffic to the CPU." + --¿ØÖÆTTL=0µÄ±¨ÎÄÊÇ·ñËÍÍùCPU,ĬÈÏÇé¿öÊǹرÕÉϱ¨CPU. + ::= { gbnDeviceSwitchAntiDos 2 } + + bandwidthcontrolTable OBJECT-TYPE + SYNTAX SEQUENCE OF BandwidthcontrolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of switch interfaces and associated properties." + ::= { gbnDeviceSwitchBandWidth 1 } + + bandwidthcontrolEntry OBJECT-TYPE + SYNTAX BandwidthcontrolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { controlPort } + ::= { bandwidthcontrolTable 1 } + + BandwidthcontrolEntry ::= SEQUENCE { + controlPort INTEGER, + portEgressBandwidthcontrol INTEGER, + portIngressBandwidthcontrol INTEGER + } + + controlPort OBJECT-TYPE + SYNTAX INTEGER (1..26) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "the index of port." + ::= { bandwidthcontrolEntry 1 } + + portEgressBandwidthcontrol OBJECT-TYPE + SYNTAX INTEGER (0..1024000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Egress Speed Value of port, bandwidth control ." + ::= { bandwidthcontrolEntry 2 } + + portIngressBandwidthcontrol OBJECT-TYPE + SYNTAX INTEGER (0..1024000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ingress Speed Value of port, bandwidth control ." + ::= { bandwidthcontrolEntry 3 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchHigigStatistics - Higig Statistics Info +-- +------------------------------------------------------------------------------ + higigStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF HigigStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Higig Statistics Info." + ::= { gbnDeviceSwitchHigigStatistics 1 } + + higigStatisticsEntry OBJECT-TYPE + SYNTAX HigigStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for Higig Statistics information." + INDEX { unit , higig } + ::= { higigStatisticsTable 1 } + + HigigStatisticsEntry ::= SEQUENCE { + unit INTEGER, + higig INTEGER, + snEtherStatsPkts64Octets Counter64, + snEtherStatsPkts65to127Octets Counter64, + snEtherStatsPkts128to255Octets Counter64, + snEtherStatsPkts256to511Octets Counter64, + snEtherStatsPkts512to1023Octets Counter64, + snEtherStatsPkts1024to1518Octets Counter64, + sndot1dTpPortInFrames Counter64, + snifInOctets Counter64, + snifInDiscards Counter64, + snifInUcastPkts Counter64, + snifInMulticastPkts Counter64, + snifInBroadcastPkts Counter64, + snifInErrors Counter64, + snDot3StatsFCSErrors Counter64, + snDot3StatsSymbolErrors Counter64, + snDot3StatsCarrierSenseErrors Counter64, + snEtherStatsUndersizePkts Counter64, + snEtherStatsOversizePkts Counter64, + snEtherStatsFragments Counter64, + snEtherStatsJabbers Counter64, + sndot1dTpPortOutFrames Counter64, + snifOutOctets Counter64, + snifOutDiscards Counter64, + snifOutUcastPkts Counter64, + snifOutMulticastPkts Counter64, + snifOutBroadcastPkts Counter64, + snifOutErrors Counter64, + snDot3StatsDeferredTransmissions Counter64, + snEtherStatsCollisions Counter64, + snDot3StatsLateCollisions Counter64 + } + + unit OBJECT-TYPE + SYNTAX INTEGER (0..1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "unit number." + ::= { higigStatisticsEntry 1 } + + higig OBJECT-TYPE + SYNTAX INTEGER (1..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "higig number." + ::= { higigStatisticsEntry 2 } + + snEtherStatsPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were 64 octets in length + (excluding framing bits but including FCS octets)." + ::= { higigStatisticsEntry 3 } + + snEtherStatsPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 65 and 127 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { higigStatisticsEntry 4 } + + snEtherStatsPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 128 and 255 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { higigStatisticsEntry 5 } + + snEtherStatsPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 256 and 511 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { higigStatisticsEntry 6 } + + snEtherStatsPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 512 and 1023 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { higigStatisticsEntry 7 } + + snEtherStatsPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 1024 and 1518 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { higigStatisticsEntry 8 } + + sndot1dTpPortInFrames OBJECT-TYPE + SYNTAX Counter64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames that have been received by + this port from its segment. Note that a frame + received on the interface corresponding to this + port is only counted by this object if and only if + it is for a protocol being processed by the local + bridging function, including bridge management + frames." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { higigStatisticsEntry 9 } + + snifInOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the interface, + including framing characters. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 10 } + + snifInDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen to be + discarded even though no errors had been detected to + prevent their being deliverable to a higher-layer + protocol. One possible reason for discarding such a + packet could be to free up buffer space. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 11 } + + snifInUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 12 } + + snifInMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 13 } + + snifInBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 14 } + + snifInErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of inbound + packets that contained errors preventing them from + being deliverable to a higher-layer protocol. For + character-oriented or fixed-length interfaces, the + number of inbound transmission units that contained + errors preventing them from being deliverable to a + higher-layer protocol. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 15 } + + snDot3StatsFCSErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received on a particular + interface that are an integral number of octets + in length but do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the frameCheckError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { higigStatisticsEntry 16 } + + snDot3StatsSymbolErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For an interface operating at 100 Mb/s, the + number of times there was an invalid data symbol + when a valid carrier was present. + + For an interface operating in half-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle (a carrier event) for a period + of time equal to or greater than slotTime, and + during which there was at least one occurrence + of an event that causes the PHY to indicate + 'Data reception error' or 'carrier extend error' + on the GMII. + + For an interface operating in full-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle a carrier event) for a period + of time equal to or greater than minFrameSize, + and during which there was at least one + occurrence of an event that causes the PHY to + indicate 'Data reception error' on the GMII. + + The count represented by an instance of this + object is incremented at most once per carrier + event, even if multiple symbol errors occur + during the carrier event. This count does + not increment if a collision is present. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE + "[IEEE 802.3 Std.], 30.3.2.1.5, + aSymbolErrorDuringCarrier." + ::= { higigStatisticsEntry 17 } + + snDot3StatsCarrierSenseErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that the carrier sense + condition was lost or never asserted when + attempting to transmit a frame on a particular + interface. + + The count represented by an instance of this + object is incremented at most once per + transmission attempt, even if the carrier sense + condition fluctuates during a transmission + attempt." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { higigStatisticsEntry 18 } + + snEtherStatsUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + less than 64 octets long (excluding framing bits, + but including FCS octets) and were otherwise well + formed." + ::= { higigStatisticsEntry 19 } + + snEtherStatsOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets) and were otherwise + well formed." + ::= { higigStatisticsEntry 20 } + + snEtherStatsFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were less + than 64 octets in length (excluding framing bits but + including FCS octets) and had either a bad Frame + Check Sequence (FCS) with an integral number of + octets (FCS Error) or a bad FCS with a non-integral + number of octets (Alignment Error). + + Note that it is entirely normal for + etherStatsFragments to increment. This is because + it counts both runts (which are normal occurrences + due to collisions) and noise hits." + ::= { higigStatisticsEntry 21 } + + snEtherStatsJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets), and had either a bad + Frame Check Sequence (FCS) with an integral number + of octets (FCS Error) or a bad FCS with a + non-integral number of octets (Alignment Error). + + Note that this definition of jabber is different + than the definition in IEEE-802.3 section 8.2.1.5 + (10BASE5) and section 10.3.1.4 (10BASE2). These + documents define jabber as the condition where any + packet exceeds 20 ms. The allowed range to detect + jabber is between 20 ms and 150 ms." + ::= { higigStatisticsEntry 22 } + + sndot1dTpPortOutFrames OBJECT-TYPE + SYNTAX Counter64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames that have been transmitted + by this port to its segment. Note that a frame + transmitted on the interface corresponding to this + port is only counted by this object if and only if + it is for a protocol being processed by the local + bridging function, including bridge management + frames." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { higigStatisticsEntry 23 } + + snifOutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 24 } + + snifOutDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen to + be discarded even though no errors had been detected + to prevent their being transmitted. One possible + reason for discarding such a packet could be to free + up buffer space. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 25 } + + snifOutUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 26 } + + snifOutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 27 } + + snifOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 28 } + + snifOutErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of + outbound packets that could not be transmitted because + of errors. For character-oriented or fixed-length + interfaces, the number of outbound transmission units + that could not be transmitted because of errors. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { higigStatisticsEntry 29 } + + snDot3StatsDeferredTransmissions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames for which the first + transmission attempt on a particular interface + is delayed because the medium is busy. + + The count represented by an instance of this + object does not include frames involved in + collisions." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { higigStatisticsEntry 30 } + + snEtherStatsCollisions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The best estimate of the total number of collisions + on this Ethernet segment. + + The value returned will depend on the location of + the RMON probe. Section 8.2.1.3 (10BASE-5) and + section 10.3.1.3 (10BASE-2) of IEEE standard 802.3 + states that a station must detect a collision, in + the receive mode, if three or more stations are + transmitting simultaneously. A repeater port must + detect a collision when two or more stations are + transmitting simultaneously. Thus a probe placed on + a repeater port could record more collisions than a + probe connected to a station on the same segment + would. + + Probe location plays a much smaller role when + considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE + standard 802.3 defines a collision as the + simultaneous presence of signals on the DO and RD + circuits (transmitting and receiving at the same + time). A 10BASE-T station can only detect + collisions when it is transmitting. Thus probes + placed on a station and a repeater, should report + the same number of collisions. + + Note also that an RMON probe inside a repeater + should ideally report collisions between the + repeater and one or more other hosts (transmit + collisions as defined by IEEE 802.3k) plus receiver + collisions observed on any coax segments to which + the repeater is connected." + ::= { higigStatisticsEntry 31 } + + snDot3StatsLateCollisions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that a collision is + detected on a particular interface later than + 512 bit-times into the transmission of a + packet. + + Five hundred and twelve bit-times corresponds + to 51.2 microseconds on a 10 Mbit/s system. A + (late) collision included in a count + represented by an instance of this object is + also considered as a (generic) collision for + purposes of other collision-related + statistics." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { higigStatisticsEntry 32 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchChannelStats - Channel group Sttatistics Info +-- +------------------------------------------------------------------------------ + channelStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChannelStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Channel group Statistics Info(32)." + ::= { gbnDeviceSwitchChannelStats 1 } + +-- The channelStatsEntry + channelStatsEntry OBJECT-TYPE + SYNTAX ChannelStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for Channel Statistics information(32)." + INDEX { channelGroupIndex } + ::= { channelStatsTable 1 } + + ChannelStatsEntry ::= SEQUENCE { + channelGroupIndex INTEGER, + channelInOctetRate Counter32, + channelInFrameRate Counter32, + channelOutOctetRate Counter32, + channelOutFrameRate Counter32, + channelPkts64Octets Counter32, + channelPkts65to127Octets Counter32, + channelPkts128to255Octets Counter32, + channelPkts256to511Octets Counter32, + channelPkts512to1023Octets Counter32, + channelPkts1024to1518Octets Counter32, + channelInFrames Counter32, + channelInOctets Counter32, + channelInDiscards Counter32, + channelInUcastPkts Counter32, + channelInMulticastPkts Counter32, + channelInBroadcastPkts Counter32, + channelInErrors Counter32, + channelFCSErrors Counter32, + channelSymbolErrors Counter32, + channelCarrierSenseErrors Counter32, + channelUndersizePkts Counter32, + channelOversizePkts Counter32, + channelFragments Counter32, + channelJabbers Counter32, + channelOutFrames Counter32, + channelOutOctets Counter32, + channelOutDiscards Counter32, + channelOutUcastPkts Counter32, + channelOutMulticastPkts Counter32, + channelOutBroadcastPkts Counter32, + channelOutErrors Counter32, + channelDeferredTransmissions Counter32, + channelCollisions Counter32, + channelLateCollisions Counter32 + } + + channelGroupIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The configed channel-group index list." + --ÒÑÅäÖõĻã¾Û×éË÷ÒýÁбí + ::= { channelStatsEntry 1 } + + channelInOctetRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress octet rate of this channel-group." + --¸Ã»ã¾Û×é½ÓÊÕ±¨ÎÄ×Ö½ÚµÄËÙÂÊ + ::= { channelStatsEntry 2 } + + channelInFrameRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress packet rate of this channel-group." + --¸Ã»ã¾Û×é½ÓÊÕ±¨ÎĵÄËÙÂÊ + ::= { channelStatsEntry 3 } + + channelOutOctetRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress octet rate of this channel-group." + --¸Ã»ã¾Û×é·¢Ëͱ¨ÎÄ×Ö½ÚµÄËÙÂÊ + ::= { channelStatsEntry 4 } + + channelOutFrameRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress packet rate of this channel-group." + --¸Ã»ã¾Û×é·¢Ëͱ¨ÎĵÄËÙÂÊ + ::= { channelStatsEntry 5 } + + channelPkts64Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were 64 octets in length + (excluding framing bits but including FCS octets) + in this channel-group." + ::= { channelStatsEntry 6 } + + channelPkts65to127Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 65 and 127 octets in length inclusive + (excluding framing bits but including FCS octets) + in this channel-group." + ::= { channelStatsEntry 7 } + + channelPkts128to255Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 128 and 255 octets in length inclusive + (excluding framing bits but including FCS octets). + in this channel-group." + ::= { channelStatsEntry 8 } + + channelPkts256to511Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 256 and 511 octets in length inclusive + (excluding framing bits but including FCS octets) + in this channel-group." + ::= { channelStatsEntry 9 } + + channelPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 512 and 1023 octets in length inclusive + (excluding framing bits but including FCS octets) + in this channel-group." + ::= { channelStatsEntry 10 } + + channelPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 1024 and 1518 octets in length inclusive + (excluding framing bits but including FCS octets) + in this channel-group." + ::= { channelStatsEntry 11 } + + channelInFrames OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames that have been received by + this channel-group from its segment. Note that a frame + received on the interface corresponding to this + channel-group is only counted by this object if and + only if it is for a protocol being processed by the + local bridging function, including bridge management + frames." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { channelStatsEntry 12 } + + channelInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the channel-group, + including framing characters. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 13 } + + channelInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen to be + discarded even though no errors had been detected to + prevent their being deliverable to a higher-layer + protocol. One possible reason for discarding such a + packet could be to free up buffer space. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 14 } + + channelInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 15 } + + channelInMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 16 } + + channelInBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 17 } + + channelInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of inbound + packets that contained errors preventing them from + being deliverable to a higher-layer protocol. For + character-oriented or fixed-length interfaces, the + number of inbound transmission units that contained + errors preventing them from being deliverable to a + higher-layer protocol. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 18 } + + channelFCSErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received on a particular + interface that are an integral number of octets + in length but do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the frameCheckError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { channelStatsEntry 19 } + + channelSymbolErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For an interface operating at 100 Mb/s, the + number of times there was an invalid data symbol + when a valid carrier was present. + + For an interface operating in half-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle (a carrier event) for a period + of time equal to or greater than slotTime, and + during which there was at least one occurrence + of an event that causes the PHY to indicate + 'Data reception error' or 'carrier extend error' + on the GMII. + + For an interface operating in full-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle a carrier event) for a period + of time equal to or greater than minFrameSize, + and during which there was at least one + occurrence of an event that causes the PHY to + indicate 'Data reception error' on the GMII. + + The count represented by an instance of this + object is incremented at most once per carrier + event, even if multiple symbol errors occur + during the carrier event. This count does + not increment if a collision is present. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE + "[IEEE 802.3 Std.], 30.3.2.1.5, + aSymbolErrorDuringCarrier." + ::= { channelStatsEntry 20 } + + channelCarrierSenseErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that the carrier sense + condition was lost or never asserted when + attempting to transmit a frame on a particular + interface. + + The count represented by an instance of this + object is incremented at most once per + transmission attempt, even if the carrier sense + condition fluctuates during a transmission + attempt." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { channelStatsEntry 21 } + + channelUndersizePkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + less than 64 octets long (excluding framing bits, + but including FCS octets) and were otherwise well + formed." + ::= { channelStatsEntry 22 } + + channelOversizePkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets) and were otherwise + well formed." + ::= { channelStatsEntry 23 } + + channelFragments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were less + than 64 octets in length (excluding framing bits but + including FCS octets) and had either a bad Frame + Check Sequence (FCS) with an integral number of + octets (FCS Error) or a bad FCS with a non-integral + number of octets (Alignment Error). + + Note that it is entirely normal for + etherStatsFragments to increment. This is because + it counts both runts (which are normal occurrences + due to collisions) and noise hits." + ::= { channelStatsEntry 24 } + + channelJabbers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets), and had either a bad + Frame Check Sequence (FCS) with an integral number + of octets (FCS Error) or a bad FCS with a + non-integral number of octets (Alignment Error). + + Note that this definition of jabber is different + than the definition in IEEE-802.3 section 8.2.1.5 + (10BASE5) and section 10.3.1.4 (10BASE2). These + documents define jabber as the condition where any + packet exceeds 20 ms. The allowed range to detect + jabber is between 20 ms and 150 ms." + ::= { channelStatsEntry 25 } + + channelOutFrames OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames that have been transmitted + by this channel-group to its segment. Note that a + frame transmitted on the interface corresponding + to this port is only counted by this object if and + only if it is for a protocol being processed by the + local bridging function, including bridge management + frames." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { channelStatsEntry 26 } + + channelOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + channel-group, including framing characters. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 27 } + + channelOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen to + be discarded even though no errors had been detected + to prevent their being transmitted. One possible + reason for discarding such a packet could be to free + up buffer space. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 28 } + + channelOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 29 } + + channelOutMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 30 } + + channelOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 31 } + + channelOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of + outbound packets that could not be transmitted because + of errors. For character-oriented or fixed-length + interfaces, the number of outbound transmission units + that could not be transmitted because of errors. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsEntry 32 } + + channelDeferredTransmissions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames for which the first + transmission attempt on a particular interface + is delayed because the medium is busy. + + The count represented by an instance of this + object does not include frames involved in + collisions." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { channelStatsEntry 33 } + + channelCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The best estimate of the total number of collisions + on this Ethernet segment. + + The value returned will depend on the location of + the RMON probe. Section 8.2.1.3 (10BASE-5) and + section 10.3.1.3 (10BASE-2) of IEEE standard 802.3 + states that a station must detect a collision, in + the receive mode, if three or more stations are + transmitting simultaneously. A repeater port must + detect a collision when two or more stations are + transmitting simultaneously. Thus a probe placed on + a repeater port could record more collisions than a + probe connected to a station on the same segment + would. + + Probe location plays a much smaller role when + considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE + standard 802.3 defines a collision as the + simultaneous presence of signals on the DO and RD + circuits (transmitting and receiving at the same + time). A 10BASE-T station can only detect + collisions when it is transmitting. Thus probes + placed on a station and a repeater, should report + the same number of collisions. + + Note also that an RMON probe inside a repeater + should ideally report collisions between the + repeater and one or more other hosts (transmit + collisions as defined by IEEE 802.3k) plus receiver + collisions observed on any coax segments to which + the repeater is connected." + ::= { channelStatsEntry 34 } + + channelLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that a collision is + detected on a particular interface later than + 512 bit-times into the transmission of a + packet. + + Five hundred and twelve bit-times corresponds + to 51.2 microseconds on a 10 Mbit/s system. A + (late) collision included in a count + represented by an instance of this object is + also considered as a (generic) collision for + purposes of other collision-related + statistics." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { channelStatsEntry 35 } + +-- The channelStatsXEntry + channelStatsXTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChannelStatsXEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Channel group Statistics Info(64)." + ::= { gbnDeviceSwitchChannelStats 2 } + + channelStatsXEntry OBJECT-TYPE + SYNTAX ChannelStatsXEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for Channel Statistics information(64)." + AUGMENTS { channelStatsEntry } + ::= { channelStatsXTable 1 } + + ChannelStatsXEntry ::= SEQUENCE { + channelHCInFrames Counter64, + channelHCInOctets Counter64, + channelHCInUcastPkts Counter64, + channelHCInMulticastPkts Counter64, + channelHCInBroadcastPkts Counter64, + channelHCInDiscards Counter64, + channelHCOutFrames Counter64, + channelHCOutOctets Counter64, + channelHCOutUcastPkts Counter64, + channelHCOutMulticastPkts Counter64, + channelHCOutBroadcastPkts Counter64 + } + + channelHCInFrames OBJECT-TYPE + SYNTAX Counter64 + ACCESS read-only + STATUS current + DESCRIPTION + "The number of frames that have been received by + this channel-group from its segment. Note that a + frame received on the interface corresponding to + this channel-group is only counted by this object + if and only if it is for a protocol being processed + by the local bridging function, including bridge + management frames. + + This object is a 64-bit version of channelInFrames." + REFERENCE + "ISO/IEC 15802-3 Section 14.6.1.1.3" + ::= { channelStatsXEntry 1 } + + channelHCInOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the channel-group, + including framing characters. This object is a 64-bit + version of channelInOctets. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 2 } + + channelHCInUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer. + This object is a 64-bit version of channelInUcastPkts. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 3 } + + channelHCInMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses. This object is a 64-bit version of + channelInMulticastPkts. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 4 } + + channelHCInBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer. This object is a + 64-bit version of channelInBroadcastPkts. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 5 } + + channelHCInDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of valid frames that have been received by this + channel-group from its segment which were discarded (i.e., + filtered) by the Forwarding Process." + REFERENCE + "ISO/IEC 15802-3 Section 14.6.1.1.3" + ::= { channelStatsXEntry 6 } + + channelHCOutFrames OBJECT-TYPE + SYNTAX Counter64 + ACCESS read-only + STATUS current + DESCRIPTION + "The number of frames that have been transmitted + by this channel-group to its segment. Note that a + frame transmitted on the interface corresponding + to this channel-group is only counted by this + object if and only if it is for a protocol being + processed by the local bridging function, including + bridge management frames. + + This object is a 64-bit version of channelOutFrames." + REFERENCE + "ISO/IEC 15802-3 Section 14.6.1.1.3" + ::= { channelStatsXEntry 7 } + + channelHCOutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + channel-group, including framing characters. This + object is a 64-bit version of channelOutOctets. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 8 } + + channelHCOutUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent. This object is a 64-bit version of channelOutUcastPkts. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 9 } + + channelHCOutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses. This object is a 64-bit version + of channelOutMulticastPkts. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 10 } + + channelHCOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent. This + object is a 64-bit version of channelOutBroadcastPkts. + + Discontinuities in the value of this counter can occur + at re-initialization of the management system, and at + other times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { channelStatsXEntry 11 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchRemoteMirror - Mirror Group +-- +------------------------------------------------------------------------------ + remoteMirrorVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteMirrorVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of switch interfaces and associated properties." + ::= { gbnDeviceSwitchRmoteMirror 1 } + + remoteMirrorVlanEntry OBJECT-TYPE + SYNTAX RemoteMirrorVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { remoteMirrorVlanIndex } + ::= { remoteMirrorVlanTable 1 } + + RemoteMirrorVlanEntry ::= SEQUENCE { + remoteMirrorVlanIndex INTEGER, + remoteMirrorVlanEnable TruthValue + + } + + remoteMirrorVlanIndex OBJECT-TYPE + SYNTAX INTEGER (2..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the index of remote mirror vlan." + ::= { remoteMirrorVlanEntry 1 } + + remoteMirrorVlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1:enable. 2 disable" + ::= { remoteMirrorVlanEntry 2 } + + remoteMirrorRspanVlanSet OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set rspan vlan on src-switch, + 0:means no rspan vlan;don't set vlan 1 to be rspan vlan" + ::= { gbnDeviceSwitchRmoteMirror 2 } + + remoteMirrorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable remote mirror on src-switch" + ::= { gbnDeviceSwitchRmoteMirror 3 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchPortSFPInfo - Port SFP Information +-- +------------------------------------------------------------------------------ + portSFPInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSFPInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of switch interfaces and associated properties." + ::= { gbnDeviceSwitchPortSFPInfo 1 } + + portSFPInfoEntry OBJECT-TYPE + SYNTAX PortSFPInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { portSFPNumber } + ::= { portSFPInfoTable 1 } + + PortSFPInfoEntry ::= SEQUENCE { + portSFPNumber INTEGER, + transceiverType INTEGER, + compliance DisplayString, + connectorType INTEGER, + waveLength INTEGER, + transferDistance INTEGER, + digitalDiagnosticMonitor INTEGER, + vendorName DisplayString, + manuSerialNumber DisplayString, + manufacturingDate DisplayString, + temperature INTEGER, + voltage DisplayString, + biasCurrent DisplayString, + biasHighThreshold DisplayString, + biasLowThreshold DisplayString, + rxPower DisplayString, + rxPowerHighThreshold DisplayString, + rxPowerLowThreshold DisplayString, + txPower DisplayString, + txPowerHighThreshold DisplayString, + txPowerLowThreshold DisplayString + } + + portSFPNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of port." + ::= { portSFPInfoEntry 1 } + + transceiverType OBJECT-TYPE + SYNTAX INTEGER { + SFPNotExist(0), + GBIC(1), + SFF(2), + SFP(3), + XBI(4), + Xenpak(5), + XFP(6), + XFF(7), + XFP-E(8), + XPak(9), + X2(10), + DWDM-SFP(11), + QSFP(12), + Unknown(99) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver type" + ::= { portSFPInfoEntry 2 } + + compliance OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Compliance type" + ::= { portSFPInfoEntry 3 } + + connectorType OBJECT-TYPE + SYNTAX INTEGER { + SFPNotExist(0), + SC(1), + FibreChannelStyle1CopperConnector(2), + FibreChannelStyle2CopperConnector(3), + BNCTNC(4), + FibreChannelCoaxialHeaders(5), + FiberJack(6), + LC(7), + MT-RJ(8), + MU(9), + SG(10), + OpticalPigtail(11), + MPOParallelOptic(12), + HSSDCII(32), + CopperPigtail(33), + RJ45(34), + Electrical-Mode(35), + Unknown(99) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Connector type" + ::= { portSFPInfoEntry 4 } + + waveLength OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Wave length." + ::= { portSFPInfoEntry 5 } + + transferDistance OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transfer distance." + ::= { portSFPInfoEntry 6 } + + digitalDiagnosticMonitor OBJECT-TYPE + SYNTAX INTEGER { + SFPNotExist(0), + NotSupported(1), + Supported(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Digital Diagnostic Monitor." + ::= { portSFPInfoEntry 7 } + + vendorName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vendor Name." + ::= { portSFPInfoEntry 8 } + + manuSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Manufacture Serial Number." + ::= { portSFPInfoEntry 9 } + + manufacturingDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Manufacturing Date." + ::= { portSFPInfoEntry 10 } + + temperature OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Temperature of sfp." + ::= { portSFPInfoEntry 11 } + + voltage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Voltage of sfp." + ::= { portSFPInfoEntry 12 } + + biasCurrent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "bias Current." + ::= { portSFPInfoEntry 13 } + + biasHighThreshold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "bias Current High Threshold." + ::= { portSFPInfoEntry 14 } + + biasLowThreshold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "bias Current Low Threshold." + ::= { portSFPInfoEntry 15 } + + rxPower OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RX Power." + ::= { portSFPInfoEntry 16 } + + rxPowerHighThreshold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RX Power High Threshold." + ::= { portSFPInfoEntry 17 } + + rxPowerLowThreshold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RX Power Low Threshold." + ::= { portSFPInfoEntry 18 } + + txPower OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "TX Power." + ::= { portSFPInfoEntry 19 } + + txPowerHighThreshold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "TX Power High Threshold." + ::= { portSFPInfoEntry 20 } + + txPowerLowThreshold OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "TX Power Low Threshold." + ::= { portSFPInfoEntry 21 } + +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchPortAvgRate - Port Average Rate Statistics Info +-- +------------------------------------------------------------------------------ + portRateStatisticsInterval OBJECT-TYPE + SYNTAX Integer32 (1..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "port average rate statistics time interval, unit is minute, default is 5 minutes." + ::= { gbnDeviceSwitchPortAvgRate 1 } + + portAvgRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortAvgRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of port average rate statistics info(32)." + ::= { gbnDeviceSwitchPortAvgRate 2 } + + portAvgRateEntry OBJECT-TYPE + SYNTAX PortAvgRateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for port average rate statistics information(32)." + INDEX { portIndex } + ::= { portAvgRateTable 1 } + + PortAvgRateEntry ::= SEQUENCE { + portIndex INTEGER, + portInOctetRate Counter32, + portInFrameRate Counter32, + portOutOctetRate Counter32, + portOutFrameRate Counter32 + } + + portIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port index list." + ::= { portAvgRateEntry 1 } + + portInOctetRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress octet rate of this port." + ::= { portAvgRateEntry 2 } + + portInFrameRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress packet rate of this port." + ::= { portAvgRateEntry 3 } + + portOutOctetRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress octet rate of this port." + ::= { portAvgRateEntry 4 } + + portOutFrameRate OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress packet rate of this port." + ::= { portAvgRateEntry 5 } +------------------------------------------------------------------------------ +-- +-- gbnDeviceSwitchPortbandwidthUtilization - Port Average bandwidth utilization Info +-- +------------------------------------------------------------------------------ + portBandwidthUtilizationEnable OBJECT-TYPE + SYNTAX TruthValue + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port bandwidth switch." + ::= { gbnDeviceSwitchPortbandwidthUtilization 1 } + + portBandwidthUtilizationTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortBandwidthUtilizationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of port bandwidth utilization info(32)." + ::= { gbnDeviceSwitchPortbandwidthUtilization 2 } + + portBandwidthUtilizationEntry OBJECT-TYPE + SYNTAX PortBandwidthUtilizationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for port bandwidth utilization information(32)." + INDEX { portBandIndex } + ::= { portBandwidthUtilizationTable 2 } + + PortBandwidthUtilizationEntry ::= SEQUENCE { + portBandIndex INTEGER, + portInBandwidthUtilization Counter32, + portOutBandwidthUtilization Counter32 + } + + portBandIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port index list." + ::= { portBandwidthUtilizationEntry 1 } + + portInBandwidthUtilization OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress bandwidth utilization of this port." + ::= { portBandwidthUtilizationEntry 2 } + + portOutBandwidthUtilization OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress bandwidth utilization of this port." + ::= { portBandwidthUtilizationEntry 3 } +-- +-- END of gbnDeviceSwitch-MIB +-- + +END diff --git a/mibs/fs/GBNL2Dhcp6Snooping-MIB b/mibs/fs/GBNL2Dhcp6Snooping-MIB new file mode 100644 index 0000000000..f5a1a8a2db --- /dev/null +++ b/mibs/fs/GBNL2Dhcp6Snooping-MIB @@ -0,0 +1,364 @@ + GBNL2Dhcp6Snooping-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter32, + TimeTicks, IpAddress FROM SNMPv2-SMI + DisplayString, TruthValue,RowStatus, + MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL2 FROM ADMIN-MASTER-MIB; + + gbnL2Dhcp6Snooping MODULE-IDENTITY + LAST-UPDATED "0105030000Z" -- May 03,2001 + ORGANIZATION "Admin Co., Ltd." + CONTACT-INFO "Admin Co., Ltd. + E-mail: support@newzyxel.com" + + DESCRIPTION "ADMIN Enterprise MIB definition." + + REVISION "0105030000Z" -- May 03,2001 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL2 9 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + dhcp6snoopingOnOff OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "start/stop dhcp6snooping.Default is off¡£" + ::= { gbnL2Dhcp6Snooping 1 } + + dhcp6snoopingPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcp6snoopingPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains port informations of dhcp6snooping." + ::= { gbnL2Dhcp6Snooping 2 } + + dhcp6snoopingPortEntry OBJECT-TYPE + SYNTAX Dhcp6snoopingPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Port informations of dhcp6snooping. This is indexed + by the port number." + INDEX { portIndex } + ::= { dhcp6snoopingPortTable 1 } + + Dhcp6snoopingPortEntry ::= + SEQUENCE { + portIndex + INTEGER, + portTrustMode + INTEGER, + portMaxNum + INTEGER, + portIpSourceGuardMode + INTEGER + } + + portIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Index of the port." + ::= { dhcp6snoopingPortEntry 1 } + + portTrustMode OBJECT-TYPE + SYNTAX INTEGER { + trust(1), + untrust(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port mode of dhcp6snooping.Default is untrust." + ::= { dhcp6snoopingPortEntry 2 } + + portMaxNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Max clients in this port.Range is from 0 to 2048.Default is 2048." + ::= { dhcp6snoopingPortEntry 3 } + + portIpSourceGuardMode OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port IP source guard mode .Default is off." + ::= { dhcp6snoopingPortEntry 4 } + + dhcp6snoopingVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcp6snoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vlan informations of dhcp6snooping." + ::= { gbnL2Dhcp6Snooping 3 } + + dhcp6snoopingVlanEntry OBJECT-TYPE + SYNTAX Dhcp6snoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VLAN informations of dhcp6snooping. This is indexed + by the vlan number." + INDEX { vlanIndex } + ::= { dhcp6snoopingVlanTable 1 } + + Dhcp6snoopingVlanEntry ::= + SEQUENCE { + vlanIndex + INTEGER, + vlanMaxNum + INTEGER + } + + vlanIndex OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Index of the vlan." + ::= { dhcp6snoopingVlanEntry 1 } + + vlanMaxNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Max clients in this vlan.Range is from 0 to 2048.Default is 2048." + ::= { dhcp6snoopingVlanEntry 2 } + + dhcp6snoopingPortDownAction OBJECT-TYPE + SYNTAX INTEGER { + fastRemove(1), + autoAging(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When port moves to down state, if fast-remove is enabled, switch will remove entries immediately, + if auto-aging is enabled, switch will wait until lease time expires and remove entries." + ::= { gbnL2Dhcp6Snooping 4 } + +-- dhcpv6 snooping client table + dhcp6snoopingClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcp6snoopingClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table to show dhcpv6 snooping clients." + ::= { gbnL2Dhcp6Snooping 6 } + dhcp6snoopingClientEntry OBJECT-TYPE + SYNTAX Dhcp6snoopingClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "entry of dhcpv6 snooping clients table." + INDEX { client6MacAddr } + ::= { dhcp6snoopingClientTable 1 } + Dhcp6snoopingClientEntry ::= + SEQUENCE { + client6MacAddr MacAddress, + client6VlanId INTEGER, + client6PortId INTEGER, + client6LeaseNum INTEGER, + client6IpAddrStr OCTET STRING, + client6IpAddrStr2 OCTET STRING, + client6LeaseTime OCTET STRING + } + client6MacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client mac address." + ::= { dhcp6snoopingClientEntry 1 } + client6VlanId OBJECT-TYPE + SYNTAX INTEGER(1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client vlan id." + ::= { dhcp6snoopingClientEntry 2 } + client6PortId OBJECT-TYPE + SYNTAX INTEGER(1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client port id." + ::= { dhcp6snoopingClientEntry 3 } + client6LeaseNum OBJECT-TYPE + SYNTAX INTEGER(1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client lease number." + ::= { dhcp6snoopingClientEntry 4 } + client6IpAddrStr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client ip address string." + ::= { dhcp6snoopingClientEntry 5 } + client6IpAddrStr2 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client ip address string 2." + ::= { dhcp6snoopingClientEntry 6 } + client6LeaseTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "dhcpv6 snooping client lease time string." + ::= { dhcp6snoopingClientEntry 7 } +-- dhcpv6 snooping ipv6 source guard bind table + dhcpsIpv6SourceGuardBindTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpsIpv6SourceGuardBindEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains ipv6 source guard bind informations of dhcp6snooping." + ::= { gbnL2Dhcp6Snooping 7 } + dhcpsIpv6SourceGuardBindEntry OBJECT-TYPE + SYNTAX DhcpsIpv6SourceGuardBindEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "entry of dhcpv6 snooping ipv6 source guard bind table." + INDEX { ip6BindIndex } + ::= { dhcpsIpv6SourceGuardBindTable 1 } + DhcpsIpv6SourceGuardBindEntry ::= + SEQUENCE { + ip6BindIndex INTEGER, + ip6BindIpAddr OCTET STRING, + ip6BindMacAddr MacAddress, + ip6BindPortId INTEGER, + ip6BindVlanId INTEGER, + ip6SourceGuardBindRowstatus RowStatus + } + ip6BindIndex OBJECT-TYPE + SYNTAX INTEGER(1..380) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ipv6 source guard bind port id." + ::= { dhcpsIpv6SourceGuardBindEntry 1 } + ip6BindIpAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..39)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ipv6 source guard bind ipv6 address." + ::= { dhcpsIpv6SourceGuardBindEntry 2 } + ip6BindMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ipv6 source guard bind mac address." + ::= { dhcpsIpv6SourceGuardBindEntry 3 } + ip6BindPortId OBJECT-TYPE + SYNTAX INTEGER(1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ipv6 source guard bind port id." + ::= { dhcpsIpv6SourceGuardBindEntry 4 } + ip6BindVlanId OBJECT-TYPE + SYNTAX INTEGER(1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ipv6 source guard bind vlan id." + ::= { dhcpsIpv6SourceGuardBindEntry 5 } + ip6SourceGuardBindRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RowStatus." + ::= { dhcpsIpv6SourceGuardBindEntry 6 } +-- others + ipv6SourceGuardDisabledVlanString OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP Source Guard is disabled in following vlans." + ::= { gbnL2Dhcp6Snooping 8 } +-- dhcp6snooping infomation +dhcp6snoopingInfomation OBJECT IDENTIFIER ::= { gbnL2Dhcp6Snooping 20 } + dhcp6snoopingInfoOption18Enable OBJECT-TYPE + SYNTAX INTEGER { true(1), false(0) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp6snooping infomation options 18 enabled, default disable(0)." + ::= { dhcp6snoopingInfomation 1 } + dhcp6snoopingInfoOption37Enable OBJECT-TYPE + SYNTAX INTEGER { true(1), false(0) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp6snooping infomation options 37 enabled, default disable(0)." + ::= { dhcp6snoopingInfomation 2 } + dhcp6snoopingInfoRemoteId OBJECT-TYPE + SYNTAX INTEGER { ipv4(1), ipv6(2), hostname(3), selfdefined(4) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp6snooping infomation remote id, default hostname(3)." + ::= { dhcp6snoopingInfomation 3 } + dhcp6snoopingInfoRemoteStr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp6snooping infomation option content, it is associated with remote id. + when remote id is 1, and this string can translate into ipv4 address, + or remote id is 2, and this string can translate into ipv6 address, + or remote id is 3, + or remote id is 4, and this string is not zerolength, + these two value commit to the system." + ::= { dhcp6snoopingInfomation 4 } + dhcp6snoopingInfoInterfaceId OBJECT-TYPE + SYNTAX INTEGER { ipv4(1), ipv6(2), hostname(3), selfdefined(4) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp6snooping infomation remote id, default hostname(3)." + ::= { dhcp6snoopingInfomation 5 } + dhcp6snoopingInfoInterfaceStr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp6snooping infomation option content, it is associated with remote id. + when remote id is 1, and this string can translate into ipv4 address, + or remote id is 2, and this string can translate into ipv6 address, + or remote id is 3, + or remote id is 4, and this string is not zerolength, + these two value commit to the system." + ::= { dhcp6snoopingInfomation 6 } +END diff --git a/mibs/fs/GBNL2DhcpSnooping-MIB b/mibs/fs/GBNL2DhcpSnooping-MIB new file mode 100644 index 0000000000..ed812d3194 --- /dev/null +++ b/mibs/fs/GBNL2DhcpSnooping-MIB @@ -0,0 +1,192 @@ + GBNL2DhcpSnooping-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter32, + TimeTicks, IpAddress FROM SNMPv2-SMI + DisplayString, TruthValue,RowStatus FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL2 FROM ADMIN-MASTER-MIB; + + gbnL2DhcpSnooping MODULE-IDENTITY + LAST-UPDATED "0105030000Z" -- May 03,2001 + ORGANIZATION "New admin Co., Ltd." + CONTACT-INFO "New admin Co., Ltd. + E-mail: support@newzyxel.com" + + DESCRIPTION "ADMIN Enterprise MIB definition." + + REVISION "0105030000Z" -- May 03,2001 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL2 8 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + dhcpsnoopingOnOff OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "start/stop dhcpsnooping.Default is off¡£" + --¿ªÆô¹Ø±ÕDhcpsnooping¹¦ÄÜ¡£ + ::= { gbnL2DhcpSnooping 1 } + + dhcpsnoopingPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpsnoopingPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains port informations of dhcpsnooping." + --DHCPSnoopingµÄ¶Ë¿ÚÐÅÏ¢±í¡£ + ::= { gbnL2DhcpSnooping 2 } + + dhcpsnoopingPortEntry OBJECT-TYPE + SYNTAX DhcpsnoopingPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Port informations of dhcpsnooping. This is indexed + by the port number." + --DHCPSnoopingµÄ¶Ë¿ÚÐÅÏ¢±í£¬ÒԶ˿ںÅΪË÷Òý¡£ + INDEX { portIndex } + ::= { dhcpsnoopingPortTable 1 } + + DhcpsnoopingPortEntry ::= + SEQUENCE { + portIndex + INTEGER, + portTrustMode + INTEGER, + portMaxNum + INTEGER, + portIpSourceGuardMode + INTEGER + } + + portIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Index of the port." + --¶Ë¿ÚË÷Òý£¬Ò²¾ÍÊǶ˿ںŠ+ ::= { dhcpsnoopingPortEntry 1 } + + portTrustMode OBJECT-TYPE + SYNTAX INTEGER { + trust(1), + untrust(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port mode of dhcpsnooping.Default is untrust." + --¶Ë¿Úģʽ£¬Ä¬ÈÏΪuntrust¡£ + ::= { dhcpsnoopingPortEntry 2 } + + portMaxNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Max clients in this port.Range is from 0 to 2048.Default is 2048." + --¶Ë¿Ú×î¶à¿ÉÒÔѧϰµ½µÄDHCP¿Í»§¶Ë£¬È¡Öµ·¶Î§Îª0~2048¡£Ä¬ÈÏΪ2048¡£ + ::= { dhcpsnoopingPortEntry 3 } + + portIpSourceGuardMode OBJECT-TYPE + SYNTAX INTEGER { + ip(1), + ipMac(2), + ipMacVlan(3), + off(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port IP source guard mode .Default is off." + --¶Ë¿ÚIPµØÖ·±£»¤Ä£Ê½£¬Ä¬ÈÏΪ¹Ø±Õ¡£ + ::= { dhcpsnoopingPortEntry 4 } + + dhcpsnoopingVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpsnoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vlan informations of dhcpsnooping." + --DHCPSnoopingµÄVLANÐÅÏ¢±í¡£ + ::= { gbnL2DhcpSnooping 3 } + + dhcpsnoopingVlanEntry OBJECT-TYPE + SYNTAX DhcpsnoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VLAN informations of dhcpsnooping. This is indexed + by the vlan number." + --DHCPSnoopingµÄVLANÐÅÏ¢±í£¬ÒÔVLANºÅΪË÷Òý¡£ + INDEX { vlanIndex } + ::= { dhcpsnoopingVlanTable 1 } + + DhcpsnoopingVlanEntry ::= + SEQUENCE { + vlanIndex + INTEGER, + vlanMaxNum + INTEGER, + vlandhcpsnoopingOnOff + TruthValue + } + + vlanIndex OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Index of the vlan." + --VLANË÷Òý£¬Ò²¾ÍÊÇVLANºÅ + ::= { dhcpsnoopingVlanEntry 1 } + + vlanMaxNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Max clients in this vlan.Range is from 0 to 2048.Default is 2048." + --VLAN×î¶à¿ÉÒÔѧϰµ½µÄDHCP¿Í»§¶Ë£¬È¡Öµ·¶Î§Îª0~2048¡£Ä¬ÈÏΪ2048¡£ + ::= { dhcpsnoopingVlanEntry 2 } + + vlandhcpsnoopingOnOff OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "start/stop dhcpsnooping of this vlan.Default is on¡£" + --¿ªÆô¹Ø±ÕVLAN Dhcpsnooping¹¦ÄÜ¡£ + ::= { dhcpsnoopingVlanEntry 3 } + + dhcpsnoopingNto1VlanOnOff OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "start/stop N:1 vlan.Default is off." + --¿ªÆô¹Ø±ÕN:1 vlan¹¦ÄÜ¡£ + ::= { gbnL2DhcpSnooping 4 } + + dhcpsnoopingPortDownAction OBJECT-TYPE + SYNTAX INTEGER { + fastRemove(1), + autoAging(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When port moves to down state, if fast-remove is enabled, switch will remove entries immediately, + if auto-aging is enabled, switch will wait until lease time expires and remove entries." + ::= { gbnL2DhcpSnooping 5 } + +END diff --git a/mibs/fs/GBNL2PortSecurity-MIB b/mibs/fs/GBNL2PortSecurity-MIB new file mode 100644 index 0000000000..f5af3415df --- /dev/null +++ b/mibs/fs/GBNL2PortSecurity-MIB @@ -0,0 +1,501 @@ + + GBNL2PortSecurity-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL2 FROM ADMIN-MASTER-MIB + ; + + gbnL2Switch OBJECT IDENTIFIER ::= { gbnL2 1 } + + gbnL2PortSecurityMib MODULE-IDENTITY + LAST-UPDATED "2013/01/24" -- Jan 24, 2013 + ORGANIZATION "Admin" + CONTACT-INFO "Admin + E-mail: support@admin.com" + + DESCRIPTION "gbn PortSecurity Enterprise MIB definition." + + REVISION "2013/01/24" -- Jan 24, 2013 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL2Switch 8 } + + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + -- + -- "DURABLE": + -- Objects that are saved across a system reset and/or power cycle + -- are noted as "DURABLE" for convenience in the DESCRIPTION + -- section of the object definition. Code must be explicitly + -- written to implement these DURABLE objects. + -- + +------------------------------------------------------------------------------ +-- define groups in gbn-PortSecurity-MIB + +portSecurityNotifications OBJECT IDENTIFIER ::= { gbnL2PortSecurityMib 0 } + + portSecurityPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of information of ports." + REFERENCE + "9.6.1" + ::= { gbnL2PortSecurityMib 1 } + + portSecurityPortEntry OBJECT-TYPE + SYNTAX PortSecurityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of information of ports." + INDEX { portSecurityPortNum } + ::= { portSecurityPortTable 1 } + + PortSecurityPortEntry ::= + SEQUENCE { + portSecurityPortNum + Unsigned32, + portSecurityEnable + TruthValue, + portSecurityMaxNum + Integer32, + portSecurityCurrentNum + Integer32, + portSecurityViolationMode + INTEGER, + portSecurityAgingStatic + TruthValue, + portSecurityAgingTime + Integer32, + portSecuritySticky + TruthValue, + portSecurityShutdown + TruthValue, + portSecurityRecovery + TruthValue, + portSecurityRecoveryTime + Integer32 + } + + portSecurityPortNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port number associated with this Port." + ::= { portSecurityPortEntry 1 } + + + portSecurityEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable port security of this Port.default is disabled." + ::= { portSecurityPortEntry 2 } + + portSecurityMaxNum OBJECT-TYPE + SYNTAX Integer32 (0..4000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Max secure mac address.default is 0." + ::= { portSecurityPortEntry 3 } + + portSecurityCurrentNum OBJECT-TYPE + SYNTAX Integer32 (0..4000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current mac address." + ::= { portSecurityPortEntry 4 } + + portSecurityViolationMode OBJECT-TYPE + SYNTAX INTEGER { + protect(0), -- drop packets + restrict(1), -- drop packets, send trap + shutdown(2) -- drop packets, send trap, shutdown port + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "action when receive illegal packets.default is protect." + ::= { portSecurityPortEntry 5 } + + portSecurityAgingStatic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable static mac aging.default is false." + ::= { portSecurityPortEntry 6 } + + portSecurityAgingTime OBJECT-TYPE + SYNTAX Integer32 (1..1440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "value of aging time.default is 1 minute" + ::= { portSecurityPortEntry 7 } + + portSecuritySticky OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable sticky function.default is false." + ::= { portSecurityPortEntry 8 } + + portSecurityShutdown OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "whether port is shutdown by port-security." + ::= { portSecurityPortEntry 9 } + + portSecurityRecovery OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "whether port auto recovery after shutdown." + ::= { portSecurityPortEntry 10 } + + portSecurityRecoveryTime OBJECT-TYPE + SYNTAX Integer32 (1..3660) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "value of auto recovery time.default is 5 minute" + ::= { portSecurityPortEntry 11 } + + portSecurityMacRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of mac rules of ports." + REFERENCE + "9.6.1" + ::= { gbnL2PortSecurityMib 2 } + + portSecurityMacRuleEntry OBJECT-TYPE + SYNTAX PortSecurityMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of mac rules of ports." + INDEX { portSecurityMacRulePortNum, portSecurityMacRuleMac } + ::= { portSecurityMacRuleTable 1 } + + PortSecurityMacRuleEntry ::= + SEQUENCE { + portSecurityMacRulePortNum + Unsigned32, + portSecurityMacRuleMac + MacAddress, + portSecurityMacRuleAction + INTEGER, + portSecurityMacRuleVid + Integer32, + portSecurityMacRuleIpv4 + IpAddress, + portSecurityMacRuleType + INTEGER, + portsecurityMacRuleRowStatus + RowStatus + } + + portSecurityMacRulePortNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port number associated with this Port." + ::= { portSecurityMacRuleEntry 1 } + + portSecurityMacRuleMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "mac address." + ::= { portSecurityMacRuleEntry 2 } + + portSecurityMacRuleAction OBJECT-TYPE + SYNTAX INTEGER { + permit(0), + deny(1), + sticky(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "forward action of mac address." + ::= { portSecurityMacRuleEntry 3 } + + portSecurityMacRuleVid OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "vlan id of mac address.0 means no configured." + ::= { portSecurityMacRuleEntry 4 } + + portSecurityMacRuleIpv4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "vlan if of mac address.0.0.0.0 means no configured." + ::= { portSecurityMacRuleEntry 5 } + + portSecurityMacRuleType OBJECT-TYPE + SYNTAX INTEGER { + mac(0), + macvid(1), + macip(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "type of mac address." + ::= { portSecurityMacRuleEntry 6 } + + portsecurityMacRuleRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "use to create or delete a rule.step:1)portsecurityMacRuleRowStatus with value 5(create and wait);2)other mib needed; + for mac rule just portSecurityMacRuleType and portSecurityMacRuleAction, for mac+vid rule just portSecurityMacRuleType, portSecurityMacRuleAction, + and portSecurityMacRuleVid, for mac+ip rule just portSecurityMacRuleType, portSecurityMacRuleAction, and portSecurityMacRuleIpv4; + 3)portsecurityMacRuleRowStatus with value 4(create and go) to create, or portsecurityMacRuleRowStatus with value 6(destroy) to delete" + ::= { portSecurityMacRuleEntry 7 } + + portSecurityIpRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityIpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of ip rules of ports." + REFERENCE + "9.6.1" + ::= { gbnL2PortSecurityMib 3 } + + portSecurityIpRuleEntry OBJECT-TYPE + SYNTAX PortSecurityIpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of ip rules of ports." + INDEX { portSecurityIpRulePortNum, portSecurityIpRuleIpv4Start, portSecurityIpRuleIpv4End } + ::= { portSecurityIpRuleTable 1 } + + PortSecurityIpRuleEntry ::= + SEQUENCE { + portSecurityIpRulePortNum + Unsigned32, + portSecurityIpRuleIpv4Start + IpAddress, + portSecurityIpRuleIpv4End + IpAddress, + portSecurityIpRuleAction + INTEGER, + portsecurityIpRuleRowStatus + RowStatus + } + + portSecurityIpRulePortNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port number associated with this Port." + ::= { portSecurityIpRuleEntry 1 } + + portSecurityIpRuleIpv4Start OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "start ip address of this rule." + ::= { portSecurityIpRuleEntry 2 } + + portSecurityIpRuleIpv4End OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "end ip address of this rule." + ::= { portSecurityIpRuleEntry 3 } + + portSecurityIpRuleAction OBJECT-TYPE + SYNTAX INTEGER { + permit(0), + deny(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "forward action of ip address." + ::= { portSecurityIpRuleEntry 4 } + + portsecurityIpRuleRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "use to create or delete a rule.step:1)portsecurityIpRuleRowStatus with value 5(create and wait);2)portSecurityIpRuleAction; + 3)portsecurityIpRuleRowStatus with value 4(create and go) to create, or portsecurityIpRuleRowStatus with value 6(destroy) to delete" + ::= { portSecurityIpRuleEntry 5 } + + portSecurityActiveMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityActiveMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of active mac." + REFERENCE + "9.6.1" + ::= { gbnL2PortSecurityMib 4 } + + portSecurityActiveMacEntry OBJECT-TYPE + SYNTAX PortSecurityActiveMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of active mac." + INDEX { portSecurityActiveMacDevice, portSecurityActiveMacMacAddr } + ::= { portSecurityActiveMacTable 1 } + + PortSecurityActiveMacEntry ::= + SEQUENCE { + portSecurityActiveMacDevice + Integer32, + portSecurityActiveMacMacAddr + MacAddress, + portSecurityActiveMacPortNum + Unsigned32, + portSecurityActiveMacAction + INTEGER, + portSecurityActiveMacVid + Integer32, + portSecurityActiveMacIpv4 + IpAddress, + portSecurityActiveMacType + INTEGER, + } + + portSecurityActiveMacDevice OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "member unit of the switch." + ::= { portSecurityActiveMacEntry 0 } + + portSecurityActiveMacMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "mac address." + ::= { portSecurityActiveMacEntry 1 } + + portSecurityActiveMacPortNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port number associated with this Port." + ::= { portSecurityActiveMacEntry 2 } + + portSecurityActiveMacAction OBJECT-TYPE + SYNTAX INTEGER { + permit(0), + deny(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "forward action of ip address." + ::= { portSecurityActiveMacEntry 3 } + + portSecurityActiveMacVid OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id of mac address." + ::= { portSecurityActiveMacEntry 4 } + + portSecurityActiveMacIpv4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan if of mac address.0.0.0.0 means no information." + ::= { portSecurityActiveMacEntry 5 } + + portSecurityActiveMacType OBJECT-TYPE + SYNTAX INTEGER { + mac(0), + macvid(1), + macip(2), + ip(3), + learned(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "type of mac address." + ::= { portSecurityActiveMacEntry 6 } + +-- +-- Notifications Section +-- +-- + + portSecurityMacDenyNotification NOTIFICATION-TYPE + OBJECTS { portSecurityActiveMacPortNum, portSecurityActiveMacVid, portSecurityActiveMacIpv4, portSecurityActiveMacType } + STATUS current + DESCRIPTION + " This notification indicates that a mac address matching a deny rule." + ::= { portSecurityNotifications 1 } + + portSecurityMaxDenyNotification NOTIFICATION-TYPE + OBJECTS { portSecurityCurrentNum } + STATUS current + DESCRIPTION + " This notification indicates that current learned mac address number is bigger than max number." + ::= { portSecurityNotifications 2 } + + portSecurityShutdownNotification NOTIFICATION-TYPE + OBJECTS { portSecurityShutdown } + STATUS current + DESCRIPTION + " This notification indicates that port is shutdown by port-security." + ::= { portSecurityNotifications 3 } + +-- +-- END of gbn-PortSecurity-MIB +-- + +END + diff --git a/mibs/fs/GBNL2PppoePlus-MIB b/mibs/fs/GBNL2PppoePlus-MIB new file mode 100644 index 0000000000..20d4f6fc7d --- /dev/null +++ b/mibs/fs/GBNL2PppoePlus-MIB @@ -0,0 +1,51 @@ + GBNL2PppoePlus-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter32, + TimeTicks, IpAddress FROM SNMPv2-SMI + DisplayString, TruthValue,RowStatus FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL2 FROM ADMIN-MASTER-MIB; + + + gbnL2PppoePlus MODULE-IDENTITY + LAST-UPDATED "0711220000Z" -- November 22,2007 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "ADMIN Enterprise MIB definition." + + REVISION "07110220000Z" -- November 22,2007 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL2 6 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + pppoeplusOnOff OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "start/stop pppoe plus.Default is off¡£" + --¿ªÆô¹Ø±Õ pppoe plus ¹¦ÄÜ¡£ + ::= { gbnL2PppoePlus 1 } + + pppoeplusType OBJECT-TYPE + SYNTAX INTEGER{ + standard(0), + huawei(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ppoeplus type." + --pppoeplus ÀàÐÍ£¬Ä¬ÈÏΪstandard. + ::= { gbnL2PppoePlus 2 } + +END diff --git a/mibs/fs/GBNL2QACL-MIB b/mibs/fs/GBNL2QACL-MIB new file mode 100644 index 0000000000..beb04b170b --- /dev/null +++ b/mibs/fs/GBNL2QACL-MIB @@ -0,0 +1,5675 @@ +----------------------------------------------------------------------------- +-- File : gbnL2QACL-MIB.mi2 +-- Description : ADMIN Enterprise MIB +-- Version : 0.01 +-- Date : sep 26, 2003 +-- +-- Copyright (c) 2002-2005 admin Systems, Inc. All Rights Reserved. +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNL2QACL-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter64,IpAddress FROM SNMPv2-SMI + + DisplayString, TruthValue,MacAddress,RowStatus FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL2 FROM ADMIN-MASTER-MIB + + PortList FROM Q-BRIDGE-MIB + + mib-2 FROM RFC1213-MIB + + VlanId FROM Q-BRIDGE-MIB + + TOSType FROM OSPF-MIB; + + gbnL2QACL MODULE-IDENTITY + LAST-UPDATED "0309260001Z" -- sep 26,2003 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Enterprise MIB definition." + + REVISION "0309260001Z" -- sep 26,2003 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL2 4 } + +InetAddressIPv6 ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x" + STATUS current + DESCRIPTION + "Represents an IPv6 network address: + + Octets Contents Encoding + 1-16 IPv6 address network-byte order + + The corresponding InetAddressType value is ipv6(2). + + This textual convention SHOULD NOT be used directly in object + definitions, as it restricts addresses to a specific format. + However, if it is used, it MAY be used either on its own or in + conjunction with InetAddressType, as a pair." + SYNTAX DisplayString(SIZE (16)) + +AdminStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The AdminStatus of an item: 'valid' indicates that + it is running,while 'invalid' indicates that it is not." + SYNTAX INTEGER { active (1), inactive (2) } + +Action ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "permit or deny" + SYNTAX INTEGER { permit (101), deny (100) } + +Dscp ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "dscp priority" + SYNTAX Integer32 (0..63) + +AclType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "standard¡¢extend¡¢link¡¢user" + SYNTAX INTEGER { standard(1), extend (2),link(3), user (4) } + +PacketFlowType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "broadcast¡¢multicast¡¢unicast" + SYNTAX INTEGER { broadcast(1), multicast(2), unicast(3) } + + ----------------------------------------------------- + -- the quene-scheduer QOS + ----------------------------------------------------- + + qosQueueSchedulerGroup OBJECT IDENTIFIER ::= { gbnL2QACL 1 } + + qosWrrQueue1Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 1th queue(%)." + --¶ÓÁÐ1µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 1 } + + qosWrrQueue2Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 2th queue(%)." + --¶ÓÁÐ2µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 2 } + + + qosWrrQueue3Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 3th queue(%)." + --¶ÓÁÐ3µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 3 } + + + qosWrrQueue4Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 4th queue(%)." + --¶ÓÁÐ4µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 4 } + + qosWrrMaxDelayValue OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS current + DESCRIPTION + "Max delay time of queue shcedule." + --"¶ÓÁе÷¶Èʱ×î¸ßÓÅÏȼ¶µÄ¶ÓÁÐ×µÈ´ýʱ¼ä " + ::= { qosQueueSchedulerGroup 5 } + + qosQueueSchedulerMode OBJECT-TYPE + SYNTAX INTEGER { + strictPriority (1), + wrr(2), + wrrMaxDelay(3) } + ACCESS read-write + STATUS current + DESCRIPTION + "Queue schedule mode." + --"¶ÓÁе÷¶Èģʽ:¾ø¶ÔÓÅÏȼ¶¡¢¼ÓȨÂÖÑ­µ÷¶È¡¢×î´óÑÓʱµÄ¼ÓȨÂÖÑ­µ÷¶È " + DEFVAL { strictPriority } + ::= { qosQueueSchedulerGroup 6 } + + qosWrrQueue5Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 5th queue(%)." + --¶ÓÁÐ5µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 7 } + + qosWrrQueue6Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 6th queue(%)." + --¶ÓÁÐ6µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 8 } + + qosWrrQueue7Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 7th queue(%)." + --¶ÓÁÐ7µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 9 } + + qosWrrQueue8Weight OBJECT-TYPE + SYNTAX INTEGER (1..97) + ACCESS read-write + STATUS current + DESCRIPTION + "Weight of 8th queue(%)." + --¶ÓÁÐ8µÄÈ¨ÖØ + ::= { qosQueueSchedulerGroup 10 } + +-- ACL table Variables + +-- These parameters apply globally to the swicth's + + aclNumTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNumEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number-based ACL table." + --»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁÐ±í£¬ËüÒ»¹²ÓÉÎåÖÖÀàÐÍ£º»ùÓÚÊý×ֵıê×¼·ÃÎÊ¿ØÖÆÁÐ±í¡¢ + --»ùÓÚÊý×ÖµÄÀ©Õ¹·ÃÎÊÁÐ±í¡¢»ùÓÚÊý×ֵĶþ²ã·ÃÎÊ¿ØÖÆÁÐ±í¡¢»ùÓÚÊý×ÖµÄ×Ô¶¨Òå·Ã + --ÎÊ¿ØÖÆÁбíºÍ»ùÓÚÊý×ֵĽӿڷÃÎÊ¿ØÖÆÁÐ±í¡£ÆäÖбê×¼·ÃÎÊ¿ØÖÆÁбíµÄȡֵΪ1-99£¬ + --À©Õ¹·ÃÎÊ¿ØÖÆÁбíµÄȡֵΪ100-199£¬¶þ²ã·ÃÎÊ¿ØÖÆÁбíµÄȡֵΪ200-299£¬×Ô¶¨Òå + --·ÃÎÊ¿ØÖÆÁбíµÄȡֵΪ300-399. + ::= { gbnL2QACL 2 } + + aclNumEntry OBJECT-TYPE + SYNTAX AclNumEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of number-based ACL table." + --"¶¨ÒåÒ»Ìõ»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбí." + INDEX { aclNumNumber } + ::= { aclNumTable 1 } + + AclNumEntry ::= + SEQUENCE { + aclNumNumber + Integer32, + aclNumType + AclType, + aclNumMatchOrder + INTEGER, + aclNumTotleSubitems + Integer32, + aclNumRowStatus + RowStatus + } + + aclNumNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of number-based ACL." + --»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбíµÄ±êºÅ£¬ËüµÄȡֵ·¶Î§Îª1£­399. + --ËüµÄȡֵ¿ÉÒÔ´ú±í´ËÌõ·ÃÎÊ¿ØÖÆÁбíÊÇÊôÓÚºÎÖÖÀàÐÍ¡£ + ::= { aclNumEntry 1 } + + aclNumType OBJECT-TYPE + SYNTAX AclType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of number-based ACL: standard, extended or link-based." + --»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбíµÄÀàÐÍ£¬ÆäÖÐnumberΪ1-99Ϊ±ê×¼ACL£¬ + --100-199ΪÀ©Õ¹ACL£¬200-299Ϊ¶þ²ãACL£¬300-399ΪÓû§×Ô¶¨ÒåACL. + ::= { aclNumEntry 2 } + + aclNumMatchOrder OBJECT-TYPE + SYNTAX INTEGER { + config (0), + auto (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The match order of number-based ACL." + --"¶¨ÒåÒ»Ìõ·ÃÎÊ¿ØÖÆÁбíµÄÅäÖÃ˳Ðò£¬auto ËùÓõġ°Éî¶ÈÓÅÏÈ¡° + --Ô­ÔòÊÇÖ¸£º°ÑÖ¸¶¨Êý¾Ý°ü·¶Î§×îСµÄÓï¾äÅÅÔÚ×îÇ°Ãæ¡£ÕâÒ»µã¿ÉÒÔ + --ͨ¹ý±È½ÏµØÖ·µÄͨÅä·ûÀ´ÊµÏÖ£¬Í¨Åä·ûԽС£¬ÔòÖ¸¶¨µÄÖ÷»úµÄ·¶Î§ + --¾ÍԽС¡£±ÈÈç129.102.1.1 0.0.0.0 Ö¸¶¨ÁËһ̨Ö÷»ú£º129.102.1.1 + --¶ø129.102.1.1 0.0.255.255 ÔòÖ¸¶¨ÁËÒ»¸öÍø¶Î£º 129.102.1.1 ¡« + --129.102.255.255£¬ÏÔȻǰÕßÔÚ·ÃÎÊ¿ØÖƹæÔòÖÐÅÅÔÚÇ°Ãæ¡£¾ßÌå±ê×¼ + --Ϊ£º¶ÔÓÚ±ê×¼·ÃÎÊ¿ØÖƹæÔòµÄÓï¾ä£¬Ö±½Ó±È½ÏÔ´µØÖ·Í¨Åä·û£¬Í¨Åä·û + --ÏàͬµÄÔò°´ÅäÖÃ˳Ðò£»¶ÔÓÚ»ùÓÚ½Ó¿Ú¹ýÂ˵ķÃÎÊ¿ØÖƹæÔò£¬ÅäÖÃÁË'any' + --µÄ¹æÔòÅÅÔÚºóÃæ£¬ÆäËü°´ÅäÖÃ˳Ðò£»¶ÔÓÚÀ©Õ¹·ÃÎÊ¿ØÖƹæÔò£¬Ê×ÏÈ±È + --½ÏÔ´µØÖ·Í¨Åä·û£¬ÏàͬµÄÔٱȽÏÄ¿µÄµØÖ·Í¨Åä·û£¬ÈÔÏàͬµÄÔò±È½Ï¶Ë + --¿ÚºÅµÄ·¶Î§£¬·¶Î§Ð¡µÄÅÅÔÚÇ°Ãæ£¬Èç¹û¶Ë¿ÚºÅ·¶Î§Ò²ÏàͬÔò°´ÅäÖÃ˳Ðò£¬ + --ĬÈϰ´ÕÕÓû§µÄÅäÖÃ˳Ðò¼´config¡£" + DEFVAL { config } + ::= { aclNumEntry 3 } + + aclNumTotleSubitems OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total subitems of number-based ACL." + --"Ò»Ìõ·ÃÎÊ¿ØÖÆÁбí¿ÉÒÔ¶¨Òå¶àÌõ×Ó¹æÔò£¬ÕâЩ×Ó¹æÔò°´ÕÕÒ»¶¨µÄ˳ÐòÅÅÁÐ + --³ÉÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬Ã¿ÌõACL×î¶à¿ÉÒÔ¶¨Òå128Ïî×Ó¹æÔò¡£" + ::= { aclNumEntry 4 } + + aclNumRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of number-based ACL entry." + --"±íʾµ±Ç°ACLµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNumEntry 5 } + + + --ACL×ÓÏÒ壬»ùÓÚÊý×ֵıê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNumStdSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNumStdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Standard and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ËüÊÇͨ¹ýÄ¿µÄµØÖ·½øÐйýÂ˵ġ£" + ::= { gbnL2QACL 3 } + + aclNumStdSubitemEntry OBJECT-TYPE + SYNTAX AclNumStdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of standard and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNumStdNum, aclNumStdSubNum } + ::= { aclNumStdSubitemTable 1 } + + AclNumStdSubitemEntry ::= + SEQUENCE { + aclNumStdNum + Integer32, + aclNumStdSubNum + Integer32, + aclNumStdSubitemAdminStatus + AdminStatus, + aclNumStdSubitemAction + Action, + aclNumStdSubitemSrcAddr + IpAddress, + aclNumStdSubitemSrcAddrWldmsk + IpAddress, + aclNumStdFragments + TruthValue, + aclNumStdTimeRange + OCTET STRING, + aclNumStdSubitemRowStatus + RowStatus, + aclNumStdAddressType + Integer32, + aclNumStdSrcAddrV6 + InetAddressIPv6, + aclNumStdSrcAddrV6Wldmsk + InetAddressIPv6, + aclNumStdDefaultRoute + TruthValue, + aclNumStdL3IntfId + Integer32, + } + + aclNumStdNum OBJECT-TYPE + SYNTAX Integer32 (1..99) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of standard and number-based ACL subitem." + --"»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбíµÄ±êºÅ£¬ËüµÄȡֵ·¶Î§Îª1£­399£¬1000-1999. + --ËüµÄȡֵ¿ÉÒÔ´ú±í´ËÌõ·ÃÎÊ¿ØÖÆÁбíÊÇÊôÓÚºÎÖÖÀàÐÍ¡£" + ::= { aclNumStdSubitemEntry 1 } + + aclNumStdSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of standard and number-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNumStdSubitemEntry 2 } + + aclNumStdSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of standard and number-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } + ::= { aclNumStdSubitemEntry 3 } + + aclNumStdSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of standard and number-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNumStdSubitemEntry 4 } + + aclNumStdSubitemSrcAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address of standard and number-based ACL subitem." + --"±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·" + ::= { aclNumStdSubitemEntry 5 } + + aclNumStdSubitemSrcAddrWldmsk OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address mask of standard and number-based ACL subitem." + --"±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·Í¨Åä·û" + ::= { aclNumStdSubitemEntry 6 } + + aclNumStdFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip fragments of standard and number-based ACL subitem." + DEFVAL { false } + ::= { aclNumStdSubitemEntry 7 } + + + aclNumStdTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of standard and number-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNumStdSubitemEntry 8 } + + aclNumStdSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of standard and number-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNumStdSubitemEntry 9 } + + aclNumStdAddressType OBJECT-TYPE + SYNTAX Integer32 { + ipv4(1), + ipv6(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip-address type of standard and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄipµØÖ·µÄÀàÐÍ¡£" + ::= { aclNumStdSubitemEntry 10 } + + aclNumStdSrcAddrV6 OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address of standard and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·" + ::= { aclNumStdSubitemEntry 11 } + + aclNumStdSrcAddrV6Wldmsk OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address mask of standard and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·µÄͨÅä·û" + ::= { aclNumStdSubitemEntry 12 } + + aclNumStdDefaultRoute OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default route of standard and number-based ACL subitem." + DEFVAL { false } + ::= { aclNumStdSubitemEntry 13 } + + aclNumStdL3IntfId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The L3 interface type of standard and number-based ACL subitem." + ::= { aclNumStdSubitemEntry 14 } + +--ACL×ÓÏÒ壬»ùÓÚÊý×ÖµÄÀ©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNumExdSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNumExdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Extended and number-based ACL subitem table." + --"¶¨ÒåÒ»ÌõÀ©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ËüÊÇͨ¹ý¶Ô±ê×¼·ÃÎÊ¿ØÖÆÁбíµÄ²¹³ä¡£" + ::= { gbnL2QACL 4 } + + aclNumExdSubitemEntry OBJECT-TYPE + SYNTAX AclNumExdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of extended and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNumExdNum, aclNumExdSubNum} + ::= { aclNumExdSubitemTable 1 } + + AclNumExdSubitemEntry ::= + SEQUENCE { + aclNumExdNum + Integer32, + aclNumExdSubNum + Integer32, + aclNumExdSubitemAdminStatus + AdminStatus, + aclNumExdSubitemAction + Action, + aclNumExdSubitemProtocal + Integer32, + aclNumExdSubitemSrcAddr + IpAddress, + aclNumExdSubitemSrcAddrWldmsk + IpAddress, + aclNumExdSubitemDstAddr + IpAddress, + aclNumExdSubitemDstAddrWldmsk + IpAddress, + aclNumExdSubitemSrcPort + Integer32, + aclNumExdSubitemSrcPortWldmsk + Integer32, + aclNumExdSubitemDstPort + Integer32, + aclNumExdSubitemDstPortWldmsk + Integer32, + aclNumExdSubitemIcmpType + Integer32, + aclNumExdSubitemIcmpCode + Integer32, + aclNumExdSubitemTcpEstablished + TruthValue, + aclNumExdSubitemPrecedence + Integer32, + aclNumExdSubitemTos + TOSType, + aclNumExdSubitemDscp + Dscp, + aclNumExdSubitemFragments + TruthValue, + aclNumExdSubitemTimeRange + OCTET STRING, + aclNumExdSubitemRowStatus + RowStatus, + aclNumExdAddressType + Integer32, + aclNumExdSrcAddrV6 + InetAddressIPv6, + aclNumExdSrcAddrV6Wldmsk + InetAddressIPv6, + aclNumExdDstAddrV6 + InetAddressIPv6, + aclNumExdDstAddrV6Wldmsk + InetAddressIPv6, + aclNumExdSubitemIgmpType + Integer32, + aclNumExdSubitemDefaultRoute + TruthValue, + aclNumExdSubitemL3IntfId + Integer32 + } + + aclNumExdNum OBJECT-TYPE + SYNTAX Integer32 (100..199) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of extended and number-based ACL subitem." + --"»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбíµÄ±êºÅ£¬ËüµÄȡֵ·¶Î§Îª1£­399£¬1000-1999. + --ËüµÄȡֵ¿ÉÒÔ´ú±í´ËÌõ·ÃÎÊ¿ØÖÆÁбíÊÇÊôÓÚºÎÖÖÀàÐÍ¡£" + ::= { aclNumExdSubitemEntry 1 } + + aclNumExdSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of extended and number-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNumExdSubitemEntry 2 } + + aclNumExdSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of extended and number-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNumExdSubitemEntry 3 } + + aclNumExdSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of extended and number-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNumExdSubitemEntry 4 } + + aclNumExdSubitemProtocal OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip protocol type of extended and number-based ACL subitem." + --"¹ýÂËijÖÖЭÒéÀàÐ͵ı¨ÎÄ" + ::= { aclNumExdSubitemEntry 5 } + + aclNumExdSubitemSrcAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address of extended and number-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·" + ::= { aclNumExdSubitemEntry 6 } + + aclNumExdSubitemSrcAddrWldmsk OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address mask of extended and number-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·Í¨Åä·û" + ::= { aclNumExdSubitemEntry 7 } + + aclNumExdSubitemDstAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ip-address of extended and number-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÄ¿µÄµØÖ·" + ::= { aclNumExdSubitemEntry 8 } + + aclNumExdSubitemDstAddrWldmsk OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ip-address mask of extended and number-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÄ¿µÄµØÖ·Í¨Åä·û" + ::= { aclNumExdSubitemEntry 9 } + + aclNumExdSubitemSrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source TCP/UDP port of extended and number-based ACL subitem." + --¶ÔUDP»òTCP±¨ÎÄÌØ¶¨¶Ë¿ÚºÅµÄ°ü½øÐйýÂË + ::= { aclNumExdSubitemEntry 10 } + + aclNumExdSubitemSrcPortWldmsk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source TCP/UDP port mask of extended and number-based ACL subitem." + --À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ´¶Ë¿ÚºÅͨÅä·û + ::= { aclNumExdSubitemEntry 11 } + + aclNumExdSubitemDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination TCP/UDP port of extended and number-based ACL subitem." + --¶ÔUDP»òTCP±¨ÎÄÌØ¶¨¶Ë¿ÚºÅµÄ°ü½øÐйýÂË + ::= { aclNumExdSubitemEntry 12 } + + aclNumExdSubitemDstPortWldmsk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination TCP/UDP port mask of extended and number-based ACL subitem." + --À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ´¶Ë¿ÚºÅͨÅä·û + ::= { aclNumExdSubitemEntry 13 } + + aclNumExdSubitemIcmpType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ICMP type of extended and number-based ACL subitem." + --"¶ÔICMPµÄÌØ¶¨ÀàÐ͵İü½øÐйýÂË" + ::= { aclNumExdSubitemEntry 14 } + + aclNumExdSubitemIcmpCode OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ICMP code of extended and number-based ACL subitem." + --"¶ÔICMPµÄÌØ¶¨ÀàÐÍ£¬Ìض¨´úÂëµÄ°ü½øÐйýÂË" + ::= { aclNumExdSubitemEntry 15 } + + aclNumExdSubitemTcpEstablished OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The established TCP of extended and number-based ACL subitem." + --"¶ÔTCPµÚÒ»¸ö½¨Á´µÄ°ü½øÐйýÂË" + DEFVAL { false } + ::= { aclNumExdSubitemEntry 16 } + + aclNumExdSubitemPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip precedence of extended and number-based ACL subitem." + --"¶ÔÌØ¶¨IPÓÅÏȼ¶µÄ°ü½øÐйýÂË" + ::= { aclNumExdSubitemEntry 17 } + + aclNumExdSubitemTos OBJECT-TYPE + SYNTAX TOSType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip TOS of extended and number-based ACL subitem." + --"¶ÔÊý¾Ý°üÖÐTOS×ֶεÈÓÚÌØ¶¨ÖµµÄ°ü½øÐйýÂË" + ::= { aclNumExdSubitemEntry 18 } + + aclNumExdSubitemDscp OBJECT-TYPE + SYNTAX Dscp + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip DSCP of extended and number-based ACL subitem." + --"¶ÔÊý¾Ý°üÖÐDSCP×ֶεÈÓÚÌØ¶¨ÖµµÄ°ü½øÐйýÂË" + ::= { aclNumExdSubitemEntry 19 } + + aclNumExdSubitemFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip fragments of extended and number-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÄ¿µÄµØÖ·Í¨Åä·û" + DEFVAL { false } -- invalid + ::= { aclNumExdSubitemEntry 20 } + + + aclNumExdSubitemTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of extended and number-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNumExdSubitemEntry 21 } + + aclNumExdSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of extended and number-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNumExdSubitemEntry 22 } + + aclNumExdAddressType OBJECT-TYPE + SYNTAX Integer32 { + ipv4(1), + ipv6(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip-address type of extended and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄipµØÖ·µÄÀàÐÍ¡£" + ::= { aclNumExdSubitemEntry 23 } + + aclNumExdSrcAddrV6 OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address of extended and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·" + ::= { aclNumExdSubitemEntry 24 } + + aclNumExdSrcAddrV6Wldmsk OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address mask of extended and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·µÄͨÅä·û" + ::= { aclNumExdSubitemEntry 25 } + + aclNumExdDstAddrV6 OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ipv6-address of extended and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÄ¿µÄipv6µØÖ·" + ::= { aclNumExdSubitemEntry 26 } + + aclNumExdDstAddrV6Wldmsk OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ipv6-address mask of extended and number-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÄ¿µÄipv6µØÖ·µÄͨÅä·û" + ::= { aclNumExdSubitemEntry 27 } + + aclNumExdSubitemIgmpType OBJECT-TYPE + SYNTAX Integer32 (0..34) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP type of extended and number-based ACL subitem." + ::= { aclNumExdSubitemEntry 28 } + + aclNumExdSubitemDefaultRoute OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default route of extended and number-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄĬÈÏ·ÓÉ" + DEFVAL { false } -- invalid + ::= { aclNumExdSubitemEntry 29 } + + aclNumExdSubitemL3IntfId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The L3 interface type of extended and number-based ACL subitem." + ::= { aclNumExdSubitemEntry 30 } + +--ACL×ÓÏÒ壬»ùÓÚÊý×ֵĶþ²ã·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNumLnkSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNumLnkSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Link-based and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ¶þ²ã·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£" + ::= { gbnL2QACL 5 } + + aclNumLnkSubitemEntry OBJECT-TYPE + SYNTAX AclNumLnkSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of link-based and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ¶þ²ã·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNumLnkNum, aclNumLnkSubNum} + ::= { aclNumLnkSubitemTable 1 } + + AclNumLnkSubitemEntry ::= + SEQUENCE { + aclNumLnkNum + Integer32, + aclNumLnkSubNum + Integer32, + aclNumLnkSubitemAdminStatus + AdminStatus, + aclNumLnkSubitemAction + Action, + aclNumLnkSubitemProtocal + Integer32, + aclNumLnkSubitemCos + Integer32, + aclNumLnkSubitemSrcVlanID + VlanId, + aclNumLnkSubitemSrcMacAddr + MacAddress, + aclNumLnkSubitemSrcMacWldmsk + MacAddress, + aclNumLnkSubitemDstMacAddr + MacAddress, + aclNumLnkSubitemDstMacWldmsk + MacAddress, + aclNumLnkSubitemSrcPortNum + Integer32, + aclNumLnkSubitemDstPortNum + Integer32, + aclNumLnkSubitemTimeRange + OCTET STRING, + aclNumLnkSubitemRowStatus + RowStatus, + aclNumLnkSubitemSrcInnerTag + Integer32, + aclNumLnkSubitemSrcInnerVlanID + VlanId, + aclNumLnkSubitemSrcEndVlanID + VlanId, + } + + aclNumLnkNum OBJECT-TYPE + SYNTAX Integer32 (200..299) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of link-based and number-based ACL subitem." + --"»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбíµÄ±êºÅ£¬ËüµÄȡֵ·¶Î§Îª1£­399£¬1000-1999. + --ËüµÄȡֵ¿ÉÒÔ´ú±í´ËÌõ·ÃÎÊ¿ØÖÆÁбíÊÇÊôÓÚºÎÖÖÀàÐÍ¡£" + ::= { aclNumLnkSubitemEntry 1 } + + aclNumLnkSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of link-based and number-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNumLnkSubitemEntry 2 } + + aclNumLnkSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of link-based and number-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNumLnkSubitemEntry 3 } + + aclNumLnkSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of link-based and number-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNumLnkSubitemEntry 4 } + + aclNumLnkSubitemProtocal OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ethernet protocal type of link-based and number-based ACL subitem." + --"¹ýÂËijÖÖЭÒéÀàÐ͵ı¨ÎÄ" + ::= { aclNumLnkSubitemEntry 5 } + + aclNumLnkSubitemCos OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The 802.1x COS type of link-based and number-based ACL subitem." + --"802.1xÓÅÏȼ¶" + ::= { aclNumLnkSubitemEntry 6 } + + aclNumLnkSubitemSrcVlanID OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source vlan of link-based and number-based ACL subitem." + --"¶ÔVLAN IDÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNumLnkSubitemEntry 7 } + + aclNumLnkSubitemSrcMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source mac-address of link-based and number-based ACL subitem." + --"ËüÓÚMACͨÅä·û¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÔ´MACµØÖ·£¬²¢¶ÔÕâЩ + --MACµØÖ·×÷´¦Àí¡£" + ::= { aclNumLnkSubitemEntry 8 } + + aclNumLnkSubitemSrcMacWldmsk OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source mac-address mask of link-based and number-based ACL subitem." + --"ËüÓÚMACµØÖ·¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÔ´MACµØÖ·£¬²¢¶ÔÕâЩ + --MACµØÖ·×÷´¦Àí¡£" + ::= { aclNumLnkSubitemEntry 9 } + + aclNumLnkSubitemDstMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination mac-address of link-based and number-based ACL subitem." + --"ËüÓÚMACͨÅä·û¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÄ¿µÄMACµØÖ·£¬²¢¶ÔÕâЩ + --MACµØÖ·×÷´¦Àí¡£" + ::= { aclNumLnkSubitemEntry 10 } + + aclNumLnkSubitemDstMacWldmsk OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination mac-address mask of link-based and number-based ACL subitem." + --"ËüÓÚMACµØÖ·¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÄ¿µÄMACµØÖ·£¬²¢¶ÔÕâЩ + --MACµØÖ·×÷´¦Àí¡£" + ::= { aclNumLnkSubitemEntry 11 } + + aclNumLnkSubitemSrcPortNum OBJECT-TYPE + SYNTAX Integer32 (1..26) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source port of link-based and number-based ACL subitem." + ::= { aclNumLnkSubitemEntry 12 } + + aclNumLnkSubitemDstPortNum OBJECT-TYPE + SYNTAX Integer32 (1..29) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination port of link-based and number-based ACL subitem." + ::= { aclNumLnkSubitemEntry 13 } + + aclNumLnkSubitemTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of link-based and number-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNumLnkSubitemEntry 14 } + + aclNumLnkSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of link-based and number-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNumLnkSubitemEntry 15 } + + aclNumLnkSubitemSrcInnerTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source inner tag of link-based and number-based ACL subitem." + --"¶Ôinner tagÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNumLnkSubitemEntry 16 } + + aclNumLnkSubitemSrcInnerVlanID OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source inner vlan of link-based and number-based ACL subitem." + --"¶Ôinner VLAN IDÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNumLnkSubitemEntry 17 } + + aclNumLnkSubitemSrcEndVlanID OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source end vlan of link-based and number-based ACL subitem." + --"¶ÔVLAN IDÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNumLnkSubitemEntry 18 } + + --ACL×ÓÏÒ壬»ùÓÚÊý×ÖµÄ×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNumUserSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNumUserSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User defined and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ËüÊÇͨ¹ýÄ¿µÄµØÖ·½øÐйýÂ˵ġ£" + ::= { gbnL2QACL 6 } + + aclNumUserSubitemEntry OBJECT-TYPE + SYNTAX AclNumUserSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of user defined and number-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNumUserNum, aclNumUserSubNum } + ::= { aclNumUserSubitemTable 1 } + + AclNumUserSubitemEntry ::= + SEQUENCE { + aclNumUserNum + Integer32, + aclNumUserSubNum + Integer32, + aclNumUserSubitemAdminStatus + AdminStatus, + aclNumUserSubitemAction + Action, + aclNumUserSubitemSrcPortNum + Integer32, + aclNumUserSubitemDstPortNum + Integer32, + aclNumUserSubitemRule + OCTET STRING, + aclNumUserSubitemMask + OCTET STRING, + aclNumUserTimeRange + OCTET STRING, + aclNumUserSubitemRowStatus + RowStatus + } + + aclNumUserNum OBJECT-TYPE + SYNTAX Integer32 (300..399) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of user defined and number-based ACL subitem." + --"»ùÓÚÊý×ֵķÃÎÊ¿ØÖÆÁбíµÄ±êºÅ£¬ËüµÄȡֵ·¶Î§Îª1£­399£¬1000-1999. + --ËüµÄȡֵ¿ÉÒÔ´ú±í´ËÌõ·ÃÎÊ¿ØÖÆÁбíÊÇÊôÓÚºÎÖÖÀàÐÍ¡£" + ::= { aclNumUserSubitemEntry 1 } + + aclNumUserSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of user defined and number-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNumUserSubitemEntry 2 } + + aclNumUserSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of user defined and number-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNumUserSubitemEntry 3 } + + aclNumUserSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of user defined and number-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNumUserSubitemEntry 4 } + + aclNumUserSubitemSrcPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source port of user defined and number-based ACL subitem." + ::= { aclNumUserSubitemEntry 5 } + + aclNumUserSubitemDstPortNum OBJECT-TYPE + SYNTAX Integer32 (1..29) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination port of user defined and number-based ACL subitem." + ::= { aclNumUserSubitemEntry 6 } + + aclNumUserSubitemRule OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..160)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The match rule of user defined and number-based ACL subitem." + --"Óû§×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÆ¥Åä×Ö·û´®" + ::= { aclNumUserSubitemEntry 7 } + + aclNumUserSubitemMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..160)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The match mask of user defined and number-based ACL subitem." + --"Óû§×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÆ¥Åä×Ö·û´®ÑÚÂë" + ::= { aclNumUserSubitemEntry 8 } + + aclNumUserTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of user defined and number-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNumUserSubitemEntry 9 } + + aclNumUserSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of user defined and number-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNumUserSubitemEntry 10 } + +--»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁÐ±í¶¨Òå + aclNamedTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNamedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Name-based ACL table." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁÐ±í£¬ËüÒ»¹²ÓÉËÄÖÖÀàÐÍ£º»ùÓÚÃû×ֵıê×¼·ÃÎÊ¿ØÖÆÁÐ±í¡¢ + --»ùÓÚÊýÃû×ÖµÄÀ©Õ¹·ÃÎÊÁÐ±í¡¢»ùÓÚÃû×ֵĶþ²ã·ÃÎÊ¿ØÖÆÁÐ±í¡¢»ùÓÚÃû×ÖµÄ×Ô¶¨Òå·Ã + --ÎÊ¿ØÖÆÁбí." + ::= { gbnL2QACL 7 } + + aclNamedEntry OBJECT-TYPE + SYNTAX AclNamedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of name-based ACL table." + --"¶¨ÒåÒ»Ìõ»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбí." + INDEX { aclNamedName } + ::= { aclNamedTable 1 } + + AclNamedEntry ::= + SEQUENCE { + aclNamedName + OCTET STRING, + aclNamedType + AclType, + aclNamedMatchOrder + INTEGER, + aclNamedTotleSubitems + Integer32, + aclNamedRowStatus + RowStatus + } + + aclNamedName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of name-based ACL." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбíµÄÃû×Ö£¬¸÷¸ö·ÃÎÊ¿ØÖÆÁÐ±í£¨°üÀ¨²»Í¬Àà + --Ð͵ķÃÎÊ¿ØÖÆÁÐ±í£©²»ÄÜÖØÃû¡£" + ::= { aclNamedEntry 1 } + + aclNamedType OBJECT-TYPE + SYNTAX AclType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of name-based ACL: standard, extended or link-based." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбíµÄÀàÐÍ£¬Í¬»ùÓÚÊý×ÖµÄACL£¬µ«ËüµÄÀàÐͲ»ÓÉÃû×Ö¾ö¶¨" + ::= { aclNamedEntry 2 } + + + aclNamedMatchOrder OBJECT-TYPE + SYNTAX INTEGER { + config (0), + auto (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The match order of name-based ACL." + --"¶¨ÒåÒ»Ìõ·ÃÎÊ¿ØÖÆÁбíµÄÅäÖÃ˳Ðò£¬auto ËùÓõġ°Éî¶ÈÓÅÏÈ¡° + --Ô­ÔòÊÇÖ¸£º°ÑÖ¸¶¨Êý¾Ý°ü·¶Î§×îСµÄÓï¾äÅÅÔÚ×îÇ°Ãæ¡£ÕâÒ»µã¿ÉÒÔ + --ͨ¹ý±È½ÏµØÖ·µÄͨÅä·ûÀ´ÊµÏÖ£¬Í¨Åä·ûԽС£¬ÔòÖ¸¶¨µÄÖ÷»úµÄ·¶Î§ + --¾ÍԽС¡£±ÈÈç129.102.1.1 0.0.0.0 Ö¸¶¨ÁËһ̨Ö÷»ú£º129.102.1.1 + --¶ø129.102.1.1 0.0.255.255 ÔòÖ¸¶¨ÁËÒ»¸öÍø¶Î£º 129.102.1.1 ¡« + --129.102.255.255£¬ÏÔȻǰÕßÔÚ·ÃÎÊ¿ØÖƹæÔòÖÐÅÅÔÚÇ°Ãæ¡£¾ßÌå±ê×¼ + --Ϊ£º¶ÔÓÚ±ê×¼·ÃÎÊ¿ØÖƹæÔòµÄÓï¾ä£¬Ö±½Ó±È½ÏÔ´µØÖ·Í¨Åä·û£¬Í¨Åä·û + --ÏàͬµÄÔò°´ÅäÖÃ˳Ðò£»¶ÔÓÚ»ùÓÚ½Ó¿Ú¹ýÂ˵ķÃÎÊ¿ØÖƹæÔò£¬ÅäÖÃÁË'any' + --µÄ¹æÔòÅÅÔÚºóÃæ£¬ÆäËü°´ÅäÖÃ˳Ðò£»¶ÔÓÚÀ©Õ¹·ÃÎÊ¿ØÖƹæÔò£¬Ê×ÏÈ±È + --½ÏÔ´µØÖ·Í¨Åä·û£¬ÏàͬµÄÔٱȽÏÄ¿µÄµØÖ·Í¨Åä·û£¬ÈÔÏàͬµÄÔò±È½Ï¶Ë + --¿ÚºÅµÄ·¶Î§£¬·¶Î§Ð¡µÄÅÅÔÚÇ°Ãæ£¬Èç¹û¶Ë¿ÚºÅ·¶Î§Ò²ÏàͬÔò°´ÅäÖÃ˳Ðò£¬ + --ĬÈϰ´ÕÕÓû§µÄÅäÖÃ˳Ðò¼´config¡£" + DEFVAL { config } -- config + ::= { aclNamedEntry 3 } + + aclNamedTotleSubitems OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total subitems of name-based ACL." + --"Ò»Ìõ·ÃÎÊ¿ØÖÆÁбí¿ÉÒÔ¶¨Òå¶àÌõ×Ó¹æÔò£¬ÕâЩ×Ó¹æÔò°´ÕÕÒ»¶¨µÄ˳ÐòÅÅÁÐ + --³ÉÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬Ã¿ÌõACL×î¶à¿ÉÒÔ¶¨Òå128Ïî×Ó¹æÔò¡£" + ::= { aclNamedEntry 4 } + + aclNamedRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of name-based ACL." + --"±íʾµ±Ç°ACLµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNamedEntry 5 } + + --ACL×ÓÏÒ壬»ùÓÚÃû×ֵıê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNamedStdSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNamedStdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Standard and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ËüÊÇͨ¹ýÄ¿µÄµØÖ·½øÐйýÂ˵ġ£" + ::= { gbnL2QACL 8 } + + aclNamedStdSubitemEntry OBJECT-TYPE + SYNTAX AclNamedStdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of standard and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNamedStdName, aclNamedStdSubNum } + ::= { aclNamedStdSubitemTable 1 } + + AclNamedStdSubitemEntry ::= + SEQUENCE { + aclNamedStdName + OCTET STRING, + aclNamedStdSubNum + Integer32, + aclNamedStdSubitemAdminStatus + AdminStatus, + aclNamedStdSubitemAction + Action, + aclNamedStdSubitemSrcAddr + IpAddress, + aclNamedStdSubitemSrcAddrWldmsk + IpAddress, + aclNamedStdFragments + TruthValue, + aclNamedStdTimeRange + OCTET STRING, + aclNamedStdSubitemRowStatus + RowStatus, + aclNamedStdAddressType + Integer32, + aclNamedStdSrcAddrV6 + InetAddressIPv6, + aclNamedStdSrcAddrV6Wldmsk + InetAddressIPv6, + aclNamedStdDefaultRoute + TruthValue, + aclNamedStdL3IntfId + Integer32 + } + + aclNamedStdName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of standard and name-based ACL subitem." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбíµÄÃû×Ö£¬ËüÊÇÒ»¸ö×î¶à32¸ö×Ö·û×é³ÉµÄ×Ö·û´®" + ::= { aclNamedStdSubitemEntry 1 } + + aclNamedStdSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of standard and name-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNamedStdSubitemEntry 2 } + + aclNamedStdSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of standard and name-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNamedStdSubitemEntry 3 } + + aclNamedStdSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of standard and name-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNamedStdSubitemEntry 4 } + + aclNamedStdSubitemSrcAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address of standard and name-based ACL subitem." + --"±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·" + ::= { aclNamedStdSubitemEntry 5 } + + aclNamedStdSubitemSrcAddrWldmsk OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address mask of standard and name-based ACL subitem." + --"±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·Í¨Åä·û" + ::= { aclNamedStdSubitemEntry 6 } + + aclNamedStdFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip fragments of standard and name-based ACL subitem." + --"±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·Í¨Åä·û" + DEFVAL { false } -- invalid + ::= { aclNamedStdSubitemEntry 7 } + + + aclNamedStdTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of standard and name-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNamedStdSubitemEntry 8 } + + aclNamedStdSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of standard and name-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNamedStdSubitemEntry 9 } + + aclNamedStdAddressType OBJECT-TYPE + SYNTAX Integer32 { + ipv4(1), + ipv6(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip-address type of standard and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄipµØÖ·µÄÀàÐÍ¡£" + ::= { aclNamedStdSubitemEntry 10 } + + aclNamedStdSrcAddrV6 OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address of standard and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·" + ::= { aclNamedStdSubitemEntry 11 } + + aclNamedStdSrcAddrV6Wldmsk OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address mask of standard and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·µÄͨÅä·û" + ::= { aclNamedStdSubitemEntry 12 } + + aclNamedStdDefaultRoute OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default route of standard and name-based ACL subitem." + --"±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄĬÈÏ·ÓÉ" + DEFVAL { false } -- invalid + ::= { aclNamedStdSubitemEntry 13 } + + aclNamedStdL3IntfId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The L3 interface type of standard and name-based ACL subitem." + ::= { aclNamedStdSubitemEntry 14 } + +--ACL×ÓÏÒ壬»ùÓÚÃû×ÖµÄÀ©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNamedExdSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNamedExdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Extended and name-based ACL subitem table." + --"¶¨ÒåÒ»ÌõÀ©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ËüÊÇͨ¹ý¶Ô±ê×¼·ÃÎÊ¿ØÖÆÁбíµÄ²¹³ä¡£" + ::= { gbnL2QACL 9 } + + aclNamedExdSubitemEntry OBJECT-TYPE + SYNTAX AclNamedExdSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of extended and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNamedExdName, aclNamedExdSubNum} + ::= { aclNamedExdSubitemTable 1 } + + AclNamedExdSubitemEntry ::= + SEQUENCE { + aclNamedExdName + OCTET STRING, + aclNamedExdSubNum + Integer32, + aclNamedExdSubitemAdminStatus + AdminStatus, + aclNamedExdSubitemAction + Action, + aclNamedExdSubitemProtocal + Integer32, + aclNamedExdSubitemSrcAddr + IpAddress, + aclNamedExdSubitemSrcAddrWldmsk + IpAddress, + aclNamedExdSubitemDstAddr + IpAddress, + aclNamedExdSubitemDstAddrWldmsk + IpAddress, + aclNamedExdSubitemSrcPort + Integer32, + aclNamedExdSubitemSrcPortWldmsk + Integer32, + aclNamedExdSubitemDstPort + Integer32, + aclNamedExdSubitemDstPortWldmsk + Integer32, + aclNamedExdSubitemIcmpType + Integer32, + aclNamedExdSubitemIcmpCode + Integer32, + aclNamedExdSubitemTcpEstablished + TruthValue, + aclNamedExdSubitemPrecedence + Integer32, + aclNamedExdSubitemTos + TOSType, + aclNamedExdSubitemDscp + Dscp, + aclNamedExdSubitemFragments + TruthValue, + aclNamedExdSubitemTimeRange + OCTET STRING, + aclNamedExdSubitemRowStatus + RowStatus, + aclNamedExdAddressType + Integer32, + aclNamedExdSrcAddrV6 + InetAddressIPv6, + aclNamedExdSrcAddrV6Wldmsk + InetAddressIPv6, + aclNamedExdDstAddrV6 + InetAddressIPv6, + aclNamedExdDstAddrV6Wldmsk + InetAddressIPv6, + aclNamedExdSubitemIgmpType + Integer32, + aclNamedExdSubitemDefaultRoute + TruthValue, + aclNamedExdSubitemL3IntfId + Integer32 + } + + aclNamedExdName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of extended and name-based ACL subitem." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбíµÄÃû×Ö£¬ËüÊÇÒ»¸ö×î¶à32¸ö×Ö·û×é³ÉµÄ×Ö·û´®" + ::= { aclNamedExdSubitemEntry 1 } + + aclNamedExdSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of extended and name-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNamedExdSubitemEntry 2 } + + aclNamedExdSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of extended and name-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNamedExdSubitemEntry 3 } + + aclNamedExdSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of extended and name-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNamedExdSubitemEntry 4 } + + aclNamedExdSubitemProtocal OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip protocol type of extended and name-based ACL subitem." + --"¹ýÂËijÖÖЭÒéÀàÐ͵ı¨ÎÄ" + ::= { aclNamedExdSubitemEntry 5 } + + aclNamedExdSubitemSrcAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address of extended and name-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·" + ::= { aclNamedExdSubitemEntry 6 } + + aclNamedExdSubitemSrcAddrWldmsk OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ip-address mask of extended and name-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ­µØÖ·Í¨Åä·û" + ::= { aclNamedExdSubitemEntry 7 } + + aclNamedExdSubitemDstAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ip-address of extended and name-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÄ¿µÄµØÖ·" + ::= { aclNamedExdSubitemEntry 8 } + + aclNamedExdSubitemDstAddrWldmsk OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ip-address mask of extended and name-based ACL subitem." + --"À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÄ¿µÄµØÖ·Í¨Åä·û" + ::= { aclNamedExdSubitemEntry 9 } + + aclNamedExdSubitemSrcPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source TCP/UDP port of extended and name-based ACL subitem." + --¶ÔUDP»òTCP±¨ÎÄÌØ¶¨¶Ë¿ÚºÅµÄ°ü½øÐйýÂË + ::= { aclNamedExdSubitemEntry 10 } + + aclNamedExdSubitemSrcPortWldmsk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source TCP/UDP port mask of extended and name-based ACL subitem." + --À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÔ´¶Ë¿ÚºÅͨÅä·û + ::= { aclNamedExdSubitemEntry 11 } + + aclNamedExdSubitemDstPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination TCP/UDP port of extended and name-based ACL subitem." + --¶ÔUDP»òTCP±¨ÎÄÌØ¶¨¶Ë¿ÚºÅµÄ°ü½øÐйýÂË + ::= { aclNamedExdSubitemEntry 12 } + + aclNamedExdSubitemDstPortWldmsk OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination TCP/UDP port mask of extended and name-based ACL subitem." + --À©Õ¹·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÄ¿µÄ¶Ë¿ÚºÅͨÅä·û + ::= { aclNamedExdSubitemEntry 13 } + + aclNamedExdSubitemIcmpType OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ICMP type of extended and name-based ACL subitem." + --"¶ÔICMPµÄÌØ¶¨ÀàÐ͵İü½øÐйýÂË" + ::= { aclNamedExdSubitemEntry 14 } + + aclNamedExdSubitemIcmpCode OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ICMP code of extended and name-based ACL subitem." + --"¶ÔICMPµÄÌØ¶¨ÀàÐÍ£¬Ìض¨´úÂëµÄ°ü½øÐйýÂË" + ::= { aclNamedExdSubitemEntry 15 } + + aclNamedExdSubitemTcpEstablished OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The established TCP of extended and name-based ACL subitem." + --"¶ÔTCPµÚÒ»¸ö½¨Á´µÄ°ü½øÐйýÂË" + DEFVAL { false } -- invalid + ::= { aclNamedExdSubitemEntry 16 } + + aclNamedExdSubitemPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip precedence of extended and name-based ACL subitem." + --"¶ÔÌØ¶¨IPÓÅÏȼ¶µÄ°ü½øÐйýÂË" + ::= { aclNamedExdSubitemEntry 17 } + + aclNamedExdSubitemTos OBJECT-TYPE + SYNTAX TOSType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip TOS of extended and name-based ACL subitem." + --"¶ÔÊý¾Ý°üÖÐTOS×ֶεÈÓÚÌØ¶¨ÖµµÄ°ü½øÐйýÂË" + ::= { aclNamedExdSubitemEntry 18 } + + aclNamedExdSubitemDscp OBJECT-TYPE + SYNTAX Dscp + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip DSCP of extended and name-based ACL subitem." + --"¶ÔÊý¾Ý°üÖÐDSCP×ֶεÈÓÚÌØ¶¨ÖµµÄ°ü½øÐйýÂË" + ::= { aclNamedExdSubitemEntry 19 } + + aclNamedExdSubitemFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip fragments of extended and name-based ACL subitem." + DEFVAL { false } + ::= { aclNamedExdSubitemEntry 20 } + + + aclNamedExdSubitemTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of extended and name-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNamedExdSubitemEntry 21 } + + aclNamedExdSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of extended and name-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNamedExdSubitemEntry 22 } + + aclNamedExdAddressType OBJECT-TYPE + SYNTAX Integer32 { + ipv4(1), + ipv6(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip-address type of extended and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄipµØÖ·µÄÀàÐÍ¡£" + ::= { aclNamedExdSubitemEntry 23 } + + aclNamedExdSrcAddrV6 OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address of extended and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·" + ::= { aclNamedExdSubitemEntry 24 } + + aclNamedExdSrcAddrV6Wldmsk OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source ipv6-address mask of extended and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÔ´ipv6µØÖ·µÄͨÅä·û" + ::= { aclNamedExdSubitemEntry 25 } + + aclNamedExdDstAddrV6 OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ipv6-address of extended and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÄ¿µÄipv6µØÖ·" + ::= { aclNamedExdSubitemEntry 26 } + + aclNamedExdDstAddrV6Wldmsk OBJECT-TYPE + SYNTAX InetAddressIPv6 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination ipv6-address mask of extended and name-based ACL subitem." + --"±íʾµ±Ç°ACL×ÓÏîµÄÄ¿µÄipv6µØÖ·µÄͨÅä·û" + ::= { aclNamedExdSubitemEntry 27 } + + aclNamedExdSubitemIgmpType OBJECT-TYPE + SYNTAX Integer32 (0..34) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP type of extended and name-based ACL subitem." + ::= { aclNamedExdSubitemEntry 28 } + + aclNamedExdSubitemDefaultRoute OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default route of extended and name-based ACL subitem." + DEFVAL { false } + ::= { aclNamedExdSubitemEntry 29 } + + aclNamedExdSubitemL3IntfId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The L3 interface type of extended and name-based ACL subitem." + ::= { aclNamedExdSubitemEntry 30 } + +--ACL×ÓÏÒ壬»ùÓÚÃû×ֵĶþ²ã·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNamedLnkSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNamedLnkSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Link-based and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ¶þ²ã·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£" + ::= { gbnL2QACL 10 } + + aclNamedLnkSubitemEntry OBJECT-TYPE + SYNTAX AclNamedLnkSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of link-based and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ¶þ²ã·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNamedLnkName, aclNamedLnkSubNum} + ::= { aclNamedLnkSubitemTable 1 } + + AclNamedLnkSubitemEntry ::= + SEQUENCE { + aclNamedLnkName + OCTET STRING, + aclNamedLnkSubNum + Integer32, + aclNamedLnkSubitemAdminStatus + AdminStatus, + aclNamedLnkSubitemAction + Action, + aclNamedLnkSubitemProtocal + Integer32, + aclNamedLnkSubitemCos + Integer32, + aclNamedLnkSubitemSrcVlanID + VlanId, + aclNamedLnkSubitemSrcMacAddr + MacAddress, + aclNamedLnkSubitemSrcMacWldmsk + MacAddress, + aclNamedLnkSubitemDstMacAddr + MacAddress, + aclNamedLnkSubitemDstMacWldmsk + MacAddress, + aclNamedLnkSubitemSrcPortNum + Integer32, + aclNamedLnkSubitemDstPortNum + Integer32, + aclNamedLnkSubitemTimeRange + OCTET STRING, + aclNamedLnkSubitemRowStatus + RowStatus, + aclNamedLnkSubitemSrcInnerTag + Integer32, + aclNamedLnkSubitemSrcInnerVlanID + VlanId, + aclNamedLnkSubitemSrcEndVlanID + VlanId, + } + + aclNamedLnkName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of link-based and name-based ACL subitem." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбíµÄÃû×Ö£¬ËüÊÇÒ»¸ö×î¶à32¸ö×Ö·û×é³ÉµÄ×Ö·û´®" + ::= { aclNamedLnkSubitemEntry 1 } + + aclNamedLnkSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of link-based and name-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNamedLnkSubitemEntry 2 } + + aclNamedLnkSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of link-based and name-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNamedLnkSubitemEntry 3 } + + aclNamedLnkSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of link-based and name-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNamedLnkSubitemEntry 4 } + + aclNamedLnkSubitemProtocal OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The protocol type of link-based and name-based ACL subitem." + --"¹ýÂËijÖÖЭÒéÀàÐ͵ı¨ÎÄ" + ::= { aclNamedLnkSubitemEntry 5 } + + aclNamedLnkSubitemCos OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The cos type of link-based and name-based ACL subitem." + --"¹ýÂËijÖÖЭÒéÀàÐ͵ı¨ÎÄ" + ::= { aclNamedLnkSubitemEntry 6 } + + aclNamedLnkSubitemSrcVlanID OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source vlan of link-based and name-based ACL subitem." + --"¶ÔVLAN IDÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNamedLnkSubitemEntry 7 } + + aclNamedLnkSubitemSrcMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source mac-address of link-based and name-based ACL subitem." + --"ËüÓÚMACͨÅä·û¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÔ´MACµØÖ·£¬²¢¶ÔÕâЩMACµØÖ·×÷´¦Àí¡£" + ::= { aclNamedLnkSubitemEntry 8 } + + aclNamedLnkSubitemSrcMacWldmsk OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source mac-address mask of link-based and name-based ACL subitem." + --"ËüÓÚMACµØÖ·¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÔ´MACµØÖ·£¬²¢¶ÔÕâЩMACµØÖ·×÷´¦Àí¡£" + ::= { aclNamedLnkSubitemEntry 9 } + + aclNamedLnkSubitemDstMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination mac-address of link-based and name-based ACL subitem." + --"ËüÓÚMACͨÅä·û¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÄ¿µÄMACµØÖ·£¬²¢¶ÔÕâЩMACµØÖ·×÷´¦Àí¡£" + ::= { aclNamedLnkSubitemEntry 10 } + + aclNamedLnkSubitemDstMacWldmsk OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination mac-address mask of link-based and name-based ACL subitem." + --"ËüÓÚMACµØÖ·¹²Í¬×÷Óõõ½¸ÐÐËȤµÄÄ¿µÄMACµØÖ·£¬²¢¶ÔÕâЩMACµØÖ·×÷´¦Àí¡£" + ::= { aclNamedLnkSubitemEntry 11 } + + aclNamedLnkSubitemSrcPortNum OBJECT-TYPE + SYNTAX Integer32 (1..26) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source port of link-based and name-based ACL subitem." + ::= { aclNamedLnkSubitemEntry 12 } + + aclNamedLnkSubitemDstPortNum OBJECT-TYPE + SYNTAX Integer32 (1..29) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination port of link-based and name-based ACL subitem." + ::= { aclNamedLnkSubitemEntry 13 } + + aclNamedLnkSubitemTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of link-based and name-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNamedLnkSubitemEntry 14 } + + aclNamedLnkSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of link-based and name-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNamedLnkSubitemEntry 15 } + + aclNamedLnkSubitemSrcInnerTag OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source inner tag of link-based and name-based ACL subitem." + --"¶Ôinner tagÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNamedLnkSubitemEntry 16 } + + aclNamedLnkSubitemSrcInnerVlanID OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source inner vlan of link-based and name-based ACL subitem." + --"¶Ôinner VLAN IDÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNamedLnkSubitemEntry 17 } + + aclNamedLnkSubitemSrcEndVlanID OBJECT-TYPE + SYNTAX VlanId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source end vlan of link-based and name-based ACL subitem." + --"¶ÔVLAN IDÎªÌØ¶¨ÖµµÄÊý¾Ý°ü½øÐйýÂË" + ::= { aclNamedLnkSubitemEntry 18 } + + --ACL×ÓÏÒ壬»ùÓÚÃû×ÖµÄ×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ + + aclNamedUserSubitemTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclNamedUserSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "User defined and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏî¡£ËüÊÇͨ¹ýÄ¿µÄµØÖ·½øÐйýÂ˵ġ£" + ::= { gbnL2QACL 11 } + + aclNamedUserSubitemEntry OBJECT-TYPE + SYNTAX AclNamedUserSubitemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of user defined and name-based ACL subitem table." + --"¶¨ÒåÒ»Ìõ±ê×¼·ÃÎÊ¿ØÖÆÁбí×ÓÏî." + INDEX { aclNamedUserName, aclNamedUserSubNum } + ::= { aclNamedUserSubitemTable 1 } + + AclNamedUserSubitemEntry ::= + SEQUENCE { + aclNamedUserName + OCTET STRING, + aclNamedUserSubNum + Integer32, + aclNamedUserSubitemAdminStatus + AdminStatus, + aclNamedUserSubitemAction + Action, + aclNamedUserSubitemSrcPortNum + Integer32, + aclNamedUserSubitemDstPortNum + Integer32, + aclNamedUserSubitemRule + OCTET STRING, + aclNamedUserSubitemMask + OCTET STRING, + aclNamedUserTimeRange + OCTET STRING, + aclNamedUserSubitemRowStatus + RowStatus + } + + aclNamedUserName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of user defined and name-based ACL subitem." + --"»ùÓÚÃû×ֵķÃÎÊ¿ØÖÆÁбíµÄÃû×Ö£¬ËüÊÇÒ»¸ö×î¶à32¸ö×Ö·û×é³ÉµÄ×Ö·û´®" + ::= { aclNamedUserSubitemEntry 1 } + + aclNamedUserSubNum OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number of user defined and name-based ACL subitem." + --"·ÃÎÊ¿ØÖÆÁбíµÄ×ÓÏîºÅ£¬0£­127¡£" + ::= { aclNamedUserSubitemEntry 2 } + + aclNamedUserSubitemAdminStatus OBJECT-TYPE + SYNTAX AdminStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The admin status of user defined and name-based ACL subitem." + --"µ±´ËÏîΪvalidʱ¼¤»îÒ»Ìõ·ÃÎÊ¿ØÖÆÁÐ±í£¬invalid±íʾֻÅäÖÃÁË´ËÏî + --ACLµ«²¢Ã»ÓÐÏ·¢µ½Ó²¼þ¿ªÊ¼Ö´ÐС£" + DEFVAL { invalid } -- invalid + ::= { aclNamedUserSubitemEntry 3 } + + aclNamedUserSubitemAction OBJECT-TYPE + SYNTAX Action + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The action of user defined and name-based ACL subitem." + --"¶¨ÒåÒ»Ìõ·ÃÎÊÁбí×ÓÏîµÄ¶¯×÷£¬ÔÊÐí»ò¾Ü¾ø¡£" + ::= { aclNamedUserSubitemEntry 4 } + + aclNamedUserSubitemSrcPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source port of user defined and name-based ACL subitem." + ::= { aclNamedUserSubitemEntry 5 } + + aclNamedUserSubitemDstPortNum OBJECT-TYPE + SYNTAX Integer32 (1..29) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination port of user defined and name-based ACL subitem." + ::= { aclNamedUserSubitemEntry 6 } + + aclNamedUserSubitemRule OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..160)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The match rule of user defined and name-based ACL subitem." + --"Óû§×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÆ¥Åä×Ö·û´®" + ::= { aclNamedUserSubitemEntry 7 } + + aclNamedUserSubitemMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..160)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The match mask of user defined and name-based ACL subitem." + --"Óû§×Ô¶¨Òå·ÃÎÊ¿ØÖÆÁбí×ÓÏîµÄÆ¥Åä×Ö·û´®ÑÚÂë" + ::= { aclNamedUserSubitemEntry 8 } + + aclNamedUserTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The referred time range of user defined and name-based ACL subitem." + --"·ÃÎÊÁбí×ÓÏîÆð×÷ÓõÄʱ¼ä¶Î" + ::= { aclNamedUserSubitemEntry 9 } + + aclNamedUserSubitemRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of user defined and name-based ACL subitem entry." + --"±íʾµ±Ç°ACL×ÓÏîµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclNamedUserSubitemEntry 10 } + +--ʱ¼ä¶Î¶¨Òå + aclTimeRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclTimeRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Time range table." + ::= { gbnL2QACL 12 } + + aclTimeRangeEntry OBJECT-TYPE + SYNTAX AclTimeRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of time range table." + --"¶¨ÒåÒ»Ìõʱ¼ä¶Î." + INDEX { aclTimeRangeName } + ::= { aclTimeRangeTable 1 } + + AclTimeRangeEntry ::= + SEQUENCE { + aclTimeRangeName + OCTET STRING, + aclTimeRangeTotleAbsolutes + Integer32, + aclTimeRangeTotlePeriods + Integer32, + aclTimeRangeActive + TruthValue, + aclTimeRangeRowStatus + RowStatus + } + + aclTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of time range." + --"ʱ¼ä¶ÎµÄÃû×Ö" + ::= { aclTimeRangeEntry 1 } + + aclTimeRangeTotleAbsolutes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of absolute time ranges." + --"Ò»¸öʱ¼ä¶Î×î¶à¿ÉÒÔÅäÖÃ12¸ö¾ø¶Ôʱ¼ä¶Î£¬ÕâÀïΪÒѾ­ÅäÖõľø¶Ôʱ¼ä¶ÎµÄÊýÄ¿" + DEFVAL { invalid } -- invalid + ::= { aclTimeRangeEntry 2 } + + aclTimeRangeTotlePeriods OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of period time ranges." + --"Ò»¸öʱ¼ä¶Î×î¶à¿ÉÒÔÅäÖÃ32¸öÖÜÆÚʱ¼ä¶Î£¬ÕâÀïΪÒѾ­ÅäÖõÄÖÜÆÚʱ¼ä¶ÎµÄÊýÄ¿" + ::= { aclTimeRangeEntry 3 } + + aclTimeRangeActive OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The active status of time range." + --"ʱ¼ä¶ÎµÄ¼¤»î״̬" + ::= { aclTimeRangeEntry 4 } + + aclTimeRangeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of time range entry." + --"±íʾµ±Ç°Ê±¼ä¶ÎµÄ״̬£¬Ìí¼Ó»òɾ³ý¡£" + ::= { aclTimeRangeEntry 5 } + + --¾ø¶Ôʱ¼ä¶Î¶¨Òå¡£ + + aclTimeRangeAbsoluteTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclTimeRangeAbsoluteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Absolute time range table." + --"¶¨ÒåÒ»¸ö¾ø¶Ôʱ¼ä¶Î" + ::= { gbnL2QACL 13 } + + aclTimeRangeAbsoluteEntry OBJECT-TYPE + SYNTAX AclTimeRangeAbsoluteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of absolute time range table." + --"¶¨ÒåÒ»Ìõ¾ø¶Ôʱ¼ä¶Î." + INDEX { aclTimeRangeAbsoluteName, aclTimeRangeAbsoluteStartTime, + aclTimeRangeAbsoluteEndTime } + ::= { aclTimeRangeAbsoluteTable 1 } + + AclTimeRangeAbsoluteEntry ::= + SEQUENCE { + aclTimeRangeAbsoluteName + OCTET STRING, + aclTimeRangeAbsoluteStartTime + Unsigned32, + aclTimeRangeAbsoluteEndTime + Unsigned32, + aclTimeRangeAbsoluteRowStatus + RowStatus + } + + aclTimeRangeAbsoluteName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of absolute time range." + --"ʱ¼ä¶ÎµÄÃû×Ö" + ::= { aclTimeRangeAbsoluteEntry 1 } + + aclTimeRangeAbsoluteStartTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start time of absolute time range." + --"¾ø¶Ôʱ¼ä¶ÎÆðʼʱ¼ä(ÈÕÀúʱ¼ä)" + ::= { aclTimeRangeAbsoluteEntry 2 } + + aclTimeRangeAbsoluteEndTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end time of absolute time range." + --"¾ø¶Ôʱ¼ä¶ÎÖÕֹʱ¼äµÄÄê·Ý" + ::= { aclTimeRangeAbsoluteEntry 3 } + + aclTimeRangeAbsoluteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of absolute time range entry." + --"¾ø¶Ôʱ¼ä¶ÎµÄµ±Ç°×´Ì¬" + ::= { aclTimeRangeAbsoluteEntry 4 } + + --ÖÜÆÚʱ¼ä¶Î¶¨Òå¡£ + + aclTimeRangePeriodTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclTimeRangePeriodEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Period time range table." + --"¶¨ÒåÒ»¸öÖÜÆÚʱ¼ä¶Î" + ::= { gbnL2QACL 14 } + + aclTimeRangePeriodEntry OBJECT-TYPE + SYNTAX AclTimeRangePeriodEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of period time range table." + --"¶¨ÒåÒ»ÌõÖÜÆÚʱ¼ä¶Î." + INDEX { aclTimeRangePeriodName, aclTimeRangePeriodStartWeekDay, + aclTimeRangePeriodStartHour, aclTimeRangePeriodStartMin, + aclTimeRangePeriodEndWeekDay, aclTimeRangePeriodEndHour, + aclTimeRangePeriodEndMin } + ::= { aclTimeRangePeriodTable 1 } + + AclTimeRangePeriodEntry ::= + SEQUENCE { + aclTimeRangePeriodName + OCTET STRING, + aclTimeRangePeriodStartWeekDay + Unsigned32, + aclTimeRangePeriodStartHour + Unsigned32, + aclTimeRangePeriodStartMin + Unsigned32, + aclTimeRangePeriodEndWeekDay + Unsigned32, + aclTimeRangePeriodEndHour + Unsigned32, + aclTimeRangePeriodEndMin + Unsigned32, + aclTimeRangePeriodRowStatus + RowStatus + } + + aclTimeRangePeriodName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of period time range." + --"ʱ¼ä¶ÎµÄÃû×Ö" + ::= { aclTimeRangePeriodEntry 1 } + + aclTimeRangePeriodStartWeekDay OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start week day of period time range." + --"ÖÜÆÚʱ¼ä¶ÎÆðʼʱ¼äµÄÈÕÆÚ£¨ÐÇÆÚ¼¸£©" + ::= { aclTimeRangePeriodEntry 2 } + + aclTimeRangePeriodStartHour OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start hour of period time range." + --"ÖÜÆÚʱ¼ä¶ÎµÄÆðʼʱ¼ä£¨¼¸µã£©" + ::= { aclTimeRangePeriodEntry 3 } + + aclTimeRangePeriodStartMin OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start minute of period time range." + --"ÖÜÆÚʱ¼ä¶ÎµÄÆðʼʱ¼ä£¨¼¸·Ö£©" + ::= { aclTimeRangePeriodEntry 4 } + + aclTimeRangePeriodEndWeekDay OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end week day of period time range." + --"ÖÜÆÚʱ¼ä¶ÎÖÕֹʱ¼äµÄÈÕÆÚ£¨ÐÇÆÚ¼¸£©" + ::= { aclTimeRangePeriodEntry 5 } + + aclTimeRangePeriodEndHour OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end hour of period time range." + --"ÖÜÆÚʱ¼ä¶ÎµÄÖÕֹʱ¼ä£¨¼¸µã£©" + ::= { aclTimeRangePeriodEntry 6 } + + aclTimeRangePeriodEndMin OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end minute of period time range." + --"ÖÜÆÚʱ¼ä¶ÎµÄÖÕֹʱ¼ä£¨¼¸·Ö£©" + ::= { aclTimeRangePeriodEntry 7 } + + aclTimeRangePeriodRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The row status of period time range entry." + --"ÖÜÆÚʱ¼ä¶ÎµÄµ±Ç°×´Ì¬" + ::= { aclTimeRangePeriodEntry 8 } + + ----------------------------------------------------- + -- the active ACL group + ----------------------------------------------------- + + aclActiveTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclActiveEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of active acl entries. " + ::= { gbnL2QACL 15 } + + aclActiveEntry OBJECT-TYPE + SYNTAX AclActiveEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of active acl entries. " + INDEX { aclActiveIndex } + ::= { aclActiveTable 1 } + + AclActiveEntry ::= + SEQUENCE { + aclActiveIndex + INTEGER, + aclActiveUserGroupName + OCTET STRING, + aclActiveUserGroupSubitem + INTEGER, + aclActiveIpGroupName + OCTET STRING, + aclActiveIpGroupSubitem + INTEGER, + aclActiveLinkGroupName + OCTET STRING, + aclActiveLinkGroupSubitem + INTEGER, + aclActiveBlock0Priority + INTEGER, + aclActiveBlock1Priority + INTEGER, + aclActiveBlock2Priority + INTEGER, + aclActiveBlock3Priority + INTEGER, + aclActiveBlock4Priority + INTEGER, + aclActiveConfigSequence + INTEGER, + aclActiveRunning + TruthValue, + aclActiveRowStatus + RowStatus, + aclActiveBlock5Priority + INTEGER, + aclActiveBlock6Priority + INTEGER, + aclActiveBlock7Priority + INTEGER, + aclActiveBlock8Priority + INTEGER, + aclActiveBlock9Priority + INTEGER, + aclActiveBlock10Priority + INTEGER, + aclActiveBlock11Priority + INTEGER, + aclActiveDirection + INTEGER, + aclActiveInterface + INTEGER + } + + aclActiveIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each active acl. " + ::= { aclActiveEntry 1 } + + aclActiveUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the active user group acl. " + ::= { aclActiveEntry 2 } + + aclActiveUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the active user group acl subitem. " + ::= { aclActiveEntry 3 } + + aclActiveIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the active ip group acl. " + ::= { aclActiveEntry 4 } + + aclActiveIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the active ip group acl subitem. " + ::= { aclActiveEntry 5 } + + aclActiveLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the active link group acl. " + ::= { aclActiveEntry 6 } + + aclActiveLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the active link group acl subitem. " + ::= { aclActiveEntry 7 } + + aclActiveBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the active ACL. 16 means no filter rules in the Hardware." + ::= { aclActiveEntry 8 } + + aclActiveBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the active ACL. 16 means no filter rules in the Hardware." + ::= { aclActiveEntry 9 } + + aclActiveBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the active ACL. 16 means no filter rules in the Hardware." + ::= { aclActiveEntry 10 } + + aclActiveBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the active ACL. 16 means no filter rules in the Hardware." + ::= { aclActiveEntry 11 } + + aclActiveBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the active ACL. 16 means no filter rules in the Hardware." + ::= { aclActiveEntry 12 } + + aclActiveConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the active ACL." + ::= { aclActiveEntry 13 } + + aclActiveRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the active ACL." + ::= { aclActiveEntry 14 } + + aclActiveRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { aclActiveEntry 15 } + + aclActiveBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 5ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 16 } + + aclActiveBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 6ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 17 } + + aclActiveBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 7ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 18 } + + aclActiveBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 8ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 19 } + + aclActiveBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 9ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 20 } + + aclActiveBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 10ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 21 } + + aclActiveBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the active ACL. 16 means no filter rules in the Hardware." + --¼¤»îACLÔÚblock 11ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { aclActiveEntry 22 } + + aclActiveDirection OBJECT-TYPE + SYNTAX INTEGER { + inbound(0), + outbound(1) + } + ACCESS read-write + STATUS current + DESCRIPTION + "ingress/egress of rule.default is inbound" + --Èë¿Ú/³ö¿Úacl£¬Ä¬ÈÏΪÈë¿Ú¡£ + ::= { aclActiveEntry 23 } + + aclActiveInterface OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the interface of referenced acl, 0 indicates the global reference." + --ÒýÓÃaclµÄ¶Ë¿Ú£¬Îª0±íʾȫ¾ÖÒýÓᣠ+ ::= { aclActiveEntry 24 } + + ----------------------------------------------------- + -- the mirror-to QOS group + ----------------------------------------------------- + + qosMirrorToTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosMirrorToEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror-to QOS entries. " + ::= { gbnL2QACL 16 } + + qosMirrorToEntry OBJECT-TYPE + SYNTAX QosMirrorToEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror-to QOS entries. " + INDEX { qosMirrorToIndex } + ::= { qosMirrorToTable 1 } + + QosMirrorToEntry ::= + SEQUENCE { + qosMirrorToIndex + INTEGER, + qosMirrorToUserGroupName + OCTET STRING, + qosMirrorToUserGroupSubitem + INTEGER, + qosMirrorToIpGroupName + OCTET STRING, + qosMirrorToIpGroupSubitem + INTEGER, + qosMirrorToLinkGroupName + OCTET STRING, + qosMirrorToLinkGroupSubitem + INTEGER, + qosMirrorToInterface + INTEGER, + qosMirrorToBlock0Priority + INTEGER, + qosMirrorToBlock1Priority + INTEGER, + qosMirrorToBlock2Priority + INTEGER, + qosMirrorToBlock3Priority + INTEGER, + qosMirrorToBlock4Priority + INTEGER, + qosMirrorToConfigSequence + INTEGER, + qosMirrorToRunning + TruthValue, + qosMirrorToRowStatus + RowStatus, + qosMirrorToBlock5Priority + INTEGER, + qosMirrorToBlock6Priority + INTEGER, + qosMirrorToBlock7Priority + INTEGER, + qosMirrorToBlock8Priority + INTEGER, + qosMirrorToBlock9Priority + INTEGER, + qosMirrorToBlock10Priority + INTEGER, + qosMirrorToBlock11Priority + INTEGER + } + + qosMirrorToIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each mirror-to QOS. " + ::= { qosMirrorToEntry 1 } + + qosMirrorToUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the mirror-to QOS user group acl. " + ::= { qosMirrorToEntry 2 } + + qosMirrorToUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the mirror-to QOS user group acl subitem. " + ::= { qosMirrorToEntry 3 } + + qosMirrorToIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the mirror-to QOS ip group acl. " + ::= { qosMirrorToEntry 4 } + + qosMirrorToIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the mirror-to QOS ip group acl subitem. " + ::= { qosMirrorToEntry 5 } + + qosMirrorToLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the mirror-to QOS link group acl. " + ::= { qosMirrorToEntry 6 } + + qosMirrorToLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the mirror-to QOS link group acl subitem. " + ::= { qosMirrorToEntry 7 } + + qosMirrorToInterface OBJECT-TYPE + SYNTAX INTEGER (1..26) + ACCESS read-write + STATUS current + DESCRIPTION + "the mirror-to interface of the mirror-to QOS. " + ::= { qosMirrorToEntry 8 } + + qosMirrorToBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + ::= { qosMirrorToEntry 9 } + + qosMirrorToBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + ::= { qosMirrorToEntry 10 } + + qosMirrorToBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + ::= { qosMirrorToEntry 11 } + + qosMirrorToBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + ::= { qosMirrorToEntry 12 } + + qosMirrorToBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + ::= { qosMirrorToEntry 13 } + + qosMirrorToConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the mirror-to QOS." + ::= { qosMirrorToEntry 14 } + + qosMirrorToRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the mirror-to QOS. " + ::= { qosMirrorToEntry 15 } + + qosMirrorToRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosMirrorToEntry 16 } + + qosMirrorToBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 5ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 17 } + + qosMirrorToBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 6 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 18 } + + qosMirrorToBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 7 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 19 } + + qosMirrorToBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 8 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 20 } + + qosMirrorToBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 9 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 21 } + + qosMirrorToBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 10 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 22 } + + qosMirrorToBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the mirror-to QOS. 16 means no filter rules in the Hardware." + --Á÷¾µÏñÔÚblock 11 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosMirrorToEntry 23 } + + ----------------------------------------------------- + -- the rate-limit QOS + ----------------------------------------------------- + + qosRateLimitTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosRateLimitEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of rate-limit QOS entries. " + ::= { gbnL2QACL 17 } + + qosRateLimitEntry OBJECT-TYPE + SYNTAX QosRateLimitEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of rate-limit QOS entries. " + INDEX { qosRateLimitIndex } + ::= { qosRateLimitTable 1 } + + QosRateLimitEntry ::= + SEQUENCE { + qosRateLimitIndex + INTEGER, + qosRateLimitUserGroupName + OCTET STRING, + qosRateLimitUserGroupSubitem + INTEGER, + qosRateLimitIpGroupName + OCTET STRING, + qosRateLimitIpGroupSubitem + INTEGER, + qosRateLimitLinkGroupName + OCTET STRING, + qosRateLimitLinkGroupSubitem + INTEGER, + qosRateLimitIntf + INTEGER, + qosRateLimitTargetRate + INTEGER, + qosRateLimitExceedAction + INTEGER, + qosRateLimitDscpValue + INTEGER, + qosRateLimitBlock0Priority + INTEGER, + qosRateLimitBlock1Priority + INTEGER, + qosRateLimitBlock2Priority + INTEGER, + qosRateLimitBlock3Priority + INTEGER, + qosRateLimitBlock4Priority + INTEGER, + qosRateLimitConfigSequence + INTEGER, + qosRateLimitRunning + TruthValue, + qosRateLimitRowStatus + RowStatus, + qosRateLimitBlock5Priority + INTEGER, + qosRateLimitBlock6Priority + INTEGER, + qosRateLimitBlock7Priority + INTEGER, + qosRateLimitBlock8Priority + INTEGER, + qosRateLimitBlock9Priority + INTEGER, + qosRateLimitBlock10Priority + INTEGER, + qosRateLimitBlock11Priority + INTEGER, + qosRateLimitPolicerId + INTEGER, + qosRateLimitUsePolicer + TruthValue, + qosRateLimitCIR + INTEGER, + qosRateLimitCBS + INTEGER, + qosRateLimitPIR + INTEGER, + qosRateLimitPBS + INTEGER, + qosRateLimitRedAction + INTEGER, + qosRateLimitRedDscp + INTEGER, + qosRateLimitYellowAction + INTEGER, + qosRateLimitYellowDscp + INTEGER, + qosRateLimitGreenAction + INTEGER, + qosRateLimitGreenDscp + INTEGER, + qosRateLimitUsetrTCM + TruthValue + } + + qosRateLimitIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each rate-limit QOS. " + ::= { qosRateLimitEntry 1 } + + qosRateLimitUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the rate-limit QOS user group acl. " + ::= { qosRateLimitEntry 2 } + + qosRateLimitUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the rate-limit QOS user group acl subitem. " + ::= { qosRateLimitEntry 3 } + + qosRateLimitIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the rate-limit QOS ip group acl. " + ::= { qosRateLimitEntry 4 } + + qosRateLimitIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the rate-limit QOS ip group acl subitem. " + ::= { qosRateLimitEntry 5 } + + qosRateLimitLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the rate-limit QOS link group acl. " + ::= { qosRateLimitEntry 6 } + + qosRateLimitLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the rate-limit QOS link group acl subitem. " + ::= { qosRateLimitEntry 7 } + + qosRateLimitIntf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the target rate on this interface. " + ::= { qosRateLimitEntry 8 } + + qosRateLimitTargetRate OBJECT-TYPE + SYNTAX INTEGER (1..100) + ACCESS read-write + STATUS current + DESCRIPTION + "the target rate of the rate-limit QOS. " + ::= { qosRateLimitEntry 9 } + + qosRateLimitExceedAction OBJECT-TYPE + SYNTAX INTEGER { + drop(1), + set-dscp-value(2) + } + ACCESS read-write + STATUS current + DESCRIPTION + "the exceed action of the rate-limit QOS. " + ::= { qosRateLimitEntry 10 } + + qosRateLimitDscpValue OBJECT-TYPE + SYNTAX INTEGER (0..63) + ACCESS read-write + STATUS current + DESCRIPTION + "the dscp value of the rate-limit QOS. " + ::= { qosRateLimitEntry 11 } + + qosRateLimitBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + ::= { qosRateLimitEntry 12 } + + qosRateLimitBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + ::= { qosRateLimitEntry 13 } + + qosRateLimitBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + ::= { qosRateLimitEntry 14 } + + qosRateLimitBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + ::= { qosRateLimitEntry 15 } + + qosRateLimitBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + ::= { qosRateLimitEntry 16 } + + qosRateLimitConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the rate-limit QOS." + ::= { qosRateLimitEntry 17 } + + qosRateLimitRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the rate-limit QOS." + ::= { qosRateLimitEntry 18 } + + qosRateLimitRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosRateLimitEntry 19 } + + qosRateLimitBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 5 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 20 } + + qosRateLimitBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 6 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 21 } + + qosRateLimitBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 7 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 22 } + + qosRateLimitBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 8 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 23 } + + qosRateLimitBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 9 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 24 } + + qosRateLimitBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 10 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 25 } + + qosRateLimitBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the rate-limit QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿¼à¹ÜÔÚblock 11 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosRateLimitEntry 26 } + + qosRateLimitPolicerId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the two rate policer ID of the rate-limit QOS." + ::= { qosRateLimitEntry 27 } + + qosRateLimitUsePolicer OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "this value determines whether the rate-limit QOS use a two rate policer." + ::= { qosRateLimitEntry 28 } + qosRateLimitCIR OBJECT-TYPE + SYNTAX INTEGER(64..1048512) + ACCESS read-write + STATUS current + DESCRIPTION + "the Committed information rate value ." + ::= { qosRateLimitEntry 29 } + + qosRateLimitCBS OBJECT-TYPE + SYNTAX INTEGER(4..16384) + ACCESS read-write + STATUS current + DESCRIPTION + "the Committed burst size value ." + ::= { qosRateLimitEntry 30 } + + qosRateLimitPIR OBJECT-TYPE + SYNTAX INTEGER(64..1048512) + ACCESS read-write + STATUS current + DESCRIPTION + "the peak information rate value ." + ::= { qosRateLimitEntry 31 } + + qosRateLimitPBS OBJECT-TYPE + SYNTAX INTEGER(4..16384) + ACCESS read-write + STATUS current + DESCRIPTION + "the peak burst size value ." + ::= { qosRateLimitEntry 32 } + + qosRateLimitRedAction OBJECT-TYPE + SYNTAX INTEGER{ + drop(1), + set-dscp-value(2), + copy-to-cpu(3), + transmit(4) + } + ACCESS read-write + STATUS current + DESCRIPTION + "the packets marked red action ." + ::= { qosRateLimitEntry 33 } + + qosRateLimitRedDscp OBJECT-TYPE + SYNTAX INTEGER(0..63) + ACCESS read-write + STATUS current + DESCRIPTION + "the packets marked red set dscp value." + ::= { qosRateLimitEntry 34} + + qosRateLimitYellowAction OBJECT-TYPE + SYNTAX INTEGER{ + drop(1), + set-dscp-value(2), + copy-to-cpu(3), + transmit(4) + } + ACCESS read-write + STATUS current + DESCRIPTION + "the packets marked yellow action." + ::= { qosRateLimitEntry 35 } + + qosRateLimitYellowDscp OBJECT-TYPE + SYNTAX INTEGER(0..63) + ACCESS read-write + STATUS current + DESCRIPTION + "the packets marked yellow set dscp value." + ::= { qosRateLimitEntry 36 } + + qosRateLimitGreenAction OBJECT-TYPE + SYNTAX INTEGER{ + drop(1), + set-dscp-value(2), + copy-to-cpu(3), + transmit(4) + } + ACCESS read-write + STATUS current + DESCRIPTION + "the packets marked green action ." + ::= { qosRateLimitEntry 37 } + + qosRateLimitGreenDscp OBJECT-TYPE + SYNTAX INTEGER(0..63) + ACCESS read-write + STATUS current + DESCRIPTION + "the packets marked green set dscp value." + ::= { qosRateLimitEntry 38} + + qosRateLimitUsetrTCM OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "this value determines whether the rate-limit QOS use a two rate policer." + ::= { qosRateLimitEntry 39 } + + ----------------------------------------------------- + -- the traffic-priority QOS + ----------------------------------------------------- + + qosTrafficPriorityTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficPriorityEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-priority QOS entries. " + ::= { gbnL2QACL 18 } + + qosTrafficPriorityEntry OBJECT-TYPE + SYNTAX QosTrafficPriorityEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-priority QOS entries. " + INDEX { qosTrafficPriorityIndex } + ::= { qosTrafficPriorityTable 1 } + + QosTrafficPriorityEntry ::= + SEQUENCE { + qosTrafficPriorityIndex + INTEGER, + qosTrafficPriorityUserGroupName + OCTET STRING, + qosTrafficPriorityUserGroupSubitem + INTEGER, + qosTrafficPriorityIpGroupName + OCTET STRING, + qosTrafficPriorityIpGroupSubitem + INTEGER, + qosTrafficPriorityLinkGroupName + OCTET STRING, + qosTrafficPriorityLinkGroupSubitem + INTEGER, + qosTrafficPriorityDscp + INTEGER, + qosTrafficPriorityIpPrecedence + INTEGER, + qosTrafficPriorityCos + INTEGER, + qosTrafficPriorityLocalPrecedence + INTEGER, + qosTrafficPriorityBlock0Priority + INTEGER, + qosTrafficPriorityBlock1Priority + INTEGER, + qosTrafficPriorityBlock2Priority + INTEGER, + qosTrafficPriorityBlock3Priority + INTEGER, + qosTrafficPriorityBlock4Priority + INTEGER, + qosTrafficPriorityConfigSequence + INTEGER, + qosTrafficPriorityRunning + TruthValue, + qosTrafficPriorityRowStatus + RowStatus, + qosTrafficPriorityBlock5Priority + INTEGER, + qosTrafficPriorityBlock6Priority + INTEGER, + qosTrafficPriorityBlock7Priority + INTEGER, + qosTrafficPriorityBlock8Priority + INTEGER, + qosTrafficPriorityBlock9Priority + INTEGER, + qosTrafficPriorityBlock10Priority + INTEGER, + qosTrafficPriorityBlock11Priority + INTEGER + } + + qosTrafficPriorityIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-priority QOS. " + ::= { qosTrafficPriorityEntry 1 } + + qosTrafficPriorityUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-priority QOS user group acl. " + ::= { qosTrafficPriorityEntry 2 } + + qosTrafficPriorityUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-priority QOS user group acl subitem. " + ::= { qosTrafficPriorityEntry 3 } + + qosTrafficPriorityIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-priority QOS ip group acl. " + ::= { qosTrafficPriorityEntry 4 } + + qosTrafficPriorityIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-priority QOS ip group acl subitem. " + ::= { qosTrafficPriorityEntry 5 } + + qosTrafficPriorityLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-priority QOS link group acl. " + ::= { qosTrafficPriorityEntry 6 } + + qosTrafficPriorityLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-priority QOS link group acl subitem. " + ::= { qosTrafficPriorityEntry 7 } + + qosTrafficPriorityDscp OBJECT-TYPE + SYNTAX INTEGER (0..63) + ACCESS read-write + STATUS current + DESCRIPTION + "the DSCP of the traffic-priority QOS. " + ::= { qosTrafficPriorityEntry 8 } + + qosTrafficPriorityIpPrecedence OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-write + STATUS current + DESCRIPTION + "the IP precedence of the traffic-priority QOS. " + ::= { qosTrafficPriorityEntry 9 } + + qosTrafficPriorityCos OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-write + STATUS current + DESCRIPTION + "the COS of the traffic-priority QOS. " + ::= { qosTrafficPriorityEntry 10 } + + qosTrafficPriorityLocalPrecedence OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-write + STATUS current + DESCRIPTION + "the local precedence of the traffic-priority QOS. " + ::= { qosTrafficPriorityEntry 11 } + + qosTrafficPriorityBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficPriorityEntry 12 } + + qosTrafficPriorityBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficPriorityEntry 13 } + + qosTrafficPriorityBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficPriorityEntry 14 } + + qosTrafficPriorityBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficPriorityEntry 15 } + + qosTrafficPriorityBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficPriorityEntry 16 } + + qosTrafficPriorityConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-priority QOS." + ::= { qosTrafficPriorityEntry 17 } + + qosTrafficPriorityRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-priority QOS." + ::= { qosTrafficPriorityEntry 18 } + + qosTrafficPriorityRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficPriorityEntry 19 } + + qosTrafficPriorityBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 5 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 20 } + + qosTrafficPriorityBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 6 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 21 } + + qosTrafficPriorityBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 7 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 22 } + + qosTrafficPriorityBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 8 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 23 } + + qosTrafficPriorityBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 9 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 24 } + + qosTrafficPriorityBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 10 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 25 } + + qosTrafficPriorityBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the traffic-priority QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÓÅÏȼ¶ÔÚblock 11 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficPriorityEntry 26 } + + ----------------------------------------------------- + -- the traffic-policy based route + ----------------------------------------------------- + + qosTrafficPbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficPbrEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-policy-based-route QOS entries. " + ::= { gbnL2QACL 19 } + + qosTrafficPbrEntry OBJECT-TYPE + SYNTAX QosTrafficPbrEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-policy-based-route QOS entries. " + INDEX { qosTrafficPbrIndex } + ::= { qosTrafficPbrTable 1 } + + QosTrafficPbrEntry ::= + SEQUENCE { + qosTrafficPbrIndex + INTEGER, + qosTrafficPbrUserGroupName + OCTET STRING, + qosTrafficPbrUserGroupSubitem + INTEGER, + qosTrafficPbrIpGroupName + OCTET STRING, + qosTrafficPbrIpGroupSubitem + INTEGER, + qosTrafficPbrLinkGroupName + OCTET STRING, + qosTrafficPbrLinkGroupSubitem + INTEGER, + qosTrafficPbrNextHopIp + IpAddress, + qosTrafficPbrConfigSequence + INTEGER, + qosTrafficPbrRunning + TruthValue, + qosTrafficPbrRowStatus + RowStatus, + } + + qosTrafficPbrIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-PBR QOS. " + ::= { qosTrafficPbrEntry 1 } + + qosTrafficPbrUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-PBR QOS user group acl. " + ::= { qosTrafficPbrEntry 2 } + + qosTrafficPbrUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-PBR QOS user group acl subitem. " + ::= { qosTrafficPbrEntry 3 } + + qosTrafficPbrIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-PBR QOS ip group acl. " + ::= { qosTrafficPbrEntry 4 } + + qosTrafficPbrIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-PBR QOS ip group acl subitem. " + ::= { qosTrafficPbrEntry 5 } + + qosTrafficPbrLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-PBR QOS link group acl. " + ::= { qosTrafficPbrEntry 6 } + + qosTrafficPbrLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-PBR QOS link group acl subitem. " + ::= { qosTrafficPbrEntry 7 } + + qosTrafficPbrNextHopIp OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS current + DESCRIPTION + "the IP precedence of the traffic-PBR QOS. " + ::= { qosTrafficPbrEntry 8 } + + qosTrafficPbrConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-PBR QOS." + ::= { qosTrafficPbrEntry 9 } + + qosTrafficPbrRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-PBR QOS." + ::= { qosTrafficPbrEntry 10 } + + qosTrafficPbrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficPbrEntry 11 } + + ----------------------------------------------------- + -- the traffic redirect QOS + ----------------------------------------------------- + + qosTrafficRedirectTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficRedirectEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-redirect QOS entries. " + ::= { gbnL2QACL 20 } + + qosTrafficRedirectEntry OBJECT-TYPE + SYNTAX QosTrafficRedirectEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-redirect QOS entries. " + INDEX { qosTrafficRedirectIndex } + ::= { qosTrafficRedirectTable 1 } + + QosTrafficRedirectEntry ::= + SEQUENCE { + qosTrafficRedirectIndex + INTEGER, + qosTrafficRedirectUserGroupName + OCTET STRING, + qosTrafficRedirectUserGroupSubitem + INTEGER, + qosTrafficRedirectIpGroupName + OCTET STRING, + qosTrafficRedirectIpGroupSubitem + INTEGER, + qosTrafficRedirectLinkGroupName + OCTET STRING, + qosTrafficRedirectLinkGroupSubitem + INTEGER, + qosTrafficRedirectInterface + INTEGER, + qosTrafficRedirectBlock0Priority + INTEGER, + qosTrafficRedirectBlock1Priority + INTEGER, + qosTrafficRedirectBlock2Priority + INTEGER, + qosTrafficRedirectBlock3Priority + INTEGER, + qosTrafficRedirectBlock4Priority + INTEGER, + qosTrafficRedirectConfigSequence + INTEGER, + qosTrafficRedirectRunning + TruthValue, + qosTrafficRedirectRowStatus + RowStatus, + qosTrafficRedirectBlock5Priority + INTEGER, + qosTrafficRedirectBlock6Priority + INTEGER, + qosTrafficRedirectBlock7Priority + INTEGER, + qosTrafficRedirectBlock8Priority + INTEGER, + qosTrafficRedirectBlock9Priority + INTEGER, + qosTrafficRedirectBlock10Priority + INTEGER, + qosTrafficRedirectBlock11Priority + INTEGER + } + + qosTrafficRedirectIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-redirect QOS. " + ::= { qosTrafficRedirectEntry 1 } + + qosTrafficRedirectUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-redirect QOS user group acl. " + ::= { qosTrafficRedirectEntry 2 } + + qosTrafficRedirectUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-redirect QOS user group acl subitem. " + ::= { qosTrafficRedirectEntry 3 } + + qosTrafficRedirectIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-redirect QOS ip group acl. " + ::= { qosTrafficRedirectEntry 4 } + + qosTrafficRedirectIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-redirect QOS ip group acl subitem. " + ::= { qosTrafficRedirectEntry 5 } + + qosTrafficRedirectLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-redirect QOS link group acl. " + ::= { qosTrafficRedirectEntry 6 } + + qosTrafficRedirectLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-redirect QOS link group acl subitem. " + ::= { qosTrafficRedirectEntry 7 } + + qosTrafficRedirectInterface OBJECT-TYPE + SYNTAX INTEGER (1..28) + ACCESS read-write + STATUS current + DESCRIPTION + "the redirect interface of the traffic-redirect QOS.1£­24 for fast-ethernet port 1£­24£¬25£­26 for giga-ethernet port 1£­2£¬28 for CPU port£¬27 is invaild value. " + ::= { qosTrafficRedirectEntry 8 } + + qosTrafficRedirectBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRedirectEntry 9 } + + qosTrafficRedirectBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRedirectEntry 10 } + + qosTrafficRedirectBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRedirectEntry 11 } + + qosTrafficRedirectBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRedirectEntry 12 } + + qosTrafficRedirectBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRedirectEntry 13 } + + qosTrafficRedirectConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-redirect QOS." + ::= { qosTrafficRedirectEntry 14 } + + qosTrafficRedirectRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-redirect QOS." + ::= { qosTrafficRedirectEntry 15 } + + qosTrafficRedirectRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficRedirectEntry 16 } + + qosTrafficRedirectBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 5 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 17 } + + qosTrafficRedirectBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 6 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 18 } + + qosTrafficRedirectBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 7 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 19 } + + qosTrafficRedirectBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 8 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 20 } + + qosTrafficRedirectBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 9 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 21 } + + qosTrafficRedirectBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 10 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 22 } + + qosTrafficRedirectBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the traffic-redirect QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄÖØ¶¨ÏòÔÚblock 11 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficRedirectEntry 23 } + + ----------------------------------------------------- + -- the traffic statistics QOS + ----------------------------------------------------- + + qosTrafficStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficStatisticsEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-statistics QOS entries. " + ::= { gbnL2QACL 21} + + qosTrafficStatisticsEntry OBJECT-TYPE + SYNTAX QosTrafficStatisticsEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-statistics QOS entries. " + INDEX { qosTrafficStatisticsIndex } + ::= { qosTrafficStatisticsTable 1 } + + QosTrafficStatisticsEntry ::= + SEQUENCE { + qosTrafficStatisticsIndex + INTEGER, + qosTrafficStatisticsUserGroupName + OCTET STRING, + qosTrafficStatisticsUserGroupSubitem + INTEGER, + qosTrafficStatisticsIpGroupName + OCTET STRING, + qosTrafficStatisticsIpGroupSubitem + INTEGER, + qosTrafficStatisticsLinkGroupName + OCTET STRING, + qosTrafficStatisticsLinkGroupSubitem + INTEGER, + qosTrafficStatisticsBlock0Priority + INTEGER, + qosTrafficStatisticsBlock1Priority + INTEGER, + qosTrafficStatisticsBlock2Priority + INTEGER, + qosTrafficStatisticsBlock3Priority + INTEGER, + qosTrafficStatisticsBlock4Priority + INTEGER, + qosTrafficStatisticsConfigSequence + INTEGER, + qosTrafficStatisticsRunning + TruthValue, + qosTrafficStatisticsRowStatus + RowStatus, + qosTrafficStatisticsCounter + Integer32, + qosTrafficStatisticsBlock5Priority + INTEGER, + qosTrafficStatisticsBlock6Priority + INTEGER, + qosTrafficStatisticsBlock7Priority + INTEGER, + qosTrafficStatisticsBlock8Priority + INTEGER, + qosTrafficStatisticsBlock9Priority + INTEGER, + qosTrafficStatisticsBlock10Priority + INTEGER, + qosTrafficStatisticsBlock11Priority + INTEGER, + qosTrafficStatisticsDirection + INTEGER + } + + qosTrafficStatisticsIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-statistics QOS. " + ::= { qosTrafficStatisticsEntry 1 } + + qosTrafficStatisticsUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-statistics QOS user group acl. " + ::= { qosTrafficStatisticsEntry 2 } + + qosTrafficStatisticsUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-statistics QOS user group acl subitem. " + ::= { qosTrafficStatisticsEntry 3 } + + qosTrafficStatisticsIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-statistics QOS ip group acl. " + ::= { qosTrafficStatisticsEntry 4 } + + qosTrafficStatisticsIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-statistics QOS ip group acl subitem. " + ::= { qosTrafficStatisticsEntry 5 } + + qosTrafficStatisticsLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-statistics QOS link group acl. " + ::= { qosTrafficStatisticsEntry 6 } + + qosTrafficStatisticsLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-statistics QOS link group acl subitem. " + ::= { qosTrafficStatisticsEntry 7 } + + qosTrafficStatisticsBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficStatisticsEntry 8 } + + qosTrafficStatisticsBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficStatisticsEntry 9 } + + qosTrafficStatisticsBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficStatisticsEntry 10 } + + qosTrafficStatisticsBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficStatisticsEntry 11 } + + qosTrafficStatisticsBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficStatisticsEntry 12 } + + qosTrafficStatisticsConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-statistics QOS." + ::= { qosTrafficStatisticsEntry 13 } + + qosTrafficStatisticsRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-statistics QOS." + ::= { qosTrafficStatisticsEntry 14 } + + qosTrafficStatisticsRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficStatisticsEntry 15 } + + qosTrafficStatisticsCounter OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the value of the counter." + ::= { qosTrafficStatisticsEntry 16 } + + qosTrafficStatisticsBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 5 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 17 } + + qosTrafficStatisticsBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 6 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 18 } + + qosTrafficStatisticsBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 7 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 19 } + + qosTrafficStatisticsBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 8 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 20 } + + qosTrafficStatisticsBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 9 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 21 } + + qosTrafficStatisticsBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 10 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 22 } + + qosTrafficStatisticsBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the traffic-statistics QOS. 16 means no filter rules in the Hardware." + --Á÷Á¿Í³¼ÆÔÚblock 11 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficStatisticsEntry 23 } + + qosTrafficStatisticsDirection OBJECT-TYPE + SYNTAX INTEGER { + inbound(0), + outbound(1) + } + ACCESS read-write + STATUS current + DESCRIPTION + "ingress/egress of rule.default is inbound" + --Èë¿Ú/³ö¿Úacl£¬Ä¬ÈÏΪÈë¿Ú¡£ + ::= { qosTrafficStatisticsEntry 24 } + ----------------------------------------------------- + -- the line-rate QOS + ----------------------------------------------------- + + qosLineRateTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosLineRateEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of line-rate QOS entries. " + ::= { gbnL2QACL 22 } + + qosLineRateEntry OBJECT-TYPE + SYNTAX QosLineRateEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of line-rate QOS entries. " + INDEX { qosLineRateInterface } + ::= { qosLineRateTable 1 } + + QosLineRateEntry ::= + SEQUENCE { + qosLineRateInterface + INTEGER, + qosLineRateTargetRate + INTEGER + } + + qosLineRateInterface OBJECT-TYPE + SYNTAX INTEGER (1..26) + ACCESS read-only + STATUS current + DESCRIPTION + "the line rate interface. " + ::= { qosLineRateEntry 1 } + + qosLineRateTargetRate OBJECT-TYPE + SYNTAX INTEGER (1..100) + ACCESS read-write + STATUS current + DESCRIPTION + "the target rate of the line-rate QOS. " + ::= { qosLineRateEntry 2 } + + ----------------------------------------------------- + -- the traffic copy to cpu QOS + ----------------------------------------------------- + + qosTrafficCopyToCpuTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficCopyToCpuEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-copy-to-cpu QOS entries. " + ::= { gbnL2QACL 23 } + + qosTrafficCopyToCpuEntry OBJECT-TYPE + SYNTAX QosTrafficCopyToCpuEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-copy-to-cpu QOS entries. " + INDEX { qosTrafficCopyToCpuIndex } + ::= { qosTrafficCopyToCpuTable 1 } + + QosTrafficCopyToCpuEntry ::= + SEQUENCE { + qosTrafficCopyToCpuIndex + INTEGER, + qosTrafficCopyToCpuUserGroupName + OCTET STRING, + qosTrafficCopyToCpuUserGroupSubitem + INTEGER, + qosTrafficCopyToCpuIpGroupName + OCTET STRING, + qosTrafficCopyToCpuIpGroupSubitem + INTEGER, + qosTrafficCopyToCpuLinkGroupName + OCTET STRING, + qosTrafficCopyToCpuLinkGroupSubitem + INTEGER, + qosTrafficCopyToCpuBlock0Priority + INTEGER, + qosTrafficCopyToCpuBlock1Priority + INTEGER, + qosTrafficCopyToCpuBlock2Priority + INTEGER, + qosTrafficCopyToCpuBlock3Priority + INTEGER, + qosTrafficCopyToCpuBlock4Priority + INTEGER, + qosTrafficCopyToCpuConfigSequence + INTEGER, + qosTrafficCopyToCpuRunning + TruthValue, + qosTrafficCopyToCpuRowStatus + RowStatus, + qosTrafficCopyToCpuBlock5Priority + INTEGER, + qosTrafficCopyToCpuBlock6Priority + INTEGER, + qosTrafficCopyToCpuBlock7Priority + INTEGER, + qosTrafficCopyToCpuBlock8Priority + INTEGER, + qosTrafficCopyToCpuBlock9Priority + INTEGER, + qosTrafficCopyToCpuBlock10Priority + INTEGER, + qosTrafficCopyToCpuBlock11Priority + INTEGER + } + + qosTrafficCopyToCpuIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-copy-to-cpu QOS. " + ::= { qosTrafficCopyToCpuEntry 1 } + + qosTrafficCopyToCpuUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-copy-to-cpu QOS user group acl. " + ::= { qosTrafficCopyToCpuEntry 2 } + + qosTrafficCopyToCpuUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-copy-to-cpu QOS user group acl subitem. " + ::= { qosTrafficCopyToCpuEntry 3 } + + qosTrafficCopyToCpuIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-copy-to-cpu QOS ip group acl. " + ::= { qosTrafficCopyToCpuEntry 4 } + + qosTrafficCopyToCpuIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-copy-to-cpu QOS ip group acl subitem. " + ::= { qosTrafficCopyToCpuEntry 5 } + + qosTrafficCopyToCpuLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-copy-to-cpu QOS link group acl. " + ::= { qosTrafficCopyToCpuEntry 6 } + + qosTrafficCopyToCpuLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-copy-to-cpu QOS link group acl subitem. " + ::= { qosTrafficCopyToCpuEntry 7 } + + qosTrafficCopyToCpuBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficCopyToCpuEntry 8 } + + qosTrafficCopyToCpuBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficCopyToCpuEntry 9 } + + qosTrafficCopyToCpuBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficCopyToCpuEntry 10 } + + qosTrafficCopyToCpuBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficCopyToCpuEntry 11 } + + qosTrafficCopyToCpuBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficCopyToCpuEntry 12 } + + qosTrafficCopyToCpuConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-copy-to-cpu QOS." + ::= { qosTrafficCopyToCpuEntry 13 } + + qosTrafficCopyToCpuRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-copy-to-cpu QOS." + ::= { qosTrafficCopyToCpuEntry 14 } + + qosTrafficCopyToCpuRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficCopyToCpuEntry 15 } + + qosTrafficCopyToCpuBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 5 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 16 } + + qosTrafficCopyToCpuBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 6 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 17 } + + qosTrafficCopyToCpuBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 7 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 18 } + + qosTrafficCopyToCpuBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 8 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 19 } + + qosTrafficCopyToCpuBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 9 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 20 } + + qosTrafficCopyToCpuBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 10 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 21 } + + qosTrafficCopyToCpuBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the traffic-copy-to-cpu QOS. 16 means no filter rules in the Hardware." + --±¨ÎÄ¿½±´µ½CPUÔÚblock 11 ÖеÄÓÅÏȼ¶£¬16±íʾûÓйýÂ˹æÔòÔÚÓ²¼þÖÐ + ::= { qosTrafficCopyToCpuEntry 22 } + + ----------------------------------------------------- + -- the port-isolation configuration + ----------------------------------------------------- + qaclAppPortIsolationGroup OBJECT IDENTIFIER ::= { gbnL2QACL 24 } + + qaclAppPortIsolationDownLinkPorts OBJECT-TYPE + SYNTAX PortList + ACCESS read-write + STATUS current + DESCRIPTION + "qacl application port isolation down link portlist" + -- QACLÓ¦Óö˿ڸôÀëµÄÏÂÐж˿ÚÁбí -- + ::= { qaclAppPortIsolationGroup 1 } + + ----------------------------------------------------- + -- the storm control + ----------------------------------------------------- + + stormControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF StormControlEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of storm control entries. " + ::= { gbnL2QACL 25 } + + stormControlEntry OBJECT-TYPE + SYNTAX StormControlEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of storm control entries. " + INDEX { stormControlInterface, stormControlType } + ::= { stormControlTable 1 } + + StormControlEntry ::= + SEQUENCE { + stormControlInterface + INTEGER, + stormControlType + PacketFlowType, + stormControlTargetRate + INTEGER, + stormControlRowStatus + RowStatus + } + + stormControlInterface OBJECT-TYPE + SYNTAX INTEGER (1..26) + ACCESS read-only + STATUS current + DESCRIPTION + "the storm control interface. " + --·ç±©¿ØÖÆ¶Ë¿Ú + ::= { stormControlEntry 1 } + + stormControlType OBJECT-TYPE + SYNTAX PacketFlowType + ACCESS read-only + STATUS current + DESCRIPTION + "the pack flow type of the storm control. " + --·ç±©¿ØÖƱ¨ÎÄÁ÷ÀàÐÍ + ::= { stormControlEntry 2 } + + stormControlTargetRate OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-write + STATUS current + DESCRIPTION + "the target rate of the storm control. " + --·ç±©¿ØÖÆÄ¿±êËÙÂÊ + ::= { stormControlEntry 3 } + + stormControlRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "row status of the storm control" + --·ç±©¿ØÖÆÐÐ״̬ + ::= { stormControlEntry 4 } + + ----------------------------------------------------- + -- the traffic rewrite vlan QOS + ----------------------------------------------------- + + qosTrafficRewriteVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficRewriteVlanEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-rewrite-vlan QOS entries. " + ::= { gbnL2QACL 26 } + + qosTrafficRewriteVlanEntry OBJECT-TYPE + SYNTAX QosTrafficRewriteVlanEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-rewrite-vlan QOS entries. " + INDEX { qosTrafficRewriteVlanIndex } + ::= { qosTrafficRewriteVlanTable 1 } + + QosTrafficRewriteVlanEntry ::= + SEQUENCE { + qosTrafficRewriteVlanIndex + INTEGER, + qosTrafficRewriteVlanUserGroupName + OCTET STRING, + qosTrafficRewriteVlanUserGroupSubitem + INTEGER, + qosTrafficRewriteVlanIpGroupName + OCTET STRING, + qosTrafficRewriteVlanIpGroupSubitem + INTEGER, + qosTrafficRewriteVlanLinkGroupName + OCTET STRING, + qosTrafficRewriteVlanLinkGroupSubitem + INTEGER, + qosTrafficRewriteVlanVid + INTEGER, + qosTrafficRewriteVlanBlock0Priority + INTEGER, + qosTrafficRewriteVlanBlock1Priority + INTEGER, + qosTrafficRewriteVlanBlock2Priority + INTEGER, + qosTrafficRewriteVlanBlock3Priority + INTEGER, + qosTrafficRewriteVlanBlock4Priority + INTEGER, + qosTrafficRewriteVlanConfigSequence + INTEGER, + qosTrafficRewriteVlanRunning + TruthValue, + qosTrafficRewriteVlanRowStatus + RowStatus, + qosTrafficRewriteVlanBlock5Priority + INTEGER, + qosTrafficRewriteVlanBlock6Priority + INTEGER, + qosTrafficRewriteVlanBlock7Priority + INTEGER, + qosTrafficRewriteVlanBlock8Priority + INTEGER, + qosTrafficRewriteVlanBlock9Priority + INTEGER, + qosTrafficRewriteVlanBlock10Priority + INTEGER, + qosTrafficRewriteVlanBlock11Priority + INTEGER + } + + qosTrafficRewriteVlanIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-rewrite-vlan QOS. " + ::= { qosTrafficRewriteVlanEntry 1 } + + qosTrafficRewriteVlanUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-rewrite-vlan QOS user group acl. " + ::= { qosTrafficRewriteVlanEntry 2 } + + qosTrafficRewriteVlanUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-rewrite-vlan QOS user group acl subitem. " + ::= { qosTrafficRewriteVlanEntry 3 } + + qosTrafficRewriteVlanIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-rewrite-vlan QOS ip group acl. " + ::= { qosTrafficRewriteVlanEntry 4 } + + qosTrafficRewriteVlanIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-rewrite-vlan QOS ip group acl subitem. " + ::= { qosTrafficRewriteVlanEntry 5 } + + qosTrafficRewriteVlanLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-rewrite-vlan QOS link group acl. " + ::= { qosTrafficRewriteVlanEntry 6 } + + qosTrafficRewriteVlanLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-rewrite-vlan QOS link group acl subitem. " + ::= { qosTrafficRewriteVlanEntry 7 } + + qosTrafficRewriteVlanVid OBJECT-TYPE + SYNTAX INTEGER (1..28) + ACCESS read-write + STATUS current + DESCRIPTION + "the vlan ID of the traffic-rewrite-vlan QOS.1£­24 for fast-ethernet port 1£­24£¬25£­26 for giga-ethernet port 1£­2£¬28 for CPU port£¬27 is invaild value. " + ::= { qosTrafficRewriteVlanEntry 8 } + + qosTrafficRewriteVlanBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 9 } + + qosTrafficRewriteVlanBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 10 } + + qosTrafficRewriteVlanBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 11 } + + qosTrafficRewriteVlanBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 12 } + + qosTrafficRewriteVlanBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 13 } + + qosTrafficRewriteVlanConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-rewrite-vlan QOS." + ::= { qosTrafficRewriteVlanEntry 14 } + + qosTrafficRewriteVlanRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-rewrite-vlan QOS." + ::= { qosTrafficRewriteVlanEntry 15 } + + qosTrafficRewriteVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficRewriteVlanEntry 16 } + + qosTrafficRewriteVlanBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 17 } + + qosTrafficRewriteVlanBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 18 } + + qosTrafficRewriteVlanBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 19 } + + qosTrafficRewriteVlanBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 20 } + + qosTrafficRewriteVlanBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 21 } + + qosTrafficRewriteVlanBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 22 } + + qosTrafficRewriteVlanBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the traffic-rewrite-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficRewriteVlanEntry 23 } + + ----------------------------------------------------- + -- the traffic insert vlan QOS + ----------------------------------------------------- + + qosTrafficInsertVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTrafficInsertVlanEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-insert-vlan QOS entries. " + ::= { gbnL2QACL 27 } + + qosTrafficInsertVlanEntry OBJECT-TYPE + SYNTAX QosTrafficInsertVlanEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of traffic-insert-vlan QOS entries. " + INDEX { qosTrafficInsertVlanIndex } + ::= { qosTrafficInsertVlanTable 1 } + + QosTrafficInsertVlanEntry ::= + SEQUENCE { + qosTrafficInsertVlanIndex + INTEGER, + qosTrafficInsertVlanUserGroupName + OCTET STRING, + qosTrafficInsertVlanUserGroupSubitem + INTEGER, + qosTrafficInsertVlanIpGroupName + OCTET STRING, + qosTrafficInsertVlanIpGroupSubitem + INTEGER, + qosTrafficInsertVlanLinkGroupName + OCTET STRING, + qosTrafficInsertVlanLinkGroupSubitem + INTEGER, + qosTrafficInsertVlanVid + INTEGER, + qosTrafficInsertVlanBlock0Priority + INTEGER, + qosTrafficInsertVlanBlock1Priority + INTEGER, + qosTrafficInsertVlanBlock2Priority + INTEGER, + qosTrafficInsertVlanBlock3Priority + INTEGER, + qosTrafficInsertVlanBlock4Priority + INTEGER, + qosTrafficInsertVlanConfigSequence + INTEGER, + qosTrafficInsertVlanRunning + TruthValue, + qosTrafficInsertVlanRowStatus + RowStatus, + qosTrafficInsertVlanBlock5Priority + INTEGER, + qosTrafficInsertVlanBlock6Priority + INTEGER, + qosTrafficInsertVlanBlock7Priority + INTEGER, + qosTrafficInsertVlanBlock8Priority + INTEGER, + qosTrafficInsertVlanBlock9Priority + INTEGER, + qosTrafficInsertVlanBlock10Priority + INTEGER, + qosTrafficInsertVlanBlock11Priority + INTEGER + } + + qosTrafficInsertVlanIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each traffic-insert-vlan QOS. " + ::= { qosTrafficInsertVlanEntry 1 } + + qosTrafficInsertVlanUserGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-insert-vlan QOS user group acl. " + ::= { qosTrafficInsertVlanEntry 2 } + + qosTrafficInsertVlanUserGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-insert-vlan QOS user group acl subitem. " + ::= { qosTrafficInsertVlanEntry 3 } + + qosTrafficInsertVlanIpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-insert-vlan QOS ip group acl. " + ::= { qosTrafficInsertVlanEntry 4 } + + qosTrafficInsertVlanIpGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-insert-vlan QOS ip group acl subitem. " + ::= { qosTrafficInsertVlanEntry 5 } + + qosTrafficInsertVlanLinkGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + ACCESS read-write + STATUS current + DESCRIPTION + "the name of the traffic-insert-vlan QOS link group acl. " + ::= { qosTrafficInsertVlanEntry 6 } + + qosTrafficInsertVlanLinkGroupSubitem OBJECT-TYPE + SYNTAX INTEGER(0..127) + ACCESS read-write + STATUS current + DESCRIPTION + "the number of the traffic-insert-vlan QOS link group acl subitem. " + ::= { qosTrafficInsertVlanEntry 7 } + + qosTrafficInsertVlanVid OBJECT-TYPE + SYNTAX INTEGER (1..28) + ACCESS read-write + STATUS current + DESCRIPTION + "the vlan ID of the traffic-insert-vlan QOS.1£­24 for fast-ethernet port 1£­24£¬25£­26 for giga-ethernet port 1£­2£¬28 for CPU port£¬27 is invaild value. " + ::= { qosTrafficInsertVlanEntry 8 } + + qosTrafficInsertVlanBlock0Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 0 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 9 } + + qosTrafficInsertVlanBlock1Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 1 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 10 } + + qosTrafficInsertVlanBlock2Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 2 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 11 } + + qosTrafficInsertVlanBlock3Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 3 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 12 } + + qosTrafficInsertVlanBlock4Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 4 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 13 } + + qosTrafficInsertVlanConfigSequence OBJECT-TYPE + SYNTAX INTEGER(1..1024) + ACCESS read-only + STATUS current + DESCRIPTION + "the config sequence of the traffic-insert-vlan QOS." + ::= { qosTrafficInsertVlanEntry 14 } + + qosTrafficInsertVlanRunning OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the running status of the traffic-insert-vlan QOS." + ::= { qosTrafficInsertVlanEntry 15 } + + qosTrafficInsertVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTrafficInsertVlanEntry 16 } + + qosTrafficInsertVlanBlock5Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 5 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 17 } + + qosTrafficInsertVlanBlock6Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 6 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 18 } + + qosTrafficInsertVlanBlock7Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 7 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 19 } + + qosTrafficInsertVlanBlock8Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 8 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 20 } + + qosTrafficInsertVlanBlock9Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 9 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 21 } + + qosTrafficInsertVlanBlock10Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 10 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 22 } + + qosTrafficInsertVlanBlock11Priority OBJECT-TYPE + SYNTAX INTEGER(0..16) + ACCESS read-only + STATUS current + DESCRIPTION + "the block 11 priority of the traffic-insert-vlan QOS. 16 means no filter rules in the Hardware." + ::= { qosTrafficInsertVlanEntry 23 } + + ----------------------------------------------------- + -- the two rate policer + ----------------------------------------------------- + + qosTwoRatePolicerTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosTwoRatePolicerEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of two rate policer entries. " + ::= { gbnL2QACL 28 } + + qosTwoRatePolicerEntry OBJECT-TYPE + SYNTAX QosTwoRatePolicerEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of two rate policer entries. " + INDEX { qosTwoRatePolicerId } + ::= { qosTwoRatePolicerTable 1 } + + QosTwoRatePolicerEntry ::= + SEQUENCE { + qosTwoRatePolicerId + INTEGER, + qosTwoRatePolicerCir + INTEGER, + qosTwoRatePolicerCbs + INTEGER, + qosTwoRatePolicerPir + INTEGER, + qosTwoRatePolicerPbs + INTEGER, + qosTwoRatePolicerColorAware + TruthValue, + qosTwoRatePolicerL2PriorityRemark + TruthValue, + qosTwoRatePolicerL3PriorityRemark + TruthValue, + qosTwoRatePolicerRemarkDscpCos + TruthValue, + qosTwoRatePolicerRemarkTrafficClass + TruthValue, + qosTwoRatePolicerDropRed + TruthValue, + qosTwoRatePolicerUseNum + INTEGER, + qosTwoRatePolicerRowStatus + RowStatus + } + + qosTwoRatePolicerId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the two rate policer ID. " + ::= { qosTwoRatePolicerEntry 1 } + + qosTwoRatePolicerCir OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the two rate policer Committed Information Rate(CIR). " + ::= { qosTwoRatePolicerEntry 2 } + + qosTwoRatePolicerCbs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the two rate policer Committed Burst Size(CBS). " + ::= { qosTwoRatePolicerEntry 3 } + + qosTwoRatePolicerPir OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the two rate policer Peak Information Rate(PIR). " + ::= { qosTwoRatePolicerEntry 4 } + + qosTwoRatePolicerPbs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the two rate policer Peak Burst Size(PBS). " + ::= { qosTwoRatePolicerEntry 5 } + + qosTwoRatePolicerColorAware OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "the status of the two rate policer color aware mode. " + ::= { qosTwoRatePolicerEntry 6 } + + qosTwoRatePolicerL2PriorityRemark OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "This value determines whether re-marking of packets is done based on Traffic Class or CoS fields determined by previous marking mechanism(i.e. Bridge, Policy, InLIF). " + ::= { qosTwoRatePolicerEntry 7 } + + qosTwoRatePolicerL3PriorityRemark OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "This value determines whether re-marking for IP packets is done based on DSCP field." + ::= { qosTwoRatePolicerEntry 8 } + + qosTwoRatePolicerRemarkDscpCos OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "This value determines if the DSCP and CoS are re-marked. " + ::= { qosTwoRatePolicerEntry 9 } + + qosTwoRatePolicerRemarkTrafficClass OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "This value determines if the traffic class are re-marked. " + ::= { qosTwoRatePolicerEntry 10 } + + qosTwoRatePolicerDropRed OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS current + DESCRIPTION + "This value determines whether packets which are marked red by the traffic policing mechanism will be droped. " + ::= { qosTwoRatePolicerEntry 11 } + + qosTwoRatePolicerUseNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the number of QoS which use this two rate policer . " + ::= { qosTwoRatePolicerEntry 12 } + + qosTwoRatePolicerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { qosTwoRatePolicerEntry 13 } + + ----------------------------------------------------- + -- the L2 priority remark table + ----------------------------------------------------- + + qosL2PriorityRemarkTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosL2PriorityRemarkEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of L2 priority remark entries. " + ::= { gbnL2QACL 29 } + + qosL2PriorityRemarkEntry OBJECT-TYPE + SYNTAX QosL2PriorityRemarkEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of L2 priority remark entries. " + INDEX { qosL2PriorityRemarkColor, qosL2PriorityRemarkOldCos } + ::= { qosL2PriorityRemarkTable 1 } + + QosL2PriorityRemarkEntry ::= + SEQUENCE { + qosL2PriorityRemarkColor + INTEGER, + qosL2PriorityRemarkOldCos + INTEGER, + qosL2PriorityRemarkDscp + INTEGER, + qosL2PriorityRemarkDropPrecedence + INTEGER, + qosL2PriorityRemarkTrafficClass + INTEGER, + qosL2PriorityRemarkCos + INTEGER + } + + qosL2PriorityRemarkColor OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the color of the packet. " + ::= { qosL2PriorityRemarkEntry 1 } + + qosL2PriorityRemarkOldCos OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the old CoS of the packet. " + ::= { qosL2PriorityRemarkEntry 2 } + + qosL2PriorityRemarkDscp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the DSCP applied to the packet. " + ::= { qosL2PriorityRemarkEntry 3 } + + qosL2PriorityRemarkDropPrecedence OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the drop precedence applied to the packet. " + ::= { qosL2PriorityRemarkEntry 4 } + + qosL2PriorityRemarkTrafficClass OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the traffic class applied to the packet. " + ::= { qosL2PriorityRemarkEntry 5 } + + qosL2PriorityRemarkCos OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the CoS applied to the packet. " + ::= { qosL2PriorityRemarkEntry 6 } + + ----------------------------------------------------- + -- the L3 priority remark table + ----------------------------------------------------- + + qosL3PriorityRemarkTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosL3PriorityRemarkEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of L3 priority remark entries. " + ::= { gbnL2QACL 30 } + + qosL3PriorityRemarkEntry OBJECT-TYPE + SYNTAX QosL3PriorityRemarkEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of L3 priority remark entries. " + INDEX { qosL3PriorityRemarkColor, qosL3PriorityRemarkOldDscp } + ::= { qosL3PriorityRemarkTable 1 } + + QosL3PriorityRemarkEntry ::= + SEQUENCE { + qosL3PriorityRemarkColor + INTEGER, + qosL3PriorityRemarkOldDscp + INTEGER, + qosL3PriorityRemarkDscp + INTEGER, + qosL3PriorityRemarkDropPrecedence + INTEGER, + qosL3PriorityRemarkTrafficClass + INTEGER, + qosL3PriorityRemarkCos + INTEGER + } + + qosL3PriorityRemarkColor OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the color of the packet. " + ::= { qosL3PriorityRemarkEntry 1 } + + qosL3PriorityRemarkOldDscp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "the old DSCP of the packet. " + ::= { qosL3PriorityRemarkEntry 2 } + + qosL3PriorityRemarkDscp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the DSCP applied to the packet. " + ::= { qosL3PriorityRemarkEntry 3 } + + qosL3PriorityRemarkDropPrecedence OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the drop precedence applied to the packet. " + ::= { qosL3PriorityRemarkEntry 4 } + + qosL3PriorityRemarkTrafficClass OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the traffic class applied to the packet. " + ::= { qosL3PriorityRemarkEntry 5 } + + qosL3PriorityRemarkCos OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS current + DESCRIPTION + "the CoS applied to the packet. " + ::= { qosL3PriorityRemarkEntry 6 } + ----------------------------------------------------- + -- the trTCM mode + ----------------------------------------------------- + qosRateLimittrTCMMode OBJECT IDENTIFIER ::= { gbnL2QACL 31 } + trTCMMode OBJECT-TYPE + SYNTAX INTEGER{ + colore-aware(1), + color_blind(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "two rate three color marking mode." + ::= { qosRateLimittrTCMMode 1 } + + trTCMPreColorValue OBJECT-TYPE + SYNTAX INTEGER{ + green(0), + red(1), + yellow(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "two rate three color marking pre-color value." + ::= { qosRateLimittrTCMMode 2 } +------------------------------------------------------------- +----acl ipv6 mode +------------------------------------------------------------- + aclIpv6KeyMode OBJECT-TYPE + SYNTAX INTEGER{ + mac(1), + destination_ip(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "mode of ipv6 key,mac(1) means acl-rules can inlcude mac-address,but only include 120~127 bits of destination ipaddressv6. + destination_ip(2) means acl-rules can include all 128 bits of destination ipaddressv6,but can not include mac-address." + ::= { gbnL2QACL 32 } +END diff --git a/mibs/fs/GBNL2Switch-MIB b/mibs/fs/GBNL2Switch-MIB new file mode 100644 index 0000000000..029de1e5c4 --- /dev/null +++ b/mibs/fs/GBNL2Switch-MIB @@ -0,0 +1,1303 @@ + GBNL2Switch-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL2 FROM ADMIN-MASTER-MIB + + SnmpAdminString FROM SNMP-FRAMEWORK-MIB + + PortList, dot1qStaticMulticastEntry FROM Q-BRIDGE-MIB; + + gbnL2Switch MODULE-IDENTITY + LAST-UPDATED "0011020000Z" -- November 2, 2000 + ORGANIZATION "Admin Systems, Inc." + CONTACT-INFO "Admin Systems, Inc. + E-mail: support@admin.com" + + DESCRIPTION "Gbn Common Enterprise MIB definition." + + REVISION "0011020000Z" -- November 2, 2000 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL2 1 } + +------------------------------------------------------------------------------ +-- define groups in GBN-COMMON-MIB +------------------------------------------------------------------------------ + gbnL2SwitchPacket OBJECT IDENTIFIER ::= { gbnL2Switch 1 } + gbnL2SwitchMac OBJECT IDENTIFIER ::= { gbnL2Switch 2 } + gbnL2SwitchMulticast OBJECT IDENTIFIER ::= { gbnL2Switch 3 } + gbnL2SwitchVLAN OBJECT IDENTIFIER ::= { gbnL2Switch 4 } + gbnL2SwitchLacpGroup OBJECT IDENTIFIER ::= { gbnL2Switch 5 } + gbnL2SwitchLacpPort OBJECT IDENTIFIER ::= { gbnL2Switch 6 } + gbnL2SwitchMLD OBJECT IDENTIFIER ::= { gbnL2Switch 7 } +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchPacket - Packet Group +-- +------------------------------------------------------------------------------ + broadcastSuppress OBJECT-TYPE + SYNTAX INTEGER (0..200000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rate limit Value, the maximum number of packets per second the switch should allow to receive ." + ::= { gbnL2SwitchPacket 1 } + + dlfForward OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Control the flooding of dlf packets." + ::= { gbnL2SwitchPacket 2 } + + dlfForwardPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF DlfForwardPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of dlf packets port control." + --¿ØÖƶ˿Úת·¢Î´Öª±¨Îıí + ::= { gbnL2SwitchPacket 3 } + + dlfForwardPortEntry OBJECT-TYPE + SYNTAX DlfForwardPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for dlf packets control." + --¿ØÖÆ×ª·¢Î´Öª±¨ÎıíÏî + INDEX { dlfForwardPort } + ::= { dlfForwardPortTable 1 } + + DlfForwardPortEntry ::= SEQUENCE { + dlfForwardPort INTEGER, + dlfForwardStatus INTEGER + } + + dlfForwardPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number in dlf packets table Item." + --ת·¢Î´Öª±¨ÎıíÏîµÄ¶Ë¿ÚºÅ + ::= { dlfForwardPortEntry 1 } + + dlfForwardStatus OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The dlf packets flag Item." + --ת·¢Î´Öª±¨ÎıíÏîµÄ״̬ + ::= { dlfForwardPortEntry 2 } + +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchMac - MAC Group +-- +------------------------------------------------------------------------------ + macAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of mac address ." + ::= { gbnL2SwitchMac 1 } + + macAddressEntry OBJECT-TYPE + SYNTAX MacAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for mac address ." + INDEX { macAddressMac, macAddressVID, macAddressPort, macAddressStatic } + ::= { macAddressTable 1 } + + MacAddressEntry ::= SEQUENCE { + macAddressMac MacAddress, + macAddressVID INTEGER, + macAddressPort INTEGER, + macAddressStatus INTEGER, + macAddressStatic MacAddress + } + + macAddressMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address in arl table Item." + ::= { macAddressEntry 1 } + + macAddressVID OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vlan ID in arl table Item." + ::= { macAddressEntry 2 } + + macAddressPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number in arl table Item." + ::= { macAddressEntry 3 } + + macAddressStatus OBJECT-TYPE + SYNTAX INTEGER + { + dynamic(1), + static(2), + permanent(3), + backhole(4), + delete(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " " + --macµØÖ·±êÖ¾,dynamic(1)±íʾ¶¯Ì¬macµØÖ·, static(2)±íʾ¾²Ì¬macµØÖ·²»¿ÉÒÔÀÏ»¯, + --permanent(3)±íʾ±£´æÖØÆð½»»»»úʱ,macµØÖ·±íÏ´æÔÚ, + --backhole(4)±íʾ±£´æÖØÆð½»»»»úʱ,macµØÖ·±íÏ´æÔÚ,ÇÒ¶ÔÔ´ÓëÄ¿µÄ¹ýÂË¡£ + + --Ìí¼ÓmacµØÖ·±íÏî²Ù×÷Ôö¼ÓÈçÏ´íÎóºÅ: + + --PermanentMacFULL(-2)±íʾÓÀ¾Ã»ò¹ýÂ˱íÏîÒÑÂú£» + --ArlFULL(-3)±íʾӲ¼þarl±íÒÑÂú£» + --CreateNvmError(-4)±íʾ´´½¨nvm¶ÔÏó´íÎó£» + --InValidVlanID(-6)ÊäÈëµÄvlan IDºÅ¶ÔÓ¦µÄvlanû´´½¨£» + --InValidVlanPort(-7)vlanûÓаüº¬¶ÔÓ¦µÄ¶Ë¿Ú; + --InValidMac(-8)ÎÞЧµÄmacµØÖ·£» + --InValidArgument(-9)ÊäÈëµÄ²ÎÊýȡֵ·¶Î§ÓÐÎó¡£ + + ::= { macAddressEntry 4 } + + macAddressStatic OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Static MAC address in arl table Item." + ::= { macAddressEntry 5 } + + macLearningPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacLearningPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of mac address learning port control." + ::= { gbnL2SwitchMac 2 } + + macLearningPortEntry OBJECT-TYPE + SYNTAX MacLearningPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for mac address learning control." + INDEX { macAddressLearningPort } + ::= { macLearningPortTable 1 } + + MacLearningPortEntry ::= SEQUENCE { + macAddressLearningPort INTEGER, + macAddressLearningStatus INTEGER, + macAddressMaxCount INTEGER + } + + macAddressLearningPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number in mac address learning table Item." + ::= { macLearningPortEntry 1 } + + macAddressLearningStatus OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mac address learning flag Item." + ::= { macLearningPortEntry 2 } + + macAddressMaxCount OBJECT-TYPE + SYNTAX INTEGER (0..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the max mac address number of port.In some products, when macAddressLearningPort is 0, macAddressMaxCount is 0 means mac-control-learnig, others means auto-learning. " + ::= { macLearningPortEntry 3 } + + macAddressLearnCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of mac-address entries including learnt or configured." + --"MACµØÖ·×ÜÊý£¬°üÀ¨×Ô¶¯Ñ§Ï°µÄÒÔ¼°ÊÖ¹¤ÅäÖõÄ" + ::= { gbnL2SwitchMac 3 } +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchMulticast - Multicast Group +-- +------------------------------------------------------------------------------ + igmpSnoopEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { false } + Setting this object to true(1) enables IGMP Snooping. Setting + it to false(2) disables IGMP Snooping. + + Note that IGMP Snooping can function with or without GVRP and + GMRP enabled." + ::= { gbnL2SwitchMulticast 1 } + + + igmpSnoopAlerts OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { false } + Setting this object to true(1) enables the IP Router Alert + Option (as defined in RFC2113) for transmitted IGMP packets. + Setting it to false(2) disables this option." + ::= { gbnL2SwitchMulticast 2 } + + igmpSnoopAging OBJECT-TYPE + SYNTAX Integer32 (10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 300 } + The timeout period in seconds for aging out Multicast Groups + dynamically learned with IGMP Snooping. Note that aging operates + on a per interface per VLAN per multicast group basis." + ::= { gbnL2SwitchMulticast 3 } + + igmpSnoopTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table, which provides IGMP Snooping information, augments + the 'dot1qStaticMulticastTable' in the Q-MIB (RFC2674)." + ::= { gbnL2SwitchMulticast 4 } + + igmpSnoopEntry OBJECT-TYPE + SYNTAX IgmpSnoopEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Displays by VLAN, Multicast Group, and Multicast receive port + the set of ports enabled to forward Multicast Group traffic as + determined by the IGMP Snooping task." + AUGMENTS { dot1qStaticMulticastEntry } + ::= { igmpSnoopTable 1 } + + IgmpSnoopEntry ::= SEQUENCE { + igmpSnoopEgressPorts PortList + } + + igmpSnoopEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This read-only object displays the set of ports enabled to + forward specific Multicast Group traffic as determined by the + IGMP Snooping task. + + It should be noted that the IGMP Snooping task generates a pseudo- + static (i.e., not saved in NVM) port list similar to the RFC2674 + Q-MIB 'dot1qStaticMulticastStaticEgressPorts' object. Consequently, + a port will not be a member of 'gbnCommonIgmpSnoopEgressPorts' if + it is a member of 'dot1qStaticMulticastForbiddenEgressPorts'." + ::= { igmpSnoopEntry 1 } + + igmpSnoopDefaultGroupPolicy OBJECT-TYPE + SYNTAX INTEGER { + deny(0), + permit(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default group learning policy when a group address is not found in + IGMP Snooping white-list and black-list" + --µ±×鵨ַ²»ÔÚIGMP SnoopingºÚ°×Ãûµ¥ÖÐʱ¶Ô¸Ã×é²¥µÄĬÈÏѧϰ¹æÔò + ::= { gbnL2SwitchMulticast 5 } + + igmpSnoopMaxResponseTime OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The timeout period in seconds waited before determinating whether + a group port should be deleted or not after received a leave packet" + --ÔÚ×é¶Ë¿ÚÊÕµ½À뿪±¨Îĺ󣬾ö¶¨ÊÇ·ñɾ³ý¸Ã×é¶Ë¿ÚµÄµÈ´ýʱ¼ä + ::= { gbnL2SwitchMulticast 6 } + + igmpSnoopPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Used to config IGMP Snooping port options,such as group-limit and + fast-leave." + --¸Ã±íÓÃÓÚÅäÖÃIGMP SnoopingÖлùÓÚÿ¸ö¶Ë¿ÚµÄÐÅÏ¢£¬Èç¶Ë¿ÚѧϰÏÞÖÆ£¬ + --¶Ë¿Ú¿ìËÙÀ뿪µÈ¹¦ÄÜ + ::= { gbnL2SwitchMulticast 7 } + + igmpSnoopPortEntry OBJECT-TYPE + SYNTAX IgmpSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of igmpSnoopPortTable." + --igmpSnoopPortTable±íµÄ±íÏîÐÅÏ¢ + INDEX { igmpSnoopPort } + ::= { igmpSnoopPortTable 1 } + + IgmpSnoopPortEntry ::= SEQUENCE { + igmpSnoopPort INTEGER, + igmpSnoopPortFastLeave INTEGER, + igmpSnoopPortGroupLimit INTEGER, + igmpSnoopPortMcastVlan INTEGER + } + + igmpSnoopPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index that uniquely identifies a Ap port within igmpSnoopPortTable." + --¶Ë¿ÚºÅÓÃÓÚigmpSnoopPortTable±íµÄË÷Òý + ::= { igmpSnoopPortEntry 1 } + + igmpSnoopPortFastLeave OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The fast-leave option of a IGMP Snooping port,when set + a group port is deleted immediately on receiving a leave + packet, otherwise a max-response-time should be waited + before deleting the port." + --ÅäÖö˿ڵĿìËÙÀ뿪¹¦ÄÜ£¬Èç¹û¿ªÆôÁ˶˿ڵĿìËÙÀ뿪¹¦ÄÜ£¬ÔÚ + --¶Ë¿ÚÊÕµ½À뿪±¨Îĺó¾Í»áÁ¢¼´Óɶಥ×éÖÐɾ³ý£¬·ñÔòÔÚɾ³ý¶Ë¿Ú + --֮ǰ»áµÈ´ýmax-response-time + ::= { igmpSnoopPortEntry 2 } + + igmpSnoopPortGroupLimit OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max number of Multicast groups a port can learn." + --¶Ë¿ÚÄܹ»Ñ§Ï°µÄ×î´ó¶à²¥×éÊýÄ¿ + ::= { igmpSnoopPortEntry 3 } + + igmpSnoopPortMcastVlan OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a multicast vlan for a port.IGMP report groups received + on the port will be add to the multicast vlan, regardless of the + vlan id indicated by the report packets, a zero vlan means no multicast + vlan is used." + --Ϊ¶Ë¿ÚÖ¸¶¨Ò»¸ö×é²¥vlan£¬¸Ã¶Ë¿ÚÊÕµ½ÁËIGMP±¨¸æ±¨Îĺó¸Ã±¨¸æ×é»á + --±»Ìí¼Óµ½×é²¥VLANÖУ¬Ôò²»¹Ü±¨¸æ±¨ÎÄÖеÄvlanΪºÎÖµ,vlanΪ0±íʾ²»Ê¹Óà + --×é²¥vlan + ::= { igmpSnoopPortEntry 4 } + + igmpSnoopGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to config IGMP Snooping white-list and + black-list." + --¸Ã±íÓÃÓÚÅäÖÃIGMP SnoopingµÄºÚ°×Ãûµ¥ + ::= { gbnL2SwitchMulticast 8 } + + igmpSnoopGroupEntry OBJECT-TYPE + SYNTAX IgmpSnoopGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of igmpSnoopGroupTable." + --igmpSnoopGroupTable±íµÄ±íÏîÐÅÏ¢ + INDEX { igmpSnoopGroupAddress, igmpSnoopGroupPort , igmpSnoopGroupVLAN } + ::= { igmpSnoopGroupTable 1 } + + IgmpSnoopGroupEntry ::= SEQUENCE { + igmpSnoopGroupAddress MacAddress, + igmpSnoopGroupPort INTEGER, + igmpSnoopGroupVLAN INTEGER, + igmpSnoopGroupPolicy INTEGER + } + + igmpSnoopGroupAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a multicast mac-address + within igmpSnoopGroupTable." + --¶à²¥MACµØÖ·ÓÃÓÚË÷ÒýigmpSnoopGroupTable±í + ::= { igmpSnoopGroupEntry 1 } + + igmpSnoopGroupPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a Ap port within igmpSnoopGroupTable." + --¶Ë¿ÚºÅÓÃÓÚË÷ÒýigmpSnoopGroupTable±íµÄË÷Òý + ::= { igmpSnoopGroupEntry 2 } + + igmpSnoopGroupVLAN OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a VLAN ID within igmpSnoopGroupTable." + --VLANºÅÓÃÓÚË÷ÒýigmpSnoopGroupTable±íµÄË÷Òý + ::= { igmpSnoopGroupEntry 3 } + + igmpSnoopGroupPolicy OBJECT-TYPE + SYNTAX INTEGER { + permit(3), + deny(4), + del(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to config IGMP Snooping white-list and + black-list.Policies defined in white-list and black-list are + superior to that has beed defined by igmpSnoopDefaultGroupPolicy. + If group is not found in white-list or black-list then + 'igmpSnoopDefaultGroupPolicy' takes effect" + --ÓÃÓÚÅäÖÃIGMP SnoopingѧϰµÄºÚ°×Ãûµ¥£¬ºÚ°×Ãûµ¥ÖеÄѧϰ¹æÔòÓÅÏȼ¶ + --¸ßÓÚigmpSnoopDefaultGroupPolicy¶¨ÒåµÄĬÈÏѧϰ¹æÔò£¬Èç¹û×éµØÖ·Ã¿ÔÚ + --ºÚ°×Ãûµ¥ÖУ¬ÄÇô×éµÄѧϰȡ¾öÓÚigmpSnoopDefaultGroupPolicyµÄÖµ + ::= { igmpSnoopGroupEntry 4 } + + + crossVlanMulticastEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object to true(1) enables cross-vlan multicast. Setting + it to false(2) disables cross-vlan multicast." + --ÅäÖÿçvlan×鲥״̬£¬1´ò¿ª£¬2¹Ø±Õ + ::= { gbnL2SwitchMulticast 9 } + + crossVlanMulticastTable OBJECT-TYPE + SYNTAX SEQUENCE OF CrossVlanMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Used to config port info of cross-vlan multicast,such as tag/untag and vlanid of tag." + --¿çvlan×é²¥±í£¬ÅäÖö˿ڵĶಥÊôÐÔ£¬°üÀ¨tag/untagÒÔ¼°tagÊôÐÔµÄvlanid + ::= { gbnL2SwitchMulticast 10 } + + crossVlanMulticastEntry OBJECT-TYPE + SYNTAX CrossVlanMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of crossVlanMulticastPortTable." + --¿çvlan×é²¥¶Ë¿ÚÁбí + INDEX { crossVlanPort } + ::= { crossVlanMulticastTable 1 } + + CrossVlanMulticastEntry ::= SEQUENCE { + crossVlanPort Integer32, + crossVlanPortTag TruthValue, + crossVlanPortVid Integer32 + } + + crossVlanPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port number." + --¶Ë¿ÚºÅ + ::= { crossVlanMulticastEntry 1 } + + crossVlanPortTag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object to true(1) of tag. Setting + it to false(2) of untag." + --¶Ë¿Ú µÄtagÊôÐÔ£¬1Ϊtag£¬2Ϊuntag + ::= { crossVlanMulticastEntry 2 } + + + crossVlanPortVid OBJECT-TYPE + SYNTAX Integer32 (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vlanid of tag port." + --¶Ë¿Ú µÄvlanid + ::= { crossVlanMulticastEntry 3 } + + igmpSnoopRoutePortForward OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If the status is enabled, the route port can be added into the group automatically + when an igmp snooping group is created . If the status is disabled, it will be not." + --¿ØÖÆÊÇ·ñ½«Â·ÓÉ¿Ú×Ô¶¯¼ÓÈëµ½IGMP×é²¥ + ::= { gbnL2SwitchMulticast 11 } + +---------------------- IgmpSnooping Profile Function Begin -------------------------- + igmpSnoopProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to config IGMP Snooping white-list and black-list." + ::= { gbnL2SwitchMulticast 12 } + + igmpSnoopProfileEntry OBJECT-TYPE + SYNTAX IgmpSnoopProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of igmpSnoopProfileTable." + INDEX { profileId } + ::= { igmpSnoopProfileTable 1 } + + IgmpSnoopProfileEntry ::= SEQUENCE { + profileId Integer32, + profileDescription DisplayString, + profileLimit Integer32, + profilePortList PortList, + profileRowStatus RowStatus + } + + profileId OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a profile within igmpSnoopProfileTable." + ::= { igmpSnoopProfileEntry 1 } + + profileDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to config profile description." + ::= { igmpSnoopProfileEntry 2 } + + profileLimit OBJECT-TYPE + SYNTAX Integer32 { + permit(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to config group learning policy in the profile." + ::= { igmpSnoopProfileEntry 3 } + + profilePortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to config ports to reference the profile." + ::= { igmpSnoopProfileEntry 4 } + + profileRowStatus OBJECT-TYPE + SYNTAX RowStatus { + active(1), + createAndGo(4), + destroy(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to create or delete a profile within igmpSnoopProfileTable." + ::= { igmpSnoopProfileEntry 5 } + + igmpSnoopProfileIpRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopProfileIpRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to config ip ranges within profiles listed in igmpSnoopProfileTable." + ::= { gbnL2SwitchMulticast 13 } + + igmpSnoopProfileIpRangeEntry OBJECT-TYPE + SYNTAX IgmpSnoopProfileIpRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of igmpSnoopProfileIpRangeTable." + INDEX { profileId, ipRangeStartIp, ipRangeEndIp, ipRangeVlanId } + ::= { igmpSnoopProfileIpRangeTable 1 } + + IgmpSnoopProfileIpRangeEntry ::= SEQUENCE { + ipRangeStartIp IpAddress, + ipRangeEndIp IpAddress, + ipRangeVlanId Integer32, + ipRangeRowStatus RowStatus + } + + ipRangeStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a start ip address." + ::= { igmpSnoopProfileIpRangeEntry 1 } + + ipRangeEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies an end ip address." + ::= { igmpSnoopProfileIpRangeEntry 2 } + + ipRangeVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a vlan." + ::= { igmpSnoopProfileIpRangeEntry 3 } + + ipRangeRowStatus OBJECT-TYPE + SYNTAX RowStatus { + active(1), + createAndGo(4), + destroy(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to create or delete an ip range within igmpSnoopProfileIpRangeTable." + ::= { igmpSnoopProfileIpRangeEntry 4 } + + igmpSnoopProfileMacRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopProfileMacRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to config mac ranges within profiles listed in igmpSnoopProfileTable." + ::= { gbnL2SwitchMulticast 14 } + + igmpSnoopProfileMacRangeEntry OBJECT-TYPE + SYNTAX IgmpSnoopProfileMacRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of igmpSnoopProfileMacRangeTable." + INDEX { profileId, macRangeStartMac, macRangeEndMac, macRangeVlanId } + ::= { igmpSnoopProfileMacRangeTable 1 } + + IgmpSnoopProfileMacRangeEntry ::= SEQUENCE { + macRangeStartMac MacAddress, + macRangeEndMac MacAddress, + macRangeVlanId Integer32, + macRangeRowStatus RowStatus + } + + macRangeStartMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a start mac address." + ::= { igmpSnoopProfileMacRangeEntry 1 } + + macRangeEndMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies an end mac address." + ::= { igmpSnoopProfileMacRangeEntry 2 } + + macRangeVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies a vlan." + ::= { igmpSnoopProfileMacRangeEntry 3 } + + macRangeRowStatus OBJECT-TYPE + SYNTAX RowStatus { + active(1), + createAndGo(4), + destroy(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to create or delete a mac range within igmpSnoopProfileMacRangeTable." + ::= { igmpSnoopProfileMacRangeEntry 4 } + +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchVLAN - VLAN Group +-- +------------------------------------------------------------------------------ + portModeTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of port mode." + ::= { gbnL2SwitchVLAN 1 } + + portModeEntry OBJECT-TYPE + SYNTAX PortModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of portmode parameters." + INDEX { portNumber } + ::= { portModeTable 1 } + + PortModeEntry ::= SEQUENCE { + portNumber Integer32, + portMode INTEGER + } + + portNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port number'." + ::= { portModeEntry 1 } + + portMode OBJECT-TYPE + SYNTAX INTEGER { + trunkPort(1), + accessPort(2), + hybridPort(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "type of mode" + ::= { portModeEntry 2 } +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchLacpGroup - Lacp Channel Group +-- +------------------------------------------------------------------------------ + channelGroupCreate OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Create a channel group ." + ::= { gbnL2SwitchLacpGroup 1 } + + channelGroupDelete OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Delete a channel group. Make sure there is no member in this group ." + ::= { gbnL2SwitchLacpGroup 2 } + + channelGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChannelGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about every + Lacp channel group that is associated with this System. + This table is supported in products:TiNet S3750,TiNet S3526, + TiNet S3026E,TiNet S2016EI,TiNet S2024EI." + --ϵͳÖÐlacpµÄͨµÀ×é±íÏî + ::= { gbnL2SwitchLacpGroup 3 } + + channelGroupEntry OBJECT-TYPE + SYNTAX ChannelGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of the Lacp channel group parameters. This is indexed + by the group index." + --ϵͳÖÐlacp±íÏîµÄ¾ßÌå²ÎÊý£¬Ë÷ÒýΪͨµÀ×éºÅ + INDEX { ChannelGroupIndex } + ::= { channelGroupTable 1 } + + ChannelGroupEntry ::= + SEQUENCE { + channelGroupIndex + INTEGER, + channelGroupPortList + PortList, + channelGroupRule + INTEGER, + channelGroupRowstatus + RowStatus + } + --channelGroupIndex:ͨµÀ×éºÅ + --channelGroupPortList:ͨµÀ×éµÄ¶Ë¿Ú³ÉÔ±Áбí + --channelGroupRule:ͨµÀ×éµÄ¸ºÔؾùºâ²ßÂÔ + --channelGroupRowstatus:ÐÐ״̬ + + channelGroupIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Index of the Lacp Channel group." + --ͨµÀ×éµÄË÷Òý + ::= { channelGroupEntry 1 } + + channelGroupPortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The complete set of ports currently associated with + this Group. Each bit set in this list represents + an Actor Port member of this Group." + --ͨµÀ×éµÄ¶Ë¿Ú³ÉÔ±ÁÐ±í£¬Ã¿Ò»¸öbit´ú±íÒ»¸ö¶Ë¿Ú + + ::= { channelGroupEntry 2 } + + channelGroupRule OBJECT-TYPE + SYNTAX INTEGER { + srcMAC(1), + destMAC(2), + srcXORDestMAC(3), + srcIP(4), + destIP(5), + srcXORDestIP(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " The Rule to be applied to this Link Aggregator's Trunk Group + Table. The rules are based on the following selections SrcMAC (1), + means that the last three bits of the Source MAC Address are used to + index the Trunk Group to get the destination port. DestMAC (2), means + the last three bits of the Destination MAC Address are used to index + into the Trunk Group to get the destination port. SrcXORDestMAC (3), + means that the last three bits of the Source MAC Address are logically + XORed with the last three bits of the Destination MAC Address and used + to index into the Trunk Group to get the destination port. SrcIP (4), + means the last three bits of the Source IP Address are used to index + into the Trunk Group to get the destination port. DestIP (5), means + the last three bits of the Destination IP Address are used to index + into the Trunk Group to get the destination port. SrcXORDestIP (6), + means the last three bits of the Source IP Address are logically XORed + with the last three bits of the Destination IP Address and used to + index into the Trunk Group to get the destination port. This rule + defines the distribution algorithm applied to the aggregated link." + --ͨµÀ×éµÄ¸ºÔؾùºâ²ßÂÔ£¬Ò²¾ÍÊDZ¨ÎÄÔÚ»ã¾Û¶Ë¿Ú×éÖÐÑ¡Ôñ·¢ËͶ˿ڵIJßÂÔ¡£ + --·ÖΪԴMAC¡¢Ä¿µÄMAC¡¢Ô´ºÍÄ¿µÄMAC¡¢Ô´IP¡¢Ä¿µÄIP¡¢Ô´ºÍÄ¿µÄIPÁùÖÖ + --¶ÔÓÚTiNet S2008EIΪֻ¶ÁÊôÐÔ¡£ + ::= { channelGroupEntry 3 } + + + channelGroupRowstatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "rowstatus of channel group." + --ͨµÀ×éµÄÐÐ״̬ + ::= { channelGroupEntry 4 } + +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchLacpPort - Lacp port +-- +------------------------------------------------------------------------------ + lacpPortModeTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpPortModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about every + Lacp channel group that is associated with this System. + This table is supported in products:TiNet S3750,TiNet S3526, + TiNet S3026E,TiNet S2016EI,TiNet S2024EI." + --¶Ë¿Úlacpģʽ±í + ::= { gbnL2SwitchLacpPort 1 } + + lacpPortModeEntry OBJECT-TYPE + SYNTAX LacpPortModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port mode of lacp. This is indexed + by the port number." + --¶Ë¿Úlacpģʽ±í£¬ÒԶ˿ںÅΪË÷Òý + INDEX { portIndex } + ::= { lacpPortModeTable 1 } + + LacpPortModeEntry ::= + SEQUENCE { + portIndex + INTEGER, + portLacpMode + INTEGER, + portLacpRowstatus + RowStatus + } + --portIndex:¶Ë¿ÚË÷Òý + --portLacpMode:¶Ë¿Úlacpģʽ + --portLacpRowstatus£º¶Ë¿ÚÐÐ״̬£¬²»¿Éд + + portIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Index of the port." + --¶Ë¿ÚË÷Òý£¬Ò²¾ÍÊǶ˿ںŠ+ ::= { lacpPortModeEntry 1 } + + portLacpMode OBJECT-TYPE + SYNTAX INTEGER { + static(1), + active(2), + passive(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mode of the Lacp Channel group.Static:link aggregation is + static configguration,and lacp protocol do not run. Active:the port + in this mode can send lacp pdu active.Passive:the port in this mode + just send pdu when needed." + --¶Ë¿Úģʽ¡£staticΪ¾²Ì¬»ã¾Û£¬ÔÚÕâÖж˿ÚÉϲ»ÔËÐÐlacpЭÒ飬ȫÊÖ¶¯ÅäÖᣠ+ --activeΪÖ÷¶¯lacpģʽ£¬¶Ë¿ÚÄܹ»ÖÜÆÚÐԵķ¢ËÍlacp±¨ÎÄ + --passiveΪ±»¶¯lacpģʽ£¬¶Ë¿ÚÖ»ÏìÓ¦lacpЭÉÌ£¬²»Ö÷¶¯·¢Ëͱ¨ÎÄ¡£ + ::= { lacpPortModeEntry 2 } + + portLacpRowstatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "rowstatus of port." + --¶Ë¿ÚÐÐ״̬ + ::= { lacpPortModeEntry 3 } +------------------------------------------------------------------------------ +-- +-- gbnL2SwitchMLD - MLD Group +-- +------------------------------------------------------------------------------ + mldSnoopEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { false } + Setting this object to true(1) enables MLD Snooping. Setting + it to false(2) disables MLD Snooping. + + Note that MLD Snooping can function with or without GVRP and + GMRP enabled." + ::= { gbnL2SwitchMLD 1 } + + + mldSnoopAlerts OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { false } + Setting this object to true(1) enables the IP Router Alert + Option (as defined in RFC2113) for transmitted MLD packets. + Setting it to false(2) disables this option." + ::= { gbnL2SwitchMLD 2 } + + mldSnoopAging OBJECT-TYPE + SYNTAX Integer32 (10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 300 } + The timeout period in seconds for aging out MLD Groups + dynamically learned with MLD Snooping. Note that aging operates + on a per interface per VLAN per multicast group basis." + ::= { gbnL2SwitchMLD 3 } + + mldSnoopTable OBJECT-TYPE + SYNTAX SEQUENCE OF MldSnoopEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table, which provides MLD Snooping information, augments + the 'dot1qStaticMulticastTable' in the Q-MIB (RFC2674)." + ::= { gbnL2SwitchMLD 4 } + + mldSnoopEntry OBJECT-TYPE + SYNTAX MldSnoopEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Displays by VLAN, MLD Group, and MLD receive port + the set of ports enabled to forward MLD Group traffic as + determined by the MLD Snooping task." + AUGMENTS { dot1qStaticMulticastEntry } + ::= { mldSnoopTable 1 } + + MldSnoopEntry ::= + SEQUENCE { + mldSnoopEgressPorts PortList + } + + mldSnoopEgressPorts OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This read-only object displays the set of ports enabled to + forward specific MLD Group traffic as determined by the + MLD Snooping task. + + It should be noted that the MLD Snooping task generates a pseudo- + static (i.e., not saved in NVM) port list similar to the RFC2674 + Q-MIB 'dot1qStaticMulticastStaticEgressPorts' object. Consequently, + a port will not be a member of 'gbnCommonIgmpSnoopEgressPorts' if + it is a member of 'dot1qStaticMulticastForbiddenEgressPorts'." + ::= { mldSnoopEntry 1 } + + mldSnoopDefaultGroupPolicy OBJECT-TYPE + SYNTAX INTEGER { + deny(0), + permit(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default group learning policy when a group address is not found in + MLD Snooping white-list and black-list" + --µ±×鵨ַ²»ÔÚMLD SnoopingºÚ°×Ãûµ¥ÖÐʱ¶Ô¸Ã×é²¥µÄĬÈÏѧϰ¹æÔò + ::= { gbnL2SwitchMLD 5 } + + mldSnoopMaxResponseTime OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The timeout period in seconds waited before determinating whether + a group port should be deleted or not after received a leave packet" + --ÔÚ×é¶Ë¿ÚÊÕµ½À뿪±¨Îĺ󣬾ö¶¨ÊÇ·ñɾ³ý¸Ã×é¶Ë¿ÚµÄµÈ´ýʱ¼ä + ::= { gbnL2SwitchMLD 6 } + + mldSnoopPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MldSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Used to config MLD Snooping port options,such as group-limit and + fast-leave." + --¸Ã±íÓÃÓÚÅäÖÃMLD SnoopingÖлùÓÚÿ¸ö¶Ë¿ÚµÄÐÅÏ¢£¬Èç¶Ë¿ÚѧϰÏÞÖÆ£¬ + --¶Ë¿Ú¿ìËÙÀ뿪µÈ¹¦ÄÜ + ::= { gbnL2SwitchMLD 7 } + + mldSnoopPortEntry OBJECT-TYPE + SYNTAX MldSnoopPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of mldSnoopPortTable." + --mldSnoopPortTable±íµÄ±íÏîÐÅÏ¢ + INDEX { mldSnoopPort } + ::= { mldSnoopPortTable 1 } + + MldSnoopPortEntry ::= SEQUENCE { + mldSnoopPort INTEGER, + mldSnoopPortFastLeave INTEGER, + mldSnoopPortGroupLimit INTEGER, + mldSnoopPortMcastVlan INTEGER + } + + mldSnoopPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index that uniquely identifies a Ap port within mldSnoopPortTable." + --¶Ë¿ÚºÅÓÃÓÚmldSnoopPortTable±íµÄË÷Òý + ::= { mldSnoopPortEntry 1 } + + mldSnoopPortFastLeave OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The fast-leave option of a MLD Snooping port,when set + a group port is deleted immediately on receiving a leave + packet, otherwise a max-response-time should be waited + before deleting the port." + --ÅäÖö˿ڵĿìËÙÀ뿪¹¦ÄÜ£¬Èç¹û¿ªÆôÁ˶˿ڵĿìËÙÀ뿪¹¦ÄÜ£¬ÔÚ + --¶Ë¿ÚÊÕµ½À뿪±¨Îĺó¾Í»áÁ¢¼´Óɶಥ×éÖÐɾ³ý£¬·ñÔòÔÚɾ³ý¶Ë¿Ú + --֮ǰ»áµÈ´ýmax-response-time + ::= { mldSnoopPortEntry 2 } + + mldSnoopPortGroupLimit OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max number of MLD groups a port can learn." + --¶Ë¿ÚÄܹ»Ñ§Ï°µÄ×î´ó¶à²¥×éÊýÄ¿ + ::= { mldSnoopPortEntry 3 } + + mldSnoopPortMcastVlan OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a multicast vlan for a port.MLD report groups received + on the port will be add to the multicast vlan, regardless of the + vlan id indicated by the report packets, a zero vlan means no multicast + vlan is used." + --Ϊ¶Ë¿ÚÖ¸¶¨Ò»¸ö×é²¥vlan£¬¸Ã¶Ë¿ÚÊÕµ½ÁËMLD±¨¸æ±¨Îĺó¸Ã±¨¸æ×é»á + --±»Ìí¼Óµ½×é²¥VLANÖУ¬Ôò²»¹Ü±¨¸æ±¨ÎÄÖеÄvlanΪºÎÖµ,vlanΪ0±íʾ²»Ê¹Óà + --×é²¥vlan + ::= { mldSnoopPortEntry 4 } + + mldSnoopGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF MldSnoopGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to config MLD Snooping white-list and + black-list." + --¸Ã±íÓÃÓÚÅäÖÃMLD SnoopingµÄºÚ°×Ãûµ¥ + ::= { gbnL2SwitchMLD 8 } + + mldSnoopGroupEntry OBJECT-TYPE + SYNTAX MldSnoopGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of mldSnoopGroupTable." + --mldSnoopGroupTable±íµÄ±íÏîÐÅÏ¢ + INDEX { mldSnoopGroupAddress, mldSnoopGroupPort, mldSnoopGroupVLAN } + ::= { mldSnoopGroupTable 1 } + + MldSnoopGroupEntry ::= SEQUENCE { + mldSnoopGroupAddress MacAddress, + mldSnoopGroupPort INTEGER, + mldSnoopGroupVLAN INTEGER, + mldSnoopGroupPolicy INTEGER + } + + mldSnoopGroupAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a multicast mac-address + within mldSnoopGroupTable." + --¶à²¥MACµØÖ·ÓÃÓÚË÷ÒýmldSnoopGroupTable±í + ::= { mldSnoopGroupEntry 1 } + + mldSnoopGroupPort OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a Ap port within mldSnoopGroupTable." + --¶Ë¿ÚºÅÓÃÓÚË÷ÒýmldSnoopGroupTable±íµÄË÷Òý + ::= { mldSnoopGroupEntry 2 } + + mldSnoopGroupVLAN OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a VLAN ID within mldSnoopGroupTable." + --VLANºÅÓÃÓÚË÷ÒýmldSnoopGroupTable±íµÄË÷Òý + ::= { mldSnoopGroupEntry 3 } + + mldSnoopGroupPolicy OBJECT-TYPE + SYNTAX INTEGER { + permit(3), + deny(4), + del(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This entry is used to config MLD Snooping white-list and + black-list.Policies defined in white-list and black-list are + superior to that has beed defined by mldSnoopDefaultGroupPolicy. + If group is not found in white-list or black-list then + 'mldSnoopDefaultGroupPolicy' takes effect" + --ÓÃÓÚÅäÖÃMLD SnoopingѧϰµÄºÚ°×Ãûµ¥£¬ºÚ°×Ãûµ¥ÖеÄѧϰ¹æÔòÓÅÏȼ¶ + --¸ßÓÚmldSnoopDefaultGroupPolicy¶¨ÒåµÄĬÈÏѧϰ¹æÔò£¬Èç¹û×éµØÖ·Ã¿ÔÚ + --ºÚ°×Ãûµ¥ÖУ¬ÄÇô×éµÄѧϰȡ¾öÓÚmldSnoopDefaultGroupPolicyµÄÖµ + ::= { mldSnoopGroupEntry 4 } + + mldSnoopRoutePortForward OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If the status is enabled, the route port can be added into the group automatically + when an mld snooping group is created . If the status is disabled, it will be not." + --¿ØÖÆÊÇ·ñ½«Â·ÓÉ¿Ú×Ô¶¯¼ÓÈëµ½MLD×é²¥ + ::= { gbnL2SwitchMLD 9 } + +-- +-- END of GBN-COMMON-MIB +-- + +END diff --git a/mibs/fs/GBNL3-MIB b/mibs/fs/GBNL3-MIB new file mode 100644 index 0000000000..44fdbca8a6 --- /dev/null +++ b/mibs/fs/GBNL3-MIB @@ -0,0 +1,1138 @@ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- +-- File : gbnL3Mib.mi2 +-- Description : Sample GBN Layer 3 Enterprise MIB - Hardware Independent +-- Version : 0.14 +-- Date : April 12, 2001 +-- +-- Copyright (c) 2000-2001 admin Systems, Inc. All Rights Reserved. +-- +-- Reproduction of this document is authorized on condition that this +-- copyright notice is included. This sample GBN Layer 3 Enterprise MIB +-- embodies proprietary intellectual property of admin Systems (ADMIN). +-- ADMIN retains all title and ownership in the specification, including any +-- revisions. +-- +-- It is the intent of ADMIN to encourage the widespread use of this +-- specification in connection with the management of GBN-based products. +-- ADMIN grants vendors, end-users, and other interested parties a +-- non-exclusive license to use this specification in connection with the +-- management of GBN products. +-- +-- This specification is supplied "AS IS", and ADMIN makes no warranty, +-- either express or implied, as to the use, operations, condition, +-- or performance of this specification. +-- +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- Sample ADMIN GBN Generic Layer 3 Enterprise MIB +-- +-- NOTES: +-- 1. This is a SMIv2 MIB. +-- +-- 2. The Layer 3 (L3) routing groups are defined independent of the +-- underlying hardware or architecture. +-- +-- 3. This MIB is designed to be used with both "Layer 2 and Layer 3 hybrid +-- switches" (L2/L3 hybrid) or with "Layer 3 only" (L3 only) switches. +-- +-- The following groups are supported in the ADMIN GBN L3 Enterprise MIB: +-- - gbnL3Mib GBN Generic Layer 3 Routing MIB: +-- - gbnL3IpMisc Configure and retrieve global L3 objects +-- - gbnL3IpSubnet Configure and retrieve IP subnet objects +-- - gbnL3IpStatic Configure and retrieve IP static routes +-- - gbnL3IpDynamic Configure and retrieve IP dynamic routes +-- - gbnL3IpRoute Configure and retrieve IP routing info +-- +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNL3-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3If FROM GBNL3If-MIB; + + gbnL3Mib MODULE-IDENTITY + LAST-UPDATED "0104120000Z" -- April 12, 200 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Generic Layer 3 MIB definition." + + REVISION "0104120000Z" -- April 12, 200 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3If 1 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ +-- +-- "DURABLE": +-- Objects that are saved across a system reset and/or power cycle +-- are noted as "DURABLE" for convenience in the DESCRIPTION +-- section of the object definition. Code must be explicitly +-- written to implement these DURABLE objects. +-- + +------------------------------------------------------------------------------ +-- groups in the GBN Layer 3 MIB +------------------------------------------------------------------------------ + gbnL3IpMisc OBJECT IDENTIFIER ::= { gbnL3Mib 1 } + gbnL3IpSubnet OBJECT IDENTIFIER ::= { gbnL3Mib 2 } + gbnL3IpStatic OBJECT IDENTIFIER ::= { gbnL3Mib 3 } +-- gbnL3IpDynamic OBJECT IDENTIFIER ::= { gbnL3Mib 4 } + gbnL3IpRoute OBJECT IDENTIFIER ::= { gbnL3Mib 5 } + gbnL3MibConformance OBJECT IDENTIFIER ::= { gbnL3Mib 6 } + gbnL3MibGroups OBJECT IDENTIFIER ::= { gbnL3MibConformance 1 } + gbnL3MibCompliances OBJECT IDENTIFIER ::= { gbnL3MibConformance 2 } + gbnL3IpVr OBJECT IDENTIFIER ::= { gbnL3Mib 7 } + +------------------------------------------------------------------------------ +-- +-- gbnL3IpMisc: +-- This group is used to configure and retrieve miscellaneous global +-- Layer 3 parameters. +-- +------------------------------------------------------------------------------ +-- + gbnL3IpMiscNumLogicalPorts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of logical ports (i.e., L2/L3 hybrid Aggregators or + L3 only interfaces). For GBN, this is normally equal to the + number of physical ports." + ::= { gbnL3IpMisc 1 } + + gbnL3IpMiscRouterId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "the title of a router + it is used when ospf is enable." + ::= { gbnL3IpMisc 2 } + + gbnL3IpMiscRoutingProtocol OBJECT-TYPE + SYNTAX INTEGER { + none(0), -- no dynamic routing protocols + rip(1), -- RIPv1/v2 + ospf(2), -- OSPFv2 + ripandOspf(3), + bgp(4) --BGPv4 + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { none } + The selected dynamic routing protocol. + + Note that static routing is still functional even when this + object is set to none(1)." + ::= { gbnL3IpMisc 3 } + + + gbnL3IpMiscOspfv2Config OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4096)) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "This object is used for retrieving the RFC1850 + Open Shortest Path First version 2 (OSPFv2) nonvolatile + (NVM) configuration data in an ASCII character string format." + + REFERENCE + "RFC1583 OSPFv2, + RFC1850 OSPFv2 MIB, + WindNet OSPFv2 1.1 Release Notes, + WindNet OSPFv2 1.1 User's Guide, Section 6 Configuration" + ::= { gbnL3IpMisc 4 } + + gbnL3IpMiscRouteECMPSupport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used for indicating whether ecmp route is supported." + ::= { gbnL3IpMisc 5 } + + gbnL3IpMiscRouteECMPCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used for indicating the max number of a ecmp route. + when value is 1, means no ecmp." + ::= { gbnL3IpMisc 6 } + + gbnL3IpMiscRouteWCMPSupport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used for indicating whether wcmp route is supported." + ::= { gbnL3IpMisc 7 } + +------------------------------------------------------------------------------ +-- +-- gbnL3IpSubnet: +-- This group is used to configure and retrieve subnet parameters +-- required for the basic routing functionality. Before a "L2/L3 hybrid" +-- VLAN or a "L3 only" interface is used for routing, it must be assigned +-- to at least one subnet. Although GBN supports multiple subnets per +-- VLAN or L3 interface, GBN recommends using one subnet per interface. +-- +-- Note that the subnet IP address is added indirectly. It is calculated +-- by logically AND'ing the Agent's IP address (gbnL3IpSubnetAgentIpAddr) +-- for this subnet with its subnet mask (gbnL3IpSubnetMask). These +-- subnets are automatically added to the software Routing Table by IP +-- and can be seen in the gbnL3IpDynamicRouteTable. +-- +-- For a L2/L3 hybrid switch, a static VLAN must be created for the +-- specified gbnL3IpSubnetVidIface VLAN ID value before this entry can +-- be used. +-- +-- Note that one of the entries for the first interface in this table +-- (i.e., gbnL3IpSubnetIfIndex for the 'sw0' swEND driver) is directly +-- mapped to the IP address parameters in the GBN Common MIB +-- (GBN-COMMON-MIB; i.e., gbnCommonIPIpAddress, gbnCommonIPNetMask). +-- This allows the initial agent IP address to be set using the serial +-- console, BOOTP, or DHCP. The remaining subnet entries can be entered +-- using SNMP or the Web management interfaces. +-- +------------------------------------------------------------------------------ +-- + gbnL3IpSubnetMaxRows OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum possible number of rows in the 'gbnL3IpSubnetTable'." + ::= { gbnL3IpSubnet 1 } + + gbnL3IpSubnetCurrentRows OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of rows in the 'gbnL3IpSubnetTable'." + ::= { gbnL3IpSubnet 2 } + + gbnL3IpSubnetTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3IpSubnetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of subnet parameters. There is one entry + available for each of the 'gbnL3IpSubnetMaxRows' + supported IP subnets." + ::= { gbnL3IpSubnet 3 } + + gbnL3IpSubnetEntry OBJECT-TYPE + SYNTAX GbnL3IpSubnetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of subnet parameters." + INDEX { gbnL3IpSubnetIfIndex, gbnL3IpSubnetAgentIpAddr } + ::= { gbnL3IpSubnetTable 1 } + + GbnL3IpSubnetEntry ::= SEQUENCE { + gbnL3IpSubnetIfIndex Integer32, + gbnL3IpSubnetAgentIpAddr IpAddress, + gbnL3IpSubnetMask IpAddress, + gbnL3IpSubnetVidIface Integer32, + gbnL3IpSubnetName DisplayString, + gbnL3IpSubnetRowStatus RowStatus + } + + gbnL3IpSubnetIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DURABLE: + The ifIndex of the swEND driver associated with this subnet." + ::= { gbnL3IpSubnetEntry 1 } + + gbnL3IpSubnetAgentIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DURABLE: + The network management station uses this IP Address to talk + with the Agent on this subnet. This IP address logically + AND'ed with 'gbnL3IpSubnetMask' yields the actual subnet + value for this subnet." + ::= { gbnL3IpSubnetEntry 2 } + + gbnL3IpSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + The subnet mask for this subnet. It contains 1's in the + bit positions for the net and subnet IDs and 0's in the + bit positions for host ID. The 1's must be contiguous, + starting with the left most bit." + ::= { gbnL3IpSubnetEntry 3 } + + gbnL3IpSubnetVidIface OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { default=0:all } + For a L2/L3 hybrid switch, this object contains the actual + VLAN ID (VID) from 1 to 4094 or 0 if the VID is unassigned. + For a L3 only switch, this object contains the actual switch + interface from 1 to 4094 or 0 if unassigned. + + Changing this object for this row causes all rows with the same + 'gbnL3IpSubnetIfIndex' as this row to be changed to this new + 'gbnL3IpSubnetVidIface' value." + ::= { gbnL3IpSubnetEntry 4 } + + gbnL3IpSubnetName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { '':all ) + A user reference name for this subnet." + ::= { gbnL3IpSubnetEntry 5 } + + gbnL3IpSubnetRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + This object indicates the status of this entry. A row in this + table must be created using the createAndWait(5) action state + (i.e., createAndGo(4) is not supported). This object can only + be set to active(1) after all objects for this row are valid. + The 'gbnL3IpSubnetName' is optional. + + Note that the notInService(2) state is not supported. Objects + in this table row can be changed when this object is notReady(3) + or active(1)." + ::= { gbnL3IpSubnetEntry 6 } + + gbnL3IpSubnetPrimaryIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3IpSubnetPrimaryIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "×ÓÍøµÄÖ÷ipµØÖ·±í¡£" + ::= { gbnL3IpSubnet 4 } + + gbnL3IpSubnetPrimaryIpEntry OBJECT-TYPE + SYNTAX GbnL3IpSubnetPrimaryIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "×ÓÍøµÄÖ÷ipµØÖ·±í¡£" + INDEX { gbnL3IpSubnetPrimaryIpIfIndex} + ::= { gbnL3IpSubnetPrimaryIpTable 1 } + + GbnL3IpSubnetPrimaryIpEntry ::= SEQUENCE { + gbnL3IpSubnetPrimaryIpIfIndex Integer32, + gbnL3IpSubnetPrimaryIpIpAddr IpAddress + } + + gbnL3IpSubnetPrimaryIpIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "½Ó¿ÚµÄË÷Òý¡£" + ::= { gbnL3IpSubnetPrimaryIpEntry 1 } + + gbnL3IpSubnetPrimaryIpIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "½Ó¿ÚµÄÖ÷ipµØÖ·¡£" + ::= { gbnL3IpSubnetPrimaryIpEntry 2 } + +------------------------------------------------------------------------------ +-- +-- gbnL3IpStatic: +-- This group is used to configure and retrieve static routes for both +-- host and subnet IP destinations. +-- +-- This group is independent of the underlying switch hardware and +-- architecture. It indicates how many Host IDs and Subnet IDs that +-- the hardware can directly support, if any. In general, hardware +-- entries route much faster than software entries. +-- +-- The user can choose to reserve zero, some, or all of the available +-- hardware entries for use as static routes. The remaining entries, +-- if any, are reserved for dynamic routes (e.g., RIP, OSPF, etc.). +-- +-- Note that the default route entry (0.0.0.0) cannot be placed in this +-- table. If the default route was ever placed into the hardware route +-- table, unknown routes would never be sent to the CPU (i.e., this would +-- prevent new routes from being learned and/or placed into the hardware +-- route table). The default route is reserved for use by the agent. +-- +------------------------------------------------------------------------------ +-- + gbnL3IpStaticMaxHwHosts OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number, if any, of hosts that the hardware + can support in its routing table. + + Note that if the hardware supports both hosts and subnets + in the same table, this number represents both and + 'gbnL3IpStaticMaxHwSubnets' is zero (0)." + ::= { gbnL3IpStatic 1 } + + gbnL3IpStaticNumStaticHwHosts OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The number of 'gbnL3IpStaticMaxHwHosts' hosts that the user + would like to reserve for static routes. A SNMPv1 badValue + or SNMPv2 wrongValue is returned if the user attempts to use + a value less than zero or greater than 'gbnL3IpStaticMaxHwHosts'. + + WARNING: This value is only used during system initialization + (i.e., after a reset)." + ::= { gbnL3IpStatic 2 } + + gbnL3IpStaticMaxHwSubnets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number, if any, of subnets that the hardware + can support in its routing table. + + Note that if the hardware supports both hosts and subnets + in the same table, this value is zero (0)." + ::= { gbnL3IpStatic 3 } + + gbnL3IpStaticNumStaticHwSubnets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The number of 'gbnL3IpStaticMaxHwSubnets' subnets that the user + would like to reserve for static routes. An A SNMPv1 badValue + or SNMPv2 wrongValue is returned if the user attempts to use a + value less than zero or greater than 'gbnL3IpStaticMaxHwSubnets'. + + WARNING: This value is only used during system initialization + (i.e., after a reset)." + ::= { gbnL3IpStatic 4 } + + gbnL3IpStaticRouteMaxRows OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum possible number of rows in the + 'gbnL3IpStaticRouteTable'." + ::= { gbnL3IpStatic 5 } + + gbnL3IpStaticRouteCurrentRows OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of rows in the 'gbnL3IpStaticRouteTable'." + ::= { gbnL3IpStatic 6 } + + gbnL3IpStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3IpStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of static routes." + ::= { gbnL3IpStatic 7 } + + gbnL3IpStaticRouteEntry OBJECT-TYPE + SYNTAX GbnL3IpStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of static route parameters." + INDEX { gbnL3IpStaticDestIpAddr, gbnL3IpStaticVrId, gbnL3IpStaticECMPIndex } + ::= { gbnL3IpStaticRouteTable 1 } + + GbnL3IpStaticRouteEntry ::= SEQUENCE { + gbnL3IpStaticDestIpAddr IpAddress, + gbnL3IpStaticMask IpAddress, + gbnL3IpStaticNextHop IpAddress, + gbnL3IpStaticName DisplayString, + gbnL3IpStaticUseHw TruthValue, + gbnL3IpStaticInHw TruthValue, + gbnL3IpStaticGateway TruthValue, + gbnL3IpStaticRowStatus RowStatus, + gbnL3IpStaticVrId Integer32, + gbnL3IpStaticECMPIndex Integer32, + gbnL3IpStaticWCMPWeight Integer32 + } + + gbnL3IpStaticDestIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DURABLE: + The static route host or subnet IP destination address. + All IP destination addresses must be non-zero." + ::= { gbnL3IpStaticRouteEntry 1 } + + gbnL3IpStaticMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + The mask for this IP destination. It contains 1's in the + bit positions for the net and subnet IDs and 0's in the + bit positions for host ID. The 1's must be contiguous, + starting with the left most bit. + + Note that a host route uses a 255.255.255.255 mask." + ::= { gbnL3IpStaticRouteEntry 2 } + + gbnL3IpStaticNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of the next hop of this route. + (In the case of a route bound to an interface + which is realized via a broadcast media, the value + of this field is the agent's IP address on that + interface.)" + ::= { gbnL3IpStaticRouteEntry 3 } + + gbnL3IpStaticName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { '':all ) + A user reference name for this Static Route." + ::= { gbnL3IpStaticRouteEntry 4 } + + gbnL3IpStaticUseHw OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { false:all ) + By setting this object to true(1), the user indicates the + desire to use hardware routing for this entry. To disable + hardware routing for this entry, set this object to false(2). + If the underlying switch fabric does not support hardware + routing, this object is ignored. + + There is usually limited space in the hardware routing table. + Consequently, if the user enables hardware routing on 'too' + many entries, the agent assigns routes on a first come, first + serve basis (i.e., the user may not get the expected results)." + DEFVAL { false } + ::= { gbnL3IpStaticRouteEntry 5 } + + gbnL3IpStaticInHw OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this object is true(1), this static route is actually in + the hardware Route Table. Otherwise it is false(2)." + ::= { gbnL3IpStaticRouteEntry 6 } + + gbnL3IpStaticGateway OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { false:all ) + By setting this object to true(1), the user indicates that this + subnet route is a gateway route (i.e., connected to external + router). By setting it to false(2), the user indicates that this + is a direct route. If 'gbnL3IpStaticMask' is '255.255.255.255' + (i.e., a host route) for this entry, this object cannot be set + to true(1)." + DEFVAL { false } + ::= { gbnL3IpStaticRouteEntry 7 } + + gbnL3IpStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + This object indicates the status of this entry. A row in this + table must be created using the createAndWait(5) action state + (i.e., createAndGo(4) is not supported). This object can only + be set to active(1) after all objects for this row are valid. + The 'gbnL3IpStaticName' is optional. + + Note that the notInService(2) state is not supported. Objects + in this table row can be changed when this object is notReady(3) + or active(1)." + ::= { gbnL3IpStaticRouteEntry 8 } + + gbnL3IpStaticVrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: + virtual router index this route belongs to.when not support vrf,it value is always 0." + ::= { gbnL3IpStaticRouteEntry 9 } + + + gbnL3IpStaticECMPIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: + ECMP route index.when device dose not support ECMP,it's value must be 0." + ::= { gbnL3IpStaticRouteEntry 10 } + + gbnL3IpStaticWCMPWeight OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + WCMP route weight.value range 1~(gbnL3IpMiscRouteECMPCount - 1).default value is 1,means ecmp. + change this for wcmp,but all wcmp route's sum can not exceed gbnL3IpMiscRouteECMPCount." + ::= { gbnL3IpStaticRouteEntry 11 } + +------------------------------------------------------------------------------ +-- +-- gbnL3IpRoute: +-- The MIB II Routing Table (ipRouteTable) does not include the +-- information required to support the UNIX style "netstat -nr" command. +-- This group replicates some of the ipRouteTable objects and adds +-- additional objects to support the "netstat -nr" functionality. +-- +-- Note that the "netstat -nr" functionality has not been implemented. +-- +-- This table also provides 'RowStatus' support for the 'ipRouteTable' +-- objects contained in this table. +-- +-- The ipRouteTable objects are not actually duplicated, but use the CCD+ +-- "alternate object" capability to point back to the MIB II ipRouteTable. +-- Note that the utilized ipRouteTable objects are presented here +-- in a more logical order (similar to RFC1354). +-- +------------------------------------------------------------------------------ +-- + gbnL3IpRouteTableCurrentSwEntries OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current entries in the software Routing Table." + ::= { gbnL3IpRoute 1 } + + gbnL3IpRouteCurrentHwHosts OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of hardware host routing table entries currently + in use. If the hardware does not have routing table support, + this value is zero (0). + + If the hardware supports both hosts and subnets + in the same table, this number represents both and + 'gbnL3IpRouteCurrentHwSubnets' is zero (0)." + ::= { gbnL3IpRoute 2 } + + gbnL3IpRouteCurrentHwSubnets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of hardware subnet routing table entries currently + in use. If the hardware does not have routing table support, + this value is zero (0). + + Note that if the hardware supports both hosts and subnets + in the same table, this value is zero (0)." + ::= { gbnL3IpRoute 3 } + + gbnL3IpRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3IpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides Routing Table access. This table can be used to + modify or add Routing Table entries. Changes made with this + table are not saved to NVM (nonvolatile memory). To save + static routes to NVM, use the gbnL3IpStaticRouteTable." + ::= { gbnL3IpRoute 4 } + + gbnL3IpRouteEntry OBJECT-TYPE + SYNTAX GbnL3IpRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides enough routing information to support the UNIX style + 'netstat -nr' command and to support maintenance of the + Routing Table." + INDEX { gbnL3IpRouteDest , gbnL3IpRouteMask, gbnL3IpRouteVrId } + ::= { gbnL3IpRouteTable 1 } + + GbnL3IpRouteEntry ::= + SEQUENCE { + gbnL3IpRouteDest IpAddress, + gbnL3IpRouteMask IpAddress, + gbnL3IpRouteNextHopIp IpAddress, + gbnL3IpRouteNextHopMac MacAddress, + gbnL3IpRouteIfIndex Integer32, + gbnL3IpRouteType INTEGER, + gbnL3IpRouteProto INTEGER, + gbnL3IpRouteAge Unsigned32, + gbnL3IpRouteMetric1 Integer32, + gbnL3IpRouteUsingHw TruthValue, + gbnL3IpRouteIsStatic TruthValue, + gbnL3IpRouteFlags Unsigned32, + gbnL3IpRouteRef Gauge32, + gbnL3IpRouteUse Counter32, + gbnL3IpRouteRowStatus RowStatus, + gbnL3IpRouteVrId Integer32 + } + + gbnL3IpRouteDest OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination IP address of this route. An + entry with a value of 0.0.0.0 is considered a + default route. Multiple routes to a single + destination can appear in the table, but access to + such multiple entries is dependent on the table- + access mechanisms defined by the network + management protocol in use." + ::= { gbnL3IpRouteEntry 1 } + + gbnL3IpRouteMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicate the mask to be logical-ANDed with the + destination address before being compared to the + value in the gbnL3IpRouteDest field. + + If the value of the gbnL3IpRouteDest is 0.0.0.0 (a + default route), then the mask value is also + 0.0.0.0. It should be noted that all IP routing + subsystems implicitly use this mechanism." + ::= { gbnL3IpRouteEntry 2 } + + gbnL3IpRouteNextHopIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of the next hop of this route. + (In the case of a route bound to an interface + which is realized via a broadcast media, the value + of this field is the agent's IP address on that + interface.)" + ::= { gbnL3IpRouteEntry 3 } + + gbnL3IpRouteNextHopMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The six byte MAC address of the next hop of this + route. If the underlying hardware does not support this + object, an octet string of zero length is returned." + ::= { gbnL3IpRouteEntry 4 } + + gbnL3IpRouteIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index value which uniquely identifies the + local interface through which the next hop of this + route should be reached. The interface identified + by a particular value of this index is the same + interface as identified by the same value of + ifIndex." + ::= { gbnL3IpRouteEntry 5 } + + gbnL3IpRouteType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + invalid(2), -- an invalidated route + direct(3), -- route to directly connected (sub-)network + indirect(4) -- route to a non-local + -- host/network/sub-network + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of route. Note that the values + direct(3) and indirect(4) refer to the notion of + direct and indirect routing in the IP architecture. + + Setting this object to the value invalid(2) has + the effect of invalidating the corresponding entry + in the gbnL3IpRouteTable object. That is, it + effectively disassociates the destination + identified with said entry from the route + identified with said entry. It is an + implementation-specific matter as to whether the + agent removes an invalidated entry from the table. + Accordingly, management stations must be prepared + to receive tabular information from agents that + corresponds to entries not currently in use. + Proper interpretation of such entries requires + examination of the relevant gbnL3IpRouteType object." + ::= { gbnL3IpRouteEntry 6 } + + gbnL3IpRouteProto OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + -- non-protocol information, + local(2), -- e.g., manually configured entries + + netmgmt(3), -- set via a network management protocol + + icmp(4), -- obtained via ICMP, e.g., Redirect + + -- the remaining values are all gateway + -- routing protocols + egp(5), + ggp(6), + hello(7), + rip(8), + is-is(9), + es-is(10), + ciscoIgrp(11), + bbnSpfIgp(12), + ospf(13), + bgp(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The routing mechanism via which this route was + learned. Inclusion of values for gateway routing + protocols is not intended to imply that hosts + should support those protocols." + ::= { gbnL3IpRouteEntry 7 } + + gbnL3IpRouteAge OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds since this route was last + updated or otherwise determined to be correct. + Note that no semantics of `too old' can be implied + except through knowledge of the routing protocol + by which the route was learned." + ::= { gbnL3IpRouteEntry 8 } + + gbnL3IpRouteMetric1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The primary routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + gbnL3IpRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { gbnL3IpRouteEntry 9 } + + gbnL3IpRouteUsingHw OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is true(1) if this route is contained in + the hardware routing table; otherwise, it is false(2)." + ::= { gbnL3IpRouteEntry 10 } + + gbnL3IpRouteIsStatic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is true(1) if this route is defined in the + 'gbnL3IpStaticRouteTable'. This object is false(2) if this + route was created dynamically (e.g., with RIP, OSPF) or was + manually created using this table ('gbnL3IpRouteTable') or + the RFC1213 'ipRouteTable'." + ::= { gbnL3IpRouteEntry 11 } + + gbnL3IpRouteFlags OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Not implemented. Returns '0'. + + Contains the information required for a netstat-like + 'Flags' field. + + The flags field represents a decimal value of the flags + specified for a given route. The following is a list of + currently available flag values: + 0x1 | - route is usable (that is, 'up') + 0x2 | - destination is a gateway + 0x4 | - host specific routing entry + 0x8 | - host or net unreachable + 0x10 | - created dynamically (by redirect) + 0x20 | - modified dynamically (by redirect) + 0x40 | - message confirmed + 0x80 | - subnet mask present + 0x100 | - generate new routes on use + 0x200 | - external daemon resolves name + 0x400 | - generated by ARP + 0x800 | - manually added (static) + 0x1000 | - just discard packets (during updates) + 0x2000 | - modified by management protocol + 0x4000 | - protocol specific routing flag + 0x8000 | - protocol specific routing flag + + For example, if the entry in the Routing Table has a flag + value of decimal 5, (0x1 OR'ed with 0x4), then this route + is 'up' and usable and is host-specific." + ::= { gbnL3IpRouteEntry 12 } + + gbnL3IpRouteRef OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Not implemented. Returns '0'. + + Contains the information required for the netstat 'Ref' + field, which indicates the number active uses for this + route." + ::= { gbnL3IpRouteEntry 13 } + + gbnL3IpRouteUse OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Not implemented. Returns '0'. + + Contains the information required for the netstat 'Use' + field, which indicates the number of packets sent with + this route." + ::= { gbnL3IpRouteEntry 14 } + + gbnL3IpRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the status of this entry. A row in this + table must be created using the createAndWait(5) action state + (i.e., createAndGo(4) is not supported). This object can only + be set to active(1) for the specified 'gbnL3IpRouteDest' index + value after the 'gbnL3IpRouteMask' and 'gbnL3IpRouteNextHop' + objects for this row are valid. Setting 'gbnL3IpRouteType' is + optional. + + Note that the notInService(2) state is not supported. Objects + in this table row can be changed when this object is notReady(3) + or active(1)." + ::= { gbnL3IpRouteEntry 15 } + + gbnL3IpRouteVrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: + virtual router index this route belongs to.when not support vrf,it value is always 0." + ::= { gbnL3IpRouteEntry 16 } + +------------------------------------------------------------------------------ +-- conformance information +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- units of conformance +------------------------------------------------------------------------------ + + gbnL3IpMiscGroup OBJECT-GROUP + OBJECTS { + gbnL3IpMiscNumLogicalPorts, + gbnL3IpMiscRoutingProtocol, + gbnL3IpMiscOspfv2Config + } + STATUS current + DESCRIPTION + "This group configures and retrieves global, miscellaneous + L3 objects." + ::= { gbnL3MibGroups 1 } + + gbnL3IpSubnetGroup OBJECT-GROUP + OBJECTS { + gbnL3IpSubnetMaxRows, + gbnL3IpSubnetCurrentRows, + gbnL3IpSubnetMask, + gbnL3IpSubnetVidIface, + gbnL3IpSubnetName, + gbnL3IpSubnetRowStatus + } + STATUS current + DESCRIPTION + "This group configures and retrieves IP subnet objects." + ::= { gbnL3MibGroups 2 } + + gbnL3IpStaticGroup OBJECT-GROUP + OBJECTS { + gbnL3IpStaticMaxHwHosts, + gbnL3IpStaticNumStaticHwHosts, + gbnL3IpStaticMaxHwSubnets, + gbnL3IpStaticNumStaticHwSubnets, + gbnL3IpStaticRouteMaxRows, + gbnL3IpStaticRouteCurrentRows, + gbnL3IpStaticMask, + gbnL3IpStaticNextHop, + gbnL3IpStaticName, + gbnL3IpStaticUseHw, + gbnL3IpStaticInHw, + gbnL3IpStaticGateway, + gbnL3IpStaticRowStatus + } + STATUS current + DESCRIPTION + "This group configures and retrieves IP static routes." + ::= { gbnL3MibGroups 3 } + + gbnL3IpRouteGroup OBJECT-GROUP + OBJECTS { + gbnL3IpRouteTableCurrentSwEntries, + gbnL3IpRouteCurrentHwHosts, + gbnL3IpRouteCurrentHwSubnets, + gbnL3IpRouteMask, + gbnL3IpRouteNextHopIp, + gbnL3IpRouteNextHopMac, + gbnL3IpRouteIfIndex, + gbnL3IpRouteType, + gbnL3IpRouteProto, + gbnL3IpRouteAge, + gbnL3IpRouteMetric1, + gbnL3IpRouteUsingHw, + gbnL3IpRouteIsStatic, + gbnL3IpRouteFlags, + gbnL3IpRouteRef, + gbnL3IpRouteUse, + gbnL3IpRouteRowStatus + } + STATUS current + DESCRIPTION + "This group configures and retrieves IP routing info." + ::= { gbnL3MibGroups 5 } + +------------------------------------------------------------------------------ +-- compliance statements +------------------------------------------------------------------------------ + + gbnL3MibCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement." + MODULE -- this module + MANDATORY-GROUPS { + gbnL3IpMiscGroup, + gbnL3IpSubnetGroup, + gbnL3IpStaticGroup, + gbnL3IpRouteGroup + } + ::= { gbnL3MibCompliances 1 } + +------------------------------------------------------------------------------ +-- +-- gbnL3IpVr: +-- +------------------------------------------------------------------------------ +-- + gbnL3IpSubnetVrTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3IpSubnetVrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of subnet vr parameters. " + ::= { gbnL3IpVr 1 } + + gbnL3IpSubnetVrEntry OBJECT-TYPE + SYNTAX GbnL3IpSubnetVrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of subnet vr parameters." + INDEX { gbnL3IpSubnetVrIfIndex } + ::= { gbnL3IpSubnetVrTable 1 } + + GbnL3IpSubnetVrEntry ::= SEQUENCE { + gbnL3IpSubnetVrIfIndex Integer32, + gbnL3IpSubnetVrId Integer32 + } + + gbnL3IpSubnetVrIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DURABLE: + The ifIndex of the swEND driver associated with this subnet." + ::= { gbnL3IpSubnetVrEntry 1 } + + gbnL3IpSubnetVrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + virtual router index this ip-subnet belongs to.when not support vrf,it value is always 0." + ::= { gbnL3IpSubnetVrEntry 2 } + +-- +-- END of GBN-L3-MIB +-- + +END diff --git a/mibs/fs/GBNL3DhcpRelay-MIB b/mibs/fs/GBNL3DhcpRelay-MIB new file mode 100644 index 0000000000..88408785c7 --- /dev/null +++ b/mibs/fs/GBNL3DhcpRelay-MIB @@ -0,0 +1,238 @@ + GBNL3DhcpRelay-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter32, + TimeTicks, IpAddress FROM SNMPv2-SMI + DisplayString, TruthValue, + RowStatus, MacAddress FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB; + + gbnL3DhcpRelay MODULE-IDENTITY + LAST-UPDATED "0105030000Z" -- May 03,2001 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Enterprise MIB definition." + + REVISION "0105030000Z" -- May 03,2001 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 5 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + + + dhcpRelayEnableStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { gbnL3DhcpRelay 1 } + + dhcpRelayDebugStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "" + ::= { gbnL3DhcpRelay 2 } + + dhcpRelayGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { gbnL3DhcpRelay 3 } + + dhcpRelayGroupEntry OBJECT-TYPE + SYNTAX DhcpRelayGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { dhcpRelaySvrGroupNo } + ::= { dhcpRelayGroupTable 1 } + + DhcpRelayGroupEntry ::= SEQUENCE { + dhcpRelaySvrGroupNo Integer32, + dhcpRelayServerIp IpAddress + } + + dhcpRelaySvrGroupNo OBJECT-TYPE + SYNTAX Integer32(1..256) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group number" + ::= { dhcpRelayGroupEntry 1 } + + + dhcpRelayServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Dhcp Server IP Address of the group" + ::= { dhcpRelayGroupEntry 2 } + + + dhcpRelayIfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayIfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { gbnL3DhcpRelay 4 } + + dhcpRelayIfaceEntry OBJECT-TYPE + SYNTAX DhcpRelayIfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { dhcpRelaySvrVlanIfaceNo, dhcpRelayVlanIfaceGroupNo } + ::= { dhcpRelayIfaceTable 1 } + + DhcpRelayIfaceEntry ::= SEQUENCE { + dhcpRelaySvrVlanIfaceNo Integer32(1..256), + dhcpRelayVlanIfaceGroupNo Integer32(1..8), + dhcpRelayVlanIfaceServerNo Integer32(1..256) + } + + dhcpRelaySvrVlanIfaceNo OBJECT-TYPE + SYNTAX Integer32(1..256) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "interface number" + ::= { dhcpRelayIfaceEntry 1 } + + dhcpRelayVlanIfaceGroupNo OBJECT-TYPE + SYNTAX Integer32(1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Group number of interface" + ::= { dhcpRelayIfaceEntry 2 } + + dhcpRelayVlanIfaceServerNo OBJECT-TYPE + SYNTAX Integer32(1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Dhcp server number" + ::= { dhcpRelayIfaceEntry 3 } + + dhcpRelayHideServerIp OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { gbnL3DhcpRelay 5 } + + dhcpRelayMaxHops OBJECT-TYPE + SYNTAX Integer32(1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp relay max hops" + ::= { gbnL3DhcpRelay 6 } + + dhcpRelayClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRelayClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table for client information on dhcp server. Only Get operation + can execute on the table, not support Get-Next or Walk operation." + ::= { gbnL3DhcpRelay 7 } + + dhcpRelayClientEntry OBJECT-TYPE + SYNTAX DhcpRelayClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for client information on dhcp server." + INDEX { dhcpRelayUserMac } + ::= { dhcpRelayClientTable 1 } + + DhcpRelayClientEntry ::= SEQUENCE { + dhcpRelayUserMac MacAddress, + dhcpRelayVlanId Integer32, + dhcpRelayIpAddress IpAddress, + dhcpRelayHostName DisplayString + } + + dhcpRelayUserMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "mac address of user" + ::= { dhcpRelayClientEntry 1 } + + dhcpRelayVlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id of user" + ::= { dhcpRelayClientEntry 2 } + + dhcpRelayIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ip address of user" + ::= { dhcpRelayClientEntry 3 } + + dhcpRelayHostName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "host name of user" + ::= { dhcpRelayClientEntry 4 } + + dhcpRelaySvrTraps OBJECT IDENTIFIER ::= { gbnL3DhcpRelay 8 } + + dhcpRelaySvrTrapEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable traps on dhcp server" + ::= { dhcpRelaySvrTraps 1 } + + dhcpRelaySvrClientTrap NOTIFICATION-TYPE + OBJECTS { + dhcpRelayUserMac, + dhcpRelayVlanId, + dhcpRelayIpAddress + } + STATUS current + DESCRIPTION + "A trap is sent to the management entity with the OID of the ip + address that has been allocated to client by the dhcp server." + ::= { dhcpRelaySvrTraps 2 } + +END diff --git a/mibs/fs/GBNL3IPPool-MIB b/mibs/fs/GBNL3IPPool-MIB new file mode 100644 index 0000000000..f7f3723110 --- /dev/null +++ b/mibs/fs/GBNL3IPPool-MIB @@ -0,0 +1,450 @@ +------------------------------------------------------------------------------ +-- File : gbnL3IPPool-MIB.mi2 +-- Description : ADMIN Enterprise MIB +-- Version : 0.03 +-- Date : April 03, 2003 +-- +-- Copyright (c) 2002-2005 admin Systems, Inc. All Rights Reserved. +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNL3IPPool-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter32, + TimeTicks, IpAddress FROM SNMPv2-SMI + DisplayString, TruthValue,RowStatus FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB; + + gbnL3IPPoolMib MODULE-IDENTITY + LAST-UPDATED "0105030000Z" -- May 03,2001 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Enterprise MIB definition." + + REVISION "0105030000Z" -- May 03,2001 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 6 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ +-- +-- "DURABLE": +-- Objects that are saved across a system reset and/or power cycle +-- are noted as "DURABLE" for convenience in the DESCRIPTION +-- section of the object definition. Code must be explicitly +-- written to implement these DURABLE objects. +-- + + +------------------------------------------------------------------------------ +-- define groups in gbnL3IPPool-MIB +------------------------------------------------------------------------------ + ipPool OBJECT IDENTIFIER ::= { gbnL3IPPoolMib 1 } + ipPoolTable OBJECT-TYPE + SYNTAX SEQUENCE OF ipPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Ip Pool." + ::= { ipPool 1 } + + + ipPoolEntry OBJECT-TYPE + SYNTAX ipPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry of Ip Pool." + INDEX { ipPoolIndex } + ::= { ipPoolTable 1 } + + ipPoolEntry ::= SEQUENCE { + ipPoolIndex INTEGER(1..12), + ipPoolName DisplayString, + ipPoolGatewayIp IpAddress, + ipPoolSubnetMask IpAddress, + ipPoolPrimaryDNSIp IpAddress, + ipPoolSecondDNSIp IpAddress, + ipPoolThirdDNSIp IpAddress, + ipPoolFourthDNSIp IpAddress, + ipPoolPrimaryNBNSIp IpAddress, + ipPoolSecondNBNSIp IpAddress, + ipPoolLeaseTime Integer32, + ipPoolDnsSuffixName DisplayString, + ipPoolRowStatus RowStatus, + ipPoolRouterIp IpAddress, + ipPoolOption43Format INTEGER, + ipPoolOption43Value OCTET STRING, + ipPoolTftpServerName DisplayString, + ipPoolBootfileName DisplayString, + ipPoolTftpServerIpFirst IpAddress, + ipPoolTftpServerIpSecond IpAddress, + ipPoolTftpServerIpThird IpAddress, + ipPoolTftpServerIpFourth IpAddress, + ipPoolFtpServerUser DisplayString, + ipPoolFtpServerPassword DisplayString, + ipPoolFtpServerIpaddress IpAddress, + ipPoolOption145Hostname DisplayString, + ipPoolOption145Hostver DisplayString + } + + ipPoolIndex OBJECT-TYPE + SYNTAX INTEGER(1..12) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Pool ID" + ::= { ipPoolEntry 1 } + + ipPoolName OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Pool Name ; + It can be made up of only numbers and English letters, + and must begin with a letter." + ::= { ipPoolEntry 2 } + + ipPoolGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Gateway IP Address of the Pool" + ::= { ipPoolEntry 3 } + + ipPoolSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SubnetMask of the Pool" + ::= { ipPoolEntry 4 } + + ipPoolPrimaryDNSIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Address of Primary DNS Server " + ::= { ipPoolEntry 5 } + + ipPoolSecondDNSIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Address of second DNS server " + ::= { ipPoolEntry 6 } + + ipPoolThirdDNSIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Address of second DNS server " + ::= { ipPoolEntry 7 } + + ipPoolFourthDNSIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Address of second DNS server " + ::= { ipPoolEntry 8 } + + + ipPoolPrimaryNBNSIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Address of primary NetBios name server " + ::= { ipPoolEntry 9 } + + ipPoolSecondNBNSIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Address of second NetBios name server " + ::= { ipPoolEntry 10 } + + + + ipPoolLeaseTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Lease time of ip pool" + ::= { ipPoolEntry 11 } + + ipPoolDnsSuffixName OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Pool Dns suffix Name ;" + ::= { ipPoolEntry 12 } + + + ipPoolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Row status" + ::= { ipPoolEntry 13 } + + ipPoolRouterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Router IP Address of the Pool" + ::= { ipPoolEntry 14 } + + ipPoolOption43Format OBJECT-TYPE + SYNTAX INTEGER { + ascii(1), + hex(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "format value of dhcp option 43 of the Pool.need to set this first,then set ipPoolOption43Value" + ::= { ipPoolEntry 15 } + + ipPoolOption43Value OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "value of dhcp option 43 of the Pool.max length is 64, when length is 0, means delete" + ::= { ipPoolEntry 16 } + + ipPoolTftpServerName OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 66: tftp-server name" + ::= { ipPoolEntry 17 } + + ipPoolBootfileName OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 67: bootfile name" + ::= { ipPoolEntry 18 } + + ipPoolTftpServerIpFirst OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 150: tftp-server first ipaddress" + ::= { ipPoolEntry 19 } + ipPoolTftpServerIpSecond OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 150: tftp-server second ipaddress" + ::= { ipPoolEntry 20 } + ipPoolTftpServerIpThird OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 150: tftp-server third ipaddress" + ::= { ipPoolEntry 21 } + ipPoolTftpServerIpFourth OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 150: tftp-server fourth ipaddress" + ::= { ipPoolEntry 22 } + ipPoolFtpServerUser OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 141: FTP/SFTP user name" + ::= { ipPoolEntry 23 } + ipPoolFtpServerPassword OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 142: FTP/SFTP user password" + ::= { ipPoolEntry 24 } + ipPoolFtpServerIpaddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 143: ftp-server ipaddress" + ::= { ipPoolEntry 25 } + ipPoolOption145Hostname OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 145: host name" + ::= { ipPoolEntry 26 } + ipPoolOption145Hostver OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp option 145: host version" + ::= { ipPoolEntry 27 } + ipSectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ipSectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of switch interfaces and associated properties." + ::= { ipPool 2 } + + ipSectionEntry OBJECT-TYPE + SYNTAX ipSectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for switch interface control and status information." + INDEX { ipPoolID,ipSectionID } + ::= { ipSectionTable 1 } + + ipSectionEntry ::= SEQUENCE { + ipPoolID INTEGER(1..12), + ipSectionID INTEGER(1..8), + ipSectionStartIp IpAddress, + ipSectionEndIp IpAddress, + ipSectionIpCount Integer32, + ipSectionRowStatus RowStatus + } + + ipPoolID OBJECT-TYPE + SYNTAX INTEGER(1..12) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Pool ID" + ::= { ipSectionEntry 1 } + + + ipSectionID OBJECT-TYPE + SYNTAX INTEGER(1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "section ID" + ::= { ipSectionEntry 2 } + + ipSectionStartIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The start IP Address of a section in the specified pool " + ::= { ipSectionEntry 3 } + + ipSectionEndIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The end IP Address of a section " + ::= { ipSectionEntry 4 } + + ipSectionIpCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ip address in this section" + ::= { ipSectionEntry 5 } + + ipSectionRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Row status of Entry" + ::= { ipSectionEntry 6 } + +-- +-- END of ipSectionTable +-- + + ipDisableTable OBJECT-TYPE + SYNTAX SEQUENCE OF ipDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of disabled ip." + ::= { ipPool 3 } + + + ipDisableEntry OBJECT-TYPE + SYNTAX ipDisableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry of disabled ip ." + INDEX {ipDisableAddr} + ::= { ipDisableTable 1 } + + ipDisableEntry ::= SEQUENCE { + ipDisableAddr IpAddress, + ipDisablePoolId INTEGER(1..12), + ipDisableStatus INTEGER + } + + ipDisableAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Disabled IP Address" + ::= { ipDisableEntry 1 } + + ipDisablePoolId OBJECT-TYPE + SYNTAX INTEGER(1..12) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Pool ID of a disabled IP" + ::= { ipDisableEntry 2 } + + ipDisableStatus OBJECT-TYPE + SYNTAX INTEGER { + True(1), + False(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "status of Entry" + ::= { ipDisableEntry 3 } + +-- +-- END of gbnL3IPPool-MIB +-- + +END diff --git a/mibs/fs/GBNL3If-MIB b/mibs/fs/GBNL3If-MIB new file mode 100644 index 0000000000..d753c679ab --- /dev/null +++ b/mibs/fs/GBNL3If-MIB @@ -0,0 +1,469 @@ + GBNL3If-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + -- IpAddress FROM RFC1155-SMI + + VlanIndex FROM Q-BRIDGE-MIB + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB; + + gbnL3If MODULE-IDENTITY + LAST-UPDATED "0105102004Z" -- May 10, 2004 + ORGANIZATION "Admin Systems, Inc." + CONTACT-INFO "Admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Generic router id MIB definition." + + REVISION "0105102004Z" -- May 10, 2004 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 1 } + + + +------------------------------------------------------------------------------ +-- gbnL3Mib OBJECT IDENTIFIER ::= { gbnL3If 1 } + gbnL3SuperVLAN OBJECT IDENTIFIER ::= { gbnL3If 2 } + gbnL3Arp OBJECT IDENTIFIER ::= { gbnL3If 3 } + gbnL3IP OBJECT IDENTIFIER ::= { gbnL3If 4 } + gbnL3DHCP OBJECT IDENTIFIER ::= { gbnL3If 5 } + gbnL3URPF OBJECT IDENTIFIER ::= { gbnL3If 6 } +------------------------------------------------------------------------------ +-- +-- gbnL3SuperVLAN: +-- +-- +------------------------------------------------------------------------------ + arpProxy OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the ARP proxy." + ::= { gbnL3SuperVLAN 1 } + + superVLANTable OBJECT-TYPE + SYNTAX SEQUENCE OF SuperVLANEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of superVLAN.When create a new entry,must set superVLANStatus to be active to create + a entry first,or set superVLANsw/superVLANsuper fisrt will return no suchinstanc error" + ::= { gbnL3SuperVLAN 2 } + + superVLANEntry OBJECT-TYPE + SYNTAX SuperVLANEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for superVLAN." + INDEX { superVLANVID } + ::= { superVLANTable 1 } + + SuperVLANEntry ::= SEQUENCE { + superVLANVID INTEGER, + superVLANsw INTEGER, + superVLANsuper TruthValue, + superVLANStatus RowStatus + } + + superVLANVID OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vlan id." + ::= { superVLANEntry 1 } + + superVLANsw OBJECT-TYPE + SYNTAX INTEGER (0..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sw,0 means not existting." + ::= { superVLANEntry 2 } + + superVLANsuper OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interface is superVLAN or not" + ::= { superVLANEntry 3 } + + superVLANStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the status of this entry" + ::= { superVLANEntry 4 } + + +------------------------------------------------------------------------------ +-- +-- gbnL3Arp: +-- +-- +------------------------------------------------------------------------------ + arpTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "´Ë±íΪϵͳARPµÄ¸ßËÙ»º´æ±í£¬ÔÚrfc1213ÖÐÒѾ­¶¨ÒåÁËÁ½¸öÓйØÏµÍ³ + ARPµÄ±í¸ñ£ºat×éÖеÄatTableºÍip×éÖеÄipNetToMediaTable£¬µ«´ËÁ½ + ¸ö±íûÓÐVLANÐÅÏ¢ºÍ½»»»»ú¶Ë¿ÚÐÅÏ¢£¬¹Ê¶¨Òå´ËÀ©Õ¹±í¡£" + ::= { gbnL3Arp 1 } + + arpEntry OBJECT-TYPE + SYNTAX ArpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "ϵͳARPµÄ¸ßËÙ»º´æ±í¡£" + INDEX { arpIpAddress } + ::= { arpTable 1 } + + ArpEntry ::= + SEQUENCE { + arpIpAddress IpAddress, + arpMacAddress MacAddress, + arpIfIndex INTEGER, + arpVlan INTEGER, + arpPort INTEGER, + arpType INTEGER, + arpRowStatus RowStatus + } + + arpIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "IPµØÖ·£¬×÷ΪË÷Òý¡£" + ::= { arpEntry 1 } + + arpMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "IPµØÖ·¶ÔÓ¦µÄMACµØÖ·¡£" + ::= { arpEntry 2 } + + arpIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION "IPµØÖ·ËùÔڵĽӿÚË÷Òý¡£" + ::= { arpEntry 3 } + + arpVlan OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION "IPµØÖ·ËùÔÚµÄVLAN¡£" + ::= { arpEntry 4 } + + arpPort OBJECT-TYPE + SYNTAX INTEGER (1..26) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "ѧϰµ½IPµØÖ·µÄ½»»»»ú¶Ë¿ÚºÅ¡£" + ::= { arpEntry 5 } + + arpType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2),--ÎÞЧARP±íÏî + dynamic(3),--ѧϰµ½µÄARP±íÏî + static(4) --¾²Ì¬Ìí¼ÓµÄARP±íÏî + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "´ËARP±íÏîµÄÀàÐÍ¡£" + ::= { arpEntry 6 } + + arpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "´ËARP±íÏîµÄ״̬£¬ÓÃÀ´Ìí¼Ó/ɾ³ý¾²Ì¬ARP±íÏativeΪÌí¼Ó£¬destroyΪɾ³ý¡£´´½¨±íÏîʱÊ×ÏÈ + Ìí¼ÓmacµØÖ·£¬Ö»ÓÐÌí¼ÓÁËVLANºÍ¶Ë¿Úºóactive²Å¿ÉÒÔ·µ»Ø³É¹¦¡£" + ::= { arpEntry 7 } + + arpAging OBJECT-TYPE + SYNTAX INTEGER(3..2880) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The age time of dynamic arp entry.Unit is minute.Default is 20." + --arp±íµÄÀÏ»¯Ê±¼ä£¬µ¥Î»Îª·ÖÖÓ£¬Ä¬ÈÏΪ20·ÖÖÓ¡£ + ::= { gbnL3Arp 2 } + + arpNum OBJECT-TYPE + SYNTAX INTEGER(0..8192) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Total arp entries." + --arpÌõÄ¿µÄ×ܸöÊý¡£ + ::= { gbnL3Arp 3 } + +------------------------------------------------------------------------------ +-- +-- gbnL3IP: +-- +-- +------------------------------------------------------------------------------ + ipRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ipaddress range for VLAN/Supervlan interface." + --VLAN/SuperVLAN½Ó¿ÚµÄIPµØÖ··¶Î§ÏÞÖÆ±í. + ::= { gbnL3IP 1 } + + ipRangeEntry OBJECT-TYPE + SYNTAX IpRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for ipRangeTable." + INDEX { ipRangeIndex } + ::= { ipRangeTable 1 } + + IpRangeEntry ::= SEQUENCE { + ipRangeSW Integer32, + ipRangeIndex Integer32, + ipRangeStartIP IpAddress, + ipRangeEndIP IpAddress, + ipRangeStatus RowStatus + } + + ipRangeSW OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sw,for 3526 1-32, for 3750 1-256" + --IP½Ó¿ÚµÄID,ΪgbnL3IpSubnetIfIndexµÄºó2¸ö×Ö½ÚµÄȡֵ,¶ÔÓÚ3526·¶Î§Îª1-12,¶ø¶ÔÓÚ3750Ϊ1-256 + ::= { ipRangeEntry 1 } + + ipRangeIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index number of range." + --ÿ¸öIP½Ó¿Ú¿ÉÒÔ×î¶àÅäÖÃ2048/4096¸ö×Ó·¶Î§. + ::= { ipRangeEntry 2 } + + ipRangeStartIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The start ipaddress of this range." + --¿ªÊ¼IPµØÖ·. + ::= { ipRangeEntry 3 } + + ipRangeEndIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The end ipaddress of this range." + --½áÊøIPµØÖ·. + ::= { ipRangeEntry 4 } + + ipRangeStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the status of this entry" + ::= { ipRangeEntry 5 } + +------------------------------------------------------------------------------ +-- +-- gbnL3DHCP: +-- +-- +------------------------------------------------------------------------------ + Option82 OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable option82.Default is disalbe" + --DHCPÖмÌoption82¿ª¹Ø.ĬÈÏΪ¹Ø±Õ + ::= { gbnL3DHCP 1 } + + Option82Strategy OBJECT-TYPE + SYNTAX INTEGER{ + drop(1), + keep(2), + replace(3) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Actions when receive packets with option82." + --ÔÚoption82¿ªÆôºóµ±DHCPÖм̽ÓÊÕµ½´øoption82Ñ¡ÏîÄÚÈݵı¨ÎÄʱ²ÉÈ¡µÄ²ßÂÔ. + --dropΪ¶ªÆú±¨ÎÄ,keepΪ±£Áô±¨ÎĵÄoption82Ñ¡ÏîÄÚÈÝ,¶øreplaceÎªÌæ»»±¨ÎÄÖеÄoption82ÄÚÈÝ. + --ĬÈÏΪreplace + ::= { gbnL3DHCP 2 } + + option82Format OBJECT-TYPE + SYNTAX INTEGER{ + normal(1), + verbose(2), + henan(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "packet format of dhcp option 82.Default is normal(1)" + ::= { gbnL3DHCP 3 } + + option82FormatVerboseNodeIdentifier OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "when format is verbose,can set value of node-identifier.Except special string listing below, others string means user-define string. + default is 0 length of value, means use switch mac" + --"hostname" means switch hostname + ::= { gbnL3DHCP 4 } + + option82PortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Option82PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A port table of dhcp option 82." + ::= { gbnL3DHCP 5 } + + option82PortEntry OBJECT-TYPE + SYNTAX Option82PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for option82PortTable." + INDEX { option82PortIndex } + ::= { option82PortTable 1 } + + Option82PortEntry ::= SEQUENCE { + option82PortIndex Integer32, + option82PortStrategy INTEGER, + option82PortCircuitId DisplayString, + option82PortRemoteId DisplayString + } + + option82PortIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "port index" + ::= { option82PortEntry 1 } + + option82PortStrategy OBJECT-TYPE + SYNTAX INTEGER{ + drop(1), + keep(2), + replace(3), + appendhostname(4), + appendhostnameip(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Actions when receive packets with option82.drop(1) means drop packets, keep(2) means not change the packet + replace(3) means relace option82 value, appendhostname(4) means append option82 suboption 9 with hostname, + appendhostnameip(5) means append option82 suboption 9 with hostname and ip.default is replace(3)." + ::= { option82PortEntry 2 } + + option82PortCircuitId OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "circuit-id string of port.default is 0 length of value." + ::= { option82PortEntry 3 } + + option82PortRemoteId OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "circuit-id string of port.default is 0 length of value.Except special string listing below, others string means user-define string. " + --"hostname" means switch hostname + ::= { option82PortEntry 4 } + +------------------------------------------------------------------------------ +-- +-- gbnL3URPF: +-- +-- +------------------------------------------------------------------------------ + UrpfTable OBJECT-TYPE + SYNTAX SEQUENCE OF UrpfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of URPF state of every interface.Each interface can be of URPF strict mode, + URPF loose mode,or be URPF turned off. " + ::= { gbnL3URPF 1 } + + urpfEntry OBJECT-TYPE + SYNTAX UrpfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for UrpfTable." + INDEX { urpfIfIndex } + ::= { UrpfTable 1 } + + UrpfEntry ::= SEQUENCE { + urpfIfIndex INTEGER, + urpfState INTEGER + } + + urpfIfIndex OBJECT-TYPE + SYNTAX INTEGER(1..512) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface index,for 3650 1-256, for 3750-48 1-512" + --½Ó¿ÚË÷Òý + ::= { urpfEntry 1 } + + urpfState OBJECT-TYPE + SYNTAX INTEGER{ + off(1), + strict(2), + loose(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "URPF state." + --urpf ״̬£¬Ä¬ÈÏΪ¹Ø±Õ + ::= { urpfEntry 2 } + +END diff --git a/mibs/fs/GBNL3Igmp-MIB b/mibs/fs/GBNL3Igmp-MIB new file mode 100644 index 0000000000..e87173fcf2 --- /dev/null +++ b/mibs/fs/GBNL3Igmp-MIB @@ -0,0 +1,527 @@ + GBNL3Igmp-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter64,IpAddress FROM SNMPv2-SMI + + DisplayString, TruthValue,MacAddress,RowStatus FROM SNMPv2-TC + + PortList FROM Q-BRIDGE-MIB + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB + + mib-2 FROM RFC1213-MIB; + + + gbnL3IgmpMib MODULE-IDENTITY + LAST-UPDATED "0411190001Z" -- November 19,2004 + ORGANIZATION "Admin Co. Ltd, Inc." + CONTACT-INFO "Admin Co. Ltd, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Enterprise MIB definition." + + REVISION "0411190001Z" -- November 19,2004 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 7 } + +PortList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + ports, with the first octet specifying ports 1 through + 8, the second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit represents + the lowest numbered port, and the least significant bit + represents the highest numbered port. Thus, each port + of the bridge is represented by a single bit within the + value of this object. If that bit has a value of '1' + then that port is included in the set of ports; the port + is not included if its bit has a value of '0'." + SYNTAX OCTET STRING + + gbnL3IgmpProxyGroup OBJECT IDENTIFIER ::= { gbnL3IgmpMib 1 } + + + igmpProxyEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enabled status of igmp proxy on this switch." + --ÔÚ½»»»»úÉÏ´ò¿ªigmp´úÀíµÄʹÄÜ״̬ + ::= { gbnL3IgmpProxyGroup 1 } + + igmpProxyIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interface from which all IP multicast datagrams are received, + or 0 if the upstream interface is not configged." + --ÉÏÐнӿÚË÷Òý£¬IGMP´ò¿ª´úÀí¹¦Äܺó£¬×÷Ϊһ¸öÖ÷»úÏò´Ë + --½Ó¿Ú·¢Ëͱ¨¸æºÍÀ뿪±¨ÎÄ¡£ + ::= { gbnL3IgmpProxyGroup 2 } + + igmpGrpNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The summation of group which is learned from IGMP and + configged statically." + --ͨ¹ýIGMPѧϰºÍ¾²Ì¬ÅäÖõĶಥ×éÊý + ::= { gbnL3IgmpProxyGroup 3 } + + igmpGrpMembNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The summation of group member which is learned from IGMP + and configged statically." + --ͨ¹ýIGMPѧϰºÍ¾²Ì¬ÅäÖõĶಥ³ÉÔ±Êý + ::= { gbnL3IgmpProxyGroup 4 } + +-- IGMP interface extend MIB + + igmpIfExTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpIfExEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IGMP interface extend information including the configured access control + list and querier timeout." + --IGMPµÄ·ÃÎÊ¿ØÖÆÁÐ±í¶¨ÒåºÍ²éѯÕßÉú´æÊ±¼äµÈ + ::= { gbnL3IgmpMib 2 } + + igmpIfExEntry OBJECT-TYPE + SYNTAX IgmpIfExEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the configured ACL and querier timeout ." + --·ÃÎÊ¿ØÖÆÁбíÐÅÏ¢ + INDEX { igmpifIndex } + ::= { igmpIfExTable 1 } + + IgmpIfExEntry ::= + SEQUENCE { + igmpifIndex Integer32, + igmpIfPortList PortList, + igmpifAccessNum Integer32, + igmpifQuerierExpire Integer32, + igmpifV2QuerierTimer TimeTicks, + igmpifLimiGroupNum Integer32, + igmpifSSMMappingEnable TruthValue + } + + igmpifIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the index of the interface receiving IGMP packets." + --½ÓÊÕIGMP±¨ÎĵĽӿÚË÷Òý + ::= { igmpIfExEntry 1 } + + igmpIfPortList OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the ports filter IGMP packets in this interface." + --¹ýÂËIGMP±¨ÎĵĶ˿ÚÁбí + ::= { igmpIfExEntry 2 } + + igmpifAccessNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the number of the access control list used to filter IGMP packet" + --ÓÃÓÚ¹ýÂËIGMP±¨ÎĵķÃÎÊ¿ØÖÆÁбíºÅ + ::= { igmpIfExEntry 3 } + + igmpifQuerierExpire OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The amount of time elapsed before the Other Querier + Present Timer expires" + --²éѯÕß³¬Ê±Ê±¼ä£¬µ±ÆäËû²éѯÕß´æÔÚʱ±ØÐëÒªµÈÒ»¶Îʱ¼ä£¬ÔÚÕâ¶Îʱ¼äÄÚ + --ûÓÐÊÕµ½ÆäËû²éѯÕߵIJéѯ±¨Îĺ󣬱¾µØ²ÅÄܳÉΪ²éѯÕß¡£ + ::= { igmpIfExEntry 4 } + + igmpifV2QuerierTimer OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time remaining until the host assumes that there are no + IGMPv2 routers present on the interface. While this is non- + zero and igmpInterfaceV1QuerierTimer is zero, the host will + reply to all queries with version 2 membership reports." + --v2°æ±¾²éѯÕß³¬Ê±¶¨Ê±Æ÷¡£µ±¸ÃÖµ²»Îª0£¬ÇÒv1°æ±¾²éѯÕß³¬Ê±¶¨Ê± + --Æ÷Ϊ0ʱ£¬½«¶¨Ê±·¢ËÍv2µÄ²éѯ±¨ÎÄ¡£ + ::= { igmpIfExEntry 5 } + + igmpifLimiGroupNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the limit count of group for the interface" + --ÏÞÖÆ½Ó¿Ú¼ÓÈëµÄ¶à²¥×é¸öÊý¡£Ä¬ÈÏֵΪ²úÆ·ËùÖ§³ÖµÄ×î´ó¶à²¥×é¸öÊý£¬ÈçS3526Ϊ255£¬S3750Ϊ1024 + ::= { igmpIfExEntry 6 } + + igmpifSSMMappingEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enabled status of igmp ssm-mapping on this interface." + --ÔÚ½Ó¿ÚÉÏ´ò¿ªigmp ssmÓ³ÉäµÄʹÄÜ״̬ + ::= { igmpIfExEntry 7 } + + + igmpGroupVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpGroupVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " the list information of static group and ingress vlan." + --¾²Ì¬¶à²¥×éºÍÈëvlanÐÅÏ¢±í + ::= { gbnL3IgmpMib 3 } + + igmpGroupVlanEntry OBJECT-TYPE + SYNTAX IgmpGroupVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " entry of information about static group and ingress vlan" + --¾²Ì¬¶à²¥×éºÍÈëvlan±íÏî + INDEX { igmpGroupIP, igmpVlanID } + ::= { igmpGroupVlanTable 1 } + + IgmpGroupVlanEntry ::= SEQUENCE { + igmpGroupIP IpAddress, + igmpVlanID Integer32, + igmpGroupVlanStatus RowStatus + } + + igmpGroupIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " the static multicast group ip " + --¾²Ì¬¶à²¥×é + ::= { igmpGroupVlanEntry 1 } + igmpVlanID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the specific ingress vlan" + --Ö¸¶¨Èëvlan + ::= { igmpGroupVlanEntry 2 } + igmpGroupVlanStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this entry." + --±íÏî״̬ + ::= { igmpGroupVlanEntry 3 } + + +-- igmpCacheExTable extend MIB +-- igmp¶à²¥×é±íÀ©Õ¹.added by xzy (2006-8-2 for igmpv3) + + FilterMode ::= INTEGER { + include(1), + exclude(2) + } + + igmpCacheExTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpCacheExEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IGMP cache extend information including the configured filter mode and source list." + --IGMPµÄ×é¹ýÂËģʽºÍÔ´µØÖ·ÁбíµÈ + ::= { gbnL3IgmpMib 4 } + + + igmpCacheExEntry OBJECT-TYPE + SYNTAX IgmpCacheExEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the configured filter mode and source list." + --×é¹ýÂËģʽºÍÔ´µØÖ·ÁбíÐÅÏ¢ + INDEX { igmpCacheAddressEx, igmpCacheIfIdxEx } + ::= { igmpCacheExTable 1 } + + IgmpCacheExEntry ::= SEQUENCE { + igmpCacheAddressEx IpAddress, + igmpCacheIfIdxEx Integer32, + igmpCacheVersion2HostTimer TimeTicks, + igmpCacheFilterMode FilterMode, + igmpCacheStatic TruthValue + } + + + + igmpCacheAddressEx OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP multicast group address for which this entry + contains information." + --¶à²¥×鵨ַ + ::= { igmpCacheExEntry 1 } + + igmpCacheIfIdxEx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The interface for which this entry contains information for + an IP multicast group address." + --½Ó¿ÚË÷Òý + ::= { igmpCacheExEntry 2 } + + igmpCacheVersion2HostTimer OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time remaining until the local router will assume that + there are no longer any IGMP version 2 members on the IP + subnet attached to this interface. Upon hearing any IGMPv2 + Membership Report, this value is reset to the group + membership timer." + --v2Ö÷»ú´æÔÚʱ¼ä¶¨Ê±Æ÷ + ::= { igmpCacheExEntry 3 } + + igmpCacheFilterMode OBJECT-TYPE + SYNTAX FilterMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Filter Mode for the IP multicast group address." + --×éµÄ¹ýÂËģʽ + ::= { igmpCacheExEntry 4 } + + igmpCacheStatic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An indication of whether the cache is a static member of + this group address on this interface." + DEFVAL { true } + ::= { igmpCacheExEntry 5 } + + + igmpSrcInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSrcInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " the list information of specific source ip addres." + --Ô´µØÖ·ÁбíÐÅÏ¢ + ::= { gbnL3IgmpMib 5 } + + igmpSrcInfoEntry OBJECT-TYPE + SYNTAX IgmpSrcInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " entry of information about specific source" + --Ö¸¶¨Ô´µØÖ·±íÏî + INDEX { igmpCacheAddressEx, igmpCacheIfIdxEx, igmpSrcAddress } + ::= { igmpSrcInfoTable 1 } + + IgmpSrcInfoEntry ::= SEQUENCE { + igmpSrcAddress IpAddress, + igmpSrcTimer TimeTicks, + igmpSrcInfoStatus RowStatus + } + + igmpSrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the specific source address" + --Ö¸¶¨Ô´µØÖ· + ::= { igmpSrcInfoEntry 1 } + + igmpSrcTimer OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " the timer of the specific source address" + --Ö¸¶¨Ô´¶¨Ê±Æ÷ + ::= { igmpSrcInfoEntry 2 } + + igmpSrcInfoStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this entry." + --±íÏî״̬ + ::= { igmpSrcInfoEntry 3 } + + +--- IGMP MFIB extend MIB. added by x0084(2007-11-27) + IgmpProxyState ::= INTEGER { + nonMember(0), + delayingMember(1), + idleMember(2) + } + + igmpMFIBTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpMFIBEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " the Multicast Forward Information Base." + ::= { gbnL3IgmpMib 6 } + + igmpMFIBEntry OBJECT-TYPE + SYNTAX IgmpMFIBEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " entry of information about MFIB" + --Ö¸¶¨Ô´µØÖ·±íÏî + INDEX { igmpGrpAddress } + ::= { igmpMFIBTable 1 } + + + IgmpMFIBEntry ::= SEQUENCE { + igmpGrpAddress IpAddress, + igmpGrpMembIdx Integer32, + igmpProxyState IgmpProxyState, + igmpGrpMembCount Integer32 + } + + igmpGrpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "the IP address of multicast group" + --×鵨ַ + ::= { igmpMFIBEntry 1 } + + igmpGrpMembIdx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the first group member's index " + --Óû§²àµÚÒ»¸ö¶à²¥½Ó¿Ú³ÉÔ±Ë÷Òý + ::= { igmpMFIBEntry 2 } + + igmpProxyState OBJECT-TYPE + SYNTAX IgmpProxyState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of Igmp-proxy." + --¶à²¥×éproxy״̬ + ::= { igmpMFIBEntry 3 } + + igmpGrpMembCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of this multicast group's member." + --¼ÓÈë´Ë¶à²¥×éµÄ¶Ë¿ÚÊý + ::= { igmpMFIBEntry 4 } + +-- IGMP SSM-Mapping information + igmpSSMMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSSMMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Group Range information of SSM-Mapping " + ::= { gbnL3IgmpMib 7 } + + igmpSSMMappingEntry OBJECT-TYPE + SYNTAX IgmpSSMMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " An entry (conceptual row) in the igmpSSMMappingTable. " + INDEX { igmpSSMMappingGrp, igmpSSMMappingGrpPrefixLen, igmpSSMMappingACL, igmpSSMMappingSrc } + ::= { igmpSSMMappingTable 1 } + + IgmpSSMMappingEntry ::= SEQUENCE { + igmpSSMMappingGrp Integer32, + igmpSSMMappingGrpPrefixLen Integer32, + igmpSSMMappingACL Integer32, + igmpSSMMappingSrc Integer32, + igmpSSMMappingStatus RowStatus + } + + igmpSSMMappingGrp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Group Address of the SSM-Mapping Entry" + --SSM-Mapping±íÏîµÄ×éIPµØÖ· + ::= { igmpSSMMappingEntry 1 } + + igmpSSMMappingGrpPrefixLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Group Address Prefix Length of the SSM-Mapping Entry" + --SSM-Mapping±íÏîµÄ×éIPµØÖ·Ç°×º³¤¶È + ::= { igmpSSMMappingEntry 2 } + + igmpSSMMappingACL OBJECT-TYPE + SYNTAX Integer32(1..99) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ACL of SSM-Mapping Entry" + --SSM-MappingµÄ·ÃÎÊ¿ØÖÆÁбíºÅ¡£±ê×¼·ÃÎÊ¿ØÖÆÁбí1~99 + ::= { igmpSSMMappingEntry 3} + + igmpSSMMappingSrc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Source Address of the SSM-Mapping Entry" + --SSM-Mapping±íÏîµÄÔ´IPµØÖ· + ::= { igmpSSMMappingEntry 4 } + + igmpSSMMappingStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this entry." + --±íÏî״̬ + ::= { igmpSSMMappingEntry 5 } + + END diff --git a/mibs/fs/GBNL3Ospf-MIB b/mibs/fs/GBNL3Ospf-MIB new file mode 100644 index 0000000000..36993a388d --- /dev/null +++ b/mibs/fs/GBNL3Ospf-MIB @@ -0,0 +1,224 @@ +----------------------------------------------------------------------------- +-- File : gbnL3Ospf-Mib.mi2 +-- Description : ADMIN Enterprise MIB +-- Version : 0.03 +-- Date : May 03, 2002 +-- +-- Copyright (c) 2002-2005 admin Systems, Inc. All Rights Reserved. +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNL3Ospf-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter64 FROM SNMPv2-SMI + + DisplayString, TruthValue,MacAddress,RowStatus FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB + + mib-2 FROM RFC1213-MIB; + + + gbnL3OspfMib MODULE-IDENTITY + LAST-UPDATED "0308180001Z" -- Autumn 18,2003 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Enterprise MIB definition." + + REVISION "0308180001Z" -- Autumn 18,2003 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 3 } + +Metric ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The OSPF Internal Metric." + SYNTAX Integer32 (0..'FFFFFF'h) + + gbnL3OspfGroup OBJECT IDENTIFIER ::= { gbnL3OspfMib 1 } + + + ospfRedistriDefaultMetric OBJECT-TYPE + SYNTAX Metric + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ÆäËû·ÓÉЭÒéµÄ·ÓÉÒýÈëµ½OSPFµÄĬÈÏ»¨·ÑÖµ." + REFERENCE + "OSPF Version 2, C.1 Global parameters" + DEFVAL { 1 } + ::= { gbnL3OspfGroup 1 } + + ospfRedistriDefaultType OBJECT-TYPE + SYNTAX INTEGER { + type1 (1), + type2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ÆäËû·ÓÉЭÒéµÄ·ÓÉÒýÈëµ½OSPFµÄĬÈÏÀàÐÍ.µÚÒ»Àà»òµÚ¶þÀà¡£" + REFERENCE + "OSPF Version 2, C.1 Global parameters" + DEFVAL { type2 } + ::= { gbnL3OspfGroup 2 } + + ospfRedistriDefaultTag OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "´ËÏîÔÝʱ²»ÓÃ." + DEFVAL { 1 } + ::= { gbnL3OspfGroup 3 } + + + ospfRedistriDefaultInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPFÒýÈëÍⲿ·ÓɵÄĬÈÏÒýÈë¼ä¸ô£¬ÒÔÃ루S£©Îªµ¥Î»." + REFERENCE + "OSPF Version 2, C.1 Global parameters" + DEFVAL { 1 } + ::= { gbnL3OspfGroup 4 } + + ospfRedistriDefaultLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPFÿ´ÎÒýÈëÍⲿ·ÓɵÄ×î´óÊýÄ¿." + REFERENCE + "OSPF Version 2, C.1 Global parameters" + DEFVAL { 1000 } + ::= { gbnL3OspfGroup 5 } + + ospfMibBinding OBJECT-TYPE + SYNTAX Integer32(0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Bind OSPF MIBs to OSPF process. OSPF MIBs access the binging process only." + DEFVAL { 0 } + ::= { gbnL3OspfGroup 6 } + + +-- OSPF redistribute Variables + +-- These parameters apply globally to the Router's +-- OSPF Process when OSPF redistribute routes of other protocal. + + ospfRedistributeTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfRedistributeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the configured parame- + ters of redistribute." + ::= { gbnL3OspfMib 2 } + + ospfRedistributeEntry OBJECT-TYPE + SYNTAX OspfRedistributeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the configured parame- + ters of redistribute." + INDEX { ospfRedistributeProtocal } + ::= { ospfRedistributeTable 1 } + + OspfRedistributeEntry ::= + SEQUENCE { + ospfRedistributeProtocal + Integer32, + ospfRedistributeMetric + Metric, + ospfRedistributeType + INTEGER, + ospfRedistributeTag + Integer32, + ospfRedistributeStatus + RowStatus, + ospfRedistributeAlways + TruthValue + } + + ospfRedistributeProtocal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPFÒýÈëµÄÍⲿ·ÓÉЭÒé." + REFERENCE + "OSPF Version 2, C.1 Global parameters" + ::= { ospfRedistributeEntry 1 } + + ospfRedistributeMetric OBJECT-TYPE + SYNTAX Metric + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "¶¨ÒåÆäËû·ÓÉЭÒéµÄ·ÓÉÒýÈëµ½OSPFʱ·ÓɵĻù×¼»¨·Ñ£¬ + Èç:ÒýÈëRIP·ÓÉЭÒéµÄ·ÓÉ£¬ÅäÖÃRIPµÄmetricΪ100£¬ + ´ËÌõ·ÓÉÔÚRIPÖеÄÌøÊýΪ10£¬ÔòÒýÈëOSPFºó´ËÌõ·ÓÉµÄ + ʵ¼Ê»¨·ÑΪ110." + ::= { ospfRedistributeEntry 2 } + + ospfRedistributeType OBJECT-TYPE + SYNTAX INTEGER { + type1 (1), + type2 (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF½«ËùÒýÈëµÄ×ÔÖÎϵͳÍⲿ·ÓÉ·Ö³ÉÁ½Àࣺtype1ºÍtype2£¬ + µÚÒ»ÀàÊÇÖ¸ÒýÈëµÄÊÇIGP·ÓÉ£¨ÀýÈçRIP£¬IGRP£¬STATIC£©£¬ ÓÉ + ÓÚÕâÀà·ÓɵĿÉÐų̶ȸßһЩ£¬ËùÒÔ¼ÆËã³öµÄÍⲿ·Óɵύ·Ñ + Óë×ÔÖÎϵͳÄÚ²¿µÄ·ÓÉ»¨·ÑµÄÊýÁ¿¼¶ÊÇÏàͬµÄ£¬¼´µ½µÚÒ»ÀàÍⲿ + ·Óɵύ·ÑÖµ = ±¾Â·ÓÉÆ÷µ½ÏàÓ¦µÄASBRµÄ»¨·ÑÖµ+ASBRµ½¸Ã·ÓÉ + Ä¿µÄµØÖ·µÄ»¨·ÑÖµ¡£¶ÔÓÚµÚ¶þÀàÍⲿ·ÓÉÊÇÖ¸ÒýÈëµÄÊÇBGP·ÓÉ£¬ + ÓÉÓÚÕâÀà·ÓɵĿÉÐŶȱȽϵͣ¬ËùÒÔOSPFЭÒéÈÏΪ´ÓASBRµ½×ÔÖÎ + ϵͳ֮ÍâµÄ»¨·ÑÔ¶Ô¶´óÓÚÔÚ×ÔÖÎϵͳ֮ÄÚµ½´ïASBRµÄ»¨·Ñ¡£ËùÒÔ + ¼ÆËã·ÓÉ»¨·Ñʱ½«Ö÷Òª¿¼ÂÇǰÕߣ¬¼´µ½µÚ¶þÀàÍⲿ·Óɵύ·ÑÖµ + = ASBRµ½¸Ã·ÓÉÄ¿µÄµØÖ·µÄ»¨·ÑÖµ¡£Èç¹û¸ÃÖµÏàµÈ£¬ÔÙ¿¼ÂDZ¾Â· + ÓÉÆ÷µ½ÏàÓ¦µÄASBRµÄ»¨·ÑÖµ¡£Èç¹û¼ÓÉÏÇ°ÃæËùÊöµÄÁ½ÖÖ·ÓÉÀàÐÍ." + ::= { ospfRedistributeEntry 3 } + + ospfRedistributeTag OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "tag" + ::= { ospfRedistributeEntry 4 } + + ospfRedistributeStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of this entry." + ::= { ospfRedistributeEntry 5 } + + ospfRedistributeAlways OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "always Õâ¸ö¹Ø¼ü×ÖʹµÃ¾ÍËã±¾»úûÓÐÅäÖÃȱʡ·ÓÉÒ²Òª²úÉúÒ»¸öÃè + Êöȱʡ·ÓɵÄase lsa ·¢²¼³öÈ¥Èôδָ¶¨¸Ã¹Ø¼ü×Ö±¾»ú±ØÐëÒªÅäÖÃȱ + ʡ·ÓɲſÉÒÔÒýÈë²úÉúȱʡ·ÓɵÄase lsa£¬Õâ¸ö²ÎÊýÖ»ÓÐÔÚÒýÈëĬÈÏ + ·ÓÉʱ²ÅÓÃ." + ::= { ospfRedistributeEntry 6 } + +END diff --git a/mibs/fs/GBNL3PIM-MIB b/mibs/fs/GBNL3PIM-MIB new file mode 100644 index 0000000000..ee0b85b57c --- /dev/null +++ b/mibs/fs/GBNL3PIM-MIB @@ -0,0 +1,336 @@ +----------------------------------------------------------------------------- +-- File : gbnL3Pim-Mib.mi2 +-- Description : ADMIN Enterprise MIB +-- Version : 1.00 +-- Date : July 04, 2005 +-- +-- Copyright (c) 2002-2005 admin Systems, Inc. All Rights Reserved. +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNL3PIM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Unsigned32 FROM SNMPv2-SMI + + DisplayString, TruthValue,MacAddress,RowStatus FROM SNMPv2-TC + InterfaceIndex FROM IF-MIB + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB + + pimBsrCandidateRPAddressType, pimBsrCandidateRPAddress, pimBsrCandidateRPGroupAddress, pimBsrCandidateRPGroupPrefixLength FROM PIM-BSR-MIB; + + + gbnL3PimMib MODULE-IDENTITY + LAST-UPDATED "0507040001Z" -- July 04,2005 + ORGANIZATION "ADMIN Systems, Inc." + CONTACT-INFO "ADMIN Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "ADMIN Enterprise MIB definition." + + REVISION "0507040001Z" -- July 04,2005 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 8 } + + + gbnL3PimGroup OBJECT IDENTIFIER ::= { gbnL3PimMib 1 } + + + pimCommonTraceOption OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PIM common trace option, including hello packet debug + switch and event debug switch and¢ttimer debug switch" + --PIM-DMºÍPIM-SMͨÓõ÷ÊÔ´òÓ¡Ñ¡Ï¹Ø + ::= { gbnL3PimGroup 1 } + + pimDmTraceOption OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PIM dense mode trace option" + --PIM-DMµ÷ÊÔ´òÓ¡Ñ¡Ï¹Ø + ::= { gbnL3PimGroup 2 } + + pimSmTraceOption OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PIM sparse mode trace option" + --PIM-SMµ÷ÊÔ´òÓ¡Ñ¡Ï¹Ø + ::= { gbnL3PimGroup 3 } + + pimSourcePolicy OBJECT-TYPE + SYNTAX Integer32(0..99) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Access control list(ACL) used for PIM multicast source" + ::= { gbnL3PimGroup 4 } + + pimStaticRpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "static RP for local router" + --¾²Ì¬µÄRPµØÖ·£¬Èç¹ûÕÒ²»µ½Ó³ÉäµÄRP£¬ÔòʹÓÃĬÈÏRP + ::= { gbnL3PimGroup 5 } + + pimSptThreshold OBJECT-TYPE + SYNTAX Unsigned32 { immediately(0), infinity(4294967295)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "threshold for join into spt" + --Çл»¼ÓÈëµ½sptµÄ·§Öµ¡£Ä¬ÈÏΪinfinity£¬±íʾÓò»Çл»µ½spt + ::= { gbnL3PimGroup 6 } + + pimStaticEntryCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of static entries in the ipMRouteTable. This can be used + to monitor the multicast routing table size." + --¾²Ì¬×鲥ת·¢±íÏîÊý + ::= { gbnL3PimGroup 7 } + +-- PIM interface extra information + + pimInterfaceExtraTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimInterfaceExtraEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "extra information of PIM interface" + ::= { gbnL3PimMib 2 } + + pimInterfaceExtraEntry OBJECT-TYPE + SYNTAX PimInterfaceExtraEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Extra information describing the configured parame- + ters of interface." + INDEX { pimInterfaceIndex } + ::= { pimInterfaceExtraTable 1 } + + PimInterfaceExtraEntry ::= + SEQUENCE { + pimInterfaceIndex InterfaceIndex, + pimInterfaceNeighborLimit Integer32, + pimInterfaceNeighborPolicy Integer32, + pimInterfaceBsrBorder TruthValue, + pimInterfaceNeighborCount Integer32 + } + + pimInterfaceIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PIM interface index" + --PIM½Ó¿ÚË÷Òý + ::= { pimInterfaceExtraEntry 1 } + + pimInterfaceNeighborLimit OBJECT-TYPE + SYNTAX Integer32(1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max number of neighbors on this interface" + --Ò»¸ö½Ó¿ÚÉÏ×î¶à¿ÉÒÔѧϰµ½µÄÁÚ¾ÓÊý + ::= { pimInterfaceExtraEntry 2 } + + pimInterfaceNeighborPolicy OBJECT-TYPE + SYNTAX Integer32(1..99) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The neighbor filter, only neighbors which match the policy + can be thought valid." + --ÁÚ¾Ó·ÃÎÊ¿ØÖÆÁбíºÅ£¬±ê×¼·ÃÎÊ¿ØÖÆÁбí1~99 + ::= { pimInterfaceExtraEntry 3 } + + pimInterfaceBsrBorder OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether the interface is the bsr border." + --¸Ã½Ó¿ÚÊÇ·ñbsr border + DEFVAL { false } + ::= { pimInterfaceExtraEntry 4 } + + pimInterfaceNeighborCount OBJECT-TYPE + SYNTAX Integer32(1..128) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of neighbors on this interface" + --µ±Ç°½Ó¿ÚÉÏÒÑѧϰµ½µÄÁÚ¾ÓÊý + ::= { pimInterfaceExtraEntry 5 } + +-- The BSR Candidate-RP extra Table + + pimBsrCRPExtraTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimBsrCRPExtraEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "extra information of Candidate-RP Table." + ::= { gbnL3PimMib 3 } + + pimBsrCRPExtraEntry OBJECT-TYPE + SYNTAX PimBsrCRPExtraEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the + pimBsrCRPExtraTable." + INDEX { pimBsrCandidateRPAddressType, + pimBsrCandidateRPAddress, + pimBsrCandidateRPGroupAddress, + pimBsrCandidateRPGroupPrefixLength } + ::= { pimBsrCRPExtraTable 1 } + + PimBsrCRPExtraEntry ::= SEQUENCE { + pimBsrCRPAddressType INTEGER, + pimBsrCRPAddress OCTET STRING, + pimBsrCRPGroupAddress OCTET STRING, + pimBsrCRPGroupPrefixLength Unsigned32, + pimBsrCRPGroupACL Integer32 + } + + pimBsrCRPAddressType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Inet address type of the Candidate-RP." + --C-RPµÄµØÖ·ÀàÐÍ£¬IPv4»òÕßIPv6 + ::= { pimBsrCRPExtraEntry 1 } + + pimBsrCRPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (unicast) address that will be advertised as a + Candidate-RP. The InetAddressType is given by the + pimBsrCandidateRPAddressType object." + --C-RPµÄµØÖ·£¬´ËµØÖ·Îªµ¥²¥µØÖ· + ::= { pimBsrCRPExtraEntry 2 } + + pimBsrCRPGroupAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP multicast group address that, when combined with + the corresponding value of + pimBsrCandidateRPGroupPrefixLength, identifies a group + prefix for which the local router will advertise itself + as a Candidate-RP. The InetAddressType is given by the + pimBsrCandidateRPAddressType object." + --¶ÔÓ¦±¾ÌõÄ¿µÄC-RPËù¹ÜÀíµÄ×鵨ַ + ::= { pimBsrCRPExtraEntry 3 } + + pimBsrCRPGroupPrefixLength OBJECT-TYPE + SYNTAX Unsigned32 (4..128) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The multicast group address mask that, when combined + with the corresponding value of + pimBsrCandidateRPGroupAddress, identifies a group prefix + for which the local router will advertise itself as a + Candidate-RP. The InetAddressType is given by the + pimBsrCandidateRPAddressType object." + --¶à²¥×éǰ׺³¤¶È + ::= { pimBsrCRPExtraEntry 4 } + + pimBsrCRPGroupACL OBJECT-TYPE + SYNTAX Integer32(1..99) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ACL of Group" + --¶à²¥×é·ÃÎÊ¿ØÖÆÁÐ±í£¬±ê×¼·ÃÎÊ¿ØÖÆÁбí1~99 + ::= { pimBsrCRPExtraEntry 5 } + +-- PIM-SSM information + pimSSMGrpRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimSSMGrpRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Group Range information of PIM-SSM " + ::= { gbnL3PimMib 4 } + + pimSSMGrpRangeEntry OBJECT-TYPE + SYNTAX PimSSMGrpRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " An entry (conceptual row) in the pimSSMGrpRangeTable. " + INDEX { pimSSMGrpRangeGrp, pimSSMGrpRangeGrpPrefixLen, pimSSMGrpRangeACL } + ::= { pimSSMGrpRangeTable 1 } + + PimSSMGrpRangeEntry ::= SEQUENCE { + pimSSMGrpRangeGrp Integer32, + pimSSMGrpRangeGrpPrefixLen Integer32, + pimSSMGrpRangeACL Integer32, + pimSSMGrpRangeStatus RowStatus + } + + pimSSMGrpRangeGrp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Group Address of the SSM Group Range Entry" + --PIM-SSM×鵨ַ·¶Î§±íÏîµÄ×éIPµØÖ· + ::= { pimSSMGrpRangeEntry 1 } + + pimSSMGrpRangeGrpPrefixLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Group Address Prefix Length of the SSM Group Range Entry" + --PIM-SSM×鵨ַ·¶Î§±íÏîµÄ×éIPµØÖ·Ç°×º³¤¶È + ::= { pimSSMGrpRangeEntry 2 } + + pimSSMGrpRangeACL OBJECT-TYPE + SYNTAX Integer32(1..100) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ACL of SSM" + --PIM-SSMµÄ×鵨ַ·¶Î§µÄ·ÃÎÊ¿ØÖÆÁбíºÅ¡£±ê×¼·ÃÎÊ¿ØÖÆÁбí1~99£¬ + --100±íʾʹÓñê×¼µÄSSM×鵨ַ·¶Î§232.0.0.0/8 + ::= { pimSSMGrpRangeEntry 3} + + pimSSMGrpRangeStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this entry." + --±íÏî״̬ + ::= { pimSSMGrpRangeEntry 4 } + + +END + diff --git a/mibs/fs/GBNL3Rip-MIB b/mibs/fs/GBNL3Rip-MIB new file mode 100644 index 0000000000..970e4e9ba5 --- /dev/null +++ b/mibs/fs/GBNL3Rip-MIB @@ -0,0 +1,350 @@ +------------------------------------------------------------------------------ +-- File : gbnL3RipMib.mi2 +-- Description : ADMIN Enterprise MIB +-- Version : 0.03 +-- Date : May 03, 2002 +-- +-- Copyright (c) 2002-2005 admin Systems, Inc. All Rights Reserved. +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + + GBNL3Rip-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Counter64 FROM SNMPv2-SMI + + RowStatus, + DisplayString, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB + + PortList FROM Q-BRIDGE-MIB; + + gbnL3RipMib MODULE-IDENTITY + LAST-UPDATED "0105030001Z" -- May 03,2001 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Enterprise MIB definition." + + REVISION "0105030001Z" -- May 03,2001 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 4 } + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ +-- +-- "DURABLE": +-- Objects that are saved across a system reset and/or power cycle +-- are noted as "DURABLE" for convenience in the DESCRIPTION +-- section of the object definition. Code must be explicitly +-- written to implement these DURABLE objects. +-- + + +------------------------------------------------------------------------------ +-- define groups in gbnL3Rip-MIB.mi2 +------------------------------------------------------------------------------ + gbnL3Rip OBJECT IDENTIFIER ::= { gbnL3RipMib 1 } + + gbnL3RipSummarry OBJECT-TYPE + SYNTAX INTEGER { + noSummarry (0), + summarry (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable/disable route summarry." + DEFVAL { summarry } + ::= { gbnL3Rip 1 } + + gbnL3RipHostRouteRx OBJECT-TYPE + SYNTAX INTEGER { + noHostRouteRx (0), + hostRouteRx (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable/disable receive host route ." + DEFVAL { hostRouteRx } + ::= { gbnL3Rip 2 } + + gbnL3RipTable OBJECT-TYPE + SYNTAX SEQUENCE OF gbnL3RipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of RIP extern." + ::= {gbnL3Rip 3 } + + gbnL3RipEntry OBJECT-TYPE + SYNTAX gbnL3RipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "extern config option." + INDEX { gbnL3RipIfConfAddress } + ::= { gbnL3RipTable 1 } + + gbnL3RipEntry ::= + SEQUENCE { + gbnL3RipIfConfAddress + IpAddress, + gbnL3RipSplit + INTEGER, + gbnL3RipMetricIn + INTEGER, + gbnL3RipMetricOut + INTEGER, + gbnL3RipPreIfSend + INTEGER, + gbnL3RipPreIfReceive + INTEGER + + } + + gbnL3RipIfConfAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This address is same as rip2IfExternAddress in RIP2. + The IP Address of this system on the indicated + subnet. For unnumbered interfaces, the value 0.0.0.N, + where the least significant 24 bits (N) is the ifIndex + for the IP Interface in network byte order." + ::= { gbnL3RipEntry 1 } + + gbnL3RipSplit OBJECT-TYPE + SYNTAX INTEGER { + noSplit (0), + split (1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "enable/disable split." + DEFVAL { split } + ::= { gbnL3RipEntry 2} + + gbnL3RipMetricIn OBJECT-TYPE + SYNTAX INTEGER ( 0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MetricIn." + DEFVAL { 0 } + ::= { gbnL3RipEntry 3 } + + gbnL3RipMetricOut OBJECT-TYPE + SYNTAX INTEGER ( 0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MetricOut." + DEFVAL { 0 } + ::= { gbnL3RipEntry 4} + +------------------------------------------------------------------------------ +-- define mib parameter for remember the pre Rip interfaces status +------------------------------------------------------------------------------ + gbnL3RipPreIfSend OBJECT-TYPE + SYNTAX INTEGER { + ripVersion1 (2), + rip1Compatible (3), + ripVersion2 (4), + ripV1Demand (5), + ripV2Demand (6) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "store the pre rip interface send status, no including the disable." + DEFVAL { rip1Compatible } + ::= { gbnL3RipEntry 5 } + + + gbnL3RipPreIfReceive OBJECT-TYPE + SYNTAX INTEGER { + rip1 (1), + rip2 (2), + rip1OrRip2 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "store the pre rip interface receive status, no including the disable." + DEFVAL { rip1OrRip2 } + ::= { gbnL3RipEntry 6} + + gbnL3RipRedistributeTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3RipRedistributeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of RIP redistribute infomation." + --RIPÖØ·¢²¼ÐÅÏ¢Áбí + ::= {gbnL3Rip 4 } + + gbnL3RipRedistributeEntry OBJECT-TYPE + SYNTAX GbnL3RipRedistributeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "RIP redistribute information entry." + --RIPÖØ·¢²¼ÐÅÏ¢ÌõÄ¿ + INDEX { gbnL3RipRedistributeProto } + ::= { gbnL3RipRedistributeTable 1 } + + GbnL3RipRedistributeEntry ::= + SEQUENCE { + gbnL3RipRedistributeProto + INTEGER, + gbnL3RipRedistributeMetric + INTEGER, + gbnL3RipRedistributePrefixName + OCTET STRING, + gbnL3RipRedistributeRowStatus + RowStatus + } + + gbnL3RipRedistributeProto OBJECT-TYPE + SYNTAX INTEGER { + connected(1), + static(2), + ospf(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "redistribute protocol" + --ÖØ·¢²¼Ð­ÒéºÅ + ::= { gbnL3RipRedistributeEntry 1 } + + gbnL3RipRedistributeMetric OBJECT-TYPE + SYNTAX INTEGER ( 1..16 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "redistribute metric" + --ÖØ·¢²¼¶ÈÁ¿Öµ + ::= { gbnL3RipRedistributeEntry 2 } + + gbnL3RipRedistributePrefixName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "redistribute prefix-list name" + --ÖØ·¢²¼Ê¹ÓõÄǰ׺¿ØÖÆÁбíÃû + ::= { gbnL3RipRedistributeEntry 3 } + + gbnL3RipRedistributeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "row status." + --ÐÐ״̬ + --ɾ³ýÖØ·¢²¼ÐÅÏ¢ÌõĿʱ£¬Ö»Ð轫ÐÐ״̬ÉèÖÃΪdestroy(6)¼´¿É + ::= { gbnL3RipRedistributeEntry 4 } + + gbnL3RipDistributeList OBJECT IDENTIFIER ::= { gbnL3Rip 5 } + + gbnL3RipDistributeListGateIn OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "distribute-list name of gateway ingress" + --»ùÓÚ·ÓÉÔ´µÄ·¢²¼Áбí + ::= { gbnL3RipDistributeList 1 } + + gbnL3RipDistributeListAllIn OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "distribute-list name of ingress" + --»ùÓÚÊÕµ½Â·Óɵķ¢²¼Áбí + ::= { gbnL3RipDistributeList 2 } + + gbnL3RipDistributeListAllOut OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "distribute-list name of egress" + --»ùÓÚ·¢³ö·Óɵķ¢²¼Áбí + ::= { gbnL3RipDistributeList 3 } + + + gbnL3RipSummaryAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnL3RipSummaryAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "RIP summary address table." + --RIP·ÓɾۺÏÍø¶Î±í + ::= {gbnL3Rip 6 } + + gbnL3RipSummaryAddrEntry OBJECT-TYPE + SYNTAX GbnL3RipSummaryAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "RIP summary address entry." + --RIP·ÓɾۺÏÍø¶ÎÌõÄ¿ + INDEX { gbnL3RipSummaryNetwork, gbnL3RipSummaryMask } + ::= { gbnL3RipSummaryAddrTable 1 } + + GbnL3RipSummaryAddrEntry ::= + SEQUENCE { + gbnL3RipSummaryNetwork + IpAddress, + gbnL3RipSummaryMask + IpAddress, + gbnL3RipSummaryAddrRowStatus + RowStatus + } + + gbnL3RipSummaryNetwork OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "summary network" + --¾ÛºÏÍø¶ÎµØÖ· + ::= { gbnL3RipSummaryAddrEntry 1 } + + gbnL3RipSummaryMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "summary network mask" + --¾ÛºÏÍø¶ÎÑÚÂë + ::= { gbnL3RipSummaryAddrEntry 2 } + + gbnL3RipSummaryAddrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "row status." + --ÐÐ״̬ + --Ìí¼Ó¾ÛºÏÍø¶ÎÌõĿʱ£¬½«ÐÐ״̬ÉèΪactive(1)¡¢createAndGo(4)»òcreateAndWait(5) + --ɾ³ý¾ÛºÏÍø¶ÎÌõĿʱ£¬Ö»Ð轫ÐÐ״̬ÉèÖÃΪdestroy(6)¼´¿É + ::= { gbnL3RipSummaryAddrEntry 3 } + +END + diff --git a/mibs/fs/GBNL3RouteCommon-MIB b/mibs/fs/GBNL3RouteCommon-MIB new file mode 100644 index 0000000000..bbae304a7c --- /dev/null +++ b/mibs/fs/GBNL3RouteCommon-MIB @@ -0,0 +1,57 @@ + GBNL3RouteCommon-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnL3 FROM ADMIN-MASTER-MIB; + + gbnL3RouteCommon MODULE-IDENTITY + LAST-UPDATED "0105102004Z" -- May 10, 2004 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "ADMIN Generic router id MIB definition." + + REVISION "0105102004Z" -- May 10, 2004 + DESCRIPTION "Initial MIB creation." + + ::= { gbnL3 2 } + + + +------------------------------------------------------------------------------ + routerId OBJECT IDENTIFIER ::= { gbnL3RouteCommon 1 } +------------------------------------------------------------------------------ +-- +-- routerId: +-- +-- +------------------------------------------------------------------------------ +-- + routerIdConfig OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "´Ërouter idÊÇÅäÖõϹÊÇϵͳ×Ô¶¯Ñ¡¾ÙµÄ" + ::= { routerId 1 } + + routerIdValue OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "µ±Ç°ÅäÖûòÑ¡¾ÙµÄrouter id" + ::= { routerId 2 } + + +END diff --git a/mibs/fs/GBNPlatformChassis-MIB b/mibs/fs/GBNPlatformChassis-MIB new file mode 100644 index 0000000000..e7cb8f1952 --- /dev/null +++ b/mibs/fs/GBNPlatformChassis-MIB @@ -0,0 +1,541 @@ +------------------------------------------------------------------------------ +-- +-- File : gbnPlatformChassis-MIB.mi2 +-- Description : Sample gbn chassis management MIB +-- Version : 1.0 +-- Date : May 4, 2011 +-- Author : xiaojianfeng +-- Copyright (c) 2011 admin Systems, Inc. All Rights Reserved. +-- +------------------------------------------------------------------------------ + GBNPlatformChassis-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDEntry, OBJECT-TYPE, + Integer32, IpAddress, + Counter32, Counter64, + Unsigned32, + NOTIFICATION-TYPE FROM SNMPv2-SMI + DisplayString FROM RFC1213-MIB + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + gbnPlatform FROM ADMIN-MASTER-MIB; + + + gbnPlatformChassis MODULE-IDENTITY + LAST-UPDATED "1105040000Z" -- May 4, 2011 + ORGANIZATION "Admin Systems, Inc." + CONTACT-INFO "Admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "GBN Chassis Management Enterprise MIB definition." + + REVISION "1105040000Z" -- May 4, 2011 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatform 3 } + +------------------------------------------------------------------------------ +-- define groups in GBN-Chassis-MIB +------------------------------------------------------------------------------ + gbnChassis OBJECT IDENTIFIER ::= { gbnPlatformChassis 1 } + gbnBoard OBJECT IDENTIFIER ::= { gbnPlatformChassis 2 } + gbnChassisTrap OBJECT IDENTIFIER ::= { gbnPlatformChassis 3 } +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- +-- gbnChassis +-- +------------------------------------------------------------------------------ + chassisVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Chassis version, the format is V3.0." + --»ú¼ÜµÄ°æ±¾ºÅ£¬¸ñʽΪV3.0. + ::= { gbnChassis 1 } + + chassisSerialNo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Product Serial Number." + --²úÆ·ÐòÁкÅ. + ::= { gbnChassis 2 } + + chassisType OBJECT-TYPE + SYNTAX INTEGER { + s8600-04(0), + s8600-08(1), + s8600-16(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Chassis type." + --»ú¼ÜÀàÐÍ. + ::= { gbnChassis 3 } + + chassisSlotAppTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisSlotAppEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Slots application table£¬for control board or line board." + --²ÛλÓÃ;±í£¬ÓÃÓÚÖ÷¿Ø°å»¹ÊÇÒµÎñ°å. + ::= { gbnChassis 4 } + + chassisSlotAppEntry OBJECT-TYPE + SYNTAX ChassisSlotAppEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Slots application table£¬for control board or line board." + --²ÛλÓÃ;±í£¬ÓÃÓÚÖ÷¿Ø°å»¹ÊÇÒµÎñ°å. + INDEX { slotNum } + ::= { chassisSlotAppTable 1 } + + ChassisSlotAppEntry ::= SEQUENCE { + slotNum INTEGER, + slotApp INTEGER + } + + slotNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Slot number of the chassis." + --»ú¼Ü²ÛλºÅ. + ::= { chassisSlotAppEntry 1 } + + slotApp OBJECT-TYPE + SYNTAX INTEGER { + unknown(0), + forLineboard(1), + forControlboard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "slots application, for control board or line board." + --²ÛλÓÃ;£¬ÓÃÓÚÖ÷¿Ø°å»òÒµÎñ°å. + ::= { chassisSlotAppEntry 2 } + + powerTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Power status table." + ::= { gbnChassis 5 } + + powerEntry OBJECT-TYPE + SYNTAX PowerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Power table entry." + INDEX { powerIndex } + ::= { powerTable 1 } + + PowerEntry ::= SEQUENCE { + powerIndex INTEGER, + powerInsertedStaus INTEGER, + powerRunningStatus INTEGER + } + + powerIndex OBJECT-TYPE + SYNTAX INTEGER { + power0(0), + power1(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Power index." + ::= { powerEntry 1 } + + powerInsertedStaus OBJECT-TYPE + SYNTAX INTEGER { + empty(0), + inserted(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Power inserted status." + ::= { powerEntry 2 } + + powerRunningStatus OBJECT-TYPE + SYNTAX INTEGER { + notGood(0), + good(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Power running status." + ::= { powerEntry 3 } + + boardTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Board table,for board management." + ::= { gbnBoard 1 } + + boardEntry OBJECT-TYPE + SYNTAX BoardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "board table entry,for board management." + INDEX { boardIndex } + ::= { boardTable 1 } + + BoardEntry ::= SEQUENCE { + boardIndex INTEGER, + boardStatus INTEGER, + boardType INTEGER, + boardIfNum INTEGER, + boardProdSerialNo DisplayString, + boardSoftwarePlate DisplayString, + boardSoftwareVersion DisplayString, + boardSoftwareCompiledTime DisplayString, + boardCpuDescription DisplayString, + boardSdramDescription DisplayString, + boardFlashDescription DisplayString, + boardHardwareVersion DisplayString, + boardBootromVersion DisplayString, + boardCpuIdle INTEGER, + boardMemorySize INTEGER, + boardMemoryIdle INTEGER, + boardSysReset INTEGER + } + + boardIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of board table,corresponding to slot number." + ::= { boardEntry 1 } + + boardStatus OBJECT-TYPE + SYNTAX INTEGER{ + noInsert(0), + insertAsMaster(1), + insertAsSlave(2), + insertButUnconnected(3), + insertAndConnected(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of board£»Below four states for control board: 'noInsert(0)', 'insertAsMaster(1)' ,'insertAsSlave(2)' and insertButUnconnected(3). + Below three states for line board: 'noInsert(0)', 'insertButUnconnected(3)' and 'insertAndConnected(4)'." + ::= { boardEntry 2 } + + boardType OBJECT-TYPE + SYNTAX INTEGER{ + unknown(0), + controlboard0(1), + lineboard0fiber(2), + lineboard1copper(3), + lineboard2copper(4), + lineboard3fiber(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of board£¬or unknown if unavailable." + ::= { boardEntry 3 } + + boardIfNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of physical interface in line board,or 0 if unavailable.For a control board ,it's always returned 0." + ::= { boardEntry 4 } + + + boardProdSerialNo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "serial number of the board,or an empty string if unavailable." + ::= { boardEntry 5 } + + boardSoftwarePlate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software Plate of the board ,or an empty string if unavailable." + ::= { boardEntry 6 } + + boardSoftwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software Version of the board,the format is V100R001B02D06P03SP3, or an empty string if unavailable." + ::= { boardEntry 7 } + + boardSoftwareCompiledTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software CompiledTime of the board,the format is Feburary 17 2003 15:47:00, or an empty string if unavailable." + ::= { boardEntry 8 } + + boardCpuDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Cpu description of the board,the format is Mips 32334, 133MHz, or an empty string if unavailable." + ::= { boardEntry 9 } + + boardFlashDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Flash description of the board , format is 32M, or an empty string if unavailable." + ::= { boardEntry 10 } + + boardHardwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware Version of the board,the format is V3.0, or an empty string if unavailable." + ::= { boardEntry 11 } + + boardBootromVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bootrom Version of the board,the format is V2.0, or an empty string if unavailable." + ::= { boardEntry 12 } + + boardCpuIdle OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of free CPU in the board,or 0 if unavailable." + ::= { boardEntry 13 } + + boardMemorySize OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system memory size, unit is byte, or 0 if unavailable." + ::= { boardEntry 14 } + + boardMemoryIdle OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current system idle memory size, unit is byte, or 0 if unavailable." + ::= { boardEntry 15 } + + boardSysReset OBJECT-TYPE + SYNTAX INTEGER{ + noop(1), + reset(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Performs a hardware reset of the board. Use with care. + A 'reset(2)' resets the board,and 'noop(1)'does nothing. + A value of 'noop(1)' is always returned for a GET operation." + ::= { boardEntry 16 } + + + boardIfIndexTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoardIfIndexEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index table,show interface index in all connected lineboards." + ::= { gbnBoard 2} + + boardIfIndexEntry OBJECT-TYPE + SYNTAX BoardIfIndexEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index table,show interface index in all connected lineboards." + INDEX { boardNumber, boardPortLocalIndex } + ::= { boardIfIndexTable 1 } + + BoardIfIndexEntry ::= SEQUENCE{ + boardNumber INTEGER, + boardPortLocalIndex INTEGER, + boardIfIndex INTEGER + } + + boardNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "board number, matches boardTable boardIndex." + ::= { boardIfIndexEntry 1 } + + boardPortLocalIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Local index of port of the board, from 1 start, end of max port num of the board. + For example,the boardPortLocalIndex range of line1copper is 1-24. " + ::= { boardIfIndexEntry 2 } + + boardIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Board interface system index, matches RFC1213/RFC2233 ifTable IfIndex." + --²å°å¶Ë¿ÚµÄϵͳ½Ó¿ÚË÷Òý£¬¶ÔÓ¦ÓÚRFC1213/RFC2233 µÄifIndex + ::= { boardIfIndexEntry 3 } + + +-- +-- gbnChassisTrap - chassis status TRAP +-- + powerRemoveTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Power remove trap." + ::= { gbnChassisTrap 1 } + + powerInsertTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Power insert trap." + --µçÔ´ ²åÈëtrap. + ::= { gbnChassisTrap 2 } + + fanRemoveTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Fan remove trap." + ::= { gbnChassisTrap 3 } + + fanInsertTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Fan remove trap." + ::= { gbnChassisTrap 4 } + + boardRemoveTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Board remove trap." + -- ²å°å °Î³ötrap. + ::= { gbnChassisTrap 5 } + + boardInsertTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Board insert trap." + -- ²å°å ²åÈëtrap. + ::= { gbnChassisTrap 6 } + + boardConnectedTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Line board connnected trap." + --ÒµÎñ°å ÒÑÁ¬½Ótrap. + ::= { gbnChassisTrap 7 } + + boardUnconnectedTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Line board unconnnect trap." + --ÒµÎñ°å ʧȥÁ¬½Ótrap. + ::= { gbnChassisTrap 8 } + + boardRoletoSlaveTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "To-Slave trap. Role of the control board change to slave." + --To-slave trap:Ö÷¿Ø°åµÄÖ÷´Ó½Çɫת±äΪslave. + ::= { gbnChassisTrap 9 } + + boardRoletoMasterTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "To-master trap. Role of the control board change to master." + --To-master trap:Ö÷¿Ø°åÖ÷´Ó½Çɫת±äΪmaster. + ::= { gbnChassisTrap 10 } + + powerRunningNoGoodTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Power running status is no good" + --µçÔ´ÔËÐÐ״̬²»Õý³£. + ::= { gbnChassisTrap 11 } + + powerRunningGoodTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "Power running status is good" + --µçÔ´ÔËÐÐ״̬Õý³£ + ::= { gbnChassisTrap 12 } + + alarmPowerNoInsertTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A power is not inserted When the system startup is completed." + --Æô¶¯Íê³ÉʱÓÐÒ»¸öµçԴûÓвåÈë + ::= { gbnChassisTrap 13 } + + alarmControlNoInsertTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A control board is not inserted When the system startup is completed." + --Æô¶¯Íê³ÉʱÓÐÒ»¿éÖ÷¿Ø°åûÓвåÈë + ::= { gbnChassisTrap 14 } + +------------------------------------------------------------------------------ +-- +-- gbnSwitchOver - chassis Switch over +-- +------------------------------------------------------------------------------ + gbnSwitchOver OBJECT-TYPE + SYNTAX INTEGER{ + noop(1), + switchover(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Performs switchover of the master control board. Use with care. + A 'switchover(2)' switchover the master board,and 'noop(1)'does nothing. + A value of 'noop(1)' is always returned for a GET operation." + --Ö÷±¸µ¹»»£¬ÇëСÐÄʹÓá£'switchover(2)'ÓÃÓÚÇл»Ö÷±¸½ÇÉ«£¬¶ø'noop(1)'ûÓÐÈκβÙ×÷¡£¶ÔÓÚÒ»¸ögetÇëÇó£¬×ÜÊÇ·µ»Ø'noop(1)'µÄÖµ. + ::= { gbnPlatformChassis 4 } + +-- +-- END of gbnPlatformChassis-MIB +-- + +END + diff --git a/mibs/fs/GBNPlatformGNLink-MIB b/mibs/fs/GBNPlatformGNLink-MIB new file mode 100644 index 0000000000..556854dca9 --- /dev/null +++ b/mibs/fs/GBNPlatformGNLink-MIB @@ -0,0 +1,1359 @@ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- +-- File : gbnPlatformGNLink-MIB.mi2 +-- Description : Sample gbn GGMP configuration MIB +-- Version : 1.0 +-- Date : Dec 12, 2002 +-- Author : ouyangchunbo +-- Copyright (C) New admin Co., Ltd. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNPlatformGNLink-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDEntry, OBJECT-TYPE, + Integer32, IpAddress, + Counter32, Counter64, + Unsigned32, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString FROM RFC1213-MIB + PortList FROM Q-BRIDGE-MIB + MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnPlatform FROM ADMIN-MASTER-MIB + ; + + + gnlinkMib MODULE-IDENTITY + LAST-UPDATED "0406030000Z" -- June 3, 2004 + ORGANIZATION "New admin Co., Ltd." + CONTACT-INFO "New admin Co., Ltd. + E-mail: support@admin.com" + + DESCRIPTION "ADMIN ZY.Link Enterprise MIB definition." + + REVISION "0406030000Z" -- June 3, 2004 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatform 2 } + + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + -- + -- "DURABLE": + -- Objects that are saved across a system reset and/or power cycle + -- are noted as "DURABLE" for convenience in the DESCRIPTION + -- section of the object definition. Code must be explicitly + -- written to implement these DURABLE objects. + -- + +------------------------------------------------------------------------------ +-- define groups in GBN-GGMP-MIB +------------------------------------------------------------------------------ +gbnGgmpSvrProperty OBJECT IDENTIFIER ::= { gnlinkMib 7 } + +gbnGgmpClientProperty OBJECT IDENTIFIER ::= { gnlinkMib 14 } + +gbnGgmpTrap OBJECT IDENTIFIER ::= { gnlinkMib 9 } +------------------------------------------------------------------- +--Add GGMPMIB 2002/12/12 ouyangchunbo +------------------------------------------------------------------- + + ggmpStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disablepacketdiscard(2), + disablepacketforwardnolocation(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ggmp status" + ::= { gnlinkMib 1 } + + ggmpRole OBJECT-TYPE + SYNTAX INTEGER { + client(1), + server(2), + null(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ggmp lanswitch role" + ::= { gnlinkMib 2 } + + ---------------------------------------------------------------------------------- + --LANSWITCHÊôÐÔÊý¾ÝMIB±í-- + ---------------------------------------------------------------------------------- + gbnGgmpLsProTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnGgmpLsProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Lanswitch property table" + ::= { gnlinkMib 3 } + + gbnGgmpLsProEntry OBJECT-TYPE + SYNTAX GbnGgmpLsProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Lanswitch property parameters." + INDEX { ggmplanMAC } + ::= { gbnGgmpLsProTable 1 } + + GbnGgmpLsProEntry ::= SEQUENCE { + ggmplanMAC MacAddress, + ggmplanswitchName DisplayString (SIZE(1..255)), + ggmplanDeviceId Integer32, + ggmplanInServerPort Integer32, + ggmplanPortNumber Integer32, + ggmplanStatus Integer32, + ggmplanupportsep Integer32, + ggmppvidrangestart Integer32, + ggmplanlocation Integer32, + ggmplanBSF Integer32, + ggmpclientver Integer32, + ggmplanManageVlanId Integer32, + ggmplanGrnStp Integer32, + ggmplanHostVer DisplayString (SIZE(1..25)), + ggmplanOnlineTime Integer32, + ggmplanVlanMode Integer32, + ggmplanMacLearningMode Integer32, + ggmplanHardwareVersion Integer32, + ggmplanBootVer DisplayString (SIZE(1..25)), + ggmplanDeviceName DisplayString (SIZE(1..32)) + + } + + ggmplanMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " MAC address of the regist lanswtich" + ::= { gbnGgmpLsProEntry 1 } + + ggmplanswitchName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " name of the registered lanswtich ." + ::= { gbnGgmpLsProEntry 2 } + + + ggmplanDeviceId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Device ID of the regist lanswtich , the highest byte of device id means device type , 2 means TiNet s2008, + 3 means TiNet s2016, 4 means TiNet s3024." + ::= { gbnGgmpLsProEntry 3 } + + ggmplanInServerPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port which the lanswith regist in server " + ::= { gbnGgmpLsProEntry 4 } + + ggmplanPortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ports number of regist lanswitch " + ::= { gbnGgmpLsProEntry 5 } + + ggmplanStatus OBJECT-TYPE + SYNTAX Integer32 + { + lsError(0), + lsNormal(1), + lsRegister(2), + lsNull(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of regist lanswitch " + ::= { gbnGgmpLsProEntry 6 } + + ggmplanupportsep OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of regist lanswitch. + If lanswitch is in error status, the return value will be -1." + ::= { gbnGgmpLsProEntry 7 } + + ggmppvidrangestart OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The start of pvid range of TiNet S2016E/S2024E. + If lanswitch is in error status, the return value will be -1. " + ::= { gbnGgmpLsProEntry 8 } + + ggmplanlocation OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The location of the lanswitch " + ::= { gbnGgmpLsProEntry 9 } + + ggmplanBSF OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Broadcast storm filter value of the lanswitch. + If lanswitch is in error status, the return value will be -1. " + ::= { gbnGgmpLsProEntry 10 } + + ggmpclientver OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " ggmp client software version " + ::= { gbnGgmpLsProEntry 11 } + + ggmplanManageVlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ggmp client Manage Vlan " + ::= { gbnGgmpLsProEntry 12 } + + ggmplanGrnStp OBJECT-TYPE + SYNTAX Integer32 + { + grnStpEnable(1), + grnStpDisable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ggmp client STP switch. + If lanswitch is in error status, the return value will be -1. " + ::= { gbnGgmpLsProEntry 13 } + + ggmplanHostVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..25)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Host Software Version of the Lanswitch" + ::= { gbnGgmpLsProEntry 14 } + + ggmplanOnlineTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Client Lanswitch Online Time. Unit is second. " + ::= { gbnGgmpLsProEntry 15 } + + ggmplanVlanMode OBJECT-TYPE + SYNTAX Integer32 + { + vlanModePortBased(1), + vlanMode802dot1q(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ggmp client vlan mode. + port-based vlan means ingress does not check packets' vlan header, + 802.1q means ingress checks packets' vlan header. " + --vlanģʽ·ÖΪ»ùÓڶ˿ڵÄvlanºÍ802.1qvlan£¬»ùÓڶ˿ڵÄvlan±íʾÈë¶Ë¿Ú²»¼ì²é±¨ÎÄ + --µÄvlanÊײ¿£¬802.1qvlan±íʾÈë¶Ë¿Ú¼ì²é±¨ÎĵÄvlanÊײ¿ + ::= { gbnGgmpLsProEntry 16 } + + ggmplanMacLearningMode OBJECT-TYPE + SYNTAX Integer32 + { + macLearningModeIvl(0), + macLearningModeSvl(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ggmp client mac-learning mode. + ivl means independent vlan learning,svl means share vlan learning." + --ivl´ú±í¶ÀÁ¢vlanѧϰ£¬svl´ú±í¹²Ïívlanѧϰ + ::= { gbnGgmpLsProEntry 17 } + + ggmplanHardwareVersion OBJECT-TYPE + SYNTAX Integer32 + { + CDVersion(0), + CGVersion(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " client's hardware version,0 means CD version and 1 means CG version." + --¿Í»§¶ËµÄÓ²¼þ°æ±¾£¬0´ú±íCD°æ±¾£¬1´ú±íCGÛà±¾ + ::= { gbnGgmpLsProEntry 18 } + + ggmplanBootVer OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..25)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " BootRom Version of the Lanswitch" + ::= { gbnGgmpLsProEntry 19 } + + ggmplanDeviceName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Device name of the registered lanswtich ." + ::= { gbnGgmpLsProEntry 20 } + + ---------------------------------------------------------------------------------- + --LANSWITCH¶Ë¿ÚÊôÐÔÊý¾ÝMIB±í-- + ---------------------------------------------------------------------------------- + gbnGgmpPortPropertyTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnGgmpPortPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Lanswitch port property table" + ::= { gnlinkMib 4 } + + gbnGgmpPortPropertyEntry OBJECT-TYPE + SYNTAX GbnGgmpPortPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Lanswitch port property parameters." + INDEX { ggmpportmac, ggmpportportnumber } + ::= { gbnGgmpPortPropertyTable 1 } + + GbnGgmpPortPropertyEntry ::= SEQUENCE { + ggmpportmac MacAddress, + ggmpportportnumber Integer32, + ggmpportportclosed Integer32, + ggmpportportlink Integer32, + ggmpportportvlanid Integer32, + ggmpportporttagged Integer32, + ggmpportportduplex Integer32, + ggmpportportactualduplex Integer32, + ggmpportportlockmac Integer32, + ggmpportportgrnstp Integer32 + } + + ggmpportmac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " mac address of the regist lanswtich ." + ::= { gbnGgmpPortPropertyEntry 1 } + + ggmpportportnumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " port number of lanswitch " + ::= { gbnGgmpPortPropertyEntry 2 } + + ggmpportportclosed OBJECT-TYPE + SYNTAX Integer32 + { + interfaceEnable(1), + interfaceDisable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " port state of closed or open ." + ::= { gbnGgmpPortPropertyEntry 3 } + + ggmpportportlink OBJECT-TYPE + SYNTAX Integer32 + { + portlinkup(1), + portlinkdown(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " the port link status " + ::= { gbnGgmpPortPropertyEntry 4 } + + ggmpportportvlanid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The ports default vlan id " + ::= { gbnGgmpPortPropertyEntry 5 } + + ggmpportporttagged OBJECT-TYPE + SYNTAX Integer32 + { + porttrunk(1), + portaccess(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The ports tagged or untagged status " + ::= { gbnGgmpPortPropertyEntry 6 } + + ggmpportportduplex OBJECT-TYPE + SYNTAX Integer32 + { + auto(1), + half10(2), + full10(3), + half100(4), + full100(5), + half1000(6), + full1000(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The ports duplex " + ::= { gbnGgmpPortPropertyEntry 7 } + + ggmpportportactualduplex OBJECT-TYPE + SYNTAX Integer32 + { + unknown(1), + half10(2), + full10(3), + half100(4), + full100(5), + half1000(6), + full1000(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The ports actual duplex " + ::= { gbnGgmpPortPropertyEntry 8 } + + ggmpportportlockmac OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The ports locked mac-address number " + ::= { gbnGgmpPortPropertyEntry 9 } + + ggmpportportgrnstp OBJECT-TYPE + SYNTAX Integer32 + { + stpdisable(0), + stpblocking(1), + stplearning(2), + stpforwarding(3), + stpunknown(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The ports grn stp status " + ::= { gbnGgmpPortPropertyEntry 10 } + + gbnGgmpVlanPropertyTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnGgmpVlanPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Lanswitch vlan property table" + ::= { gnlinkMib 5 } + + gbnGgmpVlanPropertyEntry OBJECT-TYPE + SYNTAX GbnGgmpVlanPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Lanswitch Vlan property parameters." + INDEX { ggmpvlanmac, ggmpvlanvlanid } + ::= { gbnGgmpVlanPropertyTable 1 } + + GbnGgmpVlanPropertyEntry ::= SEQUENCE { + ggmpvlanmac MacAddress, + ggmpvlanvlanid Integer32, + ggmpvlanname DisplayString (SIZE(1..32)), + ggmpvlanstatic Integer32, + ggmpvlanmembermap PortList, + ggmpvlanuntaggedmap PortList, + ggmpvlanaddportmap PortList, + ggmpvlandelportmap PortList, + ggmpvlanrowstatus RowStatus, + ggmpvlanaddtagportmap PortList, + ggmpvlanadduntagportmap PortList + } + + ggmpvlanmac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " mac address of the regist lanswtich ." + ::= { gbnGgmpVlanPropertyEntry 1 } + + ggmpvlanvlanid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " the id of vlan " + ::= { gbnGgmpVlanPropertyEntry 2 } + + ggmpvlanname OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " An administratively assigned string, which may be used + to identify the VLAN., but TiNet s2008 should not config vlan name" + ::= { gbnGgmpVlanPropertyEntry 3 } + + ggmpvlanstatic OBJECT-TYPE + SYNTAX Integer32 + { + other(1), + permanent(2), + dynamicgvrp(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " This object indicates the status of this entry. + other(1) - this entry is currently in use but the + conditions under which it will remain so differ + from the following values. + permanent(2) - this entry, corresponding to an entry + in dot1qVlanStaticTable, is currently in use and + will remain so after the next reset of the + device. The port lists for this entry include + ports from the equivalent dot1qVlanStaticTable + entry and ports learnt dynamically. + dynamicGvrp(3) - this entry is currently in use + and will remain so until removed by GVRP. There + is no static entry for this VLAN and it will be + removed when the last port leaves the VLAN. " + ::= { gbnGgmpVlanPropertyEntry 4 } + + ggmpvlanmembermap OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The set of ports which are transmitting traffic for + this VLAN as either tagged or untagged frames. " + ::= { gbnGgmpVlanPropertyEntry 5 } + + ggmpvlanuntaggedmap OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The set of ports which are transmitting traffic for + this VLAN as untagged frames." + ::= { gbnGgmpVlanPropertyEntry 6 } + + ggmpvlanaddportmap OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The set of ports which are transmitting traffic for + this VLAN as adding ports." + ::= { gbnGgmpVlanPropertyEntry 7 } + + ggmpvlandelportmap OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " The set of ports which are transmitting traffic for + this VLAN as adding ports." + ::= { gbnGgmpVlanPropertyEntry 8 } + + ggmpvlanrowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " This object indicates the status of this entry." + ::= { gbnGgmpVlanPropertyEntry 9 } + + ggmpvlanaddtagportmap OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Modify member port of this vlan type to tagged. " + ::= { gbnGgmpVlanPropertyEntry 10 } + + ggmpvlanadduntagportmap OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Modify member port of this vlan type to untagged. " + ::= { gbnGgmpVlanPropertyEntry 11 } + + gbnGgmpLsSaveTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnGgmpLsSaveEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table that save lanswitch" + ::= { gnlinkMib 6 } + + gbnGgmpLsSaveEntry OBJECT-TYPE + SYNTAX GbnGgmpLsSaveEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table that save lanswitch" + INDEX { ggmpsaveMAC } + ::= { gbnGgmpLsSaveTable 1 } + + GbnGgmpLsSaveEntry ::= SEQUENCE { + ggmpsaveMAC MacAddress, + ggmpsaveStatus Integer32, + ggmprebootStatus Integer32, + ggmpresetStatus Integer32, + ggmpSyncLswProperty Integer32, + ggmpSyncPortTable Integer32, + ggmpSyncVlanTable Integer32, + ggmpAllPortTag PortList, + ggmpAllPortUntag PortList + } + + ggmpsaveMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " MAC address of the regist lanswtich" + ::= { gbnGgmpLsSaveEntry 1 } + + ggmpsaveStatus OBJECT-TYPE + SYNTAX Integer32 + { + noop(1), + savelanswitch(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " if ggmpsaveStatus is 2, then save the lanswitch whose macaddress is MacAddress." + ::= { gbnGgmpLsSaveEntry 2 } + + ggmprebootStatus OBJECT-TYPE + SYNTAX Integer32 + { + noop(1), + rebootlanswitch(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " if ggmprebootStatus is 2, then reboot the lanswitch whose macaddress is MacAddress." + ::= { gbnGgmpLsSaveEntry 3 } + + ggmpresetStatus OBJECT-TYPE + SYNTAX Integer32 + { + noop(1), + resetlanswitch(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " if ggmpresetStatus is 2, then reset the lanswitch whose macaddress is MacAddress to default setting." + ::= { gbnGgmpLsSaveEntry 4 } + + ggmpSyncLswProperty OBJECT-TYPE + SYNTAX Integer32 + { + noop(1), + synchronizelswproperty(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Synchronize Lanswitch Property " + ::= { gbnGgmpLsSaveEntry 5 } + + ggmpSyncPortTable OBJECT-TYPE + SYNTAX Integer32 + { + noop(1), + synchronizeporttable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Synchronize Lanswitch Port Table " + ::= { gbnGgmpLsSaveEntry 6 } + + ggmpSyncVlanTable OBJECT-TYPE + SYNTAX Integer32 + { + noop(1), + synchronizevlantable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Synchronize Lanswitch Vlan Table " + ::= { gbnGgmpLsSaveEntry 7 } + + ggmpAllPortTag OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Set all port tag property. tagged[bit=1],do not change[bit=0]" + ::= { gbnGgmpLsSaveEntry 8 } + + ggmpAllPortUntag OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Set all port untag property. untagged[bit=1],do not change[bit=0]" + ::= { gbnGgmpLsSaveEntry 9 } + + + ggmpRefusedPort OBJECT-TYPE + SYNTAX PortList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Refused PortList of Server .enable[bit=1],disable[bit=0]." + ::= { gbnGgmpSvrProperty 1 } + + ggmpServerMngVlan OBJECT-TYPE + SYNTAX Integer32 (2..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Gnlink vlan in server." + ::= { gbnGgmpSvrProperty 2 } + + ggmpSvrLanMngVlan OBJECT-TYPE + SYNTAX Integer32 (2..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Gnlink vlan in server for all clients. Command node." + ::= { gbnGgmpSvrProperty 3 } + + ggmpTrapSwitch OBJECT-TYPE + SYNTAX Integer32 + { + ggmpTrapEnable(1), + ggmpTrapDisable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ggmp trap sending switch " + ::= { gbnGgmpSvrProperty 4 } + + ggmpSvrRequestTimeout OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum time that command waiting for its reply " + --ÃüÁîµÄ³¬Ê±Ê±¼ä + ::= { gbnGgmpSvrProperty 5 } + + ggmpSvrClientErrTimeout OBJECT-TYPE + SYNTAX Integer32 (90..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Time that server must wait to delete a lanswith in error state " + --serverɾ³ý´¦ÓÚ´íÎó״̬µÄclientǰÐèÒªµÈ´ýµÄʱ¼ä + ::= { gbnGgmpSvrProperty 6 } + + ggmpSvrClientErrMaxHellos OBJECT-TYPE + SYNTAX Integer32 (3..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Times which lanswitch hasn't shankhands with server before being setted to error " + --ÉèÖÃserverÔÚÎÕÊÖ³¬Ê±¶àÉٴκó½«clientÖÃΪerror + ::= { gbnGgmpSvrProperty 7 } + + ggmpSvrRequestMaxRetries OBJECT-TYPE + SYNTAX Integer32 (3..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Retransmit times for server before sending a command successfully " + --ÃüÁî·¢ËÍʧ°ÜÔÊÐíµÄÖØÊÔ´ÎÊý + ::= { gbnGgmpSvrProperty 8 } + + ggmpserverMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ZY.Link protocol packets' destination MAC address" + --ZY.LinkЭÒ鱨ÎĵÄÄ¿µÄMACµØÖ· + ::= { gbnGgmpSvrProperty 9 } + + ggmpClientAppGetMode OBJECT-TYPE + SYNTAX INTEGER { + ftp(1), + tftp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " config mode by which to get application from server,ftp or tftp" + --Ñ¡Ôñͨ¹ýÄÄÖÖ·½Ê½ÓÉ·þÎñÆ÷ÏÂÔØ¿Í»§¶ËÓ¦ÓóÌÐò,·ÖΪftpģʽºÍtftpģʽ + ::= { gbnGgmpSvrProperty 10 } + + ggmpClientAppSvrIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ggmp client application ftp server ipaddress" + --¼¯Èº¹ÜÀí¿Í»§¶ËÓ¦ÓóÌÐòftp·þÎñÆ÷µÄipµØÖ· + ::= { gbnGgmpSvrProperty 11 } + + ggmpClientAppFtpSvrUserName OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ggmp client application ftp server userName" + --¼¯Èº¹ÜÀí¿Í»§¶Ëftp·þÎñÆ÷Óû§Ãû + ::= { gbnGgmpSvrProperty 12 } + + ggmpClientAppFtpSvrPassword OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ggmp client application ftp server password" + --¼¯Èº¹ÜÀí¿Í»§¶Ëftp·þÎñÆ÷ÃÜÂë + ::= { gbnGgmpSvrProperty 13 } + + ggmpClientRemoteReboot OBJECT-TYPE + SYNTAX INTEGER { + permit(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " config ZY.Link server allow client remote reboot" + --ÅäÖÃZY.Link·þÎñÆ÷¶ËÊÇ·ñÔÊÐíÖ§³Ö´¥·¢ÖØÆôµÄ¿Í»§¶ËÉ豸ÔÚÔ¶³ÌÉý¼¶Íê±Ïºó´¥·¢ÖØÆô + ::= { gbnGgmpSvrProperty 14 } + + ---------------------------------------------------------------------------------- + --LANSWITCH ARL±í²éѯMIB±í-- + ---------------------------------------------------------------------------------- + gbnGgmpLsARLTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnGgmpLsARLEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that is used to search lanswitch ARL table" + ::= { gnlinkMib 8 } + + gbnGgmpLsARLEntry OBJECT-TYPE + SYNTAX GbnGgmpLsARLEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that is used to search lanswitch ARL table" + INDEX { ggmparllanMAC, ggmparllanarlMAC } + ::= { gbnGgmpLsARLTable 1 } + + + GbnGgmpLsARLEntry ::= SEQUENCE { + ggmparllanMAC MacAddress, + ggmparllanarlMAC MacAddress, + ggmpmac2port Integer32 + } + + ggmparllanMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " MAC address of the registered lanswtich" + ::= { gbnGgmpLsARLEntry 1 } + + ggmparllanarlMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " MAC address of the registered lanswtich" + ::= { gbnGgmpLsARLEntry 2 } + + ggmpmac2port OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Port id corresponding to the mac address in the last 6 bytes of the index." + ::= { gbnGgmpLsARLEntry 3 } + + ---------------------------------------------------------------------------------- + --GGMP TRAP MIB-- + ---------------------------------------------------------------------------------- + + ggmpClientPortLoop NOTIFICATION-TYPE + OBJECTS { ggmpportportgrnstp } + STATUS current + DESCRIPTION + "Client port loop" + ::= { gbnGgmpTrap 1 } + + ggmpClientPortLoopFree NOTIFICATION-TYPE + OBJECTS { ggmpportportgrnstp } + STATUS current + DESCRIPTION + "Client port loop free" + ::= { gbnGgmpTrap 2 } + + ggmpClientPortLinkUp NOTIFICATION-TYPE + OBJECTS { ggmpportportlink } + STATUS current + DESCRIPTION + "Client port link up" + ::= { gbnGgmpTrap 3 } + + ggmpClientPortLinkDown NOTIFICATION-TYPE + OBJECTS { ggmpportportlink } + STATUS current + DESCRIPTION + "Client port link down" + ::= { gbnGgmpTrap 4 } + + ggmpClientTurnErr NOTIFICATION-TYPE + OBJECTS { ggmplanMAC } + STATUS current + DESCRIPTION + "Client turn to error status" + ::= { gbnGgmpTrap 5 } + + ggmpClientTurnNormal NOTIFICATION-TYPE + OBJECTS { ggmplanMAC } + STATUS current + DESCRIPTION + "Client turn to normal status from error status" + ::= { gbnGgmpTrap 6 } + + ggmpClientDeleteErr NOTIFICATION-TYPE + OBJECTS { ggmplanMAC } + STATUS current + DESCRIPTION + "Delete error status lanswitch information" + ::= { gbnGgmpTrap 7 } + + ggmpClientNewReg NOTIFICATION-TYPE + OBJECTS { ggmplanMAC } + STATUS current + DESCRIPTION + "New register lanswitch" + ::= { gbnGgmpTrap 8 } + + ----------------------------------------------------------------------- + --GGMP Ô¶³ÌÉý¼¶¿Í»§¶ËÓ¦ÓóÌÐòÃûµÄÅäÖà MIB-- + ----------------------------------------------------------------------- + ggmpDevClientAppTable OBJECT-TYPE + SYNTAX SEQUENCE OF GgmpDevClientAppEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table used to config Lanswitch application table" + --¸Ã±íÓÃÀ´ÅäÖÃϹҽ»»»»úµÄÓ¦ÓóÌÐò + ::= { gnlinkMib 10 } + + ggmpDevClientAppEntry OBJECT-TYPE + SYNTAX GgmpDevClientAppEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for configging clients' application list." + --ÓÃÓÚÅäÖÿͻ§¶ËµÄÓ¦ÓóÌÐòÁбí + INDEX { + ggmpDevTypeNum , + ggmpRmtLoadAppType + } + ::= { ggmpDevClientAppTable 1 } + + GgmpDevClientAppEntry ::= SEQUENCE { + ggmpDevTypeNum INTEGER, + ggmpRmtLoadAppType INTEGER, + ggmpDevAppName DisplayString(SIZE(1..64)) + } + + ggmpDevTypeNum OBJECT-TYPE + SYNTAX INTEGER (1..24) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This value actually is the same as the index of device id table, + please refer to device id table for more details about which + value each device corresponds to" + --´Ë½ÚµãµÄÖµºÍdevice id±íµÄË÷ÒýÖµÏàͬ,¿ÉÒԲο¼device id±íÀ´²é¿´Ã¿ÖÖ + --É豸¶ÔÓ¦µÄË÷ÒýÖµ + ::= { ggmpDevClientAppEntry 1 } + + ggmpRmtLoadAppType OBJECT-TYPE + SYNTAX INTEGER { + bootrom(1), + host(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "config file type to be loaded :bootrom or host" + --ÅäÖôý¼ÓÔØµÄÎļþÀàÐÍ£¬bootromÎļþ»òÖ÷»úÎļþ + ::= { ggmpDevClientAppEntry 2 } + + ggmpDevAppName OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ggmp client application filename" + --¼¯Èº¹ÜÀí¿Í»§¶ËÓ¦ÓóÌÐòÃû + ::= { ggmpDevClientAppEntry 3 } + + ---------------------------------------------------------------------- + --GGMP Ô¶³ÌÉý¼¶¿Í»§¶ËÒÔ¼°¼ÓÔØÊ±¼äµÄÅäÖÃmib-- + ---------------------------------------------------------------------- + ggmpDevRmtLoadTable OBJECT-TYPE + SYNTAX SEQUENCE OF GgmpDevRmtLoadEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Lanswitch application table" + ::= { gnlinkMib 11 } + + ggmpDevRmtLoadEntry OBJECT-TYPE + SYNTAX GgmpDevRmtLoadEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for configging/showing clients remote load information." + --ÓÃÓÚÅäÖÃÏÔʾ¿Í»§¶ËµÄ¼ÓÔØÐÅÏ¢ + INDEX { ggmpRmtLoadDevMac } + ::= { ggmpDevRmtLoadTable 1 } + + GgmpDevRmtLoadEntry ::= SEQUENCE { + ggmpRmtLoadDevMac MacAddress, + ggmpRmtLoadQueIn INTEGER, + ggmplanRmtLoadPercent INTEGER, + ggmplanRmtLoadTime INTEGER, + ggmplanRmtLoadAppType INTEGER, + ggmplanRmtLoadRowStatus RowStatus + } + + ggmpRmtLoadDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " MAC address of the regist lanswtich" + --¼¯Èº¹ÜÀí¿Í»§¶ËµÄÉ豸MACµØÖ· + ::= { ggmpDevRmtLoadEntry 1 } + + ggmpRmtLoadQueIn OBJECT-TYPE + SYNTAX INTEGER { + WaitingList(1), + ReadyList(2), + CmpltList(3), + FailedList(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " current queue in which lanswitch resides" + --ָʾÉ豸´¦ÓÚÄĸö¶ÓÁÐ + ::= { ggmpDevRmtLoadEntry 2 } + + ggmplanRmtLoadPercent OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Show the process of loading" + --ÏÔʾ¼ÓÔØµÄ½ø¶È + ::= { ggmpDevRmtLoadEntry 3 } + + ggmplanRmtLoadAppType OBJECT-TYPE + SYNTAX INTEGER{ + bootrom(1), + host(2), + bootromAndHost(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "config file type to be loaded :bootrom or host or both" + --ÅäÖôý¼ÓÔØµÄÎļþÀàÐÍ£¬bootromÎļþ»òÖ÷»úÎļþ»òÕßÈ«²¿Îļþ + ::= { ggmpDevRmtLoadEntry 4 } + + ggmplanRmtLoadTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Time at which lanswitch to be loaded" + --Ϲҽ»»»»úµÄ¼ÓÔØÊ±¼ä + ::= { ggmpDevRmtLoadEntry 5 } + + ggmplanRmtLoadRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this entry." + --±íÏîµÄ״̬ + ::= { ggmpDevRmtLoadEntry 6 } + + ----------------------------------------------------------------------- + --GGMP Ô¶³ÌÉý¼¶Ä£Ê½µÄÅäÖà MIB-- + ----------------------------------------------------------------------- + ggmpRmtLoadModeTable OBJECT-TYPE + SYNTAX SEQUENCE OF GgmpRmtLoadModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Lanswitch application table" + ::= { gnlinkMib 12 } + + ggmpRmtLoadModeEntry OBJECT-TYPE + SYNTAX GgmpRmtLoadModeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for configging/showing remote load mode." + --ÓÃÓÚÅäÖÃÏÔʾ¿Í»§¶ËµÄ¼ÓÔØÄ£Ê½ + INDEX { ggmpRmtLoadDevType } + ::= { ggmpRmtLoadModeTable 1 } + + GgmpRmtLoadModeEntry ::= SEQUENCE { + ggmpRmtLoadDevType INTEGER, + ggmpRmtLoadmode INTEGER, + ggmpRmtLoadModeTime INTEGER, + ggmpRmtLoadNewRegAuto INTEGER, + ggmpRmtLoadModeRowStatus RowStatus + } + + ggmpRmtLoadDevType OBJECT-TYPE + SYNTAX INTEGER (0..24) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "value '0'means all device,the others actually are the same as the + index of device id table,please refer to device id table for more + details about which value each device corresponds to" + --´Ë½ÚµãֵΪ'0'´ú±íÅäÖÃËùÓÐÉ豸,ÆäËûÖµµÄÒâÒåºÍdevice id±íµÄË÷ÒýÖµÏàͬ, + --¿ÉÒԲο¼device id±íÀ´²é¿´Ã¿ÖÖÉ豸¶ÔÓ¦µÄË÷ÒýÖµ + ::= { ggmpRmtLoadModeEntry 1 } + + ggmpRmtLoadmode OBJECT-TYPE + SYNTAX INTEGER { + hostOnce(1), + bootromOnce(2), + hostAndBootromOnce(3), + hostPeriodic(4), + bootromPeriodic(5), + hostAndBootromPeriodic(6), + loadNone(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Config loading mode:1.load all lanswitchs'host file ,or bootrom + file, or both ,at specified time; 2.load all lanswitchs'host file, + or bootrom file ,or both, periodically at specified time" + --ÅäÖüÓÔØµÄģʽ,·ÖΪ£º + --1.ÔÚ¸ø¶¨Ê±¼äÒ»´ÎÐÔÉý¼¶ËùÓÐÉ豸µÄÖ÷»úÎļþ»òbootromÎļþ»òËùÓÐÎļþ; + --2.ÔÚ¸ø¶¨Ê±¼äÖÜÆÚÐÔ¼ÓÔØËùÓÐÉ豸µÄÖ÷»úÎļþ»òbootromÎļþ»òËùÓÐÎļþ¡£ + ::= { ggmpRmtLoadModeEntry 2 } + + ggmpRmtLoadModeTime OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Config when to load lanswitch.loading time is total number + of seconds relative to start point which is '1970/01/01 00:00:00' + if remote-load-mode is 'loadAllOnce',or 'sunday 00:00:00'if + remote-load-time is 'loadAllPeriodic' " + --ÅäÖüÓÔØµÄʱ¼ä,µ±¼ÓÔØÄ£Ê½Îª"loadAllOnce"ʱ£¬¼ÓÔØÊ±¼äΪÏà¶ÔÓÚ + --1970/01/01 00:00:00µÄ×ÜÃëÊý£¬µ±¼ÓÔØÄ£Ê½Îª'loadAllPeriodic'ʱ£¬ + --¼ÓÔØÊ±¼äΪÏà¶ÔÓÚÐÇÆÚÌì00:00:00µÄ×ÜÃëÊý + ::= { ggmpRmtLoadModeEntry 3 } + + ggmpRmtLoadNewRegAuto OBJECT-TYPE + SYNTAX INTEGER { + hostFile(1), + bootromFile(2), + hostAndBootrom(3), + none(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config if all lanswitchs newly registered are loaded automatically. + File to be loaded :host file, bootrom file, or both" + --ÅäÖÃÊÇ·ñ×Ô¶¯¼ÓÔØËùÓÐÐÂ×¢²áÉ豸,´ýÉý¼¶µÄÎļþ·ÖΪÖ÷»úÎļþ£¬bootromÎļþ + --»òÕßÊÇÁ½ÖÖÎļþ¶¼Éý¼¶ + ::= { ggmpRmtLoadModeEntry 4 } + + ggmpRmtLoadModeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of this entry." + --±íÏîµÄ״̬ + ::= { ggmpRmtLoadModeEntry 5 } + ---------------------------------------------------------------------- + --´Ë±íÓÃÀ´ÅäÖÿͻ§¶ËµÄÉ豸idÁбí-- + ---------------------------------------------------------------------- + ggmpGbnDeviceIdTable OBJECT-TYPE + SYNTAX SEQUENCE OF GgmpGbnDeviceIdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Lanswitch id Entry" + ::= { gnlinkMib 13 } + + ggmpGbnDeviceIdEntry OBJECT-TYPE + SYNTAX GgmpGbnDeviceIdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table entry for configging lanswitch deviceId information." + --ÓÃÓÚÅäÖÿͻ§¶ËµÄÉ豸idÐÅÏ¢ + INDEX { ggmpGbnDevIdIndex } + ::= { ggmpGbnDeviceIdTable 1 } + + GgmpGbnDeviceIdEntry ::= SEQUENCE { + ggmpGbnDevIdIndex INTEGER, + ggmpGbnDeviceId INTEGER, + ggmpGbnDeviceDesc DisplayString(SIZE(1..32)), + ggmpGbnDeviceIDRowStatus RowStatus, + ggmpGbnDevLowMidHighType INTEGER + } + + ggmpGbnDevIdIndex OBJECT-TYPE + SYNTAX INTEGER(1..48) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " index of deviceId table,the first 20 entries of id table + have been occupied,so index should not less than 21" + --É豸id±íµÄË÷Òý,ÓÉÓÚǰ20Ìõ±íÏîÒѾ­±»Õ¼Óã¬ËùÒÔÓû§ÅäÖà + --ÊäÈëµÄË÷Òý²»Ó¦Ð¡ÓÚ21 + ::= { ggmpGbnDeviceIdEntry 1 } + + ggmpGbnDeviceId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " lanswitch's device-id which is the identifier of device-type, + first 20 entries of device-id table have been occupied by + existing device-types,following details £º + S3042V->0x01000000,S2008E->0x02000000,S2016E->0x03000000, + S2016EF->0x03010000,S2024E->0x04000000,S2024EF->0x04010000, + S2208->0x05000000,S2024M->0x06010000,S2024M->0x06010000, + S2024M->0x06010000,S2024M->0x06010000,S2016M->0x07010000, + S2008M->0x08010000,S2024EI->0x09010000,S2016EI->0x0a010000, + S2008EI->0x0b010000,S2008EI-S->0x13010000,S2008EI-SF->0x14010000, + S2024C->0x0c010000,S2016C->0x0d010000,S2008C->0x0e010000, + S2008C-F->0x0f010000,S2008B->0x11010000,these entries are protected + by software.unknown device-type-number needs configging manually" + ::= { ggmpGbnDeviceIdEntry 2 } + + ggmpGbnDeviceDesc OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " lanswitch's device-type name£¬such as ¡®TiNet S2008E¡¯" + ::= { ggmpGbnDeviceIdEntry 3 } + + ggmpGbnDeviceIDRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of this entry." + ::= { ggmpGbnDeviceIdEntry 4 } + + ggmpGbnDevLowMidHighType OBJECT-TYPE + SYNTAX INTEGER { + lowswitch(1), + mid-highswitch(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " define whether device is low switch or mid-high switch" + ::= { ggmpGbnDeviceIdEntry 5 } + + + ggmpClientmac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ZY.Link protocol packets' destination MAC address" + ::= { gbnGgmpClientProperty 1 } + + ggmpClientManageVlan OBJECT-TYPE + SYNTAX Integer32 (2..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Gnlink vlan for client." + ::= { gbnGgmpClientProperty 2 } +-- +-- END of GBN-GGMP-MIB +-- + +END + + diff --git a/mibs/fs/GBNPlatformOAM-MIB b/mibs/fs/GBNPlatformOAM-MIB new file mode 100644 index 0000000000..c68024c06e --- /dev/null +++ b/mibs/fs/GBNPlatformOAM-MIB @@ -0,0 +1,1613 @@ + GBNPlatformOAM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnPlatform FROM ADMIN-MASTER-MIB + + SnmpAdminString FROM SNMP-FRAMEWORK-MIB + + PortList, dot1qStaticMulticastEntry FROM Q-BRIDGE-MIB; + + gbnPlatformOAM MODULE-IDENTITY + LAST-UPDATED "0011020000Z" -- November 2, 2000 + ORGANIZATION "Admin Co., Ltd." + CONTACT-INFO "Admin Co., Ltd. + E-mail: support@admin.com" + + DESCRIPTION "ADMIN Common Enterprise MIB definition." + + REVISION "0011020000Z" -- November 2, 2000 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatform 1 } + +------------------------------------------------------------------------------ +-- define groups in GBN-COMMON-MIB +------------------------------------------------------------------------------ + gbnPlatformOAMSysIf OBJECT IDENTIFIER ::= { gbnPlatformOAM 1 } + gbnPlatformOAMSystem OBJECT IDENTIFIER ::= { gbnPlatformOAM 2 } + gbnPlatformOAMIpAccessControl OBJECT IDENTIFIER ::= { gbnPlatformOAM 3 } + gbnPlatformOAMWatchDog OBJECT IDENTIFIER ::= { gbnPlatformOAM 4 } + gbnPlatformOAMMuser OBJECT IDENTIFIER ::= { gbnPlatformOAM 5 } + gbnPlatformOAMUpDownLoad OBJECT IDENTIFIER ::= { gbnPlatformOAM 6 } + gbnPlatformOAMSnmp OBJECT IDENTIFIER ::= { gbnPlatformOAM 7 } + gbnPlatformOAMSntpClient OBJECT IDENTIFIER ::= { gbnPlatformOAM 8 } + gbnPlatformOAMSyslog OBJECT IDENTIFIER ::= { gbnPlatformOAM 9 } + gbnPlatformOAMPortCar OBJECT IDENTIFIER ::= { gbnPlatformOAM 10 } + gbnPlatformOAMSsh OBJECT IDENTIFIER ::= { gbnPlatformOAM 11 } + gbnPlatformOAMMailalarm OBJECT IDENTIFIER ::= { gbnPlatformOAM 12 } + gbnPlatformOAMVctRun OBJECT IDENTIFIER ::= { gbnPlatformOAM 13 } + gbnPlatformOAMVctRunResult OBJECT IDENTIFIER ::= { gbnPlatformOAM 14 } + gbnPlatformOAMTelnet OBJECT IDENTIFIER ::= { gbnPlatformOAM 15 } + gbnPlatformOAMIpControl OBJECT IDENTIFIER ::= { gbnPlatformOAM 16 } +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMSysIf - System IP Group +-- +-- This group include manually config system ip-address,or using dhcp/bootp client, +-- and manageVLAN. +-- +------------------------------------------------------------------------------ +-- + sysIfMACAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { '000000000000'H } + The base (i.e., first) MAC address used by the gbn agent for its + in-band ports." + ::= { gbnPlatformOAMSysIf 1 } + + sysIfIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { '00000000'H } + The IP Address for sw0 (swEND 0); only applies after reset - + see 'gbnCommonMiscReset'." + ::= { gbnPlatformOAMSysIf 2 } + + sysIfIPGateAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { '00000000'H } + The default Gateway Address (i.e., next hop router) for sw0 + (swEND 0); only applies after reset - see 'gbnCommonMiscReset'." + ::= { gbnPlatformOAMSysIf 3 } + + sysIfIPNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 'ffffff00'H } + The IP NetMask for sw0 (swEND 0); only applies after reset - + see 'gbnCommonMiscReset'." + ::= { gbnPlatformOAMSysIf 4 } + + sysIfIPStatus OBJECT-TYPE + SYNTAX INTEGER { + notModified(1), + modified(2), + restore(3), + apply(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to synchronize the modification of the IP + parameters used by the protocol stack based on the gbnCommonIP + MIB objects. This allows the user to change gbnCommonIPMACAddr, + gbnCommonIPIpAddress, gbnCommonIPGateAddress, and + gbnCommonIPNetMask, and then apply the changes to the unit + using apply(4). If gbnCommonIPStatus returns notModified(1), + no modifications were made to any gbnCommonIP MIB objects. + If gbnCommonIPStatus returns modified(2), one or more objects + were changed, but have not been applied. Both notModified(1) + and modified(2) are read-only values; the agent returns a + SNMPBADVALUE for sets using these values. Both restore(3) and + apply(4) are valid SET values. If one or more of the gbnCommonIP + objects were modified, the user can restore the parameters to a + mirror of the NVM values using restore(3)." + ::= { gbnPlatformOAMSysIf 5 } + + sysIfBOOTPOnOff OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { disable } + Enable/Disable BOOTP operation for the gbn agent. + When 'disable(2)', no BOOTPs are transmitted by the Application. + When 'enable(1)', the Application sends BOOTP requests during + system startup." + ::= { gbnPlatformOAMSysIf 7 } + + sysIfDHCPOnOff OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { disable } + Enable/Disable DHCP operation for the gbn agent. + When 'disable(2)', no DHCPs are transmitted by the Application. + When enabled, the Application sends DHCP requests during + system startup." + ::= { gbnPlatformOAMSysIf 8 } + + sysIfManageVLANTbale OBJECT-TYPE + SYNTAX SEQUENCE OF SysIfManageVLANEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "ManageVlan table" + --¹ÜÀíVLAN±í¸ñ¡£ + ::= { gbnPlatformOAMSysIf 9 } + + sysIfManageVLANEntry OBJECT-TYPE + SYNTAX SysIfManageVLANEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "ManageVlan entry" + --¹ÜÀíVLANʵÌå¡£ + INDEX { sysIfManageVLANVid } + ::= { sysIfManageVLANTbale 1 } + + SysIfManageVLANEntry ::= + SEQUENCE { + sysIfManageVLANVid + INTEGER, + sysIfManageVLANRowStatus + RowStatus + } + + sysIfManageVLANVid OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + DESCRIPTION + "ManageVLAN-ID, as an index, the maximum number is 26." + --¹ÜÀíVLAN£¬×÷ΪË÷Òý¡£×î¶à¿ÉÒÔ´´½¨26¸ö¡£ + ::= { sysIfManageVLANEntry 1 } + + sysIfManageVLANRowStatus OBJECT-TYPE + SYNTAX RowStatus + ACCESS read-write + STATUS current + DESCRIPTION + "ManageVLAN status" + ::= { sysIfManageVLANEntry 2 } + + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMSystem - System Group +-- +------------------------------------------------------------------------------ + softwarePlate OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software platform used by switches." + --½»»»»ú²ÉÓõÄÈí¼þƽ̨¡£ + ::= { gbnPlatformOAMSystem 1 } + + softwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software version, the format is V100R001B02D06P03SP3" + --Èí¼þ°æ±¾£¬¸ñʽΪV100R001B02D06P03SP3 + ::= { gbnPlatformOAMSystem 2 } + + softwareCompiledTimeE OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software Compiled time displayed in English, the format is Feburary 17 2003 15:47:00" + --Èí¼þ±àÒëʱ¼ä£¬¸ñʽΪFeburary 17 2003 15:47:00 + ::= { gbnPlatformOAMSystem 3 } + + softwareCompiledTimeC OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software Compiled time displayed in Chinese, the format is 2003nian06yue18ri13dian15fen" + --Èí¼þ±àÒëʱ¼ä£¬¸ñʽΪ2003Äê06ÔÂ18ÈÕ13µã15·Ö + ::= { gbnPlatformOAMSystem 4 } + + cpuDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System CPU description, the format is Mips 32334, 133MHz" + --ϵͳCPUÃèÊö£¬¸ñʽΪMips 32334, 133MHz + ::= { gbnPlatformOAMSystem 5 } + + sdramDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System Memery description, the format is 32M" + --ϵͳÄÚ´æÃèÊö£¬¸ñʽΪ32M + ::= { gbnPlatformOAMSystem 6 } + + flashDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System Flash description, the format is 4096k" + --ϵͳFLASHÃèÊö£¬¸ñʽΪ4096k + ::= { gbnPlatformOAMSystem 7 } + + hardwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware version, the format is V3.0" + --ϵͳÖ÷°åµÄ°æ±¾ºÅ£¬¸ñʽΪV3.0 + ::= { gbnPlatformOAMSystem 8 } + + bootromVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bootrom version, the format is V2.0" + --ϵͳÖ÷°åµÄ°æ±¾ºÅ£¬¸ñʽΪV2.0 + ::= { gbnPlatformOAMSystem 9 } + + hostName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "System host name" + ::= { gbnPlatformOAMSystem 10 } + + cpuIdle OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of free CPU in the current system." + ::= { gbnPlatformOAMSystem 11 } + + memorySize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current system memory size, unit is byte." + ::= { gbnPlatformOAMSystem 12 } + + memoryIdle OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current system free memory size, unit is byte." + ::= { gbnPlatformOAMSystem 13 } + + systemClock OBJECT IDENTIFIER ::= { gbnPlatformOAMSystem 14 } + + clockTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current calendar time in seconds. The based time is 1979/1/1. + Year of the date must be the number between 2000 and 2099" + ::= { systemClock 1 } + + timeZoneName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the timezone name,1-32 letters.eg CCT(China Coast, USSR Zone 7)" + ::= { systemClock 2 } + + timeZoneOffset OBJECT-TYPE + SYNTAX Integer32 (0..86399) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "seconds between current timezone and GMT " + ::= { systemClock 3 } + + offsetNegFlag OBJECT-TYPE + SYNTAX INTEGER{ + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "earlier or latter than GMT,it is true when timeZoneOffset is negative" + ::= { systemClock 4 } + + productName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 'WindRiver gbn Agent' } + The product name associated with this agent. This name is + displayed on the console screens and Web pages." + ::= { gbnPlatformOAMSystem 15 } + + systemReset OBJECT-TYPE + SYNTAX INTEGER { + noop(1), -- no operation + reset(2), -- reset unit + resetToDefaults(3) -- reset to factory defaults/reset unit + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Physically performs a hardware reset of the unit. + Use with care. A 'reset(2)' resets the unit, a + 'resetToDefaults(3)' resets the NVM configuration + to factory defaults and then resets the unit, and 'noop(1)' + does nothing. A value of 'noop(1)' is always returned for a + GET operation." + ::= { gbnPlatformOAMSystem 16 } + + writeConfig OBJECT-TYPE + SYNTAX INTEGER { + noop(1), -- no operation + save(2), -- save all configuration parameters to NVM + saveInProgress(3), -- read-only: NVM save in progress + saveFailed(4) -- read-only: NVM save failed + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When set to 'save(2)', config file is saved to NVM (Nonvolatile + Memory). NVM save operations may be slow (e.g., erasing/writing + Flash device). + + Consequently, all or many updates should be made before + saving to NVM. Note that the SNMP set to 'save(2)' returns + immediately to the caller. Gets on this object then return + 'saveInProgress(3)' until the save operation completes, at + which time 'noop(1)' is returned if the save operation is + succeeded, otherwise 'saveFailed(4)' is returned. Consequently, + a get operation always returns 'noop(1)', 'saveInProgress(3)' + or 'saveFailed(4) depending on the current state and the result + of the save operation. + + The agent returns 'badValue' for SNMPv1 or 'inconsistentValue' + for SNMPv2c/v3 for a set to 'Save(2)' while the current get + state is 'saveInProgress(3)'. + + Attempts to set this object to 'saveInProgress(3)' or 'saveFailed(4)' + returns 'badValue' for SNMPv1 or 'wrongValue' for SNMPv2c/v3." + ::= { gbnPlatformOAMSystem 17 } + +------------------------------------------------------------------------------ +-- define groups in GBN-COMMON-MIB +------------------------------------------------------------------------------ + saveNMInterfaceConfig OBJECT IDENTIFIER ::= { gbnPlatformOAMSystem 18 } +------------------------------------------------------------------------------ +-- +-- saveNMInterfaceConfig - Save nminterface configuration Group +-- +------------------------------------------------------------------------------ + nmInterfaceId OBJECT-TYPE + SYNTAX INTEGER(0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "interface id of vlan saved for nminterface configuration." + --´Ë½ÚµãÓÃÓÚ´æ´¢vlan½Ó¿ÚID¡£µ±ÖµÎª0ʱĬÈÏΪvlan 1 µÄ½Ó¿Ú¡£ + ::= { saveNMInterfaceConfig 1 } + + nmInterfaceIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ip address saved for nminterface configuration." + --´Ë½ÚµãÓÃÓÚ´æ´¢vlan½Ó¿ÚµÄipµØÖ·¡£ + ::= { saveNMInterfaceConfig 2 } + + nmInterfaceNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "mask saved for nminterface configuration. " + --´Ë½ÚµãÓÃÓÚ´æ´¢vlan½Ó¿ÚµÄÑÚÂë¡£ + ::= { saveNMInterfaceConfig 3 } + + nmInterfaceGateAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "gateway address saved for nminterface configuration. " + --´Ë½ÚµãÓÃÓÚ´æ´¢vlan½Ó¿ÚµÄÍø¹ØµØÖ·¡£ + ::= { saveNMInterfaceConfig 4 } + + writeNMInterfaceConifig OBJECT-TYPE + SYNTAX INTEGER{ + saveNmconfig(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "We save the nminterface configuration through setting this Mib. When setting to + 'saveNmconfig(1)', nminterface configuration is starting to be saved. + At the same time the value of writeNMInterfaceConifigStatus Mib is set to 'saveInProgress(2)'. + Then the value of nmInterfaceId, nmInterfaceIpAddress, nmInterfaceNetMask, + nmInterfaceGateAddress will be read one by one.According to these value, + the nminterface configuration is to be saved. + Untill the process was over the value of writeNMInterfaceConifigStatus Mib is + changed to 'saveSuccess(1)'. And if the process was ended for exception the value + of writeNMInterfaceConifigStatus Mib is set to a error code from + 'saveFailed(3)' to 'invalidIpOrMask(11)'. " + --ÎÒÃÇͨ¹ýÉèÖÃÕâ¸öMibÀ´±£´æ×îС¹ÜÀíÅäÖ㬵±Éè´ËMibµÄֵΪ1ʱ£¬ccdÄ£¿é½«µ÷ÓÃÏàÓ¦µÄ´¦Àíº¯Êý + --À´±£´æºÍ×îСÅäÖÃÏà¹ØµÄÐÅÏ¢¡£´Ë´¦Àíº¯ÊýÒ»¿ªÊ¼¾Í½«writeNMInterfaceConifigStatusµÄÖµÉèΪ2£¬ + --È»ºóÒÀ´Î¶ÁÈ¡nmInterfaceId, nmInterfaceIpAddress, nmInterfaceNetMask,nmInterfaceGateAddress + --½ÚµãÖеÄÖµ£¬ÒÔÕâЩֵ×÷Ϊ²ÎÊý¶ÔºÍ×îСÅäÖÃÏà¹ØµÄÐÅÏ¢½øÐб£´æ¡£µÈµ½Íê³É±£´æ²Ù×÷£¬Èç¹û³É¹¦±£´æ£¬ + --´¦Àíº¯Êý½«writeNMInterfaceConifigStatusÖµÉèΪ1£¬Ê§°ÜÉèÖÃΪÏàÓ¦´íÎó״̬Ϊ3£­11¡£ + + --²¹³ä£ºnmInterfaceId£¬nmInterfaceIpAddress, nmInterfaceNetMask,nmInterfaceGateAddress + --4¸ö½ÚµãµÄÖµ¿ÉÒÔ¶¼²»ÉèÖᣠÈç¹ûÉèÖÃÁËnmInterfaceId½Úµã£¬ºóÈý¸ö½Úµã¿ÉÒÔ²»ÉèÖ㬵«Èç¹ûÉèÖÃÁË + --nmInterfaceIpAddress½ÚµãµÄÖµ£¬nmInterfaceNetMask, nmInterfaceGateAddressµÄÖµ±ØÐëÉèÖá£Èç¹û + --ûÓÐÉèÖÃnmInterfaceIpAddress½ÚµãµÄÖµ£¬ºóÁ½¸ö¾Í²»ÄÜÉèÖá£Èç¹ûnmInterfaceId½ÚµãûÓÐÉèÖ㬠+ --ºóÈý¸ö¾Í¶¼²»ÄÜÉèÖᣠ+ ::= { saveNMInterfaceConfig 5 } + + writeNMInterfaceConifigStatus OBJECT-TYPE + SYNTAX INTEGER{ + saveSuccess(1), -- NVM save succeeded + saveInProgress(2), -- read-only: NVM save in progress + saveFailed(3), -- read-only: NVM save failed + noInterface(4), -- the vlan interface doesn't exist + noIpAddress(5), -- no ip for the vlan interface + differentSubnet(6), -- ip address and gateway address are not in the same subnet + noInterfaceParameter(7), -- need to input a vlan interface + noIpAddressParameter(8), -- need to input an ip address + noMaskParameter(9), -- need to input a mask + noGatewayParameter(10), -- need to input a gateway address + invalidIpOrMask(11) -- the ip address or mask is invalid + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reserve the status of process in saving Nmconfig." + --´æ´¢±£´æ×îС¹ÜÀíÅäÖùý³ÌÖеÄ״̬¡£ + + ::= { saveNMInterfaceConfig 6 } + + prodSerialNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Product Serial Number" + --²úÆ·ÐòÁкŠ+ ::= { gbnPlatformOAMSystem 19 } + + cpuBusyStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU busy status" + --CPUæ״̬ + ::= { gbnPlatformOAMSystem 20 } + + cpuBusyAlarmEnable OBJECT-TYPE + SYNTAX TruthValue { + true (1), + false (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the enable status of cpu busy alarm." + --CPUæ¸æ¾¯¿ªÆô/¹Ø±Õ״̬ + DEFVAL {true} + ::= { gbnPlatformOAMSystem 21 } + + cpuBusyThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CPU busy threshold." + --CPUæµÄãÐÖµ + ::= { gbnPlatformOAMSystem 22 } + + cpuUnbusyThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CPU unbusy threshold." + --CPU²»Ã¦µÄãÐÖµ + ::= { gbnPlatformOAMSystem 23 } + +------------------------------------------------------------------------------ +-- +-- cpuStatusTrap - CPU status TRAP +-- +------------------------------------------------------------------------------ + cpuStatusTrap OBJECT IDENTIFIER ::= { gbnPlatformOAMSystem 24 } + + cpuBusyTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "cpu busy trap." + --CPU æTRAP + ::= { cpuStatusTrap 1 } + + cpuUnbusyTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "cpu unbusy trap." + --CPU ²»Ã¦TRAP + ::= { cpuStatusTrap 2 } +------------------------------------------------------------------------------ +-- +-- dramStatusTrap - DRAM status +-- +------------------------------------------------------------------------------ + dramAlarmEnable OBJECT-TYPE + SYNTAX TruthValue { + true (1), + false (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the enable status of dram alarm." + --DRAM¾¯¿ªÆô/¹Ø±Õ״̬ + DEFVAL {true} + ::= { gbnPlatformOAMSystem 25 } + + dramAlarmThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the DRAM set alarm threshold." + --DRAMʹÓõÄÀûÓÃÂʳ¬³öʵ¼ÊÀûÓÃÂÊ + ::= { gbnPlatformOAMSystem 26 } + + dramStatus OBJECT-TYPE + SYNTAX TruthValue { + true (1), + false (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DRAM Status£¨Beyond the threshold£©." + --DRAMÊÇ·ñ³¬³öãÐÖµ£¨ÀûÓÃÂÊ£© + ::= { gbnPlatformOAMSystem 27 } + + dramUtilization OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DRAM Utilization." + --DRAMµÄÀûÓÃÂÊ + ::= { gbnPlatformOAMSystem 28 } + +dramStatusTrap OBJECT IDENTIFIER ::= { gbnPlatformOAMSystem 29 } + + dramBusyTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "dram trap." + --DRAM TRAP + ::= { dramStatusTrap 1 } + + copyRunSta OBJECT-TYPE + SYNTAX INTEGER { + noop(1), -- no operation + op(2) -- operation + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "copy running-config startup-config." + ::= { gbnPlatformOAMSystem 30 } + + copyStaRun OBJECT-TYPE + SYNTAX INTEGER { + noop(1), -- no operation + op(2) -- operation + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "copy startup-config running-config." + ::= { gbnPlatformOAMSystem 31 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMIpAccessControl - IP Access Control Group +-- +------------------------------------------------------------------------------ + ipAccessControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpAccessControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP address access control table." + --Äܹ»·ÃÎʽ»»»»úµÄipµØÖ·Áбí. + ::= { gbnPlatformOAMIpAccessControl 1 } + + ipAccessControlEntry OBJECT-TYPE + SYNTAX IpAccessControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP address access control entry." + --Äܹ»·ÃÎʽ»»»»úµÄipµØÖ·Áбí. + INDEX { controlIpAddress, controlIpMask, controlTeminal} + ::= { ipAccessControlTable 1 } + + IpAccessControlEntry ::= SEQUENCE { + controlIpAddress IpAddress, + controlIpMask IpAddress, + controlTeminal INTEGER, + controlStatus INTEGER + } + + controlIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The accessible ip address of the switch" + --Äܹ»·ÃÎʽ»»»»úµÄipµØÖ·. + ::= { ipAccessControlEntry 1 } + + controlIpMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The accessible ip address mask of the switch, wildcard supports mask and unmask" + --Äܹ»·ÃÎʽ»»»»úµÄipµØÖ·ÑÚÂë, ͨÅä·ûÖ§³ÖÑÚÂëºÍ·´ÑÚÂë. + ::= { ipAccessControlEntry 2 } + + controlTeminal OBJECT-TYPE + SYNTAX INTEGER + { + snmp(1), + web(2), + telnet(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The client type connected to switch, snmp(1) means connecting switch by SNMP, + web(2) means connecting switch by WEB, telnet(3) means connecting switch by telnet." + --·ÃÎʽ»»»»ú¿Í»§¶ËÀàÐÍ¡£snmp(1)±íʾͨ¹ýsnmpÍø¹Ü·ÃÎÊ£¬web(2)±íʾͨ¹ýwebÍø¹Ü·ÃÎÊ£¬telnet(3)±íʾͨ¹ýtelnetÍø¹Ü·ÃÎÊ. + ::= { ipAccessControlEntry 3 } + + controlStatus OBJECT-TYPE + SYNTAX INTEGER + { + active(1), + destroy(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP address control status, active(1) means adding the ip address to list, + destroy(2) means deleting the ip address from list" + --ipµØÖ·×´Ì¬, active(1)±íʾ¼ÓÈëµ½»î¶¯Áбí;destroy(2)±íʾ½«´ËipµØÖ·É¾³ý¡£ + ::= { ipAccessControlEntry 4 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMWatchDog - Watch Dog Group +-- +------------------------------------------------------------------------------ + softDogProxy OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the soft dog." + ::= { gbnPlatformOAMWatchDog 1 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMMuser - Manage User Group +-- +------------------------------------------------------------------------------ + musrTable OBJECT-TYPE + SYNTAX SEQUENCE OF MusrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of usrname and Password." + ::= { gbnPlatformOAMMuser 1 } + + musrEntry OBJECT-TYPE + SYNTAX MusrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of usr parameters." + INDEX { musrIndex } + ::= { musrTable 1 } + + MusrEntry ::= SEQUENCE { + musrIndex Integer32, + musrName DisplayString, + musrPassword DisplayString, + musrPwdEncrypt INTEGER, + musrType INTEGER, + musrRowStatus INTEGER + } + + musrIndex OBJECT-TYPE + SYNTAX Integer32 (1..8) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A simple index into 'gbnCommonUsrTable'." + ::= { musrEntry 1 } + + musrName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple usrname of gbnCommonUsrEntry." + ::= { musrEntry 2 } + + musrPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple password of gbnCommonUsrEntry." + ::= { musrEntry 3 } + + musrPwdEncrypt OBJECT-TYPE + SYNTAX INTEGER { + clearText(0), + encrypt(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 0 } + Password in 'gbnCommonUsrTable' is in + format of clear text(0) or enrypt(7)." + ::= { musrEntry 6 } + + musrType OBJECT-TYPE + SYNTAX INTEGER { + normalUser0(0), + normalUser1(1), + administrator2(2), + administrator3(3), + administrator4(4), + administrator5(5), + administrator6(6), + administrator7(7), + administrator8(8), + administrator9(9), + administrator10(10), + administrator11(11), + administrator12(12), + administrator13(13), + administrator14(14), + administrator15(15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { NormalUser } + A simple UsrType into 'gbnCommonUsrTable'. + when 'NomalUser' configuration is limitted" + ::= { musrEntry 4 } + + musrRowStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { disable } + A simple RowStatus into 'gbnCommonUsrTable'. + when 'disable' the user is deleted" + ::= { musrEntry 5 } + + manageUserAuthenType OBJECT-TYPE + SYNTAX INTEGER { + locacl(1), + radius(2), + radiusFailLocal(3), + tacacsplus(4), + tacacsplusFailLocal(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Authentication method£¬1:local, 2:radius, 3:radius first£¬and then local after failed,4:tacacsplus,5:tacacsplus first, and then local after failed." + --¹ÜÀíÓû§ÈÏÖ¤·½Ê½£¬1:±¾µØ·½Ê½, 2:radiusÈÏÖ¤,3:ÏÈradiusÈÏÖ¤£¬radius·þÎñÆ÷Á¬½Óʧ°ÜºóLocal£¬4:tacacs+ÈÏÖ¤£¬5:ÏÈtacacs+ÈÏÖ¤£¬tacacs+·þÎñÆ÷Á¬½Óʧ°ÜºóLocal. + ::= { gbnPlatformOAMMuser 2 } + + manageUserAuthenRadiusName OBJECT-TYPE + SYNTAX DisplayString(SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "radius server name." + --radius·þÎñÆ÷·½°¸Ãû³Æ. + ::= { gbnPlatformOAMMuser 3 } + + manageUserAuthChallegeType OBJECT-TYPE + SYNTAX INTEGER{ + chap(1), + pap(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Radius authentication method£¬1:CHAP, 2:PAP." + --¹ÜÀíÓû§radiusÈÏÖ¤·½Ê½£¬1:CHAP, 2:PAP. + ::= { gbnPlatformOAMMuser 4 } + + manageUserTacacsAuthor OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "authorization afer authenticastion." + --ÔÚtacacsÈÏÖ¤ºóÊÇ·ñ½øÐÐshellÊÚȨ. + ::= { gbnPlatformOAMMuser 5 } + + manageUserTacacsAccount OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "accounting after authorization." + --Óû§ÔÚʹÓÃtacacs+ÈÏÖ¤ºóµÇ¼/Í˳öʱ·¢ËͼƷѲÙ×÷. + ::= { gbnPlatformOAMMuser 6 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMUpDownLoad - Upload/Download Group +-- +------------------------------------------------------------------------------ + loadTftpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The IP Address for the TFTP server used for downloading + and/or uploading files." + ::= { gbnPlatformOAMUpDownLoad 1 } + + loadTftpFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The TFTP file path and name." + ::= { gbnPlatformOAMUpDownLoad 2 } + + loadType OBJECT-TYPE + SYNTAX INTEGER { + application(1), + normalBootRom(2), + configuration(3), + bootCode(4), + alarm(5), + syslog(6), + wholeBootRom(7), + oltImage(8), + onuImage(9), + geApplication(10), + geBootRom(11), + 10geApplication(12), + 10geBootRom(13), + eponApplication(14), + eponBootRom(15), + 10geponApplication(16), + 10geponBootRom(17), + gponApplication(18), + gponBootRom(19) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { application } + The type of file to download or upload upon an + 'gbnCommonLoadExecute'. + application:program file of the switch + configuration:configuration file,should be uploaded before + you download it. + miccode:microcode is the program file of vdsl chip. + removed during the boot Flash write operation, the agent + cannot be recovered)." + ::= { gbnPlatformOAMUpDownLoad 3 } + + loadExecute OBJECT-TYPE + SYNTAX INTEGER { + noop(1), -- no operation + downloadTftp(2), -- Application, Boot, or Configuration + uploadTftp(3), -- Configuration only + downloadFtp(4), -- Application, Boot, or Configuration + uploadFtp(5), -- Configuration only + downloadXmodem(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Execute file download or upload procedure. A SET of this + object starts the load procedure. Note that the Application + and Boot images can only be downloaded. The NVM Configuration + file can be uploaded and downloaded. A GET of this object + will return the status of the executed operation. + Use 'gbnCommonLoadExecuteStatus' to determine the status of + the executed load." + ::= { gbnPlatformOAMUpDownLoad 4 } + + loadExecuteStatus OBJECT-TYPE + SYNTAX INTEGER { + notStarted(1), -- download has not yet started + inProgressTftp(2), -- download has not yet finished + successTftp(3), -- download has finished successfully + errorConnectionTftp(4), -- download cannot connect + errorFilenameTftp(5), -- download has bad image path/filename + errorFaultTftp(6), -- download has fault condition on device + inProgressFtp(7), -- download has not yet finished + successFtp(8), -- download has finished successfully + errorConnectionFtp(9), -- download cannot connect + errorFilenameFtp(10), -- download has bad image path/filename + errorFaultFtp(11), -- download has fault condition on device + + inProgressXmodem(12), -- download has not yet finished + successXmodem(13), -- download has finished successfully + errorConnectionXmodem(14), -- download cannot connect + errorFilenameXmodem(15), -- download has bad image path/filename + errorFaultXmodem(16) -- download has fault condition on device + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Provides status on the execute file load progress." + ::= { gbnPlatformOAMUpDownLoad 5 } + + loadFtpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The IP Address for the FTP server used for downloading + and/or uploading files." + ::= { gbnPlatformOAMUpDownLoad 6 } + + loadFtpFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The FTP file path and name." + ::= { gbnPlatformOAMUpDownLoad 7 } + + loadFtpUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The FTP user name." + ::= { gbnPlatformOAMUpDownLoad 8 } + + loadFtpUserPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: + The FTP user password." + ::= { gbnPlatformOAMUpDownLoad 9 } + + FtpdOnOff OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { disable } + Enable/Disable Ftpd." + ::= { gbnPlatformOAMUpDownLoad 10 } + + FtpdAnonymousOnOff OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { disable } + Enable/Disable Ftpd anonymous login." + ::= { gbnPlatformOAMUpDownLoad 11 } + + loadSlotID OBJECT-TYPE + SYNTAX INTEGER(0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Slot ID" + ::= { gbnPlatformOAMUpDownLoad 12 } +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMSnmp - Snmp Group +-- +------------------------------------------------------------------------------ + snmpCommunityToViewTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpCommunityToViewEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of SNMPv1/v2c community string to view name mappings." + ::= { gbnPlatformOAMSnmp 1 } + + snmpCommunityToViewEntry OBJECT-TYPE + SYNTAX SnmpCommunityToViewEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of community-to-view parameters." + INDEX { snmpComm2ViewIndex } + ::= { snmpCommunityToViewTable 1 } + + SnmpCommunityToViewEntry ::= SEQUENCE { + snmpComm2ViewIndex Integer32, + snmpComm2ViewCommName DisplayString, + snmpComm2ViewViewName SnmpAdminString, + snmpComm2ViewPermission INTEGER, + snmpComm2ViewRowStatus RowStatus + } + + snmpComm2ViewIndex OBJECT-TYPE + SYNTAX Integer32 (1..8) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A simple index into 'gbnCommonCommunityToViewTable'." + ::= { snmpCommunityToViewEntry 1 } + + snmpComm2ViewCommName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { 'public','':all } + The SNMPv1/v2c community name string. Duplicate community + names are not allowed in this table. Note that a null string + is not a valid community name (i.e., a null string forces + 'gbnCommonComm2ViewRowStatus' to 'notReady(3)')." + ::= { snmpCommunityToViewEntry 2 } + + snmpComm2ViewViewName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { 'internet':all } + At runtime (i.e., not when this object is SET), this view name + is compared to the 'vacmViewTreeFamilyViewName' in the + 'vacmViewTreeFamilyTable' (see RFC2575). If a match is + found and the varbind(s) specify valid object type and instance, + the 'gbnCommonComm2ViewPermission' privilege is permitted. + + Note that a null string is not a valid view name value. + Also note that the value of this object does not have to match + an existing entry in the 'vacmViewTreeFamilyTable' (if no match, + no access is allowed). + + Note that the factory default value for this object is 'internet', + which allows access to the subtree under '1.3.6.1'." + ::= { snmpCommunityToViewEntry 3 } + + snmpComm2ViewPermission OBJECT-TYPE + SYNTAX INTEGER { + readOnly(1), + readWrite(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: { readWrite:all } + This object specifies the type of access allowed. 'readOnly(1)' + allows GET operations (i.e., GET, GET-NEXT, GET-BULK) and + 'readWrite(2)' allows both GET and SET operations." + ::= { snmpCommunityToViewEntry 4 } + + snmpComm2ViewRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DURABLE: + This object indicates the status of this entry. A row in this + table can be created using the 'createAndGo(4)' (i.e., all + parameters must be valid - supplied in a single SNMP PDU or have + default values) or the 'createAndWait(5)' action states. Until + all parameters are valid for a conceptual row, this object is + 'notReady(3)'. All parameters must be valid before this object + can be set to 'active(1)'. + + Any object in a conceptual row can be modified independent of the + value of this object (e.g., can be changed while 'active(1)')." + ::= { snmpCommunityToViewEntry 5 } + + snmpNotifyTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpNotifyTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of SNMPv1/v2c notify type ." + ::= { gbnPlatformOAMSnmp 2 } + + snmpNotifyTypeEntry OBJECT-TYPE + SYNTAX SnmpNotifyTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of notify type parameters." + INDEX { snmpPrivateNotifyType } + ::= { snmpNotifyTypeTable 1 } + + SnmpNotifyTypeEntry ::= + SEQUENCE { + snmpPrivateNotifyType DisplayString, + snmpNotifyTypeStatus INTEGER + } + + snmpPrivateNotifyType OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "notify type." + -- ͨ¸æÀàÐÍ + ::= { snmpNotifyTypeEntry 1 } + + snmpNotifyTypeStatus OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "It signifies if the traps with corresponding notify-type can be sent." + -- Èç¹ûͨ¸æ¶ÔӦ״̬Ϊ"enable(1)"±íʾ¿ÉÒÔ·¢ËÍ´ËÀàÐ͵Äͨ¸æ£¬·ñÔò²»¿É·¢ËÍ¡£ + ::= { snmpNotifyTypeEntry 2 } + + gbnPlatformOAMSnmpNotifyType OBJECT IDENTIFIER ::= { gbnPlatformOAMSnmp 3 } + + snmpNotifyTypeSaveConfiguration NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A private type for traps or informs. It signifies that the SNMPv2 entity + have just saved the configuration." + -- ˽ÓеÄtrapÀàÐÍ¡£·¢ËÍ´ËÀàÐ͵Ätrap±íʾÉ豸¸Õ²ÅÓб£´æÅäÖÃÎļþµÄ²Ù×÷¡£ + ::= { gbnPlatformOAMSnmpNotifyType 1 } + + snmpTrapSource OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The id of vlan or supervlan which interface traps or informs are + sent from belongs to. vlan id: 0-4094; supervlan id: 0-11." + -- trap»òinformµÄÔ´µØÖ·ËùÊôvlan»òsupervlan¡£vlan id£º0-4094£» + -- supervlan id£º0-11¡£±¾½ÚµãֵΪ0±íʾ²»Ö¸¶¨TrapÔ´µØÖ·½Ó¿Ú¡£µ± + -- snmpTrapSourceType½ÚµãֵΪ1ʱ£¬±¾½Úµãȡֵ·¶Î§Îª0-4094£»µ± + -- snmpTrapSourceType½ÚµãֵΪ2ʱ£¬±¾½Úµãȡֵ·¶Î§Îª0-11¡£ + ::= { gbnPlatformOAMSnmp 4 } + + snmpRemoteEngineTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpRemoteEngineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of remote engine ." + ::= { gbnPlatformOAMSnmp 5 } + + snmpRemoteEngineEntry OBJECT-TYPE + SYNTAX SnmpRemoteEngineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of remote engine." + INDEX { snmpRemoteEngineID } + ::= { snmpRemoteEngineTable 1 } + + SnmpRemoteEngineEntry ::= + SEQUENCE { + snmpRemoteHostTAddr OCTET STRING, + snmpRemoteEngineID DisplayString, + snmpDeleteRemoteEngineTableRow INTEGER + } + + snmpRemoteEngineID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The remote engine's id.Note that the engine id can + only appear once in the table." + -- Ô¶³ÌÒýÇæid¡£ + ::= { snmpRemoteEngineEntry 1 } + + snmpRemoteHostTAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(6)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ip and port number of remote host.Note that the value including ip and + port number can only appear once in the table." + -- Ô¶³ÌÖ÷»úipºÍ¶Ë¿ÚºÅ,ǰËÄλΪÖ÷»úipºóÁ½Î»Îª¶Ë¿ÚºÅ¡£ÆäÖµºÍÒ»¸öÒýÇæid±ØÐëÒ»Ò»¶ÔÓ¦£¬ + -- ²»ÄܳöÏÖÒ»¶Ô¶àµÄÇé¿ö¡£Ò»¸öÒýÇæidÖ»ÄܶÔÓ¦Ò»¸öÖ÷»úipºÍ¶Ë¿ÚºÅ¡£ + ::= { snmpRemoteEngineEntry 2 } + + snmpDeleteRemoteEngineTableRow OBJECT-TYPE + SYNTAX INTEGER { + deleteRow(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "You can delete a row by setting the value to 'deleteRow(1)'." + -- ÉèÖô˶ÔÏóʵÀýֵΪ1½«É¾³ý´ËʵÀýËùÔÚÐС£ + ::= { snmpRemoteEngineEntry 3 } + + snmpTrapSourceType OBJECT-TYPE + SYNTAX INTEGER (1..2) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of the interface which traps or informs are sent from. + 1: vlan interface; 2: supervlan interface." + -- trap»òinformµÄÔ´µØÖ·½Ó¿ÚµÄÀàÐÍ¡£1£ºvlan½Ó¿ÚÀàÐÍ£»2£ºsupervlan½Ó + -- ¿ÚÀàÐÍ£¨ÒªÉèÖÃΪ´ËÀàÐͱØÐëÈ·±£snmpTrapSource½ÚµãµÄÖµ²»´óÓÚ11£©¡£ + -- ÅäÖÃTrapÔ´µØÖ·½Ó¿Úʱ£¬ÇëÏÈÉèÖÃsnmpTrapSource½ÚµãµÄֵΪ0£¬ÔÙÉèÖà + -- ±¾½ÚµãµÄÖµ£¬È»ºóÔÙÉèÖÃsnmpTrapSource½ÚµãµÄֵΪָ¶¨vlan»ò + -- supervlanµÄ½Ó¿Úid¡£ + ::= { gbnPlatformOAMSnmp 6 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMPortCar - Port Car Group +-- +------------------------------------------------------------------------------ + portCarTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortCarEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of port CAR." + --¶Ë¿ÚCAR±í + ::= { gbnPlatformOAMPortCar 1 } + + portCarEntry OBJECT-TYPE + SYNTAX PortCarEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port CAR." + --¶Ë¿ÚCARÁбí + INDEX { portCarPort } + ::= { portCarTable 1 } + + PortCarEntry ::= SEQUENCE { + portCarPort Integer32, + portCarEnable TruthValue, + portDiscardBpdu Integer32, + portCarRateBpdu Integer32 + } + + portCarPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port number." + --¶Ë¿ÚºÅ£¬¶Ë¿ÚCAR±íµÄË÷ÒýÖµ + ::= { portCarEntry 1 } + + portCarEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enable status of the port CAR" + --¶Ë¿ÚCAR¿ªÆô/¹Ø±Õ״̬ + ::= { portCarEntry 2 } + + portDiscardBpdu OBJECT-TYPE + SYNTAX Integer32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enable status of the port discard BPDU" + --¶Ë¿Údiscard BPDU¿ªÆô/¹Ø±Õ״̬ + ::= { portCarEntry 3 } + + portCarRateBpdu OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port CAR max packet receive rate." + --¶Ë¿ÚCARµÄÖµ + ::= { portCarEntry 4 } + + portCarGlobalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The global enable status of port CAR." + --È«¾Ö¶Ë¿ÚCAR¿ªÆô/¹Ø±Õ״̬ + ::= { gbnPlatformOAMPortCar 2 } + + portCarOpenTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The closed port Re-open time." + --±»¶Ë¿ÚCAR¹Ø±ÕµÄ¶Ë¿ÚÖØÐ´ò¿ªµÄʱ¼ä + ::= { gbnPlatformOAMPortCar 3 } + + discardBpdu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "discard specific BPDU, bit 0 for STP packet, bit 1 for GVRP packet, bit 2 for GMRP packet." + --¶ªÆúBPDU±ê¼Ç£¬ÒÔλͼÐÎʽ¼Ç¼BPDUµÄ¶ªÆú״̬¡£µÚ0λ±íʾSTP±¨ÎÄ£¬µÚ1λ±íʾGVRP±¨ÎÄ£¬µÚ2λ±íʾGMRP±¨ÎÄ + ::= { gbnPlatformOAMPortCar 4 } + + portCarRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The global port CAR max packet receive rate." + --¶Ë¿ÚCARµÄÖµ + ::= { gbnPlatformOAMPortCar 5 } + + cpuCarRate OBJECT-TYPE + SYNTAX INTEGER (0..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The CPU CAR max packet receive rate. value 0 is default 400/4000 pps" + --CPU CARµÄÖµ, ÅäÖÃΪ0ʱ, ÉèÖÃCPU-CARΪĬÈÏÖµ400/4000pps + ::= { gbnPlatformOAMPortCar 6 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMVctRun - Vct Run Group +-- +------------------------------------------------------------------------------ + vctRunTable OBJECT-TYPE + SYNTAX SEQUENCE OF VctRunEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of VCT run." + --VCT run±í + ::= { gbnPlatformOAMVctRun 1 } + + vctRunEntry OBJECT-TYPE + SYNTAX VctRunEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of VCT run." + --VCT runÁбí + INDEX { vctRunPort } + ::= { vctRunTable 1 } + + VctRunEntry ::= SEQUENCE { + vctRunPort Integer32, + vctRunEnable TruthValue, + vctAutoRunEnable TruthValue + } + + vctRunPort OBJECT-TYPE + SYNTAX Integer32 (1..24) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port number." + --¶Ë¿ÚºÅ£¬VCT run±íµÄË÷ÒýÖµ + ::= { vctRunEntry 1 } + + vctRunEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enable status of the VCT run" + --ÊÇ·ñÆô¶¯VCT run + ::= { vctRunEntry 2 } + + vctAutoRunEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The enable status of the VCT auto run" + --ÊÇ·ñÆô¶¯VCT auto run + ::= { vctRunEntry 3 } + + vctAutoRunGlobalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The global enable status of VCT auto run." + --È«¾ÖVCT auto run¿ªÆô/¹Ø±Õ״̬ + ::= { gbnPlatformOAMVctRun 2 } + + vctRunGlobalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The global enable status of VCT run." + --È«¾ÖVCT run¿ªÆô/¹Ø±Õ״̬ + ::= { gbnPlatformOAMVctRun 3 } + +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMVctRunResult - Vct Run Result Group +-- +------------------------------------------------------------------------------ + vctRunResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF VctRunResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of VCT run result." + --VCT run result±í + ::= { gbnPlatformOAMVctRunResult 1 } + + vctRunResultEntry OBJECT-TYPE + SYNTAX VctRunResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of VCT run result." + --VCT run resultÁбí + INDEX { vctRunResultPort, vctRunResultTxRxPairNo } + ::= { vctRunResultTable 1 } + + VctRunResultEntry ::= SEQUENCE { + vctRunResultPort Integer32, + vctRunResultTxRxPairNo Integer32, + vctRunResultStatus Integer32, + vctRunResultErrorLocation Integer32 + } + + vctRunResultPort OBJECT-TYPE + SYNTAX Integer32 (1..24) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port number." + --¶Ë¿ÚºÅ£¬VCT run result±íµÄË÷ÒýÖµÖ®Ò» + ::= { vctRunResultEntry 1 } + + vctRunResultTxRxPairNo OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tx rx pair NO." + --tx rx pair NO£¬VCT run result±íµÄË÷ÒýÖµÖ®Ò» + ::= { vctRunResultEntry 2 } + + vctRunResultStatus OBJECT-TYPE + SYNTAX Integer32 + { + Normal(1), + Open(2), + Short(3), + Mismatch(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the VCT run result" + --VCT run result ״̬ + ::= { vctRunResultEntry 3 } + + vctRunResultErrorLocation OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The error location of the VCT run result. length(m)" + --VCT run resultµÄ³ö´íµØµã,³¤¶È(Ã×) + ::= { vctRunResultEntry 4 } +------------------------------------------------------------------------------ +-- +-- gbnPlatformOAMIpControl - OAM ip control Group +-- +------------------------------------------------------------------------------ + ipControlTtl OBJECT-TYPE + SYNTAX INTEGER{ + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable the ip control ttl" + ::= { gbnPlatformOAMIpControl 1 } + +-- +-- END of GBN-COMMON-MIB +-- + +END diff --git a/mibs/fs/GBNPlatformOAMMailalarm-MIB b/mibs/fs/GBNPlatformOAMMailalarm-MIB new file mode 100644 index 0000000000..385e905190 --- /dev/null +++ b/mibs/fs/GBNPlatformOAMMailalarm-MIB @@ -0,0 +1,160 @@ +------------------------------------------------------------------------------ +-- +-- File : gbnPlatformOAMMailalarm-MIB.mi2 +-- Description : Mailalarm configuration MIB +-- Version : 1.0 +-- Date : Jul 25, 2005 +-- Author : wukaijian +-- Copyright (c) 2001-2008 admin Co. Ltd. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNPlatformOAMMailalarm-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress, NOTIFICATION-TYPE FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + snmpTraps FROM SNMPv2-MIB + + gbnPlatformOAM FROM GBNPlatformOAM-MIB; + + gbnPlatformOAMMailalarm MODULE-IDENTITY + LAST-UPDATED "0507250000Z" -- Jul 25, 2005 + ORGANIZATION "admin Co. Ltd" + CONTACT-INFO "admin Co. Ltd + E-mail: service@admin.com.cn" + + DESCRIPTION "Mailalarm mib definition." + + REVISION "0507250000Z" -- Jul 25, 2005 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatformOAM 12 } + + mailalarmState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable Mailalarm." + --´ò¿ª»ò¹Ø±ÕÓʼþ¸æ¾¯¹¦ÄÜ¡£ + ::= { gbnPlatformOAMMailalarm 1 } + + mailalarmSrvAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the address of the SMTP server used by Mailalarm." + --Óʼþ¸æ¾¯Ê¹ÓõÄSMTP·þÎñÆ÷µØÖ·¡£ + ::= { gbnPlatformOAMMailalarm 2 } + + mailalarmRceiverAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the e-mail address of the receiver." + --Óʼþ½ÓÊÕÕßµÄe-mailµØÖ·¡£ + ::= { gbnPlatformOAMMailalarm 3 } + + mailalarmLogLevel OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the mailalarm level of syslog." + --·¢ËÍÓʼþ¸æ¾¯µÄsyslog¼¶±ð¡£ + ::= { gbnPlatformOAMMailalarm 4 } + + mailalarmSmtpAuthEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable smtp authentication." + --ʹÄÜ»ò½ûÖ¹smtpÉí·ÝÑéÖ¤¡£ + ::= { gbnPlatformOAMMailalarm 5 } + + mailalarmSmtpUsername OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "smtp username." + --smtpÓû§Õʺš£ + ::= { gbnPlatformOAMMailalarm 6 } + + mailalarmSmtpPasswd OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "smtp password." + --smtpÓû§ÃÜÂë¡£ + ::= { gbnPlatformOAMMailalarm 7 } + +------------------------------------------------------------------------------ +-- mailalarmCcAddrTable: +------------------------------------------------------------------------------ + + mailalarmCcAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF MailalarmCcAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "the e-mail address table of the Cc. receiver." + --ÐèÒª³­Ë͵ÄÓʼþ½ÓÊÕÕße-mailµØÖ·±í¡£ + ::= { gbnPlatformOAMMailalarm 8 } + + mailalarmCcAddrEntry OBJECT-TYPE + SYNTAX MailalarmCcAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "the e-mail address entry of the Cc. receiver." + --ÐèÒª³­Ë͵ÄÓʼþ½ÓÊÕÕße-mailµØÖ·ÌõÄ¿¡£ + INDEX { mailalarmCcAddrIdx } + ::= { mailalarmCcAddrTable 1 } + + MailalarmCcAddrEntry ::= + SEQUENCE { + mailalarmCcAddrIdx + INTEGER (0..3), + mailalarmCcAddr + OCTET STRING (SIZE (0..127)) + } + + mailalarmCcAddrIdx OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the index of the address entry." + --µØÖ·ÌõÄ¿µÄË÷Òý¡£ + ::= { mailalarmCcAddrEntry 1 } + + mailalarmCcAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the e-mail address of the Cc. receiver." + --ÐèÒª³­Ë͵ÄÓʼþ½ÓÊÕÕße-mailµØÖ·¡£ + ::= { mailalarmCcAddrEntry 2 } + + END diff --git a/mibs/fs/GBNPlatformOAMSntpClient-MIB b/mibs/fs/GBNPlatformOAMSntpClient-MIB new file mode 100644 index 0000000000..7e560a8512 --- /dev/null +++ b/mibs/fs/GBNPlatformOAMSntpClient-MIB @@ -0,0 +1,305 @@ + GBNPlatformOAMSntpClient-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnPlatformOAM FROM GBNPlatformOAM-MIB; + + + gbnPlatformOAMSntpClient MODULE-IDENTITY + LAST-UPDATED "0107152004Z" -- July 15, 2004 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "SNTP mib definition." + + REVISION "0107152004Z" -- July 15, 2004 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatformOAM 8 } + +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- sntpClientGeneral: +------------------------------------------------------------------------------ + + sntpClientGeneral OBJECT IDENTIFIER ::= { gbnPlatformOAMSntpClient 1 } + + sntpClientMode OBJECT-TYPE + SYNTAX INTEGER { + unicast (1), + anycast(2), + broadcast(4), + multicast(8) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SNTP¿Í»§¶ËµÄ¹¤×÷·½Ê½" + DEFVAL { broadcast } + ::= { sntpClientGeneral 1 } + + sntpClientPollInterval OBJECT-TYPE + SYNTAX INTEGER( 64..1024 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "·¢ËÍÇëÇóµÄ¼ä¸ô£¬ÓÃÓÚµ¥²¥ºÍÈÎÒâ²¥·½Ê½" + DEFVAL { 1000 } + ::= { sntpClientGeneral 2 } + + sntpClientRetransInterval OBJECT-TYPE + SYNTAX INTEGER( 1..30 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "¿Í»§¶ËÖØ´«ÇëÇóµÄ¼ä¸ô" + DEFVAL { 5 } + ::= { sntpClientGeneral 3 } + + sntpClientRetransTimes OBJECT-TYPE + SYNTAX INTEGER( 0..10 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "¿Í»§¶ËûÓÐÊÕµ½»ØÓ¦Ê±£¬ÖØ´«ÇëÇóµÄ´ÎÊý£¬ÓÃÓÚµ¥²¥ºÍÈÎÒâ²¥·½Ê½" + DEFVAL { 0 } + ::= { sntpClientGeneral 4 } + + sntpClientServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ÕýÔÚʹÓõķþÎñÆ÷µØÖ·£¬ÓÃÓÚ³öµ¥²¥ºÍÈÎÒâ²¥·½Ê½" + ::= { sntpClientGeneral 5 } + + sntpClientSynthFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "¿Í»§¶ËµÄʱ¼äÊÇ·ñ±»Í¬²½" + ::= { sntpClientGeneral 6 } + + sntpClientState OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "¿Í»§¶Ëµ±Ç°µÄ״̬£¬¿ÕÏÐ״̬»òµÈ´ý»ØÓ¦±¨ÎÄ״̬" + ::= { sntpClientGeneral 7 } + + sntpClientLastSynthTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "¿Í»§¶Ë×îºóÒ»´Îͬ²½µÄʱ¼ä" + ::= { sntpClientGeneral 8 } + + sntpClientLastSynthErrno OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "¿Í»§¶Ë×îºóÒ»´Îͬ²½Èôʧ°ÜʱµÄ´íÎóÂë¡£" + ::= { sntpClientGeneral 9 } + + sntpClientAdminStatus OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "¿Í»§¶Ë´ò¿ªºÍ¹Ø±Õ״̬" + ::= { sntpClientGeneral 10 } + + sntpClientBcastDelay OBJECT-TYPE + SYNTAX INTEGER ( 1..9999 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "¿Í»§¶Ë¹¤×÷Ôڹ㲥·½Ê½ÏµĹÀ¼Æ´«ÊäÑÓʱ(ºÁÃëÊý)" + ::= { sntpClientGeneral 11 } + + sntpClientMcastTtl OBJECT-TYPE + SYNTAX INTEGER ( 1..255 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "¿Í»§¶Ë¹¤×÷ÔÚ×é²¥·½Ê½ÏµÄTTLÖµ" + ::= { sntpClientGeneral 12 } + + sntpClientAuthFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "authentication enable flag" + --ÈÏ֤ʹÄܱê¼Ç£¬TRUE£º´ò¿ªÈÏÖ¤£¬FALSE£º¹Ø±ÕÈÏÖ¤-- + ::= { sntpClientGeneral 13 } + + sntpClientUniKeyID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "in client/server mode, client send request with this keyID" + --ÔÚ¿Í»§¶Ë/·þÎñÆ÷ģʽÏ£¬¿Í»§¶Ë·¢ËÍÇëÇóʹÓõÄkeyID-- + ::= { sntpClientGeneral 14 } + + sntpClientAnyKeyID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "in anycast mode, client send request with this keyID" + --ÔÚÈÎÒⲥģʽÏ£¬¿Í»§¶ËʹÓù㣨×飩²¥·¢ËÍÇëÇóʹÓõÄkeyID-- + ::= { sntpClientGeneral 15 } + sntpClientServerBackup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "server backup" + ::= { sntpClientGeneral 16 } + +------------------------------------------------------------------------------ +-- sntpValidSrcTable: +------------------------------------------------------------------------------ + + sntpClientValidServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SntpClientValidServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ºÏ·¨·þÎñÆ÷Íø¶Î±í£¬SNTP¸ù¾Ý´Î±í¼ì²é±¨ÎÄÔ´µØÖ·£¬Ö»ÓÐÔ´µØÖ·ÂäÔÚÕâ¸öÕâ¸ö + ±íÖеı¨ÎIJÅΪºÏ·¨±¨ÎÄ£¬·ñÔò¶ªÆú¡£Ï൱ÓÚ·ÃÎÊ¿ØÖÆÁбí" + ::= { gbnPlatformOAMSntpClient 2 } + + sntpClientValidServerEntry OBJECT-TYPE + SYNTAX SntpClientValidServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "¶¨ÒåÒ»ÌõºÏ·¨·þÎñÆ÷Áбí." + INDEX { sntpClientValidServerNet, sntpClientValidServerMask } + ::= { sntpClientValidServerTable 1 } + + SntpClientValidServerEntry ::= + SEQUENCE { + sntpClientValidServerNet + IpAddress, + sntpClientValidServerMask + IpAddress, + sntpClientValidServerRowStatus + RowStatus + } + + sntpClientValidServerNet OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ô´µØÖ·ËùÔÚÍø¶ÎºÅ" + ::= { sntpClientValidServerEntry 1 } + + sntpClientValidServerMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ô´µØÖ·ËùÔÚÍø¶ÎÑÚÂë" + ::= { sntpClientValidServerEntry 2 } + + sntpClientValidServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ÐÐ״̬" + ::= { sntpClientValidServerEntry 3 } + +------------------------------------------------------------------------------ +-- sntpAuthKeyTable: +------------------------------------------------------------------------------ + + sntpAuthKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF SntpAuthKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "keys userd for SNTP authentication" + --ÓÃÓÚSNTPÈÏÖ¤µÄÃÜÂë±í-- + ::= { gbnPlatformOAMSntpClient 3 } + + sntpAuthKeyEntry OBJECT-TYPE + SYNTAX SntpAuthKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "define a key item." + --¶¨ÒåÒ»¸öÃÜÂë±íÏî-- + INDEX { sntpAuthKeyId } + ::= { sntpAuthKeyTable 1 } + + SntpAuthKeyEntry ::= + SEQUENCE { + sntpAuthKeyId + Unsigned32, + sntpAuthKeyValue + DisplayString (SIZE (1..16)), + sntpAuthKeyTrustFlag + TruthValue, + sntpAuthKeyRowStatus + RowStatus + } + + sntpAuthKeyId OBJECT-TYPE + SYNTAX Unsigned32 ( 1..4294967295 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "key number" + --key ID-- + ::= { sntpAuthKeyEntry 1 } + + sntpAuthKeyValue OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "key value" + --Ò»¸ö×Ϊ16×Ö½ÚµÄ×Ö·û´®-- + ::= { sntpAuthKeyEntry 2 } + + sntpAuthKeyTrustFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "whether the key is trusted" + --´ËÃÜÂëÊÇ·ñΪ¿ÉÐÅÈεıê¼Ç-- + ::= { sntpAuthKeyEntry 3 } + + sntpAuthKeyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "row status" + --ÐÐ״̬£¬ÓÃÓÚɾ³ý-- + ::= { sntpAuthKeyEntry 4 } + + END diff --git a/mibs/fs/GBNPlatformOAMSsh-MIB b/mibs/fs/GBNPlatformOAMSsh-MIB new file mode 100644 index 0000000000..15e76b7c68 --- /dev/null +++ b/mibs/fs/GBNPlatformOAMSsh-MIB @@ -0,0 +1,96 @@ +------------------------------------------------------------------------------ +-- +-- File : gbnPlatformOAMSsh-MIB.mi2 +-- Description : SSH configuration MIB +-- Version : 1.0 +-- Date : May 25, 2005 +-- Author : wukaijian +-- Copyright (c) 2001-2008 admin Co. Ltd. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNPlatformOAMSsh-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress, NOTIFICATION-TYPE FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + snmpTraps FROM SNMPv2-MIB + + gbnPlatformOAM FROM GBNPlatformOAM-MIB; + + gbnPlatformOAMSsh MODULE-IDENTITY + LAST-UPDATED "0505250000Z" -- May 25, 2005 + ORGANIZATION "admin Co. Ltd" + CONTACT-INFO "admin Co. Ltd + E-mail: service@admin.com.cn" + + DESCRIPTION "Ssh mib definition." + + REVISION "0505250000Z" -- May 25, 2005 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatformOAM 11 } + + sshVersion OBJECT-TYPE + SYNTAX INTEGER { + v1(1), + v2(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SSH version." + --SSH °æ±¾¡£ + ::= { gbnPlatformOAMSsh 1 } + + sshState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable SSH." + --´ò¿ª»ò¹Ø±ÕSSH¹¦ÄÜ¡£ + ::= { gbnPlatformOAMSsh 2 } + + sshKeyAvailable OBJECT-TYPE + SYNTAX INTEGER { + available(1), + unavailable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SSH key file state." + --SSHÃÜÔ¿Îļþ״̬: ÒÑ´ÓFlashÖмÓÔØÃÜÔ¿ÎļþÔò״̬Ϊavailable£¬·ñÔòΪunavailable¡£ + ::= { gbnPlatformOAMSsh 3 } + + sshUserLimit OBJECT-TYPE + SYNTAX Integer32 (0..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max user limit of ssh" + --ÔÊÐísshµÇ¼µÄ×î´óÓû§ÊýÄ¿ + ::= { gbnPlatformOAMSsh 4 } + + sshLoginUsers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current login users of ssh" + --µ±Ç°sshµÇ¼µÄÓû§ÊýÄ¿ + ::= { gbnPlatformOAMSsh 5 } + + END diff --git a/mibs/fs/GBNPlatformOAMSyslog-MIB b/mibs/fs/GBNPlatformOAMSyslog-MIB new file mode 100644 index 0000000000..2576919754 --- /dev/null +++ b/mibs/fs/GBNPlatformOAMSyslog-MIB @@ -0,0 +1,434 @@ +------------------------------------------------------------------------------ +-- +-- File : gbnPlatformOAMSyslog-MIB.mi2 +-- Description : Syslog configuration MIB +-- Version : 1.0 +-- Date : Oct 10, 2004 +-- Author : wukaijian +-- Copyright (c) 2001-2008 admin Co. Ltd. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNPlatformOAMSyslog-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress, NOTIFICATION-TYPE FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + snmpTraps FROM SNMPv2-MIB + + gbnPlatformOAM FROM GBNPlatformOAM-MIB; + + gbnPlatformOAMSyslog MODULE-IDENTITY + LAST-UPDATED "0410100000Z" -- October 10, 2004 + ORGANIZATION "Admin Co. Ltd" + CONTACT-INFO "Admin Co. Ltd + E-mail: support@admin.com.cn" + + DESCRIPTION "Syslog mib definition." + + REVISION "0410100000Z" -- October 10, 2004 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatformOAM 9 } + + syslogState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable Syslog." + --´ò¿ª»ò¹Ø±ÕSyslog¹¦ÄÜ¡£ + ::= { gbnPlatformOAMSyslog 1 } + + syslogSeqNoEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "display or not display sequence number in output messages." + --ÔÚÊä³öÐÅÏ¢ÖÐÏÔʾ»ò²»ÏÔʾÐòÁкš£ + ::= { gbnPlatformOAMSyslog 2 } + + syslogTimestampType OBJECT-TYPE + SYNTAX INTEGER { + notime(1), + uptime(2), + datetime(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set timestamp type shown in output messages. + notime: not show timestamp; + uptime: show elapse time as timestamp; + datetime: show datetime as timestamp." + --ÅäÖÃÊä³öÐÅÏ¢ÖÐÏÔʾµÄʱ¼ä´ÁÀàÐÍ¡£ + --notime: ²»ÏÔʾʱ¼ä´Á£» + --uptime: ÏÔʾ¿ª»úʱ¼ä×÷Ϊʱ¼ä´Á£» + --datetime: ÏÔʾ¾ø¶Ôʱ¼ä×÷Ϊʱ¼ä´Á¡£ + ::= { gbnPlatformOAMSyslog 3 } + + syslogLanguageType OBJECT-TYPE + SYNTAX INTEGER { + english(1), + chinese(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set language type used in output messages." + --ÅäÖÃÊä³öÐÅÏ¢ÖÐʹÓõÄÓïÑÔÀàÐÍ¡£ + ::= { gbnPlatformOAMSyslog 4 } + + syslogFacility OBJECT-TYPE + SYNTAX INTEGER { + kernel(0), + userlevel(1), + mail(2), + system(3), + security1(4), + syslogd(5), + lineprinter(6), + networknews(7), + uucp(8), + clock1(9), + security2(10), + ftp(11), + ntp(12), + logaudit(13), + logalert(14), + clock2(15), + localuse0(16), + localuse1(17), + localuse2(18), + localuse3(19), + localuse4(20), + localuse5(21), + localuse6(22), + localuse7(23) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set loghost facility code." + --ÅäÖÃÈÕÖ¾Ö÷»ú(Syslog·þÎñÆ÷)¼Ç¼¹¤¾ß´úºÅ¡£ + ::= { gbnPlatformOAMSyslog 5 } + + syslogSourceIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "specify source address used in syslog. + 0 means no source address used. + the ip address must belong to the device." + --Ö¸¶¨SyslogʹÓõĹ̶¨Ô´µØÖ·£¬·¢ÖÁSyslog·þÎñÆ÷µÄ±¨ÎĽ«Ê¹Óô˵ØÖ·×÷ΪԴµØÖ·¡£ + --0´ú±í²»Ê¹Óù̶¨Ô´µØÖ·£¬´Ëʱϵͳ½«Ê¹Óóö½Ó¿ÚµÄµØÖ·×÷ΪԴµØÖ·¡£ + --Ö¸¶¨µÄÔ´µØÖ·±ØÐëΪÉ豸ÉÏijһ½Ó¿ÚµÄµØÖ·£¬·ñÔòÉèÖò»³É¹¦¡£ + ::= { gbnPlatformOAMSyslog 6 } + + syslogInfo OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "node that used to bind infomation to send trap by syslog." + --SyslogʹÓô˽ڵã°ó¶¨ÐÅÏ¢·¢ËÍTrap¡£ + ::= { gbnPlatformOAMSyslog 7 } + +------------------------------------------------------------------------------ +-- syslogOutputDevInfoTable: +------------------------------------------------------------------------------ + + syslogOutputDevInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogOutputDevInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "syslog output device infomation table." + --SyslogÊä³öÉ豸ÐÅÏ¢±í¡£ÃèÊö¸÷Êä³ö·½ÏòµÄÏà¹ØÐÅÏ¢¡£ + ::= { gbnPlatformOAMSyslog 8 } + + syslogOutputDevInfoEntry OBJECT-TYPE + SYNTAX SyslogOutputDevInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "syslog output device infomation entry." + --SyslogÊä³öÉ豸ÐÅÏ¢ÌõÄ¿¡£ÃèÊöijһÊä³ö·½ÏòµÄÏà¹ØÐÅÏ¢¡£ + INDEX { syslogOutputDevInfoName } + ::= { syslogOutputDevInfoTable 1 } + + SyslogOutputDevInfoEntry ::= + SEQUENCE { + syslogOutputDevInfoName + OCTET STRING, + syslogOutputDevInfoSwitch + INTEGER, + syslogOutputDevInfoLogged + Gauge32, + syslogOutputDevInfoDiscard + Gauge32, + syslogOutputDevInfoOverflow + Gauge32 + } + + syslogOutputDevInfoName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "output device name." + --Êä³öÉ豸Ãû¡£ + --É豸ÃûÓÉϵͳָ¶¨£¬Óû§²»¿ÉÉèÖᣠ+ --Êä³öÉ豸°üÀ¨¿ØÖÆÌ¨¡¢TelnetÖÕ¶Ë¡¢ÀúÊ·»º³åÇø¡¢Flash´æ´¢Æ÷¡¢ÈÕÖ¾Ö÷»úºÍSNMP Agent¡£ + --³ýÈÕÖ¾Ö÷»ú£¨Syslog·þÎñÆ÷£©Í⣬ÆäËûÊä³öÉ豸ʹÓù̶¨µÄÃû×Ö¡£ÈÕÖ¾Ö÷»úʹÓÃIPµØÖ·×÷Ϊ + --ÆäÉ豸Ãû£¬Óû§ÒÑÅäÖõÄÈÕÖ¾Ö÷»úÏÔʾÔÚ±íÖУ¬Î´ÅäÖõIJ»ÏÔʾ¡£Óû§¿Éͨ¹ýÃüÁîÐлòÕß + --MIB±ísyslogLoghostAddrTableÅäÖÃÈÕÖ¾Ö÷»úµØÖ·¡£ + ::= { syslogOutputDevInfoEntry 1 } + + syslogOutputDevInfoSwitch OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "output device switch." + --Êä³öÉ豸ÐÅÏ¢¿ª¹Ø¡£ÅäÖÃÊÇ·ñÔÊÐíÐÅÏ¢Êä³öÖÁ¸Ã·½Ïò¡£ + ::= { syslogOutputDevInfoEntry 2 } + + syslogOutputDevInfoLogged OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number of messages logged in this output device." + --¸ÃÊä³ö·½ÏòÒѼǼµÄÐÅÏ¢¸öÊý¡£ + --ϵͳͳ¼ÆÐÅÏ¢£¬Óû§²»¿ÉÅäÖᣠ+ ::= { syslogOutputDevInfoEntry 3 } + + syslogOutputDevInfoDiscard OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number of messages discard in this output device." + --¸ÃÊä³ö·½ÏòÒѶªÆúµÄÐÅÏ¢¸öÊý¡£ + --ϵͳͳ¼ÆÐÅÏ¢£¬Óû§²»¿ÉÅäÖᣠ+ ::= { syslogOutputDevInfoEntry 4 } + + syslogOutputDevInfoOverflow OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "number of messages overflowed in this output device." + --¸ÃÊä³ö·½ÏòÒѸ²¸ÇµÄÐÅÏ¢¸öÊý¡£ + --ϵͳͳ¼ÆÐÅÏ¢£¬Óû§²»¿ÉÅäÖᣠ+ ::= { syslogOutputDevInfoEntry 5 } + +------------------------------------------------------------------------------ +-- syslogLoghostAddrTable: +------------------------------------------------------------------------------ + + syslogLoghostAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogLoghostAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "loghost address table." + --ÈÕÖ¾Ö÷»úµØÖ·±í¡£¼Ç¼ÒÑÅäÖõÄÈÕÖ¾Ö÷»úÌõÄ¿¡£ + ::= { gbnPlatformOAMSyslog 9 } + + syslogLoghostAddrEntry OBJECT-TYPE + SYNTAX SyslogLoghostAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "loghost address entry." + --ÈÕÖ¾Ö÷»úµØÖ·ÌõÄ¿¡£¼Ç¼ÒÑÅäÖõÄÈÕÖ¾Ö÷»ú¡£ + INDEX { syslogLoghostAddrIp } + ::= { syslogLoghostAddrTable 1 } + + SyslogLoghostAddrEntry ::= + SEQUENCE { + syslogLoghostAddrIp + IpAddress, + syslogLoghostAddrRowstatus + RowStatus + } + + syslogLoghostAddrIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "loghost ip address." + --ÈÕÖ¾Ö÷»úIPµØÖ·¡£ + --Óû§¿ÉÌí¼Ó»òÕßɾ³ýÈÕÖ¾Ö÷»ú¡£ + ::= { syslogLoghostAddrEntry 1 } + + syslogLoghostAddrRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "row status." + --ÐÐ״̬¡£ + --Ìí¼ÓÈÕÖ¾Ö÷»úʱ£¬±ØÐëÊ×ÏÈÉèÖÃÈÕÖ¾Ö÷»úµØÖ·£¬´ËʱÐÐ״̬×Ô¶¯ÉèΪnotInService(2)£¬ + --È»ºóÉèÖÃÐÐ״̬ΪcreateAndGo(4)»òÕßcreateAndWait(5)¡£ + --ɾ³ýÈÕÖ¾Ö÷»úʱ£¬Ö»Ð轫ÐÐ״̬ÉèÖÃΪdestroy(6)¼´¿É¡£ + ::= { syslogLoghostAddrEntry 2 } + +------------------------------------------------------------------------------ +-- syslogFilterRuleTable: +------------------------------------------------------------------------------ + + syslogFilterRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogFilterRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "syslog filter rule table." + --Syslog¹ýÂ˹æÔò±í¡£ + ::= { gbnPlatformOAMSyslog 10 } + + syslogFilterRuleEntry OBJECT-TYPE + SYNTAX SyslogFilterRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "syslog filter rule entry." + --Syslog¹ýÂ˹æÔòÌõÄ¿¡£ + INDEX { syslogFilterRuleDevname, syslogFilterRuleModname } + ::= { syslogFilterRuleTable 1 } + + SyslogFilterRuleEntry ::= + SEQUENCE { + syslogFilterRuleDevname + OCTET STRING, + syslogFilterRuleModname + OCTET STRING, + syslogFilterRuleLevelmask + BITS + } + + syslogFilterRuleDevname OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "output device name." + --Êä³öÉ豸Ãû¡£ + --É豸ÃûÓÉϵͳָ¶¨£¬Óû§²»¿ÉÉèÖᣠ+ --Êä³öÉ豸°üÀ¨¿ØÖÆÌ¨¡¢TelnetÖÕ¶Ë¡¢ÀúÊ·»º³åÇø¡¢Flash´æ´¢Æ÷¡¢ÈÕÖ¾Ö÷»úºÍSNMP Agent¡£ + --³ýÈÕÖ¾Ö÷»ú£¨Syslog·þÎñÆ÷£©Í⣬ÆäËûÊä³öÉ豸ʹÓù̶¨µÄÃû×Ö¡£ÈÕÖ¾Ö÷»úʹÓÃIPµØÖ·×÷Ϊ + --ÆäÉ豸Ãû£¬Óû§ÒÑÅäÖõÄÈÕÖ¾Ö÷»úÏÔʾÔÚ±íÖУ¬Î´ÅäÖõIJ»ÏÔʾ¡£Óû§¿Éͨ¹ýÃüÁîÐлòÕß + --MIB±ísyslogLoghostAddrTableÅäÖÃÈÕÖ¾Ö÷»úµØÖ·¡£ + ::= { syslogFilterRuleEntry 1 } + + syslogFilterRuleModname OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "module name." + --Ä£¿éÃû¡£ + --Óû§²»¿ÉÉèÖã¬ÓÉϵͳ¸ù¾ÝϵͳÖÐÒÑÓеÄÄ£¿éÏÔʾ¡£ + ::= { syslogFilterRuleEntry 2 } + + syslogFilterRuleLevelmask OBJECT-TYPE + SYNTAX BITS + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "a 8 bits mask used to decide whether the infomation output to the device. + every bit corresponds to a level, 1 means output allowed." + --Ò»¸ö8λµÄÑÚÂ룬¾ö¶¨ÐÅÏ¢ÊÇ·ñÊä³öµ½Ä³Ò»É豸¡£ + --ÿһλ¶ÔÓ¦Ò»¸öÐÅÏ¢¼¶±ð£¬¸ÃλΪ1Ôò¸Ã¼¶±ðÐÅÏ¢ÔÊÐíÊä³öµ½É豸¡£ + --µÚ0ÖÁ7루×îµÍλλµÚ0룩·Ö±ð¶ÔÓ¦µÄÐÅÏ¢¼¶±ðΪ£ºemergencies£¬alerts£¬critical£¬ + --errors£¬warnings£¬notifications£¬informational£¬debugging¡£ + ::= { syslogFilterRuleEntry 3 } + +------------------------------------------------------------------------------ +-- syslogDbgTable: +------------------------------------------------------------------------------ + + syslogDbgTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogDbgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "syslog debug switch table." + --Syslogµ÷ÊÔ¿ª¹Ø×´Ì¬±í¡£ + ::= { gbnPlatformOAMSyslog 11 } + + syslogDbgEntry OBJECT-TYPE + SYNTAX SyslogDbgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "syslog debug switch entry." + --Syslogµ÷ÊÔ¿ª¹Ø×´Ì¬ÌõÄ¿¡£ + INDEX { syslogDbgModname } + ::= { syslogDbgTable 1 } + + SyslogDbgEntry ::= + SEQUENCE { + syslogDbgModname + OCTET STRING, + syslogDbgState + INTEGER + } + + syslogDbgModname OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "module name." + --Ä£¿éÃû¡£ + --Óû§²»¿ÉÉèÖã¬ÓÉϵͳ¸ù¾ÝϵͳÖÐÒÑÓеÄÄ£¿éÏÔʾ¡£ + ::= { syslogDbgEntry 1 } + + syslogDbgState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "debug switch state." + --µ÷ÊÔ¿ª¹Ø×´Ì¬¡£Óû§¿É´ò¿ª»ò¹Ø±ÕÄ£¿éµÄµ÷ÊÔ¿ª¹Ø¡£ + ::= { syslogDbgEntry 2 } + +------------------------------------------------------------------------------ +-- syslogTrap: +------------------------------------------------------------------------------ + + syslogTrap NOTIFICATION-TYPE + OBJECTS { syslogInfo } + STATUS current + DESCRIPTION + "trap node that used to send syslog messages." + --·¢ËÍSyslogÐÅÏ¢µÄTrap½Úµã¡£ + ::= { gbnPlatformOAMSyslog 12 } + + END diff --git a/mibs/fs/GBNPlatformOAMTelnet-MIB b/mibs/fs/GBNPlatformOAMTelnet-MIB new file mode 100644 index 0000000000..d5e7a91399 --- /dev/null +++ b/mibs/fs/GBNPlatformOAMTelnet-MIB @@ -0,0 +1,153 @@ +------------------------------------------------------------------------------ +-- +-- File : gbnPlatformOAMTelnet-MIB.mi2 +-- Description : Telnet configuration MIB +-- Version : 1.0 +-- Date : April 16, 2013 +-- Author : tangrenxiang +-- Copyright (c) 2001-2008 admin Co. Ltd. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNPlatformOAMTelnet-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Gauge32, + Unsigned32, Integer32, + IpAddress, NOTIFICATION-TYPE FROM SNMPv2-SMI + + RowStatus, TruthValue, + DisplayString, MacAddress FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + snmpTraps FROM SNMPv2-MIB + + gbnPlatformOAM FROM GBNPlatformOAM-MIB; + + gbnPlatformOAMTelnet MODULE-IDENTITY + LAST-UPDATED "1304160000Z" -- April 16, 2013 + ORGANIZATION "admin Co. Ltd" + CONTACT-INFO "admin Co. Ltd + E-mail: service@admin.com.cn" + + DESCRIPTION "Telnet mib definition." + + REVISION "1304160000Z" -- April 16, 2013 + DESCRIPTION "Initial MIB creation." + + ::= { gbnPlatformOAM 15 } + + telnetState OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "enable or disable telnet." + --´ò¿ª»ò¹Ø±Õtelnet¹¦ÄÜ¡£ + ::= { gbnPlatformOAMTelnet 1 } + + telnetUserLimit OBJECT-TYPE + SYNTAX Integer32 (0..5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max user limit of telnet" + --ÔÊÐítelnetµÇ¼µÄ×î´óÓû§ÊýÄ¿ + ::= { gbnPlatformOAMTelnet 2 } + + telnetLoginUsers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current login users of telnet" + --µ±Ç°telnetµÇ¼µÄÓû§ÊýÄ¿ + ::= { gbnPlatformOAMTelnet 3 } + + telnetUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelnetUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of login user information" + --µÇ¼Óû§ÐÅÏ¢±í + ::= { gbnPlatformOAMTelnet 4 } + + telnetUserEntry OBJECT-TYPE + SYNTAX TelnetUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of login user information" + --µÇ¼Óû§ÐÅÏ¢Áбí + INDEX { telnetUserTerminal } + ::= { telnetUserTable 1 } + + TelnetUserEntry ::= SEQUENCE { + telnetUserTerminal Counter32, + telnetUserAddrIp DisplayString, + telnetUserName DisplayString, + telnetUserLoginTime DisplayString, + telnetUserTransport DisplayString, + telnetUserRowStatus RowStatus + } + + telnetUserTerminal OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "login terminal number" + --µÇ¼Öն˺Š+ ::= { telnetUserEntry 1 } + + telnetUserAddrIp OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "login ip address" + -- µÇ¼ipµØÖ·,°üÀ¨IPV4ºÍIPV6. + ::= { telnetUserEntry 2 } + + telnetUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "login user name" + --µÇ¼Óû§Ãû³Æ + ::= { telnetUserEntry 3 } + + telnetUserLoginTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "login time" + --µÇ¼ʱ¼ä + ::= { telnetUserEntry 4 } + + telnetUserTransport OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "transport type" + --µÇ¼ÀàÐÍ, telnet»òssh + ::= { telnetUserEntry 5 } + + telnetUserRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "login user rowstatus" + --µÇ¼Óû§ÐÐ״̬£¬ÓÃÀ´ÌÞ³ýÓû§ + ::= { telnetUserEntry 6 } + END diff --git a/mibs/fs/GBNServiceCM-MIB b/mibs/fs/GBNServiceCM-MIB new file mode 100644 index 0000000000..e647fff5bc --- /dev/null +++ b/mibs/fs/GBNServiceCM-MIB @@ -0,0 +1,245 @@ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- +-- File : gbn8021xCM.mib +-- Description : Sample admin 802.1x CM module configuration MIB +-- Version : 1.0 +-- Date : July 2, 2002 +-- +-- Copyright (c) 1999-2000 admin Systems, Inc. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNServiceCM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnServiceAAA FROM ADMIN-MASTER-MIB + ; + + + gbn8021xCmMib MODULE-IDENTITY + LAST-UPDATED "2002/07/02" -- July 2, 2002 + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + + DESCRIPTION "admin CM Enterprise MIB definition." + + REVISION "2002/07/02" -- July 2, 2002 + DESCRIPTION "Initial MIB creation." + + ::= { gbnServiceAAA 1 } + + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + -- + -- "DURABLE": + -- Objects that are saved across a system reset and/or power cycle + -- are noted as "DURABLE" for convenience in the DESCRIPTION + -- section of the object definition. Code must be explicitly + -- written to implement these DURABLE objects. + -- + +------------------------------------------------------------------------------ +-- define groups in GBN-8021xCM-MIB +------------------------------------------------------------------------------ + + + ------------------------------------------------------------------- + --Add gbn8021xCmConfTable MIB 2002/07/02 ouyangchunbo + ------------------------------------------------------------------- + gbn8021xCmConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF gbn8021xCmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Radius configuration table" + ::= { gbn8021xCmMib 1 } + + gbn8021xCmConfEntry OBJECT-TYPE + SYNTAX gbn8021xCmConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of radius parameters." + INDEX { DomainIndex } + ::= { gbn8021xCmConfTable 1 } + + gbn8021xCmConfEntry ::= SEQUENCE { + DomainIndex Integer32, + DomainName DisplayString, + ServerName DisplayString, + MaxLinks Integer32, + CurrentLinks Integer32, + nActive TruthValue, + bCmUsed TruthValue, + scheme Integer32 + } + + DomainIndex OBJECT-TYPE + SYNTAX Integer32 (1..1024) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A simple index into 'gbn8021xCmConfTable'." + ::= { gbn8021xCmConfEntry 1 } + + DomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple DomainName of gbn8021xCmConfEntry." + ::= { gbn8021xCmConfEntry 2 } + + ServerName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple ServerName of gbn8021xCmConfEntry." + ::= { gbn8021xCmConfEntry 3 } + + MaxLinks OBJECT-TYPE + SYNTAX Integer32(1..640) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1024:all } + A simple MaxLinks of 'gbn8021xCmConfTable'.0xFFFF means disable" + ::= { gbn8021xCmConfEntry 4 } + + CurrentLinks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A simple CurrentLinks of 'gbn8021xCmConfTable'." + ::= { gbn8021xCmConfEntry 5 } + + nActive OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the current Domain 1-acitved 2 - unactived'." + ::= { gbn8021xCmConfEntry 6 } + + + bCmUsed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the current Domain 1-used 2 - unused'." + ::= { gbn8021xCmConfEntry 7 } + + scheme OBJECT-TYPE + SYNTAX Integer32 { + radius(0), + local(1), + radiuslocal(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "scheme of this domain.default is radius(0)'." + ::= { gbn8021xCmConfEntry 8 } + + + gbn8021xEAPType OBJECT-TYPE + SYNTAX Integer32 { + eap-finish(1), + eap-transfer(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The operation form of EAP. + eap-finish :Eap msg be processed in local device + eap-transfer:Eap msg will be transfered to RADIUS Server + " + ::= { gbn8021xCmMib 2 } + + + defaultDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple default domain name." + ::= { gbn8021xCmMib 3 } + + gbnLocalUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF GbnLocalUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of local user table" + ::= { gbn8021xCmMib 4 } + + gbnLocalUserEntry OBJECT-TYPE + SYNTAX GbnLocalUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of local user." + INDEX { localUserName } + ::= { gbnLocalUserTable 1 } + + GbnLocalUserEntry ::= SEQUENCE { + localUserName DisplayString, + localUserPassword DisplayString, + localUserVlan Integer32, + localUserStatus RowStatus + } + + localUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "name of a local user'." + ::= { gbnLocalUserEntry 1 } + + localUserPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "password of a local user'." + ::= { gbnLocalUserEntry 2 } + + localUserVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "vlan attribute of a local user'." + ::= { gbnLocalUserEntry 3 } + + localUserStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "rowstartus of a local user'." + ::= { gbnLocalUserEntry 4 } + +-- +-- END of GBN-8021xCM-MIB +-- + +END + diff --git a/mibs/fs/GBNServiceMACAUTHEN-MIB b/mibs/fs/GBNServiceMACAUTHEN-MIB new file mode 100644 index 0000000000..27141b0e1c --- /dev/null +++ b/mibs/fs/GBNServiceMACAUTHEN-MIB @@ -0,0 +1,356 @@ + GBNServiceMACAUTHEN-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnServiceAAA FROM ADMIN-MASTER-MIB + ; + + + gbnMacAuthenMib MODULE-IDENTITY + LAST-UPDATED "2010/06/01" -- Jun 01, 2010 + ORGANIZATION "Admin" + CONTACT-INFO "Admin + E-mail: support@Admin.com" + + DESCRIPTION "gbn macauthen Enterprise MIB definition." + + REVISION "2010/06/01" -- Jun 01, 2010 + DESCRIPTION "Initial MIB creation." + + ::= { gbnServiceAAA 4 } + + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + -- + -- "DURABLE": + -- Objects that are saved across a system reset and/or power cycle + -- are noted as "DURABLE" for convenience in the DESCRIPTION + -- section of the object definition. Code must be explicitly + -- written to implement these DURABLE objects. + -- + +------------------------------------------------------------------------------ +-- define groups in gbn-TACACS-MIB + globalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "global config of mac-authentication.default is false." + ::= { gbnMacAuthenMib 1 } + + radiusDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "domain name of radius domain.use size 0 to delete.default is size 0,indicating none." + ::= { gbnMacAuthenMib 2 } + + offlineTimer OBJECT-TYPE + SYNTAX Integer32 (30..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "offline time of mac.unit is second.default is 300 seconds." + ::= { gbnMacAuthenMib 3 } + + quietTimer OBJECT-TYPE + SYNTAX Integer32 (30..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "quiet time of mac.unit is second.default is 60 secondsl" + ::= { gbnMacAuthenMib 4 } + + userMode OBJECT-TYPE + SYNTAX INTEGER { + fixed(1), -- use fixed name and password + macaddress(0) -- use mac-address + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "how to make username and password of radius.default is macaddress(0)." + ::= { gbnMacAuthenMib 5 } + + userName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "username when usermode is fiexed.use size 0 to delete.default is size 0,indicating none." + ::= { gbnMacAuthenMib 6 } + + password OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "password when usermode is fiexed.use size 0 to delete.default is size 0,indicating none." + ::= { gbnMacAuthenMib 7 } + + macAuthenPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacAuthenPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of information of ports." + REFERENCE + "9.6.1" + ::= { gbnMacAuthenMib 8 } + + macAuthenPortEntry OBJECT-TYPE + SYNTAX MacAuthenPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of information of ports." + INDEX { macAuthenPortNumber } + ::= { macAuthenPortTable 1 } + + MacAuthenPortEntry ::= + SEQUENCE { + macAuthenPortNumber + Unsigned32, + macAuthenEnable + TruthValue, + guestVlan + Integer32, + maxUsers + Integer32, + rateLimit + Integer32, + rateLimitTimer + Integer32, + uplink + TruthValue + } + + macAuthenPortNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port number associated with this Port." + REFERENCE + "9.6.1, Port number" + ::= { macAuthenPortEntry 1 } + + + macAuthenEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable mac-authentication of this Port.default is disabled." + REFERENCE + "9.6.1, Protocol version" + ::= { macAuthenPortEntry 2 } + + guestVlan OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "guest vlan.0 is disable.default is 0." + ::= { macAuthenPortEntry 3 } + + maxUsers OBJECT-TYPE + SYNTAX Integer32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "maximum users.range is from 1 to 256.default is 256." + ::= { macAuthenPortEntry 4 } + + rateLimit OBJECT-TYPE + SYNTAX Integer32 (10..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "rate limit of authentition packets.when reach this value, the port can not authenticate users, is in block state.range is form 10 to 300.default is 300 packets per sencond" + ::= { macAuthenPortEntry 5 } + + rateLimitTimer OBJECT-TYPE + SYNTAX Integer32 (30..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "when port is in block state because ratelimit, after this timer ,port turns to normal state..default is 60" + ::= { macAuthenPortEntry 6 } + + uplink OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "uplink port of vlan" + ::= { macAuthenPortEntry 7 } + + encrptionMode OBJECT-TYPE + SYNTAX INTEGER { + chap(1), -- use chap + pap(0) -- use pap + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "radius password encrption mode,default is pap." + ::= { gbnMacAuthenMib 9 } + + macvlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "whethe to use mac vlan function.default is false." + ::= { gbnMacAuthenMib 10 } + + questVlanReauthTimer OBJECT-TYPE + SYNTAX Integer32 (30..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "guestvlan users reauthentication timer .unit is second.range is from 30 to 3600.default is 30 secondsl" + ::= { gbnMacAuthenMib 11 } + + macUsersTable OBJECT-TYPE + SYNTAX SEQUENCE OF MacUsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of information of users." + REFERENCE + "9.6.1" + ::= { gbnMacAuthenMib 12 } + + macUsersEntry OBJECT-TYPE + SYNTAX MacUsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of information of users." + INDEX { userMac } + ::= { macUsersTable 1 } + + MacUsersEntry ::= + SEQUENCE { + userMac + MacAddress, + userState + Unsigned32, + userPort + Unsigned32, + userVlan + Integer32, + userInGuestVlan + TruthValue, + userPriority + Integer32, + userAcl + DisplayString, + userRate + Integer32, + userPeakRate + Integer32, + userBasicRate + Integer32 + } + + userMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "user macaddress." + ::= { macUsersEntry 1 } + + userState OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "user state.bit 0:quiet state,bit 1:authenticating state,bit 2:authenticated state, bit 3:off-line detecting state" + ::= { macUsersEntry 2 } + + userPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the port number of this user belongs to.start form 1" + ::= { macUsersEntry 3 } + + userVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the vlan number of this user belongs to." + ::= { macUsersEntry 4 } + + userInGuestVlan OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "whether user is in guest vlan." + ::= { macUsersEntry 5 } + + userPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the priority of this user belongs to." + ::= { macUsersEntry 6 } + + userAcl OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the acl name of this user belongs to." + ::= { macUsersEntry 7 } + + userRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "average bandwith of this user.unit is kbps" + ::= { macUsersEntry 8 } + + userPeakRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "peak bandwith of this user.unit is kbps" + ::= { macUsersEntry 9 } + + userBasicRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "basic bandwith of this user.unit is kbps" + ::= { macUsersEntry 10 } + +-- +-- END of gbn-MACAUTHEN-MIB +-- + +END + diff --git a/mibs/fs/GBNServiceRADIUS-MIB b/mibs/fs/GBNServiceRADIUS-MIB new file mode 100644 index 0000000000..d803f55779 --- /dev/null +++ b/mibs/fs/GBNServiceRADIUS-MIB @@ -0,0 +1,229 @@ +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +-- +-- File : gbnRadius.mib +-- Description : Sample admin Radius configuration MIB +-- Version : 1.0 +-- Date : July 2, 2002 +-- +-- Copyright (c) 1999-2000 admin Systems, Inc. All Rights Reserved. +-- +------------------------------------------------------------------------------ + + GBNServiceRADIUS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnServiceAAA FROM ADMIN-MASTER-MIB; + + + gbnRadiusMib MODULE-IDENTITY + LAST-UPDATED "0008290000Z" + ORGANIZATION "admin Systems, Inc." + CONTACT-INFO "admin Systems, Inc. + E-mail: support@admin.com.cn" + DESCRIPTION "admin Radius Enterprise MIB definition." + REVISION "0008290000Z" + DESCRIPTION "admin Radius Enterprise MIB definition." + ::= { gbnServiceAAA 2 } + +------------------------------------------------------------------------------ +-- define groups in admin-RADIUS-MIB +------------------------------------------------------------------------------ + + ------------------------------------------------------------------- + --Add gbnRadiusConfTable MIB 2002/07/02 ouyangchunbo + ------------------------------------------------------------------- + gbnRadiusConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF gbnRadiusConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Radius configuration table" + ::= { gbnRadiusMib 1 } + + gbnRadiusConfEntry OBJECT-TYPE + SYNTAX gbnRadiusConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of radius parameters." + INDEX { ServerIndex } + ::= { gbnRadiusConfTable 1 } + + gbnRadiusConfEntry ::= SEQUENCE { + ServerIndex Integer32, + ServerName DisplayString, + PrimServerIP DisplayString, + PrimAuthPort Integer32, + PrimAcctPort Integer32, + SecServerIP DisplayString, + SecAuthPort Integer32, + SecAcctPort Integer32, + Key DisplayString, + bRadiusUsed TruthValue, + UserNameFormat TruthValue, + RealAcctTime Integer32, + bRealAcct TruthValue, + gbnRadiusClientIp DisplayString, + PrimAcctServerIP DisplayString, + SecAcctServerIP DisplayString, + acctKey DisplayString + } + + ServerIndex OBJECT-TYPE + SYNTAX Integer32 (1..1024) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A simple index into 'gbnRadiusConfTable'." + ::= { gbnRadiusConfEntry 1 } + + ServerName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple ServerName of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 2 } + + PrimServerIP OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple PrimServerIP of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 3 } + + PrimAuthPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1812:all } + The authenticate port of prime radius server" + ::= { gbnRadiusConfEntry 4 } + + PrimAcctPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1813:all } + The account port of prime radius server" + ::= { gbnRadiusConfEntry 5 } + + + SecServerIP OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple SecServerIP of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 6 } + + SecAuthPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1812:all } + The authenticate port of second radius server" + ::= { gbnRadiusConfEntry 7 } + + SecAcctPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { 1813:all } + The account port of second radius server" + ::= { gbnRadiusConfEntry 8 } + + Key OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { '' } + A simple Key of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 9 } + + bRadiusUsed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the current radius server 1-used 2 - unused." + ::= { gbnRadiusConfEntry 10 } + + UserNameFormat OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of user name format configuration 1-with domain 2-without domain." + ::= { gbnRadiusConfEntry 11 } + + RealAcctTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The realtime account time of radius server,the value of default is 12 minutes" + ::= { gbnRadiusConfEntry 12 } + + bRealAcct OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the realtime account switch 1-used 2 - unused." + ::= { gbnRadiusConfEntry 13 } + + gbnRadiusClientIp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A system IP address for RADIUS client to report who it is to the server." + ::= { gbnRadiusConfEntry 14 } + + PrimAcctServerIP OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple PrimAcctServerIP of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 15 } + + SecAcctServerIP OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " A simple SecAcctServerIP of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 16 } + + acctKey OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DURABLE: { '' } + A simple Key of gbnRadiusConfEntry." + ::= { gbnRadiusConfEntry 17 } +-- +-- END of admin-RADIUS-MIB +-- + +END + diff --git a/mibs/fs/GBNServiceRMON-MIB b/mibs/fs/GBNServiceRMON-MIB new file mode 100644 index 0000000000..3467f8860a --- /dev/null +++ b/mibs/fs/GBNServiceRMON-MIB @@ -0,0 +1,1560 @@ +-- File: RFC1757.MIB - CCD-RMON-MIB +-- Changes: +-- Changed IMPORT of DisplayString to RFC1213-MIB +-- from RFC1158-MIB. +-- Added import for TimeTicks from RFC1155-SMI. +-- dperkins@scruznet.com + + GBNServiceRMON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TimeTicks, + Counter FROM RFC1155-SMI + DisplayString, + mib-2 FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + rmonMib FROM ADMIN-MASTER-MIB + TRAP-TYPE FROM RFC-1215; + + -- textual conventions + + OwnerString ::= DisplayString + -- This data type is used to model an administratively + -- assigned name of the owner of a resource. This + -- information is taken from the NVT ASCII character + -- set. It is suggested that this name contain one or + -- more of the following: IP address, management station + -- name, network manager's name, location, or phone + -- number. + -- In some cases the agent itself will be the owner of + -- an entry. In these cases, this string shall be set + -- to a string starting with 'monitor'. + -- + -- SNMP access control is articulated entirely in terms + -- of the contents of MIB views; access to a particular + -- SNMP object instance depends only upon its presence + -- or absence in a particular MIB view and never upon + -- its value or the value of related object instances. + -- Thus, objects of this type afford resolution of + -- resource contention only among cooperating managers; + -- they realize no access control function with respect + -- to uncooperative parties. + -- + -- By convention, objects with this syntax are declared as + -- having + -- + -- SIZE (0..127) + + EntryStatus ::= INTEGER + { valid(1), + createRequest(2), + underCreation(3), + invalid(4) + } + -- The status of a table entry. + -- + -- Setting this object to the value invalid(4) has the + -- effect of invalidating the corresponding entry. + -- That is, it effectively disassociates the mapping + -- identified with said entry. + -- It is an implementation-specific matter as to whether + -- the agent removes an invalidated entry from the table. + -- Accordingly, management stations must be prepared to + -- receive tabular information from agents that + -- corresponds to entries currently not in use. Proper + -- interpretation of such entries requires examination + -- of the relevant EntryStatus object. + -- + -- An existing instance of this object cannot be set to + -- createRequest(2). This object may only be set to + -- createRequest(2) when this instance is created. When + -- this object is created, the agent may wish to create + -- supplemental object instances with default values + -- to complete a conceptual row in this table. Because + -- the creation of these default objects is entirely at + -- the option of the agent, the manager must not assume + -- that any will be created, but may make use of any that + -- are created. Immediately after completing the create + -- operation, the agent must set this object to + -- underCreation(3). + -- + -- When in the underCreation(3) state, an entry is + -- allowed to exist in a possibly incomplete, possibly + -- inconsistent state, usually to allow it to be + -- modified in mutiple PDUs. When in this state, an + -- entry is not fully active. Entries shall exist in + -- the underCreation(3) state until the management + -- station is finished configuring the entry and sets + -- this object to valid(1) or aborts, setting this + -- object to invalid(4). If the agent determines that + -- an entry has been in the underCreation(3) state for + -- an abnormally long time, it may decide that the + -- management station has crashed. If the agent makes + -- this decision, it may set this object to invalid(4) + -- to reclaim the entry. A prudent agent will + -- understand that the management station may need to + -- wait for human input and will allow for that + -- possibility in its determination of this abnormally + -- long period. + -- + -- An entry in the valid(1) state is fully configured and + -- consistent and fully represents the configuration or + -- operation such a row is intended to represent. For + -- example, it could be a statistical function that is + -- configured and active, or a filter that is available + -- in the list of filters processed by the packet capture + -- process. + -- + -- A manager is restricted to changing the state of an + -- entry in the following ways: + -- + -- create under + -- To: valid Request Creation invalid + -- From: + -- valid OK NO OK OK + -- createRequest N/A N/A N/A N/A + -- underCreation OK NO OK OK + -- invalid NO NO NO OK + -- nonExistent NO OK NO OK + -- + -- In the table above, it is not applicable to move the + -- state from the createRequest state to any other + -- state because the manager will never find the + -- variable in that state. The nonExistent state is + -- not a value of the enumeration, rather it means that + -- the entryStatus variable does not exist at all. + -- + -- An agent may allow an entryStatus variable to change + -- state in additional ways, so long as the semantics + -- of the states are followed. This allowance is made + -- to ease the implementation of the agent and is made + -- despite the fact that managers should never + -- excercise these additional state transitions. + + + rStatistics OBJECT IDENTIFIER ::= { rmonMib 1 } + rHistory OBJECT IDENTIFIER ::= { rmonMib 2 } + rAlarm OBJECT IDENTIFIER ::= { rmonMib 3 } + rEvent OBJECT IDENTIFIER ::= { rmonMib 9 } + + + -- The Ethernet Statistics Group + -- + -- Implementation of the Ethernet Statistics group is + -- optional. + -- + -- The ethernet statistics group contains statistics + -- measured by the probe for each monitored interface on + -- this device. These statistics take the form of free + -- running counters that start from zero when a valid entry + -- is created. + -- + -- This group currently has statistics defined only for + -- Ethernet interfaces. Each etherStatsEntry contains + -- statistics for one Ethernet interface. The probe must + -- create one etherStats entry for each monitored Ethernet + -- interface on the device. + + rEtherStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcdRmonEtherStatsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of Ethernet statistics entries." + ::= { rStatistics 1 } + + rEtherStatsEntry OBJECT-TYPE + SYNTAX CcdRmonEtherStatsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of statistics kept for a particular + Ethernet interface. As an example, an instance of the + etherStatsPkts object might be named etherStatsPkts.1" + INDEX { rEtherStatsIndex } + ::= { rEtherStatsTable 1 } + + CcdRmonEtherStatsEntry ::= SEQUENCE { + rEtherStatsIndex INTEGER (1..65535), + rEtherStatsDataSource OBJECT IDENTIFIER, + rEtherStatsDropEvents Counter, + rEtherStatsOctets Counter, + rEtherStatsPkts Counter, + rEtherStatsBroadcastPkts Counter, + rEtherStatsMulticastPkts Counter, + rEtherStatsCRCAlignErrors Counter, + rEtherStatsUndersizePkts Counter, + rEtherStatsOversizePkts Counter, + rEtherStatsFragments Counter, + rEtherStatsJabbers Counter, + rEtherStatsCollisions Counter, + rEtherStatsPkts64Octets Counter, + rEtherStatsPkts65to127Octets Counter, + rEtherStatsPkts128to255Octets Counter, + rEtherStatsPkts256to511Octets Counter, + rEtherStatsPkts512to1023Octets Counter, + rEtherStatsPkts1024to1518Octets Counter, + rEtherStatsOwner OwnerString, + rEtherStatsStatus EntryStatus + } + + rEtherStatsIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object uniquely identifies this + etherStats entry." + ::= { rEtherStatsEntry 1 } + + rEtherStatsDataSource OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object identifies the source of the data that + this etherStats entry is configured to analyze. This + source can be any ethernet interface on this device. + In order to identify a particular interface, this + object shall identify the instance of the ifIndex + object, defined in RFC 1213 and RFC 1573 [4,6], for + the desired interface. For example, if an entry + were to receive data from interface #1, this object + would be set to ifIndex.1. + + The statistics in this group reflect all packets + on the local network segment attached to the + identified interface. + + An agent may or may not be able to tell if + fundamental changes to the media of the interface + have occurred and necessitate an invalidation of + this entry. For example, a hot-pluggable ethernet + card could be pulled out and replaced by a + token-ring card. In such a case, if the agent has + such knowledge of the change, it is recommended that + it invalidate this entry. + + This object may not be modified if the associated + etherStatsStatus object is equal to valid(1)." + ::= { rEtherStatsEntry 2 } + + rEtherStatsDropEvents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of events in which packets + were dropped by the probe due to lack of resources. + Note that this number is not necessarily the number of + packets dropped; it is just the number of times this + condition has been detected." + ::= { rEtherStatsEntry 3 } + + rEtherStatsOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets of data (including + those in bad packets) received on the + network (excluding framing bits but including + FCS octets). + + This object can be used as a reasonable estimate of + ethernet utilization. If greater precision is + desired, the etherStatsPkts and etherStatsOctets + objects should be sampled before and after a common + interval. The differences in the sampled values are + Pkts and Octets, respectively, and the number of + seconds in the interval is Interval. These values + are used to calculate the Utilization as follows: + + Pkts * (9.6 + 6.4) + (Octets * .8) + Utilization = ------------------------------------- + Interval * 10,000 + + The result of this equation is the value Utilization + which is the percent utilization of the ethernet + segment on a scale of 0 to 100 percent." + ::= { rEtherStatsEntry 4 } + + rEtherStatsPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad packets, + broadcast packets, and multicast packets) received." + ::= { rEtherStatsEntry 5 } + + rEtherStatsBroadcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of good packets received that were + directed to the broadcast address. Note that this + does not include multicast packets." + ::= { rEtherStatsEntry 6 } + + rEtherStatsMulticastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of good packets received that were + directed to a multicast address. Note that this + number does not include packets directed to the + broadcast address." + ::= { rEtherStatsEntry 7 } + + rEtherStatsCRCAlignErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets received that + had a length (excluding framing bits, but + including FCS octets) of between 64 and 1518 + octets, inclusive, but but had either a bad + Frame Check Sequence (FCS) with an integral + number of octets (FCS Error) or a bad FCS with + a non-integral number of octets (Alignment Error)." + ::= { rEtherStatsEntry 8 } + + rEtherStatsUndersizePkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets received that were + less than 64 octets long (excluding framing bits, + but including FCS octets) and were otherwise well + formed." + ::= { rEtherStatsEntry 9 } + + rEtherStatsOversizePkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets) and were otherwise + well formed." + ::= { rEtherStatsEntry 10 } + + rEtherStatsFragments OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets received that were less + than 64 octets in length (excluding framing bits but + including FCS octets) and had either a bad Frame + Check Sequence (FCS) with an integral number of + octets (FCS Error) or a bad FCS with a non-integral + number of octets (Alignment Error). + + Note that it is entirely normal for + etherStatsFragments to increment. This is because + it counts both runts (which are normal occurrences + due to collisions) and noise hits." + ::= { rEtherStatsEntry 11 } + + rEtherStatsJabbers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets received that were + longer than 1518 octets (excluding framing bits, + but including FCS octets), and had either a bad + Frame Check Sequence (FCS) with an integral number + of octets (FCS Error) or a bad FCS with a + non-integral number of octets (Alignment Error). + + Note that this definition of jabber is different + than the definition in IEEE-802.3 section 8.2.1.5 + (10BASE5) and section 10.3.1.4 (10BASE2). These + documents define jabber as the condition where any + packet exceeds 20 ms. The allowed range to detect + jabber is between 20 ms and 150 ms." + ::= { rEtherStatsEntry 12 } + + rEtherStatsCollisions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The best estimate of the total number of collisions + on this Ethernet segment. + + The value returned will depend on the location of + the RMON probe. Section 8.2.1.3 (10BASE-5) and + section 10.3.1.3 (10BASE-2) of IEEE standard 802.3 + states that a station must detect a collision, in + the receive mode, if three or more stations are + transmitting simultaneously. A repeater port must + detect a collision when two or more stations are + transmitting simultaneously. Thus a probe placed on + a repeater port could record more collisions than a + probe connected to a station on the same segment + would. + + Probe location plays a much smaller role when + considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE + standard 802.3 defines a collision as the + simultaneous presence of signals on the DO and RD + circuits (transmitting and receiving at the same + time). A 10BASE-T station can only detect + collisions when it is transmitting. Thus probes + placed on a station and a repeater, should report + the same number of collisions. + + Note also that an RMON probe inside a repeater + should ideally report collisions between the + repeater and one or more other hosts (transmit + collisions as defined by IEEE 802.3k) plus receiver + collisions observed on any coax segments to which + the repeater is connected." + ::= { rEtherStatsEntry 13 } + + rEtherStatsPkts64Octets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad + packets) received that were 64 octets in length + (excluding framing bits but including FCS octets)." + ::= { rEtherStatsEntry 14 } + + rEtherStatsPkts65to127Octets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 65 and 127 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { rEtherStatsEntry 15 } + + rEtherStatsPkts128to255Octets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 128 and 255 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { rEtherStatsEntry 16 } + + rEtherStatsPkts256to511Octets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 256 and 511 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { rEtherStatsEntry 17 } + + rEtherStatsPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 512 and 1023 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { rEtherStatsEntry 18 } + + rEtherStatsPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets (including bad + packets) received that were between + 1024 and 1518 octets in length inclusive + (excluding framing bits but including FCS octets)." + ::= { rEtherStatsEntry 19 } + + rEtherStatsOwner OBJECT-TYPE + SYNTAX OwnerString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The entity that configured this entry and is + therefore using the resources assigned to it." + ::= { rEtherStatsEntry 20 } + + rEtherStatsStatus OBJECT-TYPE + SYNTAX EntryStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of this etherStats entry." + ::= { rEtherStatsEntry 21 } + + + -- The History Control Group + + -- Implementation of the History Control group is optional. + -- + -- The history control group controls the periodic statistical + -- sampling of data from various types of networks. The + -- historyControlTable stores configuration entries that each + -- define an interface, polling period, and other parameters. + -- Once samples are taken, their data is stored in an entry + -- in a media-specific table. Each such entry defines one + -- sample, and is associated with the historyControlEntry that + -- caused the sample to be taken. Each counter in the + -- etherHistoryEntry counts the same event as its + -- similarly-named counterpart in the etherStatsEntry, + -- except that each value here is a cumulative sum during a + -- sampling period. + -- + -- If the probe keeps track of the time of day, it should + -- start the first sample of the history at a time such that + -- when the next hour of the day begins, a sample is + -- started at that instant. This tends to make more + -- user-friendly reports, and enables comparison of reports + -- from different probes that have relatively accurate time + -- of day. + -- + -- The probe is encouraged to add two history control entries + -- per monitored interface upon initialization that describe + -- a short term and a long term polling period. Suggested + -- parameters are 30 seconds for the short term polling period + -- and 30 minutes for the long term period. + + rHistoryControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcdRmonHistoryControlEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of history control entries." + ::= { rHistory 1 } + + rHistoryControlEntry OBJECT-TYPE + SYNTAX CcdRmonHistoryControlEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of parameters that set up a periodic sampling + of statistics. As an example, an instance of the + historyControlInterval object might be named + historyControlInterval.2" + INDEX { rHistoryControlIndex } + ::= { rHistoryControlTable 1 } + + CcdRmonHistoryControlEntry ::= SEQUENCE { + rHistoryControlIndex INTEGER (1..65535), + rHistoryControlDataSource OBJECT IDENTIFIER, + rHistoryControlBucketsRequested INTEGER (1..65535), + rHistoryControlBucketsGranted INTEGER (1..65535), + rHistoryControlInterval INTEGER (1..3600), + rHistoryControlOwner OwnerString, + rHistoryControlStatus EntryStatus + } + + rHistoryControlIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely identifies an entry in the + historyControl table. Each such entry defines a + set of samples at a particular interval for an + interface on the device." + ::= { rHistoryControlEntry 1 } + + rHistoryControlDataSource OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object identifies the source of the data for + which historical data was collected and + placed in a media-specific table on behalf of this + historyControlEntry. This source can be any + interface on this device. In order to identify + a particular interface, this object shall identify + the instance of the ifIndex object, defined + in RFC 1213 and RFC 1573 [4,6], for the desired + interface. For example, if an entry were to receive + data from interface #1, this object would be set + to ifIndex.1. + + The statistics in this group reflect all packets + on the local network segment attached to the + identified interface. + + An agent may or may not be able to tell if fundamental + changes to the media of the interface have occurred + and necessitate an invalidation of this entry. For + example, a hot-pluggable ethernet card could be + pulled out and replaced by a token-ring card. In + such a case, if the agent has such knowledge of the + change, it is recommended that it invalidate this + entry. + + This object may not be modified if the associated + historyControlStatus object is equal to valid(1)." + ::= { rHistoryControlEntry 2 } + + rHistoryControlBucketsRequested OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The requested number of discrete time intervals + over which data is to be saved in the part of the + media-specific table associated with this + historyControlEntry. + + When this object is created or modified, the probe + should set historyControlBucketsGranted as closely to + this object as is possible for the particular probe + implementation and available resources." + DEFVAL { 50 } + ::= { rHistoryControlEntry 3 } + + rHistoryControlBucketsGranted OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of discrete sampling intervals + over which data shall be saved in the part of + the media-specific table associated with this + historyControlEntry. + + When the associated historyControlBucketsRequested + object is created or modified, the probe + should set this object as closely to the requested + value as is possible for the particular + probe implementation and available resources. The + probe must not lower this value except as a result + of a modification to the associated + historyControlBucketsRequested object. + + There will be times when the actual number of + buckets associated with this entry is less than + the value of this object. In this case, at the + end of each sampling interval, a new bucket will + be added to the media-specific table. + + When the number of buckets reaches the value of + this object and a new bucket is to be added to the + media-specific table, the oldest bucket associated + with this historyControlEntry shall be deleted by + the agent so that the new bucket can be added. + + When the value of this object changes to a value less + than the current value, entries are deleted + from the media-specific table associated with this + historyControlEntry. Enough of the oldest of these + entries shall be deleted by the agent so that their + number remains less than or equal to the new value of + this object. + + When the value of this object changes to a value + greater than the current value, the number of + associated media- specific entries may be allowed to + grow." + ::= { rHistoryControlEntry 4 } + + rHistoryControlInterval OBJECT-TYPE + SYNTAX INTEGER (1..3600) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The interval in seconds over which the data is + sampled for each bucket in the part of the + media-specific table associated with this + historyControlEntry. This interval can + be set to any number of seconds between 1 and + 3600 (1 hour). + + Because the counters in a bucket may overflow at their + maximum value with no indication, a prudent manager + will take into account the possibility of overflow + in any of the associated counters. It is important + to consider the minimum time in which any counter + could overflow on a particular media type and set + the historyControlInterval object to a value less + than this interval. This is typically most + important for the 'octets' counter in any + media-specific table. For example, on an Ethernet + network, the etherHistoryOctets counter could + overflow in about one hour at the Ethernet's maximum + utilization. + + This object may not be modified if the associated + historyControlStatus object is equal to valid(1)." + DEFVAL { 1800 } + ::= { rHistoryControlEntry 5 } + + rHistoryControlOwner OBJECT-TYPE + SYNTAX OwnerString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The entity that configured this entry and is + therefore using the resources assigned to it." + ::= { rHistoryControlEntry 6 } + + rHistoryControlStatus OBJECT-TYPE + SYNTAX EntryStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of this historyControl entry. + + Each instance of the media-specific table associated + with this historyControlEntry will be deleted by the + agent if this historyControlEntry is not equal to + valid(1)." + ::= { rHistoryControlEntry 7 } + + + -- The Ethernet History Group + + -- Implementation of the Ethernet History group is optional. + -- + -- The Ethernet History group records periodic + -- statistical samples from a network and stores them + -- for later retrieval. Once samples are taken, their + -- data is stored in an entry in a media-specific + -- table. Each such entry defines one sample, and is + -- associated with the historyControlEntry that caused + -- the sample to be taken. This group defines the + -- etherHistoryTable, for Ethernet networks. + -- + + rEtherHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcdRmonEtherHistoryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of Ethernet history entries." + ::= { rHistory 2 } + + rEtherHistoryEntry OBJECT-TYPE + SYNTAX CcdRmonEtherHistoryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An historical sample of Ethernet statistics on a + particular Ethernet interface. This sample is + associated with the historyControlEntry which set up + the parameters for a regular collection of these + samples. As an example, an instance of the + etherHistoryPkts object might be named + etherHistoryPkts.2.89" + INDEX { rEtherHistoryIndex , rEtherHistorySampleIndex } + ::= { rEtherHistoryTable 1 } + + CcdRmonEtherHistoryEntry ::= SEQUENCE { + rEtherHistoryIndex INTEGER (1..65535), + rEtherHistorySampleIndex INTEGER (1..2147483647), + rEtherHistoryIntervalStart TimeTicks, + rEtherHistoryDropEvents Counter, + rEtherHistoryOctets Counter, + rEtherHistoryPkts Counter, + rEtherHistoryBroadcastPkts Counter, + rEtherHistoryMulticastPkts Counter, + rEtherHistoryCRCAlignErrors Counter, + rEtherHistoryUndersizePkts Counter, + rEtherHistoryOversizePkts Counter, + rEtherHistoryFragments Counter, + rEtherHistoryJabbers Counter, + rEtherHistoryCollisions Counter, + rEtherHistoryUtilization INTEGER (0..10000) + } + + rEtherHistoryIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The history of which this entry is a part. The + history identified by a particular value of this + index is the same history as identified + by the same value of historyControlIndex." + ::= { rEtherHistoryEntry 1 } + + rEtherHistorySampleIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely identifies the particular + sample this entry represents among all samples + associated with the same historyControlEntry. + This index starts at 1 and increases by one + as each new sample is taken." + ::= { rEtherHistoryEntry 2 } + + rEtherHistoryIntervalStart OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at the start of the interval + over which this sample was measured. If the probe + keeps track of the time of day, it should start + the first sample of the history at a time such that + when the next hour of the day begins, a sample is + started at that instant. Note that following this + rule may require the probe to delay collecting the + first sample of the history, as each sample must be + of the same interval. Also note that the sample which + is currently being collected is not accessible in this + table until the end of its interval." + ::= { rEtherHistoryEntry 3 } + + rEtherHistoryDropEvents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of events in which packets + were dropped by the probe due to lack of resources + during this sampling interval. Note that this number + is not necessarily the number of packets dropped, it + is just the number of times this condition has been + detected." + ::= { rEtherHistoryEntry 4 } + + rEtherHistoryOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets of data (including + those in bad packets) received on the + network (excluding framing bits but including + FCS octets)." + ::= { rEtherHistoryEntry 5 } + + rEtherHistoryPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets (including bad packets) + received during this sampling interval." + ::= { rEtherHistoryEntry 6 } + + rEtherHistoryBroadcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of good packets received during this + sampling interval that were directed to the + broadcast address." + ::= { rEtherHistoryEntry 7 } + + rEtherHistoryMulticastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of good packets received during this + sampling interval that were directed to a + multicast address. Note that this number does not + include packets addressed to the broadcast address." + ::= { rEtherHistoryEntry 8 } + + rEtherHistoryCRCAlignErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received during this sampling + interval that had a length (excluding framing bits + but including FCS octets) between 64 and 1518 + octets, inclusive, but had either a bad Frame Check + Sequence (FCS) with an integral number of octets + (FCS Error) or a bad FCS with a non-integral number + of octets (Alignment Error)." + ::= { rEtherHistoryEntry 9 } + + rEtherHistoryUndersizePkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received during this + sampling interval that were less than 64 octets + long (excluding framing bits but including FCS + octets) and were otherwise well formed." + ::= { rEtherHistoryEntry 10 } + + rEtherHistoryOversizePkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received during this + sampling interval that were longer than 1518 + octets (excluding framing bits but including + FCS octets) but were otherwise well formed." + ::= { rEtherHistoryEntry 11 } + + rEtherHistoryFragments OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets received during this + sampling interval that were less than 64 octets in + length (excluding framing bits but including FCS + octets) had either a bad Frame Check Sequence (FCS) + with an integral number of octets (FCS Error) or a bad + FCS with a non-integral number of octets (Alignment + Error). + + Note that it is entirely normal for + etherHistoryFragments to increment. This is because + it counts both runts (which are normal occurrences + due to collisions) and noise hits." + ::= { rEtherHistoryEntry 12 } + + rEtherHistoryJabbers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received during this + sampling interval that were longer than 1518 octets + (excluding framing bits but including FCS octets), + and had either a bad Frame Check Sequence (FCS) + with an integral number of octets (FCS Error) or + a bad FCS with a non-integral number of octets + (Alignment Error). + + Note that this definition of jabber is different + than the definition in IEEE-802.3 section 8.2.1.5 + (10BASE5) and section 10.3.1.4 (10BASE2). These + documents define jabber as the condition where any + packet exceeds 20 ms. The allowed range to detect + jabber is between 20 ms and 150 ms." + ::= { rEtherHistoryEntry 13 } + + rEtherHistoryCollisions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The best estimate of the total number of collisions + on this Ethernet segment during this sampling + interval. + + The value returned will depend on the location of + the RMON probe. Section 8.2.1.3 (10BASE-5) and + section 10.3.1.3 (10BASE-2) of IEEE standard 802.3 + states that a station must detect a collision, in + the receive mode, if three or more stations are + transmitting simultaneously. A repeater port must + detect a collision when two or more stations are + transmitting simultaneously. Thus a probe placed on + a repeater port could record more collisions than a + probe connected to a station on the same segment + would. + + Probe location plays a much smaller role when + considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE + standard 802.3 defines a collision as the + simultaneous presence of signals on the DO and RD + circuits (transmitting and receiving at the same + time). A 10BASE-T station can only detect + collisions when it is transmitting. Thus probes + placed on a station and a repeater, should report + the same number of collisions. + + Note also that an RMON probe inside a repeater + should ideally report collisions between the + repeater and one or more other hosts (transmit + collisions as defined by IEEE 802.3k) plus receiver + collisions observed on any coax segments to which + the repeater is connected." + ::= { rEtherHistoryEntry 14 } + + rEtherHistoryUtilization OBJECT-TYPE + SYNTAX INTEGER (0..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The best estimate of the mean physical layer + network utilization on this interface during this + sampling interval, in hundredths of a percent." + ::= { rEtherHistoryEntry 15 } + + + -- The Alarm Group + + -- Implementation of the Alarm group is optional. + -- + -- The Alarm Group requires the implementation of the Event + -- group. + -- + -- The Alarm group periodically takes + -- statistical samples from variables in the probe and + -- compares them to thresholds that have been + -- configured. The alarm table stores configuration + -- entries that each define a variable, polling period, + -- and threshold parameters. If a sample is found to + -- cross the threshold values, an event is generated. + -- Only variables that resolve to an ASN.1 primitive + -- type of INTEGER (INTEGER, Counter, Gauge, or + -- TimeTicks) may be monitored in this way. + -- + -- This function has a hysteresis mechanism to limit + -- the generation of events. This mechanism generates + -- one event as a threshold is crossed in the + -- appropriate direction. No more events are generated + -- for that threshold until the opposite threshold is + -- crossed. + -- + -- In the case of a sampling a deltaValue, a probe may + -- implement this mechanism with more precision if it + -- takes a delta sample twice per period, each time + -- comparing the sum of the latest two samples to the + -- threshold. This allows the detection of threshold + -- crossings that span the sampling boundary. Note + -- that this does not require any special configuration + -- of the threshold value. It is suggested that probes + -- implement this more precise algorithm. + + rAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcdRmonAlarmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of alarm entries." + ::= { rAlarm 1 } + + rAlarmEntry OBJECT-TYPE + SYNTAX CcdRmonAlarmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of parameters that set up a periodic checking + for alarm conditions. For example, an instance of the + alarmValue object might be named alarmValue.8" + INDEX { rAlarmIndex } + ::= { rAlarmTable 1 } + + CcdRmonAlarmEntry ::= SEQUENCE { + rAlarmIndex INTEGER (1..65535), + rAlarmInterval INTEGER, + rAlarmVariable OBJECT IDENTIFIER, + rAlarmSampleType INTEGER, + rAlarmValue INTEGER, + rAlarmStartupAlarm INTEGER, + rAlarmRisingThreshold INTEGER, + rAlarmFallingThreshold INTEGER, + rAlarmRisingEventIndex INTEGER (0..65535), + rAlarmFallingEventIndex INTEGER (0..65535), + rAlarmOwner OwnerString, + rAlarmStatus EntryStatus + } + + rAlarmIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely identifies an entry in the + alarm table. Each such entry defines a + diagnostic sample at a particular interval + for an object on the device." + ::= { rAlarmEntry 1 } + + rAlarmInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The interval in seconds over which the data is + sampled and compared with the rising and falling + thresholds. When setting this variable, care + should be taken in the case of deltaValue + sampling - the interval should be set short enough + that the sampled variable is very unlikely to + increase or decrease by more than 2^31 - 1 during + a single sampling interval. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 2 } + + rAlarmVariable OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The object identifier of the particular variable to + be sampled. Only variables that resolve to an ASN.1 + primitive type of INTEGER (INTEGER, Counter, Gauge, + or TimeTicks) may be sampled. + + Because SNMP access control is articulated entirely + in terms of the contents of MIB views, no access + control mechanism exists that can restrict the value + of this object to identify only those objects that + exist in a particular MIB view. Because there is + thus no acceptable means of restricting the read + access that could be obtained through the alarm + mechanism, the probe must only grant write access to + this object in those views that have read access to + all objects on the probe. + + During a set operation, if the supplied variable + name is not available in the selected MIB view, a + badValue error must be returned. If at any time the + variable name of an established alarmEntry is no + longer available in the selected MIB view, the probe + must change the status of this alarmEntry to + invalid(4). + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 3 } + + rAlarmSampleType OBJECT-TYPE + SYNTAX INTEGER { + absoluteValue(1), + deltaValue(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The method of sampling the selected variable and + calculating the value to be compared against the + thresholds. If the value of this object is + absoluteValue(1), the value of the selected variable + will be compared directly with the thresholds at the + end of the sampling interval. If the value of this + object is deltaValue(2), the value of the selected + variable at the last sample will be subtracted from + the current value, and the difference compared with + the thresholds. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 4 } + + rAlarmValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the statistic during the last sampling + period. For example, if the sample type is + deltaValue, this value will be the difference + between the samples at the beginning and end of the + period. If the sample type is absoluteValue, this + value will be the sampled value at the end of the + period. + + This is the value that is compared with the rising and + falling thresholds. + + The value during the current sampling period is not + made available until the period is completed and will + remain available until the next period completes." + ::= { rAlarmEntry 5 } + + rAlarmStartupAlarm OBJECT-TYPE + SYNTAX INTEGER { + risingAlarm(1), + fallingAlarm(2), + risingOrFallingAlarm(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The alarm that may be sent when this entry is first + set to valid. If the first sample after this entry + becomes valid is greater than or equal to the + risingThreshold and alarmStartupAlarm is equal to + risingAlarm(1) or risingOrFallingAlarm(3), then a + single rising alarm will be generated. If the first + sample after this entry becomes valid is less than + or equal to the fallingThreshold and + alarmStartupAlarm is equal to fallingAlarm(2) or + risingOrFallingAlarm(3), then a single falling alarm + will be generated. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 6 } + + rAlarmRisingThreshold OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A threshold for the sampled statistic. When the + current sampled value is greater than or equal to + this threshold, and the value at the last sampling + interval was less than this threshold, a single + event will be generated. A single event will also + be generated if the first sample after this entry + becomes valid is greater than or equal to this + threshold and the associated alarmStartupAlarm is + equal to risingAlarm(1) or risingOrFallingAlarm(3). + + After a rising event is generated, another such event + will not be generated until the sampled value + falls below this threshold and reaches the + alarmFallingThreshold. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 7 } + + rAlarmFallingThreshold OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A threshold for the sampled statistic. When the + current sampled value is less than or equal to this + threshold, and the value at the last sampling + interval was greater than this threshold, a single + event will be generated. A single event will also + be generated if the first sample after this entry + becomes valid is less than or equal to this + threshold and the associated alarmStartupAlarm is + equal to fallingAlarm(2) or risingOrFallingAlarm(3). + + After a falling event is generated, another such event + will not be generated until the sampled value + rises above this threshold and reaches the + alarmRisingThreshold. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 8 } + + rAlarmRisingEventIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The index of the eventEntry that is + used when a rising threshold is crossed. The + eventEntry identified by a particular value of + this index is the same as identified by the same value + of the eventIndex object. If there is no + corresponding entry in the eventTable, then + no association exists. In particular, if this value + is zero, no associated event will be generated, as + zero is not a valid event index. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 9 } + + rAlarmFallingEventIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The index of the eventEntry that is + used when a falling threshold is crossed. The + eventEntry identified by a particular value of + this index is the same as identified by the same value + of the eventIndex object. If there is no + corresponding entry in the eventTable, then + no association exists. In particular, if this value + is zero, no associated event will be generated, as + zero is not a valid event index. + + This object may not be modified if the associated + alarmStatus object is equal to valid(1)." + ::= { rAlarmEntry 10 } + + rAlarmOwner OBJECT-TYPE + SYNTAX OwnerString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The entity that configured this entry and is + therefore using the resources assigned to it." + ::= { rAlarmEntry 11 } + + rAlarmStatus OBJECT-TYPE + SYNTAX EntryStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of this alarm entry." + ::= { rAlarmEntry 12 } + + + -- The Event Group + + -- Implementation of the Event group is optional. + -- + -- The Event group controls the generation and notification + -- of events from this device. Each entry in the eventTable + -- describes the parameters of the event that can be + -- triggered. Each event entry is fired by an associated + -- condition located elsewhere in the MIB. An event entry + -- may also be associated- with a function elsewhere in the + -- MIB that will be executed when the event is generated. For + -- example, a channel may be turned on or off by the firing + -- of an event. + -- + -- Each eventEntry may optionally specify that a log entry + -- be created on its behalf whenever the event occurs. + -- Each entry may also specify that notification should + -- occur by way of SNMP trap messages. In this case, the + -- community for the trap message is given in the associated + -- eventCommunity object. The enterprise and specific trap + -- fields of the trap are determined by the condition that + -- triggered the event. Two traps are defined: risingAlarm + -- and fallingAlarm. If the eventTable is triggered by a + -- condition specified elsewhere, the enterprise and + -- specific trap fields must be specified for traps + -- generated for that condition. + + rEventTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcdRmonEventEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of events to be generated." + ::= { rEvent 1 } + + rEventEntry OBJECT-TYPE + SYNTAX CcdRmonEventEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A set of parameters that describe an event to be + generated when certain conditions are met. As an + example, an instance of the eventLastTimeSent object + might be named eventLastTimeSent.6" + INDEX { rEventIndex } + ::= { rEventTable 1 } + + CcdRmonEventEntry ::= SEQUENCE { + rEventIndex INTEGER (1..65535), + rEventDescription DisplayString (SIZE (0..127)), + rEventType INTEGER, + rEventCommunity OCTET STRING (SIZE (0..127)), + rEventLastTimeSent TimeTicks, + rEventOwner OwnerString, + rEventStatus EntryStatus + } + + rEventIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely identifies an entry in the + event table. Each such entry defines one event that + is to be generated when the appropriate conditions + occur." + ::= { rEventEntry 1 } + + rEventDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A comment describing this event entry." + ::= { rEventEntry 2 } + + rEventType OBJECT-TYPE + SYNTAX INTEGER { + none(1), + log(2), + snmp-trap(3), -- send an SNMP trap + log-and-trap(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of notification that the probe will make + about this event. In the case of log, an entry is + made in the log table for each event. In the case of + snmp-trap, an SNMP trap is sent to one or more + management stations." + ::= { rEventEntry 3 } + + rEventCommunity OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..127)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If an SNMP trap is to be sent, it will be sent to + the SNMP community specified by this octet string. + In the future this table will be extended to include + the party security mechanism. This object shall be + set to a string of length zero if it is intended that + that mechanism be used to specify the destination of + the trap." + ::= { rEventEntry 4 } + + rEventLastTimeSent OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at the time this event + entry last generated an event. If this entry has + not generated any events, this value will be + zero." + ::= { rEventEntry 5 } + + rEventOwner OBJECT-TYPE + SYNTAX OwnerString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The entity that configured this entry and is + therefore using the resources assigned to it. + + If this object contains a string starting with + 'monitor' and has associated entries in the log + table, all connected management stations should + retrieve those log entries, as they may have + significance to all management stations connected to + this device" + ::= { rEventEntry 6 } + + rEventStatus OBJECT-TYPE + SYNTAX EntryStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of this event entry. + + If this object is not equal to valid(1), all + associated log entries shall be deleted by the + agent." + ::= { rEventEntry 7 } + + -- + rLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcdRmonLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of events that have been logged." + ::= { rEvent 2 } + + rLogEntry OBJECT-TYPE + SYNTAX CcdRmonLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A set of data describing an event that has been + logged. For example, an instance of the + logDescription object might be named + logDescription.6.47" + INDEX { rLogEventIndex, rLogIndex } + ::= { rLogTable 1 } + + CcdRmonLogEntry ::= SEQUENCE { + rLogEventIndex INTEGER (1..65535), + rLogIndex INTEGER (1..2147483647), + rLogTime TimeTicks, + rLogDescription DisplayString (SIZE (0..255)) + } + + rLogEventIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The event entry that generated this log + entry. The log identified by a particular + value of this index is associated with the same + eventEntry as identified by the same value + of eventIndex." + ::= { rLogEntry 1 } + + rLogIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely identifies an entry + in the log table amongst those generated by the + same eventEntries. These indexes are + assigned beginning with 1 and increase by one + with each new log entry. The association + between values of logIndex and logEntries + is fixed for the lifetime of each logEntry. + The agent may choose to delete the oldest + instances of logEntry as required because of + lack of memory. It is an implementation-specific + matter as to when this deletion may occur." + ::= { rLogEntry 2 } + + rLogTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when this log entry was + created." + ::= { rLogEntry 3 } + + rLogDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An implementation dependent description of the + event that activated this log entry." + ::= { rLogEntry 4 } + + -- These definitions use the TRAP-TYPE macro as + -- defined in RFC 1215 [10] + + -- Remote Network Monitoring Traps + + rRisingAlarm TRAP-TYPE + ENTERPRISE rmonMib + VARIABLES { rAlarmIndex, rAlarmVariable, + rAlarmSampleType, rAlarmValue, + rAlarmRisingThreshold } + DESCRIPTION + "The SNMP trap that is generated when an alarm + entry crosses its rising threshold and generates + an event that is configured for sending SNMP + traps." + ::= 1 + + rFallingAlarm TRAP-TYPE + ENTERPRISE rmonMib + VARIABLES { rAlarmIndex, rAlarmVariable, + rAlarmSampleType, rAlarmValue, + rAlarmFallingThreshold } + DESCRIPTION + "The SNMP trap that is generated when an alarm + entry crosses its falling threshold and generates + an event that is configured for sending SNMP + traps." + ::= 2 + + END diff --git a/mibs/fs/GBNServiceTACACS-MIB b/mibs/fs/GBNServiceTACACS-MIB new file mode 100644 index 0000000000..180c7d6c0a --- /dev/null +++ b/mibs/fs/GBNServiceTACACS-MIB @@ -0,0 +1,112 @@ + GBNServiceTACACS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, IpAddress, + NOTIFICATION-TYPE FROM SNMPv2-SMI + + DisplayString, MacAddress, + RowStatus, TruthValue FROM SNMPv2-TC + + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + + gbnServiceAAA FROM ADMIN-MASTER-MIB + ; + + + gbnTacacsMib MODULE-IDENTITY + LAST-UPDATED "2009/05/27" -- May 27, 2009 + ORGANIZATION "QTECH LLC" + CONTACT-INFO "Basil Budko + E-mail: budko@qtech.ru" + + DESCRIPTION "admin tacacs Enterprise MIB definition." + + REVISION "2009/05/27" -- May 27, 2009 + DESCRIPTION "Initial MIB creation." + + ::= { gbnServiceAAA 3 } + + +------------------------------------------------------------------------------ +-- Textual Conventions (i.e., these do not affect object encoding): +------------------------------------------------------------------------------ + -- + -- "DURABLE": + -- Objects that are saved across a system reset and/or power cycle + -- are noted as "DURABLE" for convenience in the DESCRIPTION + -- section of the object definition. Code must be explicitly + -- written to implement these DURABLE objects. + -- + +------------------------------------------------------------------------------ +-- define groups in gbn-TACACS-MIB + PriServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ip address of primary tacacs+ server." + ::= { gbnTacacsMib 1 } + + SecServerIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ip address of secondary tacacs+ server." + ::= { gbnTacacsMib 2 } + + PriServerKey OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "key of primary tacacs+ server." + ::= { gbnTacacsMib 3 } + + SecServerKey OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "key of secondary tacacs+ server." + ::= { gbnTacacsMib 4 } + + PriServerPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "tcp port of primary tacacs+ server, range is from 1 to 65535, default is 49." + ::= { gbnTacacsMib 5 } + + SecServerPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "tcp port of secondary tacacs+ server, range is from 1 to 65535, default is 49." + ::= { gbnTacacsMib 6 } + + PriServerTimeout OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "timeout of connection to primary tacacs+ server, range is from 1 to 70, default is 5 seconds." + ::= { gbnTacacsMib 7 } + + SecServerTimeout OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "timeout of connection to secondary tacacs+ server, range is from 1 to 70, default is 5 seconds." + ::= { gbnTacacsMib 8 } +-- +-- END of gbn-TACACS-MIB +-- + +END + diff --git a/mibs/fs/LAG-ARCH-MIB b/mibs/fs/LAG-ARCH-MIB new file mode 100644 index 0000000000..14298161bd --- /dev/null +++ b/mibs/fs/LAG-ARCH-MIB @@ -0,0 +1,153 @@ + +LAG-ARCH-MIB DEFINITIONS ::= BEGIN + + IMPORTS + enterprises, IpAddress, TimeTicks FROM RFC1155-SMI + OBJECT-TYPE FROM RFC-1212 + TRAP-TYPE FROM RFC-1215 + DisplayString FROM RFC1213-MIB; + + + admin OBJECT IDENTIFIER ::= { enterprises 13464 } + lag OBJECT IDENTIFIER ::= { admin 1556 } + + lagArchTrunkGroup OBJECT IDENTIFIER ::= { lag 1 } + +-- ------------------------------------------------------------- +-- The Link Aggregator Trunk Group Table +-- ------------------------------------------------------------- + + lagTrunkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF lagTrunkGroupEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains the Trunk Group Table Entry rule + that defines the distribution algorithm for every Link Aggregator + that is associated with this System." + ::= { lagArchTrunkGroup 1 } + + lagTrunkGroupTableEntry OBJECT-TYPE + SYNTAX lagTrunkGroupEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of the rules applied to the entries of the Trunk Group + Table parameters. This is indexed by the ifIndex of the + Aggregator, which is also the dot3adAggIndex." + INDEX { lagTrunkGroupTableAggIndex } + ::= { lagTrunkGroupTable 1 } + + lagTrunkGroupEntry ::= + SEQUENCE { + lagTrunkGroupTableAggIndex INTEGER, + lagTrunkGroupTableRule INTEGER + } + + lagTrunkGroupTableAggIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The unique identifier allocated to this Aggregator by the + local System. This attribute identifies an Aggregator instance + among the subordinate managed objects of the containing object. + This value is read-only. This is the same value as the + dot3adAggIndex in the dot3adAggTable." + REFERENCE + "IEEE 802.3 Section 30.7.1.1.1" + ::= { lagTrunkGroupTableEntry 1 } + + lagTrunkGroupTableRule OBJECT-TYPE + SYNTAX INTEGER { + srcMAC(1), + destMAC(2), + srcXORDestMAC(3), + srcIP(4), + destIP(5), + srcXORDestIP(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " The Rule to be applied to this Link Aggregator's Trunk Group + Table. The rules are based on the following selections SrcMAC (1), + means that the last three bits of the Source MAC Address are used to + index the Trunk Group to get the destination port. DestMAC (2), means + the last three bits of the Destination MAC Address are used to index + into the Trunk Group to get the destination port. SrcXORDestMAC (3), + means that the last three bits of the Source MAC Address are logically + XORed with the last three bits of the Destination MAC Address and used + to index into the Trunk Group to get the destination port. SrcIP (4), + means the last three bits of the Source IP Address are used to index + into the Trunk Group to get the destination port. DestIP (5), means + the last three bits of the Destination IP Address are used to index + into the Trunk Group to get the destination port. SrcXORDestIP (6), + means the last three bits of the Source IP Address are logically XORed + with the last three bits of the Destination IP Address and used to + index into the Trunk Group to get the destination port. This rule + defines the distribution algorithm applied to the aggregated link." + ::= { lagTrunkGroupTableEntry 2 } + + lagLinkStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF lagLinkStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains the Link State Table Entry + that defines the state of each ports link." + ::= { lagArchTrunkGroup 2 } + + lagLinkStateTableEntry OBJECT-TYPE + SYNTAX lagLinkStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of the link states. This is indexed by the ifIndex of the + Aggregator, which is also the dot3adAggIndex." + INDEX { lagLinkStateAggIndex } + ::= { lagLinkStateTable 1 } + + lagLinkStateTableEntry ::= + SEQUENCE { + lagLinkStateAggIndex INTEGER, + lagLinkState INTEGER, + lagAggregateOrIndividual INTEGER + } + + lagLinkStateAggIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The unique identifier allocated to this Aggregator by the + local System. This attribute identifies an Aggregator instance + among the subordinate managed objects of the containing object." + ::= { lagLinkStateTableEntry 1 } + + lagLinkState OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " The state of this Link Aggregator port." + ::= { lagLinkStateTableEntry 2 } + + lagAggregateOrIndividual OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + " The state of this Link Aggregator port. Indicating whether + the Aggregation Port is able to Aggregate ('TRUE') or is + only able to operate as an Individual link ('FALSE')." + ::= { lagLinkStateTableEntry 3 } + + +END diff --git a/mibs/fs/LLDPPRIVATE-MIB b/mibs/fs/LLDPPRIVATE-MIB new file mode 100644 index 0000000000..fe1c5952a1 --- /dev/null +++ b/mibs/fs/LLDPPRIVATE-MIB @@ -0,0 +1,54 @@ +LLDPPRIVATE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, Counter32, TimeTicks, OBJECT-TYPE, Integer32 + FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + gbnL2 FROM ADMIN-MASTER-MIB; + + + lldpPrivateMIB MODULE-IDENTITY + LAST-UPDATED "20060727Z" -- July 27, 2006 + ORGANIZATION "admin Inc." + CONTACT-INFO + "admin + E-mail: " + + DESCRIPTION "LLDP private module management." + + REVISION "20060727Z" -- July 27, 2006 + DESCRIPTION "Initial Version" + + ::= { gbnL2 5 } + + lldpPrivateObjects OBJECT IDENTIFIER ::= { lldpPrivateMIB 0 } + +-- +-- *********************************************************** +-- +-- L L D P PRIVATE C O N F I G +-- +-- *********************************************************** +-- + +lldpAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If lldpAdminStatus object has a value of 'enable(1)',then LLDP + module configuration will be active. If lldpAdminStatus object has a + value of 'disable(2)',then LLDP module configuration will be + inactive." + REFERENCE + "LLDP system admin status" + DEFVAL { disable } + ::= { lldpPrivateObjects 1 } + +END + + diff --git a/mibs/fs/MAC-NOTIFICATION-MIB b/mibs/fs/MAC-NOTIFICATION-MIB new file mode 100644 index 0000000000..b1fbd658a1 --- /dev/null +++ b/mibs/fs/MAC-NOTIFICATION-MIB @@ -0,0 +1,437 @@ +-- ***************************************************************** +-- gbnServiceMAC-NOTIFICATION-MIB.mi2: MAC Notification MIB + +-- ***************************************************************** + +MAC-NOTIFICATION-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, NOTIFICATION-TYPE, + Unsigned32, Integer32 + FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + TruthValue, TimeStamp, MacAddress, TEXTUAL-CONVENTION + FROM SNMPv2-TC + ifIndex + FROM IF-MIB + VlanId + FROM Q-BRIDGE-MIB + gbnServiceMACNotification + FROM ADMIN-MASTER-MIB; + + +macNotificationMIB MODULE-IDENTITY + LAST-UPDATED "201204080000Z" + ORGANIZATION "New admin, Inc." + CONTACT-INFO "http://www.admin.com" + DESCRIPTION + "This MIB module is for configuration of the MAC notification + feature. MAC notification is a mechanism to inform monitoring + devices when there are MAC addresses learnt or removed from + the forwarding database of the monitored devices." + + REVISION "201204080000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { gbnServiceMACNotification 1 } + +-- Textual Conventions + +Percent ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An integer that is in the range of a percent value." + SYNTAX Integer32 (1..100) + +PhysicalIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "An arbitrary value that uniquely identifies the physical + entity. The value should be a small, positive integer. + Index values for different physical entities are not + necessarily contiguous." + SYNTAX Integer32 (1..2147483647) + + +-- MAC Notification MIB object definitions + +macNotificationMIBObjects OBJECT IDENTIFIER + ::= { macNotificationMIB 1 } + +-- MAC Notification MIB consists of the following groups +-- [1] Mac Notification Global Group (mnGlobalObjects). +-- [2] Mac Notification Interface Group (mnInterfaceObjects). +mnGlobalObjects OBJECT IDENTIFIER + ::= { macNotificationMIBObjects 1 } +mnInterfaceObjects OBJECT IDENTIFIER + ::= { macNotificationMIBObjects 2 } +--********************************************************************** +-- Mac Notification Global Group +--********************************************************************** + +mnGlobalFeatureEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether the MAC notification feature is currently + running in the device. + + Setting this object to false(2) disables the MAC notification + feature globally thus disabling the feature at each interface. + + Setting this object to true(1) will start the MAC notification + feature running in the device. If the feature is already + running, setting to true(1) has no effect. Once the MAC + notification is enabled, whether the feature is running at each + interface is controlled by the mnIfConfigTable." + ::= { mnGlobalObjects 1 } + +mnNotificationInterval OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the maximum interval of time between + mnMacChangedNotifications being generated by the device. + If the value of mnNotificationsEnabled is true(1), the + device will send out the generated mnMacChangedNotifications + and archive the MAC change notification events in the + mnHistoryTable. If the value of mnNotificationsEnabled is + false(2), the device will not send out the generated + mnMacChangedNotifications but it will archive these events + in the mnHistoryTable. + + If the value of this object is equal to 0, the device will + generate mnMacChangedNotifications and archive the MAC + change notification events in the mnHistoryTable as soon as + there is MAC address learnt or removed by the device. + + If the value of this object is greater than 0, the device will + wait for a period of time equal to the value of this object + before generate the mnMacChangedNotifications and archive + the MAC change notification events in the mnHistoryTable." + ::= { mnGlobalObjects 2 } + +mnMacAddressesLearnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of MAC addresses learnt by the + device." + ::= { mnGlobalObjects 3 } + +mnMacAddressesRemoved OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of MAC addresses removed from the + forwarding database." + ::= { mnGlobalObjects 4 } + +mnNotificationsEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether mnMacChangedNotification notifications + will or will not be sent when there are MAC addresses + learnt or removed from the device's forwarding database. + Disabling notifications does not prevent the MAC address + info from being added to the mnHistoryTable." + DEFVAL { false } + ::= { mnGlobalObjects 5 } + +mnNotificationsSent OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of mnMacChangedNotifications sent out + by the device." + ::= { mnGlobalObjects 6 } + +mnHistTableMaxLength OBJECT-TYPE + SYNTAX Unsigned32 (0..500) + UNITS "entries" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The upper limit on the number of entries that the + mnHistoryTable may contain. A value of 0 will + prevent any history from being retained. When this + table is full, the oldest entry will be deleted and + a new one will be created." + DEFVAL { 1 } + ::= { mnGlobalObjects 7 } + +mnHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF MnHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table will archive the MAC change notification events + generated by this device. The MAC change notification + events are archived here even if mnMacChangesNotifications + are not actually sent." + ::= { mnGlobalObjects 8 } + +mnHistoryEntry OBJECT-TYPE + SYNTAX MnHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A MAC change notification message that was previously + generated by this device. Each entry is indexed by a message + index." + INDEX { mnHistIndex } + ::= { mnHistoryTable 1 } + +MnHistoryEntry ::= + SEQUENCE { + mnHistIndex + Unsigned32, + mnHistMacChangedMsg + OCTET STRING, + mnHistTimestamp + TimeStamp + } + +mnHistIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies a MAC change notification + event previously generated by the device. This index starts at + 1 and increases by one when a MAC change notification is + generated. When it reaches the maximum value, the agent wraps + the value back to 1." + ::= { mnHistoryEntry 1 } + +mnHistMacChangedMsg OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..254)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the information of a MAC change + notification event. It consists of several tuples packed + together in the format of '...'. + + Each tuple consist of 11 octets in the format of + '' where + + is of size 1 octet and supports the following values + 0 - End of MIB object. + 1 - MAC learnt. + 2 - MAC removed. + + is VLAN number of the VLAN which the MAC address is + belonged to and has size of 2 octet. + + is the Layer2 Mac Address and has size of 6 octets. + + is the value of dot1dBasePort for the + interface from which the MAC address is learnt and has size + of 2 octets." + ::= { mnHistoryEntry 2 } + +mnHistTimestamp OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the mnMacChangedNotification + containing the information denoted by the mnHistMacChangedMsg + object in this entry was generated." + ::= { mnHistoryEntry 3 } + +--********************************************************************* +-- Mac Notification Interface Group +--********************************************************************* + +-- +-- mnIfConfigTable +-- + +mnIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF MnIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table enables or disables the generation of notification + at each interface when MAC address is learnt or removed." + ::= { mnInterfaceObjects 1 } + +mnIfConfigEntry OBJECT-TYPE + SYNTAX MnIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the configuration for enabling the + MAC notification at each interface that supports this + feature." + INDEX { ifIndex } + ::= { mnIfConfigTable 1 } + +MnIfConfigEntry ::= SEQUENCE { + mnMacAddrLearntEnable TruthValue, + mnMacAddrRemovedEnable TruthValue +} + +mnMacAddrLearntEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether this interface is enabled to send + mnMacChangedNotification when it learns a new MAC address. This + variable has no effect when the value of mnGlobalFeatureEnabled + object is false(2). + + Setting this object to true(1) enables the sending of + mnMacChangedNotification when this interface learns a + new MAC address. + + Setting this object to false(2) disables the sending + of mnMacChangedNotification when this interface learns + a new MAC address." + DEFVAL { false } + ::= { mnIfConfigEntry 1 } + +mnMacAddrRemovedEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether this interface is enabled to send + mnMacChangedNotification when a MAC address which it learnt + previously is removed from the forwarding table. This variable + has no effect when the value of mnGlobalFeatureEnabled object + is false(2). + + Setting this object to true(1) enables the sending of + mnMacChangedNotification when a MAC address which this + interface learnt previously is removed from the forwarding + table. + + Setting this object to false(2) disables the sending of + mnMacChangedNotification when a MAC address which this + interface learnt previously is removed from the forwarding + table." + DEFVAL { false } + ::= { mnIfConfigEntry 2 } + + + +-- +-- +-- Notification +-- + +mnMIBNotificationPrefix OBJECT IDENTIFIER + ::= { macNotificationMIB 2 } + +mnMIBNotifications + OBJECT IDENTIFIER ::= { mnMIBNotificationPrefix 0 } + +mnMacChangedNotification NOTIFICATION-TYPE + OBJECTS { mnHistMacChangedMsg, mnHistTimestamp } + STATUS current + DESCRIPTION + "This notification is generated when there is enough MAC + address information to fully occupy a maximum size SNMP trap + message. This notification is also generated when there + is at least one MAC address changed or removed and the amount + of time elapsed from the previous notification is greater + than the maximum wait time denoted by + mnNotificationInterval object. + + If there are more MAC addresses information than can fit into + one mmHistTrapContent object, then multiple notifications + will be generated." + ::= { mnMIBNotifications 1 } + +-- +-- Conformance +-- + +mnMIBConformance OBJECT IDENTIFIER ::= { macNotificationMIB 3 } + +mnMIBCompliances OBJECT IDENTIFIER + ::= { mnMIBConformance 1 } + +mnMIBGroups OBJECT IDENTIFIER + ::= { mnMIBConformance 2 } + + +-- Compliance + +mnMIBCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for the MAC-NOTIFICATION-MIB." + MODULE + MANDATORY-GROUPS { mnGlobalGroup, + mnInterfaceGroup, + mnNotificationGroup } + ::= { mnMIBCompliances 1 } + +mnMIBComplianceVer1 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the MAC-NOTIFICATION-MIB." + MODULE + MANDATORY-GROUPS { mnGlobalGroup, + mnInterfaceGroup, + mnNotificationGroup + } + + ::= { mnMIBCompliances 2 } + +-- +-- Units of Conformance +-- +-- Units of Conformance +-- +mnGlobalGroup OBJECT-GROUP + OBJECTS { + mnGlobalFeatureEnabled, + mnNotificationInterval, + mnMacAddressesLearnt, + mnMacAddressesRemoved, + mnNotificationsEnabled, + mnHistTableMaxLength, + mnHistMacChangedMsg, + mnHistTimestamp, + mnNotificationsSent + } + STATUS current + DESCRIPTION + "A collection of objects providing the global configuration + and information for MAC notification." + ::= { mnMIBGroups 1 } + +mnInterfaceGroup OBJECT-GROUP + OBJECTS { + mnMacAddrLearntEnable, + mnMacAddrRemovedEnable + } + STATUS current + DESCRIPTION + "A collection of objects providing the configuration information + for MAC notification at each interface." + ::= { mnMIBGroups 2 } + +mnNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { mnMacChangedNotification } + STATUS current + DESCRIPTION + "The notification generated by the MAC-NOTIFICATION-MIB." + ::= { mnMIBGroups 3 } +END diff --git a/mibs/fs/NSCRTV-EPON-ALARM-MGM-MIB b/mibs/fs/NSCRTV-EPON-ALARM-MGM-MIB new file mode 100644 index 0000000000..ac84128515 --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-ALARM-MGM-MIB @@ -0,0 +1,649 @@ + +NSCRTV-EPON-ALARM-MGM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE,Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + eponAlarmTree, eponTrapObjectGroup, eponAlarmObjGroup, eponManagementObjGroup + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- AlarmManagementObjects[¸æ¾¯¹ÜÀíÏî](1.3.6.1.4.1.17409.2.2.11) +-------------------------------------------------------------------------------- + + eponNotifications OBJECT IDENTIFIER ::= { eponTrapObjectGroup 1 } + + eponAlarmNotification NOTIFICATION-TYPE + OBJECTS { eponTrapSequenceNumber, eponTrapOccurTime, eponTrapCode, eponTrapInstance, + eponTrapSeverity, eponTrapCorrelationId, eponTrapAdditionalText + } + STATUS current + DESCRIPTION + "Alarm TRAP definition" + ::= { eponNotifications 1 } + + eponEventNotification NOTIFICATION-TYPE + OBJECTS { eponTrapSequenceNumber, eponTrapOccurTime, eponTrapCode, eponTrapInstance, + eponTrapAdditionalText + } + STATUS current + DESCRIPTION + "Event TRAP definition" + ::= { eponNotifications 2 } + + eponTrapObjects OBJECT IDENTIFIER ::= { eponTrapObjectGroup 2 } + + eponTrapInstance OBJECT-TYPE + SYNTAX EponAlarmInstance + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Alarm instance, indicates the detailed managed object, which + detects faults. + " + ::= { eponTrapObjects 1 } + + eponTrapCorrelationId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The unique sequence number for the alarm to be cleared, for alarm clearing. + Set to 0 for alarm reporting" + ::= { eponTrapObjects 2 } + + eponTrapAdditionalText OBJECT-TYPE + SYNTAX OCTET STRING ( SIZE (0..256) ) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Additional info to the alarm, for further desciption of the + alarm. The format of it shall be related to each kind alarm + defined in alarm reference table" + ::= { eponTrapObjects 3 } + + eponTrapCode OBJECT-TYPE + SYNTAX EponAlarmCode + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + ¸æ¾¯´úÂ룬¼û¸½Â¼C" + ::= { eponTrapObjects 4 } + + eponTrapSeverity OBJECT-TYPE + SYNTAX EponSeverityType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + ¸æ¾¯ÑÏÖØ³Ì¶È¡£" + ::= { eponTrapObjects 5 } + + eponTrapOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + ¸æ¾¯²úÉúʱ¼ä¡£" + ::= { eponTrapObjects 6 } + + eponTrapSequenceNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + A unique sequence number for each trap generated by node. The sequence + number shall be reset to 1 when node restarts. + The alarm sequence number shall be independent of the event sequence + number. Each shall be self-governed. + + -------------------------------------------------------------------------------- + The sequence ID of alarm shall be assigned from the order of transmitting + trap to the NMS, instead of the order of alarm occurance. Therefore the NMS + will receive the continuous sequence ID. + + 1. When device is in active/standby mode, sequence ID shall be synchronized + between active and standby control module. + 2. When control module switchover takes place, the current sequence ID shall + keep the synchronized value. + 3. When device restarts, sequence ID shall start from 1. + 4. It shall be increased per alarm trap including both alarm raising and clear. + 5. Non-zero value shall be used. When reaches the maximum number, it shall + roll back to 1. + + -------------------------------------------------------------------------------- + The sequence ID of event shall be assigned from the order of transmitting + trap to the NMS. Therefore the NMS will receive the continuous sequence ID. + 1. When device is in active/standby mode, sequence ID shall be synchronized + between active and standby control module. + 2. When control module switchover takes place, the current sequence ID shall + keep the synchronized value. + 3. When device restarts, sequence ID shall start from 1. + 4. It shall be increased per event trap. + 5. Non-zero value shall be used. When reaches the maximum number, it shall + roll back to 1. + " + ::= { eponTrapObjects 7 } + + activeAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF ActiveAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Active alarm table + + The device shall maintain this table, to maintain all outstanding + (not cleared) alarms generated by the device, including: + 1. Not hit device local alarm filter. That means had been reported to + trap receiver (NMS or EMS) + 2. Hit local alarm filter. That means not trap is reported to trap receiver + for the alarm. + + The device shall maintain two numbers: + 1. Alarm sequence number: As described in eponTrapSequenceNumber, it is initially + set to 1 when device restarts, increases per trap reported to trap receiver, + and rollover to 1 once it reaches the maximum value. + From NMS's view, traps received from a nodes will be consecutive, by identifying + the alarm sequence number carried in alarm trap. If breaks, means some trap + may be lost, since packet loss between NMS and NE. + 2. Alarm raising number: This is maintained by NE internally and does not intend for + being acknowledged by external manage system. It is designed to uniquely indentify + each alarm raised by NE, excluding duplicates. Once one alarm raised, despite + whether it is hit by alarm filter, NE shall assign a raising number to it. So, it + major functionality is to uniquely identify alarms hit NE local alarm filter, since + this kindly alarm will not be reported to NMS, and hence no alarm sequence number + is assigned to it. + It is initially set to 1 when device restarts, increases per alarm generation ( + excluding duplicates), and rollover to 1 once it reaches the maximum value. + + FUNCTION DESCRIPTION OF ACTIVE ALARM TABLE: + ALARM RAISING + ---------------------- + 1. When NE detects one fault and associates to one kind of alarm, it shall check whether + there is same alarm in active alarm table, which is indexed by alarm code and alarm + instance. If hits, it means duplicates, update the corresponding entry of the table. + Otherwise, + 2. The alarm is not a duplicate. Assign an alarm raising number. Check whether the + alarm hits local alarm filters. If hits, set alarm sequence number to 0. + Create an entry into active alarm table. Otherwise, + 3. Assign an alarm sequence number to the alarm. Create an entry into active alarm + table. Report the alarm trap to all trap receivers. + + ALARM CLEARING + ---------------------- + 1. When NE detects one fault is cleared and associates to one kind of alarm, it shall + check whether there is corresponding alarm in active alarm table, which is indexed +by alarm code and alarm instance. If no hit, escape this clear event. Upon a hit, +if the alarm sequence number is 0, move the active alarm entry to history alarm +table and update the corresponding fields. At this case, historyAlarmCorrelationId +and historyAlarmSeqNum will be set to 0. + Otherwise, + 2. Assign an alarm sequence number to the clear trap. Report the alarm clear trap to + all trap receivers. Move the active alarm entry to history alarm table and update + the corresponding fields. At this case, activeAlarmSeqNum shall be copied to + historyAlarmCorrelationId, and historyAlarmSeqNum shall be set to the new alarm + sequence number for the clear trap. + + ALARM SYNCHRONIZATION BETWEEN NE AND NMS + --------------------------------------------- + 1. Once NMS finds the alarm sequence number in reported alarm traps is not continuous, + it will walk active or history alarm table of the NE for the lost seuqence number. + " + ::= { eponAlarmObjGroup 1 } + + activeAlarmEntry OBJECT-TYPE + SYNTAX ActiveAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { activeAlarmSeqNum, activeAlarmRaisingNumber } + ::= { activeAlarmTable 1 } + + ActiveAlarmEntry ::= + SEQUENCE { + activeAlarmSeqNum + Unsigned32, + activeAlarmCode + EponAlarmCode, + activeAlarmInstance + EponAlarmInstance, + activeAlarmSeverity + EponSeverityType, + activeAlarmRaisingNumber + Unsigned32, + activeAlarmFirstOccurTime + DateAndTime, + activeAlarmLastOccurTime + DateAndTime, + activeAlarmRepeats + Counter32, + activeAlarmConfirm + TruthValue, + activeAlarmAdditionalText + OCTET STRING + } + + activeAlarmSeqNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Alarm sequence number + + The definition refered to the description of activeAlarmTable" + ::= { activeAlarmEntry 1 } + + activeAlarmCode OBJECT-TYPE + SYNTAX EponAlarmCode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸æ¾¯´úÂ룬¼û¸½Â¼C + " + ::= { activeAlarmEntry 2 } + activeAlarmInstance OBJECT-TYPE + SYNTAX EponAlarmInstance + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alarm instance, indicates the detailed managed object" + ::= { activeAlarmEntry 3 } + + activeAlarmSeverity OBJECT-TYPE + SYNTAX EponSeverityType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸æ¾¯ÑÏÖØ³Ì¶È¡£" + ::= { activeAlarmEntry 4 } + + activeAlarmRaisingNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Alarm raising number. + The definition refered to the description of activeAlarmTable" + ::= { activeAlarmEntry 5 } + + activeAlarmFirstOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸æ¾¯³õʼ·¢ÉúµÄʱ¼ä + The time stamp when alarm occurs, which triggered to create the + active alarm entry." + ::= { activeAlarmEntry 6 } + + activeAlarmLastOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The time stamp when alarm occurs, where the alarm is duplicated + with existed active alarm entry, and it was the latest one. " + ::= { activeAlarmEntry 7 } + + activeAlarmRepeats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of repeated alarms for this active alarm entry" + ::= { activeAlarmEntry 8 } + + activeAlarmConfirm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸æ¾¯È·ÈÏ + Node shall not clear an active alarm, upon the confirmation + of the active alarm, but just mark an acknowledged status. + + An alarm will only be cleared once the clear condition hits." + ::= { activeAlarmEntry 9 } + + activeAlarmAdditionalText OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional info to the alarm, for further desciption of the + alarm. The format of it shall be related to each kind alarm + defined in alarm reference table" + ::= { activeAlarmEntry 10 } + + historyAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF HistoryAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "History alarm table. + The device shall maintain this table, to maintain all cleared + alarms generated by the device, including: + 1. Not hit device local alarm filter. That means had been reported to + trap receiver (NMS or EMS) + 2. Hit local alarm filter. That means not trap is reported to trap receiver + for the alarm. + The number of history alarm enteries in the table could be device-specific. + However, it is recommended no less than 200 entries. + The detailed function definition refers to that given in description of + activeAlarmTable. + " + ::= { eponAlarmObjGroup 2 } + + historyAlarmEntry OBJECT-TYPE + SYNTAX HistoryAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { historyAlarmSeqNum, historyAlarmRaisingNumber } + ::= { historyAlarmTable 1 } + + HistoryAlarmEntry ::= + SEQUENCE { + historyAlarmSeqNum + Unsigned32, + historyAlarmCode + EponAlarmCode, + historyAlarmInstance + EponAlarmInstance, + historyAlarmSeverity + EponSeverityType, + historyAlarmRaisingNumber + Unsigned32, + historyAlarmFirstOccurTime + DateAndTime, + historyAlarmLastOccurTime + DateAndTime, + historyAlarmRepeats + Counter32, + historyAlarmCorrelationId + Unsigned32, + historyAlarmAdditionalText + OCTET STRING, + historyAlarmClearTime + DateAndTime + } + + historyAlarmSeqNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Alarm sequence number + + The definition refered to the description of historyAlarmTable" + ::= { historyAlarmEntry 1 } + + historyAlarmCode OBJECT-TYPE + SYNTAX EponAlarmCode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸æ¾¯´úÂ룬¼û¸½Â¼C + " + ::= { historyAlarmEntry 2 } + + historyAlarmInstance OBJECT-TYPE + SYNTAX EponAlarmInstance + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alarm instance, indicates the detailed managed object" + ::= { historyAlarmEntry 3 } + + historyAlarmSeverity OBJECT-TYPE + SYNTAX EponSeverityType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸æ¾¯ÑÏÖØ³Ì¶È¡£" + ::= { historyAlarmEntry 4 } + + historyAlarmRaisingNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Alarm raising number. + The definition refered to the description of historyAlarmTable" + ::= { historyAlarmEntry 5 } + + historyAlarmFirstOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸æ¾¯³õʼ·¢ÉúµÄʱ¼ä + The time stamp when alarm occurs, which triggered to create the + history alarm entry." + ::= { historyAlarmEntry 6 } + + historyAlarmLastOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The time stamp when alarm occurs, where the alarm is duplicated + with existed history alarm entry, and it was the latest one. " + ::= { historyAlarmEntry 7 } + + historyAlarmRepeats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of repeated alarms for this history alarm entry" + ::= { historyAlarmEntry 8 } + + historyAlarmCorrelationId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It is the corresponding sequence ID of the alarm that to + be cleared. " + ::= { historyAlarmEntry 9 } + historyAlarmAdditionalText OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional info to the alarm, for further desciption of the + alarm. The format of it shall be related to each kind alarm + defined in alarm reference table" + ::= { historyAlarmEntry 10 } + + historyAlarmClearTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Define when the alarm was cleared" + ::= { historyAlarmEntry 11 } + + eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Event log table. + The device shall maintain this table, to maintain all events had + be reported by the device, including: + 1. The event table shall be saved in RAM memory and shall be flushed + when OLT restarts. + 2. The event log table shall support no less than 200 entries. When + the event log table is full, the oldest entry in the table shall be + removed first. + 3. When OLT is configured with control module redundancy, active controller + shall automatically synchronize the events in event log table b/w active + and standby. + " + ::= { eponAlarmObjGroup 3 } + + eventLogEntry OBJECT-TYPE + SYNTAX EventLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { eventSeqNum } + ::= { eventLogTable 1 } + + EventLogEntry ::= + SEQUENCE { + eventSeqNum + Unsigned32, + eventCode + EponAlarmCode, + eventInstance + EponAlarmInstance, + eventOccurTime + DateAndTime, + eventAdditionalText + OCTET STRING, + } + + eventSeqNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Event sequence number + + The definition refered to the description of eponTrapSequenceNumber" + ::= { eventLogEntry 1 } + + eventCode OBJECT-TYPE + SYNTAX EponAlarmCode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ʼþ´úÂ룬¼û¸½Â¼C + " + ::= { eventLogEntry 2 } + + eventInstance OBJECT-TYPE + SYNTAX EponAlarmInstance + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Event instance, indicates the detailed managed object" + ::= { eventLogEntry 3 } + + eventOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The time stamp when event occurs" + ::= { eventLogEntry 4 } + + eventAdditionalText OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional info to the event, for further desciption of the + event. The format of it shall be related to each kind event + defined in event reference table" + ::= { eventLogEntry 5 } + + eponManagementAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF EponManagementAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of transport addresses to be used in the generation + of SNMP messages." + ::= { eponManagementObjGroup 1 } + + eponManagementAddrEntry OBJECT-TYPE + SYNTAX EponManagementAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A transport address to be used in the generation + of SNMP operations. + Entries in the snmpTargetAddrTable are created and + deleted using the snmpTargetAddrRowStatus object." + INDEX { eponManagementAddrName } + ::= { eponManagementAddrTable 1 } + + EponManagementAddrEntry ::= + SEQUENCE { + eponManagementAddrName + OCTET STRING, + eponManagementAddrTAddress + TAddress, + eponManagementAddrCommunity + OCTET STRING, + eponManagementAddrRowStatus + RowStatus + } + + eponManagementAddrName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + EMSÍø¹Ü½ÚµãµÄÃû×Ö" + ::= { eponManagementAddrEntry 1 } + + eponManagementAddrTAddress OBJECT-TYPE + SYNTAX TAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Íø¹Ü½ÚµãµÄ´«Êä²ãµØÖ·ºÍTRAP UDP¶Ë¿ÚºÅ¡£" + ::= { eponManagementAddrEntry 2 } + + eponManagementAddrCommunity OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64) ) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ·¢ËÍTRAPµÄCommunity¡£" + ::= { eponManagementAddrEntry 3 } + + eponManagementAddrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Ôö¼Óɾ³ýÒ»¸öEPON¹ÜÀíµØÖ·¡£" + ::= { eponManagementAddrEntry 4 } + +-- +-- END of NSCRTV-EPON-ALARM-MGM-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-IGMP-MGM-MIB b/mibs/fs/NSCRTV-EPON-IGMP-MGM-MIB new file mode 100644 index 0000000000..a1b6f101fc --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-IGMP-MGM-MIB @@ -0,0 +1,732 @@ + +NSCRTV-EPON-IGMP-MGM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + igmpManagementObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- igmpManagementObjects[IGMP¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.6) +-------------------------------------------------------------------------------- + igmpEntityTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpEntityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + IGMPʵÌå±í" + ::= { igmpManagementObjects 1 } + + igmpEntityEntry OBJECT-TYPE + SYNTAX IgmpEntityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { igmpDeviceIndex } + ::= { igmpEntityTable 1 } + + IgmpEntityEntry ::= + SEQUENCE { + igmpDeviceIndex + INTEGER, + igmpMode + INTEGER, + maxQueryResponseTime + INTEGER, + robustVariable + INTEGER, + queryInterval + INTEGER, + lastMemberQueryInterval + INTEGER, + lastMemberQueryCount + INTEGER, + igmpVersion + INTEGER + } + + igmpDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + É豸Ë÷ÒýºÅ¡£ + For OLT, set to corresponding device + For ONU, set to 0" + ::= { igmpEntityEntry 1 } + + igmpMode OBJECT-TYPE + SYNTAX INTEGER + { + centralized(1), + distributedwithcm(2), + disabled(3), + distributedwocm(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + IGMP¹¤×÷ģʽ + centralized(1) - All the multicast control is done by OLT + distributedwithcm(2) - Both OLT and ONU perform IGMP proxy and + controlled multicast will be enabled. At + this case, if igmp joins shall follow the + definition in multicastPackageList, for the + port + disabled(3) - Disable IGMP proxy on OLT and ONU + distributedwocm(4) - Both OLT and ONU perform IGMP proxy and + controlled multicast will be disabled. At + this case, if igmp joins shall be accept even + violate the definition in multicastPackageList, + for the port. + " + DEFVAL { disabled } + ::= { igmpEntityEntry 2 } + + maxQueryResponseTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ×î´óÏìÓ¦²éѯʱ¼ä + µ¥Î»£º1/10Ãë + This is used for sending general query" + ::= { igmpEntityEntry 3 } + + robustVariable OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ½¡×³ÐÔ±äÁ¿ + This is used for sending general query + No less than 1" + ::= { igmpEntityEntry 4 } + + + queryInterval OBJECT-TYPE + SYNTAX INTEGER + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ·¢ËͲéѯ±¨ÎĵÄʱ¼ä¼ä¸ô + µ¥Î»£ºÃë + This is used for sending general query + " + ::= { igmpEntityEntry 5 } + + lastMemberQueryInterval OBJECT-TYPE + SYNTAX INTEGER + UNITS "tenth second" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Max Response Time inserted into Group-Specific Queries sent in response + to Leave Group messages, and is also the amount of time between + Group-Specific Query messages + " + ::= { igmpEntityEntry 6 } + + lastMemberQueryCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Number of Group-Specific Queries sent before the router assumes there + are no local members + " + ::= { igmpEntityEntry 7 } + + igmpVersion OBJECT-TYPE + SYNTAX INTEGER + { + v1(1), + v2(2), + v3(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + IGMP°æ±¾" + DEFVAL { v2 } + ::= { igmpEntityEntry 8 } + + + igmpProxyParaTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpProxyParaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + IGMP proxy²ÎÊý±í - ƵµÀÁбí" + ::= { igmpManagementObjects 2 } + + igmpProxyParaEntry OBJECT-TYPE + SYNTAX IgmpProxyParaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { proxyIndex } + ::= { igmpProxyParaTable 1 } + + IgmpProxyParaEntry ::= + SEQUENCE { + proxyIndex + INTEGER, + proxyName + OCTET STRING, + proxySrcIPAddress + IpAddress, + proxyMulticastVID + INTEGER, + proxyMulticastIPAddress + IpAddress, + multicastAssuredBW + Unsigned32, + multicastMaxBW + Unsigned32, + proxyRowStatus + RowStatus + } + + proxyIndex OBJECT-TYPE + SYNTAX INTEGER (1..2000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + IGMP ProxyË÷ÒýºÅ - ƵµÀºÅ" + ::= { igmpProxyParaEntry 1 } + + proxyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + IGMP Proxy±ðÃû£¨ÈçÑëÊÓ¡¢ÎĹ㴫ýµÈ£©" + ::= { igmpProxyParaEntry 2 } + + proxySrcIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + proxyÔ´IPµØÖ·" + ::= { igmpProxyParaEntry 3 } + + proxyMulticastVID OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + IGMP Proxy¶ÔÓ¦×é²¥VID + ×¢£ºÖ»ÓÐÔÚ¿É¿Ø×鲥ģʽÏÂ×é²¥VID²ÅÓÐÒâÒå" + ::= { igmpProxyParaEntry 4 } + + proxyMulticastIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ×é²¥IPµØÖ·" + ::= { igmpProxyParaEntry 5 } + + multicastAssuredBW OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ×é²¥±£Ö¤´ø¿í + µ¥Î»£ºkbps" + ::= { igmpProxyParaEntry 6 } + + multicastMaxBW OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ×é²¥×î´ó´ø¿í + µ¥Î»£ºkbps" + ::= { igmpProxyParaEntry 7 } + + proxyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬" + ::= { igmpProxyParaEntry 8 } + + igmpForwardingTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpForwardingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Multicast forwarding table + " + ::= { igmpManagementObjects 3 } + + igmpForwardingEntry OBJECT-TYPE + SYNTAX IgmpForwardingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { groupDeviceIndex, groupVlanIndex, groupMacAddress } + ::= { igmpForwardingTable 1 } + IgmpForwardingEntry ::= + SEQUENCE { + groupDeviceIndex + INTEGER, + groupVlanIndex + INTEGER, + groupMacAddress + MacAddress, + groupPortList + OCTET STRING + } + + groupDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + É豸Ë÷ÒýºÅ¡£ + For OLT, set to corresponding OLT device + For ONU, set to 0 + " + ::= { igmpForwardingEntry 1 } + + groupVlanIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + VlanË÷ÒýºÅ" + ::= { igmpForwardingEntry 2 } + + + groupMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ×éMacµØÖ·Ë÷ÒýºÅ" + ::= { igmpForwardingEntry 3 } + + groupPortList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Forwarding port list + 1. OLT + ------------------------------------------------------------------- + It is presented by member port list. Each member port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of member ports in the port list. + The relationship is: + Length of the string = 4 * (NUM of member ports) + For example, if device 1, port 1/2 and 2/3 is the member ports, + then this object will be presented as: + 01 01 02 00 01 02 03 00 + + 2. ONU + ------------------------------------------------------------------- + It is presented by member port list. Each member port is identified + by 2-byte format, One for slot ID, the last for port ID. The actual + length of this string depends of the number of member ports. If the + ONU is fixed (not modulized), set slot ID to 0, the NMS could ignore + the slot info. + Note that, slot here shall follow the last byte definition of + EponCardIndex to indicate the main-slot and sub-slot index. + The relationship is: + Length of the string = 2 * (NUM of member ports) + For example, if port 1/2 and 3/4 is the member ports of the group, + then the object is presented as: + 01 02 03 04 + " + ::= { igmpForwardingEntry 4 } + + controllededMulticastTable OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + ¿É¿Ø×é²¥±í" + ::= { igmpManagementObjects 4 } + + controlledMulticastUserAuthorityTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControlledMulticastUserAuthorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¿É¿Ø×é²¥Óû§È¨ÏÞ±í + " + ::= { controllededMulticastTable 1 } + + controlledMulticastUserAuthorityEntry OBJECT-TYPE + SYNTAX ControlledMulticastUserAuthorityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { cmDeviceIndex, cmCardIndex, cmPortIndex } + ::= { controlledMulticastUserAuthorityTable 1 } + + ControlledMulticastUserAuthorityEntry ::= + SEQUENCE { + cmDeviceIndex + EponDeviceIndex, + cmCardIndex + EponCardIndex, + cmPortIndex + EponPortIndex, + multicastPackageList + OCTET STRING, + igmpGlobalBW + Unsigned32, + igmpGlobalBWUsed + Unsigned32, + cmUserAuthorityRowStatus + RowStatus + } + + cmDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + É豸Ë÷ÒýºÅ + For OLT, set to corresponding device/slot/port/ONU + For ONU, set to 0" + ::= { controlledMulticastUserAuthorityEntry 1 } + + cmCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ + Set to corresponding UNI slot + " + ::= { controlledMulticastUserAuthorityEntry 2 } + + cmPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Port ID + Set to corresponding UNI port + " + ::= { controlledMulticastUserAuthorityEntry 3 } + + multicastPackageList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..250)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ¿É¿Ø×é²¥×éÁбí. + Ó÷¨ÀàËÆÓÚcmProxyList£¬Ã¿¸öbit¶ÔÓ¦ÓÚcmIndex" + ::= { controlledMulticastUserAuthorityEntry 4 } + + igmpGlobalBW OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + IGMPÈ«¾Ö´ø¿í³Ø´óС - ¸Ã¶Ë¿ÚÖ§³ÖµÄ×î´ó×é²¥´ø¿í + µ¥Î»£ºkbps" + ::= { controlledMulticastUserAuthorityEntry 5 } + + igmpGlobalBWUsed OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + IGMPÈ«¾Ö´ø¿í³Øµ±Ç°Ê¹ÓôóС - ¸Ã¶Ë¿Úµ±Ç°Êµ¼ÊʹÓõÄ×é²¥´ø¿í + µ¥Î»£ºkbps" + ::= { controlledMulticastUserAuthorityEntry 6 } + + cmUserAuthorityRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "" + ::= { controlledMulticastUserAuthorityEntry 7 } + + controlledMulticastPackageTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControlledMulticastPackageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¿É¿Ø×é²¥ÒµÎñ°ü±í" + ::= { controllededMulticastTable 2 } + + controlledMulticastPackageEntry OBJECT-TYPE + SYNTAX ControlledMulticastPackageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { cmIndex } + ::= { controlledMulticastPackageTable 1 } + + ControlledMulticastPackageEntry ::= + SEQUENCE { + cmIndex + INTEGER, + cmName + OCTET STRING, + cmProxyList + OCTET STRING, + multicastUserAuthority + INTEGER, + maxRequestChannelNum + INTEGER, + singlePreviewTime + INTEGER, + totalPreviewTime + INTEGER, + previewResetTime + INTEGER, + previewCount + INTEGER, + cmRowStatus + RowStatus + } + + cmIndex OBJECT-TYPE + SYNTAX INTEGER (1..2000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { controlledMulticastPackageEntry 1 } + + cmName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ¸Ã¿É¿Ø×é²¥ÒµÎñ°üÃû³Æ" + ::= { controlledMulticastPackageEntry 2 } + + cmProxyList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..250)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ¸Ã¿É¿Ø×é²¥ÒµÎñ°üÖ§³ÖµÄProxyÁбí + ²ÉÓÃÀàËÆINTERNET±ÈÌØË³Ðò£¬´Ó×óµ½ÓÒµÄOCTET·Ö±ðΪOCTET 0, OCTET 1, ... + ÿ¸öOCTETµÄbit´Ó×óµ½ÓÒ·Ö±ðΪbit0£¬bit1£¬...£¬bit7¡£ + °´ÕÕbitºÍOCTETÓÉСµ½´óµÄ˳Ðò£¬Ã¿¸öbit¶ÔÓ¦ÓÚigmpProxyParaTableÖÐµÄ + Ò»¸öproxyIndex£¬Èç¹ûbitÖÃ룬±íʾ¸ÃproxyIndexÖ§³Ö£¬·ñÔò²»Ö§³Ö¡£ + ¾ÙÀýÀ´Ëµ£¬Èç¹û¹æ»®ÁË80¸öƵµÀ£¬proxyIndex·¶Î§Îª1..80£¬ÓÃ10¸ö×Ö½Ú±íʾ + proxyÁÐ±í£¬¼ÙÉè¸ÃPON¿ÚÖ»Ö§³ÖƵµÀÁбí1,15,38£¬¶ÔÓ¦µÄcmProxyList¿ÉÒÔ + ÉèÖóÉ0x80 02 00 00 04 00 00 00 00 00" + ::= { controlledMulticastPackageEntry 3 } + + multicastUserAuthority OBJECT-TYPE + SYNTAX INTEGER + { + permit(1), + preview(2), + deny(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Óû§È¨ÏÞ£¨permit¡¢preview¡¢deny£©" + ::= { controlledMulticastPackageEntry 4 } + + maxRequestChannelNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ×î´óÔÊÐíÇëÇ󯵵ÀÊý" + ::= { controlledMulticastPackageEntry 5 } + + singlePreviewTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + µ¥´ÎÔ¤ÀÀʱ³¤£¬µ¥Î»£ºÃë" + ::= { controlledMulticastPackageEntry 6 } + + totalPreviewTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Ô¤ÀÀ×Üʱ³¤£¬µ¥Î»£ºÃë" + ::= { controlledMulticastPackageEntry 7 } + + previewResetTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Ô¤ÀÀ¸´Î»Ê±¼ä£¬µ¥Î»£ºÃë" + ::= { controlledMulticastPackageEntry 8 } + + previewCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Ô¤ÀÀ´ÎÊý" + ::= { controlledMulticastPackageEntry 9 } + + cmRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬" + ::= { controlledMulticastPackageEntry 10 } + igmpOnuUniTable OBJECT-TYPE + SYNTAX SEQUENCE OF igmpOnuUniEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of igmpOnuUniTable entries. " + ::= { igmpManagementObjects 5 } + + igmpOnuUniEntry OBJECT-TYPE + SYNTAX igmpOnuUniEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The igmpOnuUniEntry Information" + INDEX { uniMvlanDeviceIndex,uniMvlanCardIndex,uniMvlanPortIndex} + ::={ igmpOnuUniTable 1 } + + igmpOnuUniEntry ::= SEQUENCE { + uniMvlanDeviceIndex EponDeviceIndex, + uniMvlanCardIndex EponCardIndex, + uniMvlanPortIndex EponPortIndex, + uniMvlanVid OCTET STRING, + uniMaxMultiNum INTEGER, + uniMvlanTag INTEGER, + uniMvlanRowstatus INTEGER + } + + uniMvlanDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "É豸Ë÷Òý " + ::= { igmpOnuUniEntry 1 } + + uniMvlanCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "°å¿¨Ë÷Òý" + ::= { igmpOnuUniEntry 2 } + + uniMvlanPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "¶Ë¿ÚË÷Òý" + ::= { igmpOnuUniEntry 3 } + + uniMvlanVid OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "uni¶Ë¿Ú×é²¥vlan ×î´ó8¸ö£©" + ::= { igmpOnuUniEntry 4 } + + uniMaxMultiNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "×î´ó×é²¥Êý" + ::= { igmpOnuUniEntry 5 } + + uniMvlanTag OBJECT-TYPE + SYNTAX INTEGER(0..1) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "ÊÇ·ñ°þÀ룬0£º°þÀë 1£º²»°þÀë" + ::= { igmpOnuUniEntry 6 } + + uniMvlanRowstatus OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "ÐÐ״̬" + ::= { igmpOnuUniEntry 7 } +-- +-- END of NSCRTV-EPON-IGMP-MGM-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-PERFORMANCE-STAT-MIB b/mibs/fs/NSCRTV-EPON-PERFORMANCE-STAT-MIB new file mode 100644 index 0000000000..67a4eb8ebb --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-PERFORMANCE-STAT-MIB @@ -0,0 +1,1773 @@ + +NSCRTV-EPON-PERFORMANCE-STAT-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + performanceStatisticObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- performanceStatisticObjects[ÐÔÄÜͳ¼ÆÊôÐÔ¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.10) +-------------------------------------------------------------------------------- + + curStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CurStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ʵʱÐÔÄÜ" + ::= { performanceStatisticObjects 1 } + curStatsEntry OBJECT-TYPE + SYNTAX CurStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ʵʱÐÔÄÜ" + INDEX { curStatsDeviceIndex, curStatsCardIndex, curStatsPortIndex } + ::= { curStatsTable 1 } + + CurStatsEntry ::= + SEQUENCE { + curStatsDeviceIndex + EponDeviceIndex, + curStatsCardIndex + EponCardIndex, + curStatsPortIndex + EponPortIndex, + curStatsInOctets + Counter64, + curStatsInPkts + Counter64, + curStatsInBroadcastPkts + Counter64, + curStatsInMulticastPkts + Counter64, + curStatsInPkts64Octets + Counter64, + curStatsInPkts65to127Octets + Counter64, + curStatsInPkts128to255Octets + Counter64, + curStatsInPkts256to511Octets + Counter64, + curStatsInPkts512to1023Octets + Counter64, + curStatsInPkts1024to1518Octets + Counter64, + curStatsInPkts1519to1522Octets + Counter64, + curStatsInUndersizePkts + Counter64, + curStatsInOversizePkts + Counter64, + curStatsInFragments + Counter64, + curStatsInMpcpFrames + Counter64, + curStatsInMpcpOctets + Counter64, + curStatsInOAMFrames + Counter64, + curStatsInOAMOctets + Counter64, + curStatsInCRCErrorPkts + Counter64, + curStatsInDropEvents + Counter64, + curStatsInJabbers + Counter64, + curStatsInCollision + Counter64, + curStatsOutOctets + Counter64, + curStatsOutPkts + Counter64, + curStatsOutBroadcastPkts + Counter64, + curStatsOutMulticastPkts + Counter64, + curStatsOutPkts64Octets + Counter64, + curStatsOutPkts65to127Octets + Counter64, + curStatsOutPkts128to255Octets + Counter64, + curStatsOutPkts256to511Octets + Counter64, + curStatsOutPkts512to1023Octets + Counter64, + curStatsOutPkts1024to1518Octets + Counter64, + curStatsOutPkts1519o1522Octets + Counter64, + curStatsOutUndersizePkts + Counter64, + curStatsOutOversizePkts + Counter64, + curStatsOutFragments + Counter64, + curStatsOutMpcpFrames + Counter64, + curStatsOutMpcpOctets + Counter64, + curStatsOutOAMFrames + Counter64, + curStatsOutOAMOctets + Counter64, + curStatsOutCRCErrorPkts + Counter64, + curStatsOutDropEvents + Counter64, + curStatsOutJabbers + Counter64, + curStatsOutCollision + Counter64, + curStatsStatusAndAction + INTEGER + } + + curStatsDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "É豸Ë÷ÒýºÅ + For OLT, set to corresponding device/slot/port + For ONU, set to 0" + ::= { curStatsEntry 1 } + + curStatsCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "°å¿¨Ë÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding slot + " + ::= { curStatsEntry 2 } + curStatsPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "¶Ë¿ÚË÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding port + " + ::= { curStatsEntry 3 } + + curStatsInOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ×Ö½ÚÊý" + ::= { curStatsEntry 4 } + + curStatsInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕÖ¡Êý" + ::= { curStatsEntry 5 } + + curStatsInBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊչ㲥֡Êý" + ::= { curStatsEntry 6 } + + curStatsInMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ×é²¥Ö¡Êý" + ::= { curStatsEntry 7 } + + curStatsInPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ64×Ö½Ú°üÊý" + ::= { curStatsEntry 8 } + + curStatsInPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ65¡«127×Ö½Ú°üÊý" + ::= { curStatsEntry 9 } + + curStatsInPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ128¡«255×Ö½Ú°üÊý" + ::= { curStatsEntry 10 } + + curStatsInPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ256¡«511×Ö½Ú°üÊý" + ::= { curStatsEntry 11 } + + curStatsInPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ512¡«1023×Ö½Ú°üÊý" + ::= { curStatsEntry 12 } + + curStatsInPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ1024¡«1518×Ö½Ú°üÊý" + ::= { curStatsEntry 13 } + + curStatsInPkts1519to1522Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ1519¡«1522×Ö½Ú°üÊý" + ::= { curStatsEntry 14 } + + curStatsInUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬¶ÌÖ¡Êý" + ::= { curStatsEntry 15 } + + curStatsInOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬³¤Ö¡Êý" + ::= { curStatsEntry 16 } + + curStatsInFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕË鯬Êý" + ::= { curStatsEntry 17 } + + curStatsInMpcpFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕMPCPÖ¡Êý" + ::= { curStatsEntry 18 } + + curStatsInMpcpOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕMPCP×Ö½ÚÊý" + ::= { curStatsEntry 19 } + + curStatsInOAMFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕOAMÖ¡Êý" + ::= { curStatsEntry 20 } + + curStatsInOAMOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕOAM×Ö½ÚÊý" + ::= { curStatsEntry 21 } + + curStatsInCRCErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕCRC´íÎóÖ¡" + ::= { curStatsEntry 22 } + + curStatsInDropEvents OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ¶ª°üʼþ´ÎÊý" + ::= { curStatsEntry 23 } + + curStatsInJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬³¤´íÖ¡Êý" + ::= { curStatsEntry 24 } + + curStatsInCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕÅöײ֡Êý" + ::= { curStatsEntry 25 } + + curStatsOutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ×Ö½ÚÊý" + ::= { curStatsEntry 26 } + + curStatsOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍÖ¡Êý" + ::= { curStatsEntry 27 } + + curStatsOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ë͹㲥֡Êý" + ::= { curStatsEntry 28 } + + curStatsOutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ×é²¥Ö¡Êý" + ::= { curStatsEntry 29 } + + curStatsOutPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ64×Ö½Ú°üÊý" + ::= { curStatsEntry 30 } + + curStatsOutPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ65¡«127×Ö½Ú°üÊý" + ::= { curStatsEntry 31 } + + curStatsOutPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ128¡«255×Ö½Ú°üÊý" + ::= { curStatsEntry 32 } + + curStatsOutPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ256¡«511×Ö½Ú°üÊý" + ::= { curStatsEntry 33 } + + curStatsOutPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ512¡«1023×Ö½Ú°üÊý" + ::= { curStatsEntry 34 } + curStatsOutPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ1024¡«1518×Ö½Ú°üÊý" + ::= { curStatsEntry 35 } + + curStatsOutPkts1519o1522Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ1519¡«1522×Ö½Ú°üÊý" + ::= { curStatsEntry 36 } + + curStatsOutUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬¶ÌÖ¡Êý" + ::= { curStatsEntry 37 } + + curStatsOutOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬³¤Ö¡Êý" + ::= { curStatsEntry 38 } + + curStatsOutFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍË鯬Êý" + ::= { curStatsEntry 39 } + + curStatsOutMpcpFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍMPCPÖ¡Êý" + ::= { curStatsEntry 40 } + + curStatsOutMpcpOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍMPCP×Ö½ÚÊý" + ::= { curStatsEntry 41 } + + curStatsOutOAMFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍOAMÖ¡Êý" + ::= { curStatsEntry 42 } + + curStatsOutOAMOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍOAM×Ö½ÚÊý" + ::= { curStatsEntry 43 } + + curStatsOutCRCErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍCRC´íÎóÖ¡" + ::= { curStatsEntry 44 } + + curStatsOutDropEvents OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËͶª°üʼþ´ÎÊý" + ::= { curStatsEntry 45 } + + curStatsOutJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬³¤´íÖ¡Êý" + ::= { curStatsEntry 46 } + + curStatsOutCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍÅöײ֡Êý" + ::= { curStatsEntry 47 } + + curStatsStatusAndAction OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + clean(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "µ±Ç°Í³¼Æ×´Ì¬¼°²Ù×÷ + clean(2) ͳ¼ÆÁ¿ÇåÁã" + ::= { curStatsEntry 48 } + + stats15Table OBJECT-TYPE + SYNTAX SEQUENCE OF Stats15Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "15 minutes performance data" + ::= { performanceStatisticObjects 2 } + + stats15Entry OBJECT-TYPE + SYNTAX Stats15Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { stats15DeviceIndex, stats15CardIndex, stats15PortIndex, stats15Index } + ::= { stats15Table 1 } + + Stats15Entry ::= + SEQUENCE { + stats15DeviceIndex + EponDeviceIndex, + stats15CardIndex + EponCardIndex, + stats15PortIndex + EponPortIndex, + stats15Index + EponStats15MinRecordType, + stats15InOctets + Counter64, + stats15InPkts + Counter64, + stats15InBroadcastPkts + Counter64, + stats15InMulticastPkts + Counter64, + stats15InPkts64Octets + Counter64, + stats15InPkts65to127Octets + Counter64, + stats15InPkts128to255Octets + Counter64, + stats15InPkts256to511Octets + Counter64, + stats15InPkts512to1023Octets + Counter64, + stats15InPkts1024to1518Octets + Counter64, + stats15InPkts1519to1522Octets + Counter64, + stats15InUndersizePkts + Counter64, + stats15InOversizePkts + Counter64, + stats15InFragments + Counter64, + stats15InMpcpFrames + Counter64, + stats15InMpcpOctets + Counter64, + stats15InOAMFrames + Counter64, + stats15InOAMOctets + Counter64, + stats15InCRCErrorPkts + Counter64, + stats15InDropEvents + Counter64, + stats15InJabbers + Counter64, + stats15InCollision + Counter64, + stats15OutOctets + Counter64, + stats15OutPkts + Counter64, + stats15OutBroadcastPkts + Counter64, + stats15OutMulticastPkts + Counter64, + stats15OutPkts64Octets + Counter64, + stats15OutPkts65to127Octets + Counter64, + stats15OutPkts128to255Octets + Counter64, + stats15OutPkts256to511Octets + Counter64, + stats15OutPkts512to1023Octets + Counter64, + stats15OutPkts1024to1518Octets + Counter64, + stats15OutPkts1519o1522Octets + Counter64, + stats15OutUndersizePkts + Counter64, + stats15OutOversizePkts + Counter64, + stats15OutFragments + Counter64, + stats15OutMpcpFrames + Counter64, + stats15OutMpcpOctets + Counter64, + stats15OutOAMFrames + Counter64, + stats15OutOAMOctets + Counter64, + stats15OutCRCErrorPkts + Counter64, + stats15OutDropEvents + Counter64, + stats15OutJabbers + Counter64, + stats15OutCollision + Counter64, + stats15StatusAndAction + INTEGER, + stats15ValidityTag + TruthValue, + stats15ElapsedTime + Counter32, + stats15EndTime + DateAndTime + } + + stats15DeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "É豸Ë÷ÒýºÅ + For OLT, set to corresponding device/slot/port + For ONU, set to 0 " + ::= { stats15Entry 1 } + + stats15CardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "°å¿¨Ë÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding slot + " + ::= { stats15Entry 2 } + + stats15PortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "¶Ë¿ÚË÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding port + " + ::= { stats15Entry 3 } + + stats15Index OBJECT-TYPE + SYNTAX EponStats15MinRecordType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ˳ÐòË÷ÒýºÅ + " + ::= { stats15Entry 4 } + + stats15InOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ×Ö½ÚÊý" + ::= { stats15Entry 5 } + + stats15InPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕÖ¡Êý" + ::= { stats15Entry 6 } + + stats15InBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊչ㲥֡Êý" + ::= { stats15Entry 7 } + + stats15InMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ×é²¥Ö¡Êý" + ::= { stats15Entry 8 } + + stats15InPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ64×Ö½Ú°üÊý" + ::= { stats15Entry 9 } + + stats15InPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ65¡«127×Ö½Ú°üÊý" + ::= { stats15Entry 10 } + + stats15InPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ128¡«255×Ö½Ú°üÊý" + ::= { stats15Entry 11 } + + stats15InPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ256¡«511×Ö½Ú°üÊý" + ::= { stats15Entry 12 } + + stats15InPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ512¡«1023×Ö½Ú°üÊý" + ::= { stats15Entry 13 } + + stats15InPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ1024¡«1518×Ö½Ú°üÊý" + ::= { stats15Entry 14 } + + stats15InPkts1519to1522Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ1519¡«1522×Ö½Ú°üÊý" + ::= { stats15Entry 15 } + + stats15InUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬¶ÌÖ¡Êý" + ::= { stats15Entry 16 } + + stats15InOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬³¤Ö¡Êý" + ::= { stats15Entry 17 } + stats15InFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕË鯬Êý" + ::= { stats15Entry 18 } + + stats15InMpcpFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕMPCPÖ¡Êý" + ::= { stats15Entry 19 } + + stats15InMpcpOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕMPCP×Ö½ÚÊý" + ::= { stats15Entry 20 } + + stats15InOAMFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕOAMÖ¡Êý" + ::= { stats15Entry 21 } + + stats15InOAMOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕOAM×Ö½ÚÊý" + ::= { stats15Entry 22 } + + stats15InCRCErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕCRC´íÎóÖ¡" + ::= { stats15Entry 23 } + + stats15InDropEvents OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ¶ª°üʼþ´ÎÊý" + ::= { stats15Entry 24 } + + stats15InJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬³¤´íÖ¡Êý" + ::= { stats15Entry 25 } + + stats15InCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕÅöײ֡Êý" + ::= { stats15Entry 26 } + + stats15OutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ×Ö½ÚÊý" + ::= { stats15Entry 27 } + + stats15OutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍÖ¡Êý" + ::= { stats15Entry 28 } + + stats15OutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ë͹㲥֡Êý" + ::= { stats15Entry 29 } + + stats15OutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ×é²¥Ö¡Êý" + ::= { stats15Entry 30 } + + stats15OutPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ64×Ö½Ú°üÊý" + ::= { stats15Entry 31 } + + stats15OutPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ65¡«127×Ö½Ú°üÊý" + ::= { stats15Entry 32 } + + stats15OutPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ128¡«255×Ö½Ú°üÊý" + ::= { stats15Entry 33 } + + stats15OutPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ256¡«511×Ö½Ú°üÊý" + ::= { stats15Entry 34 } + + stats15OutPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ512¡«1023×Ö½Ú°üÊý" + ::= { stats15Entry 35 } + + stats15OutPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ1024¡«1518×Ö½Ú°üÊý" + ::= { stats15Entry 36 } + + stats15OutPkts1519o1522Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ1519¡«1522×Ö½Ú°üÊý" + ::= { stats15Entry 37 } + + stats15OutUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬¶ÌÖ¡Êý" + ::= { stats15Entry 38 } + + stats15OutOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬³¤Ö¡Êý" + ::= { stats15Entry 39 } + + stats15OutFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍË鯬Êý" + ::= { stats15Entry 40 } + + stats15OutMpcpFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍMPCPÖ¡Êý" + ::= { stats15Entry 41 } + + stats15OutMpcpOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍMPCP×Ö½ÚÊý" + ::= { stats15Entry 42 } + + stats15OutOAMFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍOAMÖ¡Êý" + ::= { stats15Entry 43 } + + stats15OutOAMOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍOAM×Ö½ÚÊý" + ::= { stats15Entry 44 } + stats15OutCRCErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍCRC´íÎóÖ¡" + ::= { stats15Entry 45 } + stats15OutDropEvents OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËͶª°üʼþ´ÎÊý" + ::= { stats15Entry 46 } + + stats15OutJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬³¤´íÖ¡Êý" + ::= { stats15Entry 47 } + + stats15OutCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍÅöײ֡Êý" + ::= { stats15Entry 48 } + + stats15StatusAndAction OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + clean(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "µ±Ç°Í³¼Æ×´Ì¬¼°²Ù×÷ + clean(2) ͳ¼ÆÁ¿ÇåÁã" + ::= { stats15Entry 49 } + stats15ValidityTag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether or not the current 15-min PM data is valid" + ::= { stats15Entry 50 } + + stats15ElapsedTime OBJECT-TYPE + SYNTAX Counter32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + It is elapsed time, since start of this 15-min interval. + It is only valid for current PM data. For history PM data, set to 0. + " + ::= { stats15Entry 51 } + + stats15EndTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + It is time, when the PM history data is created. + It is only valid for history PM data. + " + ::= { stats15Entry 52 } + + stats24Table OBJECT-TYPE + SYNTAX SEQUENCE OF Stats24Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1-day performance data" + ::= { performanceStatisticObjects 3 } + + stats24Entry OBJECT-TYPE + SYNTAX Stats24Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { stats24DeviceIndex, stats24CardIndex, stats24PortIndex, stats24Index } + ::= { stats24Table 1 } + + Stats24Entry ::= + SEQUENCE { + stats24DeviceIndex + EponDeviceIndex, + stats24CardIndex + EponCardIndex, + stats24PortIndex + EponPortIndex, + stats24Index + EponStats24HourRecordType, + stats24InOctets + Counter64, + stats24InPkts + Counter64, + stats24InBroadcastPkts + Counter64, + stats24InMulticastPkts + Counter64, + stats24InPkts64Octets + Counter64, + stats24InPkts65to127Octets + Counter64, + stats24InPkts128to255Octets + Counter64, + stats24InPkts256to511Octets + Counter64, + stats24InPkts512to1023Octets + Counter64, + stats24InPkts1024to1518Octets + Counter64, + stats24InPkts1519to1522Octets + Counter64, + stats24InUndersizePkts + Counter64, + stats24InOversizePkts + Counter64, + stats24InFragments + Counter64, + stats24InMpcpFrames + Counter64, + stats24InMpcpOctets + Counter64, + stats24InOAMFrames + Counter64, + stats24InOAMOctets + Counter64, + stats24InCRCErrorPkts + Counter64, + stats24InDropEvents + Counter64, + stats24InJabbers + Counter64, + stats24InCollision + Counter64, + stats24OutOctets + Counter64, + stats24OutPkts + Counter64, + stats24OutBroadcastPkts + Counter64, + stats24OutMulticastPkts + Counter64, + stats24OutPkts64Octets + Counter64, + stats24OutPkts65to127Octets + Counter64, + stats24OutPkts128to255Octets + Counter64, + stats24OutPkts256to511Octets + Counter64, + stats24OutPkts512to1023Octets + Counter64, + stats24OutPkts1024to1518Octets + Counter64, + stats24OutPkts1519o1522Octets + Counter64, + stats24OutUndersizePkts + Counter64, + stats24OutOversizePkts + Counter64, + stats24OutFragments + Counter64, + stats24OutMpcpFrames + Counter64, + stats24OutMpcpOctets + Counter64, + stats24OutOAMFrames + Counter64, + stats24OutOAMOctets + Counter64, + stats24OutCRCErrorPkts + Counter64, + stats24OutDropEvents + Counter64, + stats24OutJabbers + Counter64, + stats24OutCollision + Counter64, + stats24StatusAndAction + INTEGER, + stats24ValidityTag + TruthValue, + stats24ElapsedTime + Counter32, + stats24EndTime + DateAndTime + } + + stats24DeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "É豸Ë÷ÒýºÅ + For OLT, set to corresponding device/slot/port + For ONU, set to 0 + " + ::= { stats24Entry 1 } + + stats24CardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "°å¿¨Ë÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding slot + " + ::= { stats24Entry 2 } + + stats24PortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "¶Ë¿ÚË÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding port + " + ::= { stats24Entry 3 } + + stats24Index OBJECT-TYPE + SYNTAX EponStats24HourRecordType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "˳ÐòË÷ÒýºÅ" + ::= { stats24Entry 4 } + + stats24InOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ×Ö½ÚÊý" + ::= { stats24Entry 5 } + + stats24InPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕÖ¡Êý" + ::= { stats24Entry 6 } + + stats24InBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊչ㲥֡Êý" + ::= { stats24Entry 7 } + + stats24InMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ×é²¥Ö¡Êý" + ::= { stats24Entry 8 } + + stats24InPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ64×Ö½Ú°üÊý" + ::= { stats24Entry 9 } + + stats24InPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ65¡«127×Ö½Ú°üÊý" + ::= { stats24Entry 10 } + + stats24InPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ128¡«255×Ö½Ú°üÊý" + ::= { stats24Entry 11 } + + stats24InPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ256¡«511×Ö½Ú°üÊý" + ::= { stats24Entry 12 } + + stats24InPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ512¡«1023×Ö½Ú°üÊý" + ::= { stats24Entry 13 } + + stats24InPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ1024¡«1518×Ö½Ú°üÊý" + ::= { stats24Entry 14 } + + stats24InPkts1519to1522Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ1519¡«1522×Ö½Ú°üÊý" + ::= { stats24Entry 15 } + + stats24InUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬¶ÌÖ¡Êý" + ::= { stats24Entry 16 } + + stats24InOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬³¤Ö¡Êý" + ::= { stats24Entry 17 } + + stats24InFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕË鯬Êý" + ::= { stats24Entry 18 } + + stats24InMpcpFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕMPCPÖ¡Êý" + ::= { stats24Entry 19 } + + stats24InMpcpOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕMPCP×Ö½ÚÊý" + ::= { stats24Entry 20 } + + stats24InOAMFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕOAMÖ¡Êý" + ::= { stats24Entry 21 } + + stats24InOAMOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕOAM×Ö½ÚÊý" + ::= { stats24Entry 22 } + + stats24InCRCErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕCRC´íÎóÖ¡" + ::= { stats24Entry 23 } + + stats24InDropEvents OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ¶ª°üʼþ´ÎÊý" + ::= { stats24Entry 24 } + + stats24InJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕ³¬³¤´íÖ¡Êý" + ::= { stats24Entry 25 } + + stats24InCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "½ÓÊÕÅöײ֡Êý" + ::= { stats24Entry 26 } + + stats24OutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ×Ö½ÚÊý" + ::= { stats24Entry 27 } + + stats24OutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍÖ¡Êý" + ::= { stats24Entry 28 } + + stats24OutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ë͹㲥֡Êý" + ::= { stats24Entry 29 } + + stats24OutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ×é²¥Ö¡Êý" + ::= { stats24Entry 30 } + + stats24OutPkts64Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ64×Ö½Ú°üÊý" + ::= { stats24Entry 31 } + + stats24OutPkts65to127Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ65¡«127×Ö½Ú°üÊý" + ::= { stats24Entry 32 } + + stats24OutPkts128to255Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ128¡«255×Ö½Ú°üÊý" + ::= { stats24Entry 33 } + + stats24OutPkts256to511Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ256¡«511×Ö½Ú°üÊý" + ::= { stats24Entry 34 } + + stats24OutPkts512to1023Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ512¡«1023×Ö½Ú°üÊý" + ::= { stats24Entry 35 } + + stats24OutPkts1024to1518Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ1024¡«1518×Ö½Ú°üÊý" + ::= { stats24Entry 36 } + + stats24OutPkts1519o1522Octets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍ1519¡«1522×Ö½Ú°üÊý" + ::= { stats24Entry 37 } + + stats24OutUndersizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬¶ÌÖ¡Êý" + ::= { stats24Entry 38 } + + stats24OutOversizePkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬³¤Ö¡Êý" + ::= { stats24Entry 39 } + + stats24OutFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍË鯬Êý" + ::= { stats24Entry 40 } + + stats24OutMpcpFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍMPCPÖ¡Êý" + ::= { stats24Entry 41 } + + stats24OutMpcpOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍMPCP×Ö½ÚÊý" + ::= { stats24Entry 42 } + + stats24OutOAMFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍOAMÖ¡Êý" + ::= { stats24Entry 43 } + + stats24OutOAMOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍOAM×Ö½ÚÊý" + ::= { stats24Entry 44 } + + stats24OutCRCErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍCRC´íÎóÖ¡" + ::= { stats24Entry 45 } + + stats24OutDropEvents OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËͶª°üʼþ´ÎÊý" + ::= { stats24Entry 46 } + + stats24OutJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢Ëͳ¬³¤´íÖ¡Êý" + ::= { stats24Entry 47 } + + stats24OutCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "·¢ËÍÅöײ֡Êý" + ::= { stats24Entry 48 } + + stats24StatusAndAction OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + clear(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "µ±Ç°Í³¼Æ×´Ì¬¼°²Ù×÷ + clear(2) ͳ¼ÆÁ¿ÇåÁã" + ::= { stats24Entry 49 } + + stats24ValidityTag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether or not the current 1-day PM data is valid" + ::= { stats24Entry 50 } + + stats24ElapsedTime OBJECT-TYPE + SYNTAX Counter32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + It is elapsed time, since start of this 1-day interval. + It is only valid for current PM data. For history PM data, set to 0. + " + ::= { stats24Entry 51 } + + stats24EndTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + It is time, when the PM history data is created. + It is only valid for history PM data. + " + ::= { stats24Entry 52 } + + perfStatsGlobalSet OBJECT-IDENTITY + STATUS current + DESCRIPTION + "" + ::= { performanceStatisticObjects 4 } + + perfStats15MinMaxRecord OBJECT-TYPE + SYNTAX EponStats15MinRecordType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "15·ÖÖÓÐÔÄÜͳ¼ÆµÄ×î´ó¼Ç¼Êý, ²»ÄÜÊÇ0" + DEFVAL { 96 } + ::= { perfStatsGlobalSet 1 } + + perfStats24HourMaxRecord OBJECT-TYPE + SYNTAX EponStats24HourRecordType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "24СʱÐÔÄÜͳ¼ÆµÄ×î´ó¼Ç¼Êý£¬ ²»ÄÜÊÇ0" + DEFVAL { 7 } + ::= { perfStatsGlobalSet 2 } + + perfStatsThresholdTable OBJECT-TYPE + SYNTAX SEQUENCE OF PerfStatsThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ÃÅÏÞ¹ÜÀí" + ::= { performanceStatisticObjects 5 } + + perfStatsThresholdEntry OBJECT-TYPE + SYNTAX PerfStatsThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ÃÅÏÞ¹ÜÀí" + INDEX { perfStatsThresholdDeviceIndex, perfStatsThresholdCardIndex, perfStatsThresholdPortIndex, perfStatsThresholdTypeIndex } + ::= { perfStatsThresholdTable 1 } + + PerfStatsThresholdEntry ::= + SEQUENCE { + perfStatsThresholdDeviceIndex + EponDeviceIndex, + perfStatsThresholdCardIndex + EponCardIndex, + perfStatsThresholdPortIndex + EponPortIndex, + perfStatsThresholdTypeIndex + EponStatsThresholdType, + perfStatsThresholdUpper + Counter64, + perfStatsThresholdLower + Counter64, + perfStatsThresholdRowStatus + RowStatus + } + + perfStatsThresholdDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "É豸Ë÷ÒýºÅ + ¶¨ÒåͬcurStatsDeviceIndex" + ::= { perfStatsThresholdEntry 1 } + + perfStatsThresholdCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "°å¿¨Ë÷ÒýºÅ + ¶¨ÒåͬcurStatsCardIndex" + ::= { perfStatsThresholdEntry 2 } + + perfStatsThresholdPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "¶Ë¿ÚË÷ÒýºÅ + ¶¨ÒåͬcurStatsPortIndex" + ::= { perfStatsThresholdEntry 3 } + + perfStatsThresholdTypeIndex OBJECT-TYPE + SYNTAX EponStatsThresholdType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ÃÅÏÞÀàÐÍ" + ::= { perfStatsThresholdEntry 4 } + + perfStatsThresholdUpper OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "ãÐÖµÉÏÏÞ" + ::= { perfStatsThresholdEntry 5 } + + perfStatsThresholdLower OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "ãÐÖµÏÂÏÞ" + ::= { perfStatsThresholdEntry 6 } + + perfStatsThresholdRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "ÐÐ״̬£¨Ìí¼Ó¡¢É¾³ý¡¢Ð޸ģ©" + ::= { perfStatsThresholdEntry 7 } + +-- +-- END of NSCRTV-EPON-PERFORMANCE-STAT-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-QOS-MGM-MIB b/mibs/fs/NSCRTV-EPON-QOS-MGM-MIB new file mode 100644 index 0000000000..c6369f7571 --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-QOS-MGM-MIB @@ -0,0 +1,524 @@ + +NSCRTV-EPON-QOS-MGM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + qosManagementObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- qosManagementObjects[ Qos¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.8) +-------------------------------------------------------------------------------- + + qosGlobalSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosGlobalSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Global QoS parameters." + ::= { qosManagementObjects 1 } + + qosGlobalSetEntry OBJECT-TYPE + SYNTAX QosGlobalSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { qosGlobalSetDeviceIndex } + ::= { qosGlobalSetTable 1 } + QosGlobalSetEntry ::= + SEQUENCE { + qosGlobalSetDeviceIndex + EponDeviceIndex, + qosGlobalSetMaxQueueCount + INTEGER, + qosGlobalSetMode + INTEGER + } + + qosGlobalSetDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Device index + For OLT - Set to corresponding device + For ONU - Set to 0 + " + ::= { qosGlobalSetEntry 1 } + + qosGlobalSetMaxQueueCount OBJECT-TYPE + SYNTAX INTEGER (1..256) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ×î´ó¶ÓÁÐÊý£¬¸ÃÉ豸֧³ÖµÄ×î´ó¶ÓÁÐÊý¡£Èç¹û×î´ó¶ÓÁÐÊýΪ8£¬Ôò¶ÓÁбàºÅΪ0-7¡£" + ::= { qosGlobalSetEntry 2 } + + qosGlobalSetMode OBJECT-TYPE + SYNTAX INTEGER + { + deviceBased(1), + portBased(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Define how to set QoS parameter + deviceBased(1) - When set, only the table started with deviceBase is applicable + portBased(2) - When set, only the table started with portBase is applicable + " + DEFVAL { deviceBased } + ::= { qosGlobalSetEntry 3 } + + deviceBaseQosMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF DeviceBaseQosMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Deviced based setting. + It is used to define how to map QoS options to queue" + ::= { qosManagementObjects 2 } + + deviceBaseQosMapEntry OBJECT-TYPE + SYNTAX DeviceBaseQosMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { deviceBaseQosMapDeviceIndex, deviceBaseQosMapRuleIndex } + ::= { deviceBaseQosMapTable 1 } + + DeviceBaseQosMapEntry ::= + SEQUENCE { + deviceBaseQosMapDeviceIndex + EponDeviceIndex, + deviceBaseQosMapRuleIndex + INTEGER, + deviceBaseQosMapOctet + OCTET STRING + } + + deviceBaseQosMapDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Device index + For OLT - Set to corresponding device/slot/port + For ONU - Set to 0 + " + ::= { deviceBaseQosMapEntry 1 } + + deviceBaseQosMapRuleIndex OBJECT-TYPE + SYNTAX INTEGER + { + cos(1), + tos(2), + diffserv(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Ó³É乿Ôò±àºÅ" + ::= { deviceBaseQosMapEntry 2 } + + deviceBaseQosMapOctet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8 | 64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Ó³ÉäÖµ¡£ + ³¤¶ÈΪ8×Ö½Ú£¬»ò64×Ö½Ú¡£Ã¿×Ö½Ú±íʾһ¸öÓ³Éä¹ØÏµ¡£ + ¶ÓÁбàºÅ²»Äܳ¬¹ý¶ÔÓ¦µÄqosGlobalSetMaxQueueCountÖµ£¬Èç¹ûqosGlobalSetMaxQueueCountΪ8£¬Ôò¶ÓÁбàºÅΪ0-7¡£ + ¶ÔÓÚ cos£¬³¤¶ÈΪ 8×Ö½Ú£¬Ã¿¸ö×Ö½Ú·Ö±ð±íʾcos0-7 Ó³Éäµ½µÄ¶ÓÁбàºÅ¡£ + ¶ÔÓÚ tos£¬³¤¶ÈΪ 16×Ö½Ú£¬Ã¿¸ö×Ö½Ú·Ö±ð±íʾtos0-15 Ó³Éäµ½µÄ¶ÓÁбàºÅ¡£ + ¶ÔÓÚ diffserv£¬³¤¶ÈΪ64×Ö½Ú£¬Ã¿¸ö×Ö½Ú·Ö±ð±íʾdiffserv0-63Ó³Éäµ½µÄ¶ÓÁбàºÅ¡£ + ¾ÙÀýÈçÏ£º + get 1.3.6.1.4.1.17409.2.3.8.3.1.3.deviceBaseQosMapDeviceIndex(410100101).cos(1) = hex(00 00 01 02 03 03 04 04) + ÔòÓ³Éä¹ØÏµÎª£º + cos 0 -> queue 0 + cos 1 -> queue 0 + cos 2 -> queue 1 + cos 3 -> queue 2 + cos 4 -> queue 3 + cos 5 -> queue 3 + cos 6 -> queue 4 + cos 7 -> queue 4 + " + ::= { deviceBaseQosMapEntry 3 } + deviceBaseQosPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF DeviceBaseQosPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Deviced based setting + + It is used to define QoS specification" + ::= { qosManagementObjects 3 } + + deviceBaseQosPolicyEntry OBJECT-TYPE + SYNTAX DeviceBaseQosPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { deviceBaseQosPolicyDeviceIndex } + ::= { deviceBaseQosPolicyTable 1 } + + DeviceBaseQosPolicyEntry ::= + SEQUENCE { + deviceBaseQosPolicyDeviceIndex + EponDeviceIndex, + deviceBaseQosPolicyMode + INTEGER, + deviceBaseQosPolicyWeightOctet + OCTET STRING, + deviceBaseQosPolicySpBandwidthRange + OCTET STRING + } + + deviceBaseQosPolicyDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Device index + For OLT - Set to corresponding device/slot/port + For ONU - Set to 0 + " + ::= { deviceBaseQosPolicyEntry 1 } + + deviceBaseQosPolicyMode OBJECT-TYPE + SYNTAX INTEGER + { + sp(1), + wrr(2), + spWrr(3), + wfp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + µ÷¶Èģʽ" + ::= { deviceBaseQosPolicyEntry 2 } + + deviceBaseQosPolicyWeightOctet OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + È¨ÖØÖµ¡£ + ³¤¶ÈµÈÓÚ¶ÓÁÐÊýÄ¿£¬Ã¿×Ö½Ú±íʾһ¸ö¶ÓÁеÄÈ¨ÖØ¡£ + ¶ÔÓÚ sp£¬¶Áд¸Ã½ÚµãÎÞÒâÒ壬¶ÁʱʼÖÕΪȫ0¡£ + ¶ÔÓÚ wrr£¬Ã¿×Ö½ÚÃèÊöÒ»¸ö¶ÓÁеÄÈ¨ÖØ¡£È¨Öصķ¶Î§Îª1-100£¬È«²¿¶ÓÁÐÈ¨ÖØÖ®ºÍÓ¦µÈÓÚ100¡£ + ¶ÔÓÚ spWrr£¬Ã¿×Ö½ÚÃèÊöÒ»¸ö¶ÓÁеÄÈ¨ÖØ¡£È¨ÖØ·¶Î§Îª0-100£¬È¨ÖØÎª0±íʾ¸Ã¶ÓÁÐÓÃspģʽ£¬È¨ÖØÖµ·Ç0µÄ¶ÓÁÐÈ¨ÖØÖ®ºÍÓ¦µÈÓÚ100¡£ + ¶ÔÓÚ wfp£¬¶Áд¸Ã½ÚµãÎÞÒâÒ壬¶ÁʱʼÖÕΪȫ0¡£ + ¾ÙÀýÈçÏ£º + get 1.3.6.1.4.1.17409.2.3.8.4.1.2.deviceBaseQosPolicyDeviceIndex(410100101). = wrr(2) + get 1.3.6.1.4.1.17409.2.3.8.4.1.3.deviceBaseQosPolicyDeviceIndex(410100101). = hex(5 5 5 5 10 20 20 30) + + ˵Ã÷£º¹²8¸ö¶ÓÁÐ + queue 0 È¨ÖØÎª 5 + queue 1 È¨ÖØÎª 5 + queue 2 È¨ÖØÎª 5 + queue 3 È¨ÖØÎª 5 + queue 4 È¨ÖØÎª 10 + queue 5 È¨ÖØÎª 20 + queue 6 È¨ÖØÎª 20 + queue 7 È¨ÖØÎª 30 + + " + ::= { deviceBaseQosPolicyEntry 3 } + + deviceBaseQosPolicySpBandwidthRange OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Define SP assured bandwidth for each queue. + The size of this object is 4*(number of queue). For each queue, use 4 octets + to represend the assured bandwidth for the queue. The four-octet could be mapped + to an unsigned integer, in units of kbps. The sequence of the map is from queue + 0 to queue max (for example, 7). + For example, 00 00 00 10 00 00 01 00 00 00 00 00 00 00 00 00 + 00 00 10 00 00 00 00 01 00 01 01 00 00 00 11 11 + It means, 8 queues and the assured bandwidth for each queue as: + queue 0 16kbps + queue 1 256kbps + queue 2 0 + queue 3 0 + queue 4 4096kbps + queue 5 1kbps + queue 6 65792kbps + queue 7 65535kbps + " + ::= { deviceBaseQosPolicyEntry 4 } + + portBaseQosMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortBaseQosMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { qosManagementObjects 4 } + + portBaseQosMapEntry OBJECT-TYPE + SYNTAX PortBaseQosMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { deviceBaseQosMapDeviceIndex, portBaseQosMapCardIndex, portBaseQosMapPortIndex, deviceBaseQosMapRuleIndex } + ::= { portBaseQosMapTable 1 } + + PortBaseQosMapEntry ::= + SEQUENCE { + portBaseQosMapDeviceIndex + EponDeviceIndex, + portBaseQosMapCardIndex + EponPortIndex, + portBaseQosMapPortIndex + EponPortIndex, + portBaseQosMapRuleIndex + INTEGER, + portBaseQosMapOctet + OCTET STRING + } + + portBaseQosMapDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Device index + For OLT, set to corresponding SNI port or PON port + For ONU, set to 0 + " + ::= { portBaseQosMapEntry 1 } + + portBaseQosMapCardIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding slot + " + ::= { portBaseQosMapEntry 2 } + + portBaseQosMapPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚË÷Òý + For OLT, set to 0 + For ONU, set to corresponding port + " + ::= { portBaseQosMapEntry 3 } + + portBaseQosMapRuleIndex OBJECT-TYPE + SYNTAX INTEGER + { + cos(1), + tos(2), + diffserv(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Ó³É乿Ôò±àºÅ" + ::= { portBaseQosMapEntry 4 } + + portBaseQosMapOctet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Ó³ÉäÖµ¡£ + ³¤¶ÈΪ8×Ö½Ú£¬»ò64×Ö½Ú¡£Ã¿×Ö½Ú±íʾһ¸öÓ³Éä¹ØÏµ¡£ + ¶ÓÁбàºÅ²»Äܳ¬¹ý¶ÔÓ¦µÄqosGlobalSetMaxQueueCountÖµ£¬Èç¹ûqosGlobalSetMaxQueueCountΪ8£¬Ôò¶ÓÁбàºÅΪ0-7¡£ + ¶ÔÓÚ cos£¬³¤¶ÈΪ 8×Ö½Ú£¬Ã¿¸ö×Ö½Ú·Ö±ð±íʾcos0-7 Ó³Éäµ½µÄ¶ÓÁбàºÅ¡£ + ¶ÔÓÚ tos£¬³¤¶ÈΪ 16×Ö½Ú£¬Ã¿¸ö×Ö½Ú·Ö±ð±íʾtos0-16 Ó³Éäµ½µÄ¶ÓÁбàºÅ¡£ + ¶ÔÓÚ diffserv£¬³¤¶ÈΪ64×Ö½Ú£¬Ã¿¸ö×Ö½Ú·Ö±ð±íʾdiffserv0-64Ó³Éäµ½µÄ¶ÓÁбàºÅ¡£ + ¾ÙÀýÈçÏ£º + get 1.3.6.1.4.1.17409.2.3.8.3.1.3.deviceBaseQosMapDeviceIndex(410100101).cos(1) = hex(00 00 01 02 03 03 04 04) + ÔòÓ³Éä¹ØÏµÎª£º + cos 0 -> queue 0 + cos 1 -> queue 0 + cos 2 -> queue 1 + cos 3 -> queue 2 + cos 4 -> queue 3 + cos 5 -> queue 3 + cos 6 -> queue 4 + cos 7 -> queue 4 + " + ::= { portBaseQosMapEntry 5 } + + portBaseQosPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortBaseQosPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { qosManagementObjects 5 } + + portBaseQosPolicyEntry OBJECT-TYPE + SYNTAX PortBaseQosPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { deviceBaseQosPolicyDeviceIndex, portBaseQosPolicyCardIndex, portBaseQosPolicyPortIndex } + ::= { portBaseQosPolicyTable 1 } + + PortBaseQosPolicyEntry ::= + SEQUENCE { + portBaseQosPolicyDeviceIndex + EponDeviceIndex, + portBaseQosPolicyCardIndex + EponPortIndex, + portBaseQosPolicyPortIndex + EponPortIndex, + portBaseQosPolicyMode + INTEGER, + portBaseQosPolicyWeightOctet + OCTET STRING, + portBaseQosPolicySpBandwidthRange + OCTET STRING + } + portBaseQosPolicyDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Device index + For OLT, set to corresponding SNI port or PON port + For ONU, set to 0 + " + ::= { portBaseQosPolicyEntry 1 } + + portBaseQosPolicyCardIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ + For OLT, set to 0 + For ONU, set to corresponding slot + " + ::= { portBaseQosPolicyEntry 2 } + + portBaseQosPolicyPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚË÷Òý + For OLT, set to 0 + For ONU, set to corresponding port + " + ::= { portBaseQosPolicyEntry 3 } + + portBaseQosPolicyMode OBJECT-TYPE + SYNTAX INTEGER + { + sp(1), + wrr(2), + spWrr(3), + wfp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + µ÷¶Èģʽ + sp ÑϸñÓÅÏȼ¶ + wrr ¼ÓȨÂÖÑ­ + spWrr sp+wrr»ìºÏ + wfp ¼ÓȨ¹«Æ½ÅŶÓ" + ::= { portBaseQosPolicyEntry 4 } + + portBaseQosPolicyWeightOctet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + È¨ÖØÖµ + ³¤¶ÈµÈÓÚ¶ÓÁÐÊýÄ¿£¬Ã¿×Ö½Ú±íʾһ¸ö¶ÓÁеÄÈ¨ÖØ¡£ + ¶ÔÓÚ sp£¬¶Áд¸Ã½ÚµãÎÞÒâÒ壬¶ÁʱʼÖÕΪȫ0¡£ + ¶ÔÓÚ wrr£¬Ã¿×Ö½ÚÃèÊöÒ»¸ö¶ÓÁеÄÈ¨ÖØ¡£È¨Öصķ¶Î§Îª1-100£¬È«²¿¶ÓÁÐÈ¨ÖØÖ®ºÍÓ¦µÈÓÚ100¡£ + ¶ÔÓÚ spWrr£¬Ã¿×Ö½ÚÃèÊöÒ»¸ö¶ÓÁеÄÈ¨ÖØ¡£È¨ÖØ·¶Î§Îª0-100£¬È¨ÖØÎª0±íʾ¸Ã¶ÓÁÐÓÃspģʽ£¬È¨ÖØÖµ·Ç0µÄ¶ÓÁÐÈ¨ÖØÖ®ºÍÓ¦µÈÓÚ100¡£ + ¶ÔÓÚ wfp£¬¶Áд¸Ã½ÚµãÎÞÒâÒ壬¶ÁʱʼÖÕΪȫ0¡£ + ¾ÙÀýÈçÏ£º + get 1.3.6.1.4.1.17409.2.3.8.4.1.2.deviceBaseQosPolicyDeviceIndex(410100101). = wrr(2) + get 1.3.6.1.4.1.17409.2.3.8.4.1.3.deviceBaseQosPolicyDeviceIndex(410100101). = hex(5 5 5 5 10 20 20 30) + ˵Ã÷£º¹²8¸ö¶ÓÁÐ + queue 0 È¨ÖØÎª 5 + queue 1 È¨ÖØÎª 5 + queue 2 È¨ÖØÎª 5 + queue 3 È¨ÖØÎª 5 + queue 4 È¨ÖØÎª 10 + queue 5 È¨ÖØÎª 20 + queue 6 È¨ÖØÎª 20 + queue 7 È¨ÖØÎª 30 + " + ::= { portBaseQosPolicyEntry 5 } + + portBaseQosPolicySpBandwidthRange OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Define SP assured bandwidth for each queue. + The size of this object is 4*(number of queue). For each queue, use 4 octets + to represend the assured bandwidth for the queue. The four-octet could be mapped + to an unsigned integer, in units of kbps. The sequence of the map is from queue + 0 to queue max (for example, 7). + For example, 00 00 00 10 00 00 01 00 00 00 00 00 00 00 00 00 + 00 00 10 00 00 00 00 01 00 01 01 00 00 00 11 11 + It means, 8 queues and the assured bandwidth for each queue as: + queue 0 16kbps + queue 1 256kbps + queue 2 0 + queue 3 0 + queue 4 4096kbps + queue 5 1kbps + queue 6 65792kbps + queue 7 65535kbps + " + ::= { portBaseQosPolicyEntry 6 } + +-- +-- END of NSCRTV-EPON-QOS-MGM-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-SNI-MIB b/mibs/fs/NSCRTV-EPON-SNI-MIB new file mode 100644 index 0000000000..10ddd75891 --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-SNI-MIB @@ -0,0 +1,719 @@ + +NSCRTV-EPON-SNI-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + sniObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- sniObjects [OLTÉÏÁª¶Ë¿ÚÊôÐÔ¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.2) +-------------------------------------------------------------------------------- + + sniAttributeTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniAttributeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of sniAttributeTable entries. " + ::= {sniObjects 1 } + + sniAttributeEntry OBJECT-TYPE + SYNTAX SniAttributeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The sniAttributeEntry Information" + INDEX { sniAttributeDeviceIndex, sniAttributeCardIndex,sniAttributePortIndex } + ::={sniAttributeTable 1 } + + SniAttributeEntry ::= SEQUENCE { + sniAttributeDeviceIndex INTEGER, + sniAttributeCardIndex EponCardIndex, + sniAttributePortIndex EponPortIndex, + sniPortName DisplayString, + sniAdminStatus INTEGER, + sniOperationStatus INTEGER, + sniMediaType INTEGER, + sniAutoNegotiationStatus INTEGER, + sniAutoNegotiationMode INTEGER, + sniPerfStats15minuteEnable TruthValue, + sniPerfStats24hourEnable TruthValue, + sniLastStatusChangeTime TimeTicks, + sniMacAddrLearnMaxNum INTEGER, + sniIsolationEnable TruthValue + } + + sniAttributeDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Device Index" + ::= {sniAttributeEntry 1 } + + sniAttributeCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Card Index" + ::= {sniAttributeEntry 2 } + + sniAttributePortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Port Index" + ::= {sniAttributeEntry 3 } + + sniPortName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Port Name" + ::= {sniAttributeEntry 4 } + + sniAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Admin Status" + ::= {sniAttributeEntry 5 } + + sniOperationStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operation Status" + ::= {sniAttributeEntry 6 } + + sniMediaType OBJECT-TYPE + SYNTAX INTEGER { + twistedPair(1), + fiber(2), + other(3) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Media Type" + ::= {sniAttributeEntry 7 } + + sniAutoNegotiationStatus OBJECT-TYPE + SYNTAX INTEGER { + auto-negotiate(1), + half-10(2), + full-10(3), + half-100(4), + full-100(5), + full-1000(6), + full-10000(7), + unknown(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Auto Negotiation Status" + ::= {sniAttributeEntry 8 } + + sniAutoNegotiationMode OBJECT-TYPE + SYNTAX INTEGER { + auto-negotiate(1), + half-10(2), + full-10(3), + half-100(4), + full-100(5), + full-1000(6), + full-10000(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Auto Negotiation Mode" + ::= {sniAttributeEntry 9 } + + sniPerfStats15minuteEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "true(1) false(2)" + ::= {sniAttributeEntry 10 } + + sniPerfStats24hourEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "true(1) false(2)" + ::= {sniAttributeEntry 11 } + + sniLastStatusChangeTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last Change Time" + ::= {sniAttributeEntry 12 } + + sniMacAddrLearnMaxNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of MAC address limited on the SNI port. + value 0 means no limit" + ::= {sniAttributeEntry 13 } + + sniIsolationEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether or not isolate the SNI port to other ports" + ::= {sniAttributeEntry 14 } + + sniTrunkManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + "" + ::= { sniObjects 2 } + + sniTrunkGroupConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniTrunkGroupConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of sniTrunkGroupConfigTable entries." + ::= {sniTrunkManagement 1 } + + sniTrunkGroupConfigEntry OBJECT-TYPE + SYNTAX SniTrunkGroupConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The sniTrunk Group Config Entry Information" + INDEX { sniTrunkGroupConfigIndex } + ::={sniTrunkGroupConfigTable 1 } + + SniTrunkGroupConfigEntry ::= SEQUENCE { + sniTrunkGroupConfigIndex INTEGER, + sniTrunkGroupConfigName DisplayString, + sniTrunkGroupConfigMember OCTET STRING, + sniTrunkGroupConfigPolicy INTEGER, + sniTrunkGroupConfigRowstatus RowStatus + } + + sniTrunkGroupConfigIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Trunk Group Config Index" + ::= {sniTrunkGroupConfigEntry 1 } + + sniTrunkGroupConfigName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Trunk Group Config Name" + ::= {sniTrunkGroupConfigEntry 2 } + + sniTrunkGroupConfigMember OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Trunk Group Config Member. + It is presented by member port list. Each member port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of member ports in the trunk group. + The relationship is: + Length of the string = 4 * (NUM of member ports) + For example, if device 1, port 1/2 and 2/3 is the member ports of the + trunk, then sniTrunkGroupConfigMember is presented as: + 01 01 02 00 01 02 03 00 + " + ::= {sniTrunkGroupConfigEntry 3 } + sniTrunkGroupConfigPolicy OBJECT-TYPE + SYNTAX INTEGER + { + srcMac(1), + destMac(2), + srcMacNDestMac(3), + srcIp(4), + destIp(5), + srcIpNDestIp(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Trunk Group Config Policy" + ::= {sniTrunkGroupConfigEntry 4 } + + sniTrunkGroupConfigRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Trunk Group Config Rowstatus" + ::= {sniTrunkGroupConfigEntry 5 } + + sniTrunkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "a list of sniTrunkGroupConfigTable entries. " + ::= {sniTrunkManagement 2 } + + sniTrunkGroupEntry OBJECT-TYPE + SYNTAX SniTrunkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Trunk Group Entry" + INDEX { sniTrunkGroupIndex } + ::={sniTrunkGroupTable 1 } + + SniTrunkGroupEntry ::= SEQUENCE { + sniTrunkGroupIndex INTEGER, + sniTrunkGroupOperationStatus INTEGER, + sniTrunkGroupActualSpeed INTEGER, + sniTrunkGroupAdminStatus INTEGER + } + + sniTrunkGroupIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Trunk Group Index " + ::= {sniTrunkGroupEntry 1 } + + sniTrunkGroupOperationStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Trunk Group Operation Status" + ::= {sniTrunkGroupEntry 2 } + + sniTrunkGroupActualSpeed OBJECT-TYPE + SYNTAX INTEGER + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Trunk Group Actual Speed. + The speed is the aggregated rates of all operational UP member + ports of the trunk. + For example, 4 member ports of the trunk, two are UP, each is 1000M + then the SUN is 2000M. As a result, the return of the MIB shall be + 2000Mbps" + ::= {sniTrunkGroupEntry 3 } + + sniTrunkGroupAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Trunk Group AdminStatus" + ::= {sniTrunkGroupEntry 4 } + + sniMirrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniMirrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "a list of sniMirrorTable entries." + ::= {sniObjects 3 } + + sniMirrorEntry OBJECT-TYPE + SYNTAX SniMirrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Mirror Information." + INDEX { sniMirrorGroupIndex } + ::={sniMirrorTable 1 } + + SniMirrorEntry ::= SEQUENCE { + sniMirrorGroupIndex INTEGER, + sniMirrorGroupName DisplayString, + sniMirrorGroupDstPortList OCTET STRING, + sniMirrorGroupSrcInPortList OCTET STRING, + sniMirrorGroupSrcOutPortList OCTET STRING, + sniMirrorGroupRowstatus RowStatus + } + + sniMirrorGroupIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mirror Group Index" + ::= {sniMirrorEntry 1 } + + sniMirrorGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror Group Name" + ::= {sniMirrorEntry 2 } + + sniMirrorGroupDstPortList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror Group Dst Port List. + It is presented by destination port list. Each port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of destination ports in this mirror + instance. + The relationship is: + Length of the string = 4 * (NUM of ports) + For example, if device 1, port 2/3 is the destination port of the + mirror instance, then object will be presented as: + 01 02 03 00 + " + ::= {sniMirrorEntry 3 } + + sniMirrorGroupSrcInPortList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror Group Src In Port List. + It will includes the PON ports. + It is presented by source ingress port list. Each port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of source ingress ports in this mirror + instance. + The relationship is: + Length of the string = 4 * (NUM of ports) + For example, if device 1, port 2/3, device 6, port 7/8 is the source + ingress port of the mirror instance, then object will be presented as: + 01 02 03 00 06 07 08 00 + " + ::= {sniMirrorEntry 4 } + + sniMirrorGroupSrcOutPortList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror Group Src Out Port List. + It will includes the PON ports. + It is presented by source egress port list. Each port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of source egress ports in this mirror + instance. + The relationship is: + Length of the string = 4 * (NUM of ports) + For example, if device 1, port 2/3, device 6, port 7/8 is the source + egress port of the mirror instance, then object will be presented as: + 01 02 03 00 06 07 08 00 + " + ::= {sniMirrorEntry 5 } + + sniMirrorGroupRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror Group Rowstatus" + ::= {sniMirrorEntry 6 } + + sniMacAddressManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + "" + ::= { sniObjects 4 } + + sniMacAddressManagementTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniMacAddressManagementEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " A list of MacAddressManagement entries. " + ::= { sniMacAddressManagement 1 } + + sniMacAddressManagementEntry OBJECT-TYPE + SYNTAX SniMacAddressManagementEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Mac Address Management Information" + INDEX { sniMacAddressManagementDeviceIndex } + ::= { sniMacAddressManagementTable 1 } + + SniMacAddressManagementEntry ::= SEQUENCE { + sniMacAddressManagementDeviceIndex INTEGER, + sniMacAddrTableAgingTime INTEGER, + sniMacAddrTableClear INTEGER + } + + sniMacAddressManagementDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "device Index" + ::= { sniMacAddressManagementEntry 1 } + + sniMacAddrTableAgingTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "Seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mac Address Table Aging Time" + ::= { sniMacAddressManagementEntry 2 } + + sniMacAddrTableClear OBJECT-TYPE + SYNTAX INTEGER { allDynamic(1) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mac Address Table Clear" + ::= { sniMacAddressManagementEntry 3 } + + sniMacAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniMacAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of MacAddress entries." + ::= { sniMacAddressManagement 2 } + + sniMacAddressEntry OBJECT-TYPE + SYNTAX SniMacAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Mac Address Information" + INDEX { sniMacAddrIndex, sniMacAddrVlanIdIndex } + ::= { sniMacAddressTable 1 } + + SniMacAddressEntry ::= SEQUENCE { + sniMacAddrIndex MacAddress, + sniMacAddrVlanIdIndex INTEGER, + sniMacAddrType INTEGER, + sniMacAddrPortId EponDeviceIndex, + sniMacAddrRowStatus RowStatus + } + + sniMacAddrIndex OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mac Address Index" + ::= { sniMacAddressEntry 1 } + + sniMacAddrVlanIdIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mac Address Vlan Id Index" + ::= { sniMacAddressEntry 2 } + + sniMacAddrType OBJECT-TYPE + SYNTAX INTEGER { + static(1), + dynamic(2), + other(3)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mac Address Type" + ::= { sniMacAddressEntry 3} + + sniMacAddrPortId OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mac Address Port Id" + ::= { sniMacAddressEntry 4 } + + sniMacAddrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "delete,create,Update" + ::= { sniMacAddressEntry 5 } + + sniBroadcastStormSuppressionTable OBJECT-TYPE + SYNTAX SEQUENCE OF SniBroadcastStormSuppressionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of BroadcastStormSuppression entries." + ::= { sniObjects 5 } + + sniBroadcastStormSuppressionEntry OBJECT-TYPE + SYNTAX SniBroadcastStormSuppressionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Broadcast Storm Suppression Information" + INDEX { sniBroadcastStormSuppressionDeviceIndex, sniBroadcastStormSuppressionCardIndex, sniBroadcastStormSuppressionPortIndex } + ::= { sniBroadcastStormSuppressionTable 1 } + + SniBroadcastStormSuppressionEntry ::= + SEQUENCE { + sniBroadcastStormSuppressionDeviceIndex INTEGER, + sniBroadcastStormSuppressionCardIndex EponCardIndex, + sniBroadcastStormSuppressionPortIndex EponPortIndex, + sniUnicastStormEnable TruthValue, + sniUnicastStormInPacketRate INTEGER, + sniUnicastStormOutPacketRate INTEGER, + sniMulticastStormEnable TruthValue, + sniMulticastStormInPacketRate INTEGER, + sniMulticastStormOutPacketRate INTEGER, + sniBroadcastStormEnable TruthValue, + sniBroadcastStormInPacketRate INTEGER, + sniBroadcastStormOutPacketRate INTEGER + } + + sniBroadcastStormSuppressionDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "device Index" + ::= { sniBroadcastStormSuppressionEntry 1 } + + sniBroadcastStormSuppressionCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "card Index" + ::= { sniBroadcastStormSuppressionEntry 2 } + + sniBroadcastStormSuppressionPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port Index" + ::= { sniBroadcastStormSuppressionEntry 3 } + + sniUnicastStormEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cast Storm Enable" + ::= { sniBroadcastStormSuppressionEntry 4 } + sniUnicastStormInPacketRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "pps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cast Storm In Packet Rate" + ::= { sniBroadcastStormSuppressionEntry 5 } + + sniUnicastStormOutPacketRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "pps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cast Storm Out Packet Rate" + ::= { sniBroadcastStormSuppressionEntry 6 } + + sniMulticastStormEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "true(1) false(2)" + ::= { sniBroadcastStormSuppressionEntry 7 } + + sniMulticastStormInPacketRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "pps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Multicast Storm In Packet Rate" + ::= { sniBroadcastStormSuppressionEntry 8 } + + sniMulticastStormOutPacketRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "pps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Multicast Storm Out Packet Rate" + ::= { sniBroadcastStormSuppressionEntry 9 } + + sniBroadcastStormEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "true(1) false(2)" + ::= { sniBroadcastStormSuppressionEntry 10 } + + sniBroadcastStormInPacketRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "pps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Broadcast Storm In Packet Rate" + ::= { sniBroadcastStormSuppressionEntry 11 } + + sniBroadcastStormOutPacketRate OBJECT-TYPE + SYNTAX INTEGER + UNITS "pps" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Broadcast Storm Out Packet Rate" + ::= { sniBroadcastStormSuppressionEntry 12 } + +-- +-- END of NSCRTV-EPON-SNI-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-STP-MGM-MIB b/mibs/fs/NSCRTV-EPON-STP-MGM-MIB new file mode 100644 index 0000000000..4764ff40ca --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-STP-MGM-MIB @@ -0,0 +1,493 @@ + +NSCRTV-EPON-STP-MGM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + BridgeId, Timeout + FROM BRIDGE-MIB + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + stpManagementObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- stpManagementObjects[STP¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.9) +-------------------------------------------------------------------------------- + + stpGlobalSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF StpGlobalSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + STPÈ«¾Ö±í" + ::= { stpManagementObjects 1 } + + stpGlobalSetEntry OBJECT-TYPE + SYNTAX StpGlobalSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { stpGlobalSetIndex } + ::= { stpGlobalSetTable 1 } + + StpGlobalSetEntry ::= + SEQUENCE { + stpGlobalSetIndex + EponDeviceIndex, + stpGlobalSetVersion + INTEGER, + stpGlobalSetPriority + INTEGER, + stpGlobalSetTimeSinceTopologyChange + TimeTicks, + stpGlobalSetTopChanges + Counter32, + stpGlobalSetDesignatedRoot + BridgeId, + stpGlobalSetRootCost + INTEGER, + stpGlobalSetRootPort + OCTET STRING, + stpGlobalSetMaxAge + Timeout, + stpGlobalSetHelloTime + Timeout, + stpGlobalSetHoldTime + INTEGER, + stpGlobalSetForwardDelay + Timeout, + stpGlobalSetBridgeMaxAge + Timeout, + stpGlobalSetBridgeHelloTime + Timeout, + stpGlobalSetBridgeForwardDelay + Timeout, + stpGlobalSetRstpTxHoldCount + INTEGER, + stpGlobalSetEnable + TruthValue + } + + stpGlobalSetIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Ë÷ÒýºÅ + For OLT - Set to corresponding device + For ONU - Set to 0 + " + ::= { stpGlobalSetEntry 1 } + + stpGlobalSetVersion OBJECT-TYPE + SYNTAX INTEGER + { + rstp(1), + stp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Éú³ÉÊ÷ЭÒé°æ±¾¡£" + DEFVAL { rstp } + ::= { stpGlobalSetEntry 2 } + + stpGlobalSetPriority OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ÓÅÏȼ¶¡£ + ÔÚÖ§³ÖIEEE 802.1d»òÕßIEEE 802.1wµÄÍøÇÅÉÏ£¬È¡Öµ·¶Î§ÊÇ0-61440£¬²½³¤ÊÇ4096¡£" + ::= { stpGlobalSetEntry 3 } + + stpGlobalSetTimeSinceTopologyChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ±ä¸üʱ¼ä£¬ÍøÇÅʵÌå¼ì²âµ½×î½üÒ»´ÎÍØÆË¸Ä±äÖ®ºó¾­ÀúµÄʱ¼ä¡£" + ::= { stpGlobalSetEntry 4 } + stpGlobalSetTopChanges OBJECT-TYPE + SYNTAX Counter32 + UNITS "topology changes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ±ä¸ü´ÎÊý£¬ÍøÇÅÖØÆô»ò³õʼ»¯»¯ÍØÆËµÄ±ä¸ü´ÎÊý¡£" + ::= { stpGlobalSetEntry 5 } + + stpGlobalSetDesignatedRoot OBJECT-TYPE + SYNTAX BridgeId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸ùÇÅ£¬Ö¸¶¨¸ùÇŵÄBridgeId¡£" + ::= { stpGlobalSetEntry 6 } + + stpGlobalSetRootCost OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸ù·¾¶¿ªÏú£¬ÍøÇŵ½¸ùÇŵÄ·¾¶ÏûºÄ¡£" + ::= { stpGlobalSetEntry 7 } + + stpGlobalSetRootPort OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸ù¶Ë¿Ú£¬ÊÇÁ¬½Ó±¾ÍøÇź͸ùÍøÇŵĶ˿ڣ¬ËüÌṩµÄ·¾¶ÏûºÄ×îС + The port is presented by three octets, in sequence of device ID, slot, + and port. + For ONU, device ID is meaningless and shall set 0. Slot and port shall + be set to corresponding value. + For OLT, device ID, slot, and port shall be set to corresponding value. + For example, + 01 02 03 means device 1, slot 2, port 3 is root port. + 0x00 04 05 means ONU slot 4, port 5 is root port. + " + ::= { stpGlobalSetEntry 8 } + + stpGlobalSetMaxAge OBJECT-TYPE + SYNTAX Timeout + UNITS "centi-seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ÀÏ»¯Ê±¼ä£¬¶Ë¿Ú´ÓÍøÂçÖÐѧϰµ½µÄÉú³ÉÊ÷ЭÒéÐÅÏ¢µÄÀÏ»¯Ê±¼ä£¬µ¥Î»£º1/100 secs¡£" + ::= { stpGlobalSetEntry 9 } + + stpGlobalSetHelloTime OBJECT-TYPE + SYNTAX Timeout + UNITS "centi-seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ±¨ÎÄ·¢Ëͼä¸ô£¬ÍøÇÅÔÚÈÎÒâ¶Ë¿Ú·¢ËÍÅäÖÃÍøÇÅPDUµÄʱ¼ä¼ä¸ô¡£" + ::= { stpGlobalSetEntry 10 } + + stpGlobalSetHoldTime OBJECT-TYPE + SYNTAX INTEGER + UNITS "centi-seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ά³Öʱ¼ä£¬ÔÚÕâ¸öʱ¼ä¼ä¸ôÄÚ£¬±¾ÍøÇŲ»»á·¢ËÍÁ½¸öÒÔÉÏÅäÖÃÍøÇÅPDU¡£" + ::= { stpGlobalSetEntry 11 } + + stpGlobalSetForwardDelay OBJECT-TYPE + SYNTAX Timeout + UNITS "centi-seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ת»»Ê±ÑÓ£¬¿ØÖÆÒ»¸ö¶Ë¿Ú¶à¿ìµØ¸Ä±ä×Ô¼ºµÄÉú³É״̬£¬¾ö¶¨Á˱¾¶Ë¿Ú¿ªÊ¼×ª·¢Ç°£¬ÔÚ¼àÌý״̬ºÍѧϰ״̬ÖÍÁô¶à³¤Ê±¼ä¡£ + µ±Ò»¸ö·¢ÏÖÒ»¸öÍØÆË±ä¸ü£¬²¢ÇÒÕýÔÚ´¦Àíʱ£¬Õâ¸öÖµÒ²ÓÃÀ´¿ØÖƶ¯Ì¬¹ýÂ˱íµÄÀÏ»¯Ê±¼ä¡£ + " + ::= { stpGlobalSetEntry 12 } + + stpGlobalSetBridgeMaxAge OBJECT-TYPE + SYNTAX Timeout (600..4000) + UNITS "centi-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Èç¹û±¾ÍøÇÅÊǸùÍøÇÅ£¬ÄÇôËùÓÐÍøÇŰÑÕâ¸öÖµÓÃ×÷ÀÏ»¯Ê±¼ä¡£" + ::= { stpGlobalSetEntry 13 } + + stpGlobalSetBridgeHelloTime OBJECT-TYPE + SYNTAX Timeout (100..1000) + UNITS "centi-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Èç¹û±¾ÍøÇÅÊǸùÍøÇÅ£¬ÄÇôËùÓÐÍøÇŰÑÕâ¸öÖµÓÃ×÷±¨ÎÄ·¢Ë͵Äʱ¼ä¼ä¸ô¡£" + ::= { stpGlobalSetEntry 14 } + + stpGlobalSetBridgeForwardDelay OBJECT-TYPE + SYNTAX Timeout (400..3000) + UNITS "centi-seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Èç¹û±¾ÍøÇÅÊǸùÍøÇÅ£¬ÄÇôËùÓÐÍøÇŰÑÕâ¸öÖµÓÃÓÚת»»Ê±ÑÓ¡£" + ::= { stpGlobalSetEntry 15 } + + stpGlobalSetRstpTxHoldCount OBJECT-TYPE + SYNTAX INTEGER (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´«ÊäÏÞËÙ£¬¶ÔRSTP£¬ÓÃÓÚÏÞÖÆ¶Ë¿ÚµÄ±¨ÎÄ·¢ËÍËÙÂÊ¡£" + DEFVAL { 3 } + ::= { stpGlobalSetEntry 16 } + + stpGlobalSetEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ʹÄÜ״̬£¬ÆôÓûò¹Ø±ÕSTP¡£true(1)Ϊ¿ªÆô¡£" + ::= { stpGlobalSetEntry 17 } + + stpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF StpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + STP¶Ë¿Ú±í" + ::= { stpManagementObjects 2 } + + stpPortEntry OBJECT-TYPE + SYNTAX StpPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { stpPortStpIndex, stpPortCardIndex, stpPortIndex } + ::= { stpPortTable 1 } + + StpPortEntry ::= + SEQUENCE { + stpPortStpIndex + EponDeviceIndex, + stpPortCardIndex + EponCardIndex, + stpPortIndex + EponPortIndex, + stpPortStatus + INTEGER, + stpPortPriority + INTEGER, + stpPortPathCost + INTEGER, + stpPortDesignatedRoot + BridgeId, + stpPortDesignatedCost + INTEGER, + stpPortDesignatedBridge + BridgeId, + stpPortDesignatedPort + Gauge32, + stpPortForwardTransitions + Unsigned32, + stpPortRstpProtocolMigration + TruthValue, + stpPortRstpAdminEdgePort + TruthValue, + stpPortRstpOperEdgePort + TruthValue, + stpPortPointToPointAdminStatus + INTEGER, + stpPortPointToPointOperStatus + TruthValue, + stpPortEnabled + TruthValue + } + + stpPortStpIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Ë÷ÒýºÅ¡£ + For OLT - Set to corresponding device/SLOT/PORT + For ONU - Set to 0 + " + ::= { stpPortEntry 1 } + + stpPortCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Epon°å¿¨Ë÷ÒýºÅ + For OLT, set to 0 + For ONU, set to correspond card index" + ::= { stpPortEntry 2 } + + stpPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚºÅ£¬¶ÔOLTΪSNI/PON port£¬¶ÔONUΪUNI¶Ë¿ÚºÅ¡£ + For OLT, set to 0 + For ONU, set to correspond port index" + ::= { stpPortEntry 3 } + + stpPortStatus OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + blocking(2), + listening(3), + learning(4), + forwarding(5), + broken(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " +¶Ë¿Ú״̬£¬ÓÉÉú³ÉÊ÷ЭÒéµÄÓ¦ÓóÌÐò¶¨Ò壬¶ÔÓÚ±»½ûÓÃSTPµÄ¶Ë¿Ú£¬Õâ¸ö״̬Ӧ¸ÃΪdisable¡£" + ::= { stpPortEntry 4 } + + stpPortPriority OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¶Ë¿ÚÓÅÏȼ¶" + ::= { stpPortEntry 5 } + + stpPortPathCost OBJECT-TYPE + SYNTAX INTEGER (1..200000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " +¶Ë¿Ú·¾¶¿ªÏú£¬±¾¶Ë¿ÚÔÚͨÍùÉú³ÉÊ÷¸ùµÄ·¾¶ÉÏÔö¼ÓµÄ·¾¶ÏûºÄ802.1D-1998ÍÆ¼öÕâ¸ö²ÎÊýµÄĬÈÏÖµ¸úÁ¬½ÓLANµÄËٶȳɷ´±È¡£" + ::= { stpPortEntry 6 } + + stpPortDesignatedRoot OBJECT-TYPE + SYNTAX BridgeId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " +Ö¸¶¨¸ùÍøÇÅ£¬ÔÚÅäÖÃBPDUÖб»¼Ç¼Ϊ¸ùµÄÍøÇŵıêʶ·û£¬ÕâЩÅäÖÃBPDUÓÉÖ¸¶¨ÍøÇÅ·¢ËÍ£¬¶øÖ¸¶¨ÍøÇÅÓÃÓÚ¸úÕâ¸ö¶Ë¿ÚÏàÁ¬µÄÍø¶Î¡£" + ::= { stpPortEntry 7 } + + stpPortDesignatedCost OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " +Ö¸¶¨Â·¾¶¿ªÏú£¬¸ú±¾¶Ë¿ÚÏàÁ¬µÄÍø¶ÎµÄÖ¸¶¨¶Ë¿ÚµÄ·¾¶ÏûºÄ£¬Õâ¸öÖµ»á¸ú½ÓÊܵ½µÄÍøÇÅPDUÖеĸù·¾¶ÏûºÄ×ֶνøÐбȽϡ£" + ::= { stpPortEntry 8 } + + stpPortDesignatedBridge OBJECT-TYPE + SYNTAX BridgeId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Ö¸¶¨ÍøÇÅID£¬±¾¶Ë¿ÚÈÏΪµÄ±¾¶Ë¿ÚµÄÍø¶ÎµÄÖ¸¶¨ÍøÇŵıêʶ·û¡£" + ::= { stpPortEntry 9 } + + stpPortDesignatedPort OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Ö¸¶¨¶Ë¿Ú£¬Ö¸¶¨ÍøÇÅÉÏÓÃÓÚ±¾¶Ë¿ÚÍø¶ÎµÄ¶Ë¿ÚµÄ±êʶ·û¡£" + ::= { stpPortEntry 10 } + + stpPortForwardTransitions OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ±¾¶Ë¿ÚÒѾ­´Óѧϰ״̬ת±äµ½×ª·¢×´Ì¬µÄʱ¼ä¡£" + ::= { stpPortEntry 11 } + + stpPortRstpProtocolMigration OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " +ЭÒéÇ¨ÒÆ£¬Èç¹û²Ù×÷ÔÚRSTPģʽ£¬½«Õâ¸ö½ÚµãÉèÖÃΪTRUE(1)»áÇ¿ÖÆÕâ¸ö¶Ë¿Ú·¢ËÍRSTP BPDU£¬¶Á²Ù×÷ÎÞÒ⣬×Ü·µ»ØFALSE(2)¡£" + ::= { stpPortEntry 12 } + + stpPortRstpAdminEdgePort OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " +±ßÔµ¶Ë¿Ú¹ÜÀí״̬£¬Ö¸¶¨¸Ã¶Ë¿ÚÊÇ·ñΪ±ßÔµ¶Ë¿Ú£¬ÉèÖøýڵ㽫µ¼ÖÂÏàÓ¦µÄstpPortRstpOperEdgePort½ÚµãÉèÖóÉͬÑùµÄÖµ¡£ + µ±ÉèÖóÉtrue(1)£¬µ«¶Ë¿ÚÉÏÊÕµ½Ò»¸öBPDUʱ£¬stpPortRstpOperEdgePort½«±ä³Éfalse(2)¡£ + " + ::= { stpPortEntry 13 } + + stpPortRstpOperEdgePort OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " +±ßÔµ¶Ë¿Ú״̬£¬Õâ¸ö½Úµã±»³õʼ»¯³ÉstpPortRstpAdminEdgePortµÄÖµ£¬½ÓÊÕµ½Ò»¸öBPDUʱ±»ÉèÖóÉfalse(2)¡£" + ::= { stpPortEntry 14 } + stpPortPointToPointAdminStatus OBJECT-TYPE + SYNTAX INTEGER + { + forceFalse(0), + forceTrue(1), + auto(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Á¬½Óµ½±¾¶Ë¿ÚÍø¶ÎµÄµã¶Ôµã¹ÜÀí״̬¡£" + ::= { stpPortEntry 15 } + + stpPortPointToPointOperStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Á¬½Óµ½±¾¶Ë¿ÚÍø¶ÎµÄµã¶Ôµãʵ¼Ê״̬¡£" + ::= { stpPortEntry 16 } + + stpPortEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¶Ë¿ÚʹÄÜ״̬£¬true(1)Ϊ¿ªÆô¡£" + ::= { stpPortEntry 17 } + +-- +-- END of NSCRTV-EPON-STP-MGM-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-SYSTEM-MIB b/mibs/fs/NSCRTV-EPON-SYSTEM-MIB new file mode 100644 index 0000000000..c988557b3b --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-SYSTEM-MIB @@ -0,0 +1,1138 @@ + +NSCRTV-EPON-SYSTEM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + systemObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- systemObjects [ϵͳÊôÐÔ²ÎÊý¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.1) +-------------------------------------------------------------------------------- + systemGlobalObjects OBJECT-IDENTITY + STATUS current + DESCRIPTION + "È«¾Ö²ÎÊý±í" + ::= { systemObjects 1 } + + systemTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ½Úµãϵͳʱ¼ä + ½¨Òé²ÉÓÃ8×Ö½Ú¶¨Ò壬²»°üÀ¨Ê±Çø" + ::= { systemGlobalObjects 1 } + + inbandIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÄÚ¹ÜÀí½Ó¿ÚIPµØÖ·" + ::= { systemGlobalObjects 2 } + + inbandIpSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÄÚ¹ÜÀí½Ó¿ÚIPÑÚÂë" + ::= { systemGlobalObjects 3 } + + inbandIpGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÄÚ¹ÜÀí½Ó¿ÚÍø¹ØIPµØÖ·" + ::= { systemGlobalObjects 4 } + + inbandVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÄÚ¹ÜÀí½Ó¿ÚVLAN ID. + + ´øÄÚ¹ÜÀíVLANµÄ³ÉÔ±¹ØÏµÓÉVLAN±í¶¨Òå" + ::= { systemGlobalObjects 5 } + + inbandMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ´øÄÚ¹ÜÀí½Ó¿ÚMACµØÖ·." + ::= { systemGlobalObjects 6 } + + outbandIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÍâ¹ÜÀí½Ó¿ÚIPµØÖ·" + ::= { systemGlobalObjects 7 } + + outbandIpSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÍâ¹ÜÀí½Ó¿ÚIPÑÚÂë" + ::= { systemGlobalObjects 8 } + + outbandIpGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ´øÍâ¹ÜÀí½Ó¿ÚÍø¹ØIPµØÖ·" + ::= { systemGlobalObjects 9 } + + outbandMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ´øÍâ¹ÜÀí½Ó¿ÚMACµØÖ·" + ::= { systemGlobalObjects 10 } + + systemOUI OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ϵͳOUI" + ::= { systemGlobalObjects 11 } + + vendorName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Vender name of the OLT equipment" + ::= { systemGlobalObjects 12 } + + Save OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + save olt running-config" + ::= { systemGlobalObjects 13 } + + Clear OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + clear olt running-config" + ::= { systemGlobalObjects 14 } + + oltObjects OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + OLT¹ÜÀíÏî½Úµã" + ::= { systemObjects 2 } + + oltPropertyTable OBJECT-TYPE + SYNTAX SEQUENCE OF OltPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLTÊôÐÔ±í" + ::= { oltObjects 1 } + + oltPropertyEntry OBJECT-TYPE + SYNTAX OltPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { oltDeviceIndex } + ::= { oltPropertyTable 1 } + + OltPropertyEntry ::= + SEQUENCE { + oltDeviceIndex + INTEGER, + oltName + DisplayString, + oltType + DisplayString, + oltAdminStatus + INTEGER, + oltDeviceUpTime + TimeStamp, + oltDeviceNumOfTotalServiceSlot + INTEGER, + oltDeviceNumOfTotalPowerSlot + INTEGER, + oltDeviceNumOfTotalFanSlot + INTEGER, + oltDeviceStyle + INTEGER + + } + + oltDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLTÉ豸Ë÷ÒýºÅ¡£ + + Ò»¸öOLT½Úµã¿ÉÒÔÓɶą̀OLTÉ豸×é³É¡£½ÚµãÄÚµÄÿ̨OLTÉ豸ÓÉOLTÉ豸Ë÷ÒýºÅΨһ±êʶ" + ::= { oltPropertyEntry 1 } + + oltName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸ÃOLTÉ豸µÄÃû³Æ" + ::= { oltPropertyEntry 2 } + + oltType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + OLTÉ豸ÀàÐÍ" + ::= { oltPropertyEntry 3 } + + oltAdminStatus OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + OLTÉ豸¹ÜÀí״̬ + up(1) - É豸ÔÊÐíÌṩҵÎñ + down(2) - É豸½ûÖ¹ÌṩҵÎñ + testing(3) - É豸´¦ÓÚ²âÊÔ״̬£¬¸Ã״̬Ï¿ÉÄÜÎÞ·¨Õý³£ÌṩҵÎñ" + ::= { oltPropertyEntry 4 } + + oltDeviceUpTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸ÃOLTÉ豸Æô¶¯Ê±³¤" + ::= { oltPropertyEntry 5 } + + oltDeviceNumOfTotalServiceSlot OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total number of service slots in the OLT device, including + service card, switch card, control card, uplink card, etc. + but except power, FAN, regardless whether the slot is installed + module" + ::= { oltPropertyEntry 6 } + + oltDeviceNumOfTotalPowerSlot OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total number of power slots in the OLT device, regardless whether + the slot is installed module" + ::= { oltPropertyEntry 7 } + + oltDeviceNumOfTotalFanSlot OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total number of FAN slots in the OLT device, regardless whether + the slot is installed module" + ::= { oltPropertyEntry 8 } + + oltDeviceStyle OBJECT-TYPE + SYNTAX INTEGER + { + fixed(1), + chassisBased(2), + other(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The device stype of either fixed or chassis based£º + fixed(1) - such as pizza box + chassisBased(2) - Have number of slots for installing service card, power card, etc. + " + ::= { oltPropertyEntry 9 } + + boardObjects OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + °å¿¨¹ÜÀíÏî" + ::= { systemObjects 3 } + + boardTable OBJECT-TYPE + SYNTAX SEQUENCE OF BoardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table shall include rows for all slots, including the slots has + a presence state of 'NotInstalled'. + " + ::= { boardObjects 1 } + + boardEntry OBJECT-TYPE + SYNTAX BoardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { bDeviceIndex, bCardIndex} + ::= { boardTable 1 } + + BoardEntry ::= + SEQUENCE { + bDeviceIndex + INTEGER, + bCardIndex + EponCardIndex, + bType + INTEGER, + bAttribute + INTEGER, + bOperationStatus + INTEGER, + bAdminStatus + INTEGER, + bHardwareVersion + DisplayString, + bFirmwareVersion + DisplayString, + bSoftwareVersion + DisplayString, + bUpTime + TimeStamp, + bAlarmStatus + BITS, + bSerialNumber + DisplayString, + bAction + INTEGER, + bName + OCTET STRING, + bPresenceStatus + INTEGER + } + + bDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { boardEntry 1 } + + bCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { boardEntry 2 } + + bType OBJECT-TYPE + SYNTAX INTEGER + { + controlBoard(1), + geponBoard(2), + uplinkBoard(3), + switchBoard(4), + other(5), + vacant(6), + controlUplinkBoard(7), + ponUplinkBoard(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + " + ::= { boardEntry 3 } + + bAttribute OBJECT-TYPE + SYNTAX INTEGER + { + active(1), + standby(2), + standalone(3), + notApplicable(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "" + ::= { boardEntry 4 } + + bOperationStatus OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨²Ù×÷״̬ + + up(1) - ¸Ã°å¿¨¿ÉÒÔÌṩҵÎñ + down(2) - ¸Ã°å¿¨ÎÞ·¨ÌṩҵÎñ + testing(3) - ¸Ã°å¿¨´¦ÓÚ²âÊÔ״̬£¬¸Ã״̬Ï¿ÉÄÜÎÞ·¨Õý³£ÌṩҵÎñ" + ::= { boardEntry 5 } + + bAdminStatus OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + °å¿¨¹ÜÀí״̬ + up(1) - ¸Ã°å¿¨ÔÊÐíÌṩҵÎñ + down(2) - ¸Ã°å¿¨½ûÖ¹ÌṩҵÎñ + testing(3) - ¸Ã°å¿¨´¦ÓÚ²âÊÔ״̬£¬¸Ã״̬Ï¿ÉÄÜÎÞ·¨Õý³£ÌṩҵÎñ" + ::= { boardEntry 6 } + + bHardwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨Ó²¼þ°æ±¾" + ::= { boardEntry 7 } + + bFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨¹Ì¼þ°æ±¾" + ::= { boardEntry 8 } + + bSoftwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨Èí¼þ°æ±¾" + ::= { boardEntry 9 } + + bUpTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨ÔÚÏßʱ¼ä" + ::= { boardEntry 10 } + + bAlarmStatus OBJECT-TYPE + SYNTAX BITS + { + critical(0), + major(1), + minor(2), + warning(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨¸æ¾¯×´Ì¬" + ::= { boardEntry 11 } + + bSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + °å¿¨SN" + ::= { boardEntry 12 } + + bAction OBJECT-TYPE + SYNTAX INTEGER + { + noAction(1), + switchover(2), + upgrade(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¶Ô°å¿¨Ê©¼ÓµÄ²Ù×÷ + noAction(1) - ±íʾûÓÐÈκβÙ×÷£¬ÓÃÓÚĬÈÏÉèÖÃºÍÆäËû²Ù×÷Íê³Éºó»Ö¸´Öµ + switchover(2) - Ö÷±¸Çл»£¬Ö»Õë¶ÔÖ÷¿Ø¿¨ºÍ½»»»¿¨ + upgrade(3) - °å¿¨Èí¼þÉý¼¶" + ::= { boardEntry 13 } + bName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The board name defined by vendor individual" + ::= { boardEntry 14 } + + bPresenceStatus OBJECT-TYPE + SYNTAX INTEGER + { + installed(1), + notInstalled(2), + others(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical presence status of the slot" + ::= { boardEntry 15 } + + powerObjects OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + µçÔ´±íÄ£¿éÁбí" + ::= { systemObjects 4 } + + powerPropertyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + µçÔ´°åÊôÐÔ±í" + ::= { powerObjects 1 } + + powerPropertyEntry OBJECT-TYPE + SYNTAX PowerPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { powerDeviceIndex, powerCardIndex} + ::= { powerPropertyTable 1 } + + PowerPropertyEntry ::= + SEQUENCE { + powerDeviceIndex + INTEGER, + powerCardIndex + EponCardIndex, + powerCardOperationStatus + INTEGER, + powerCardAlarmStatus + BITS, + powerCardAction + INTEGER, + powerCardName + OCTET STRING, + powerCardPresenceStatus + INTEGER, + powerCardRedundancyStatus + INTEGER + } + + powerDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLTÉ豸Ë÷ÒýºÅ¡£ + Ò»¸öOLT½Úµã¿ÉÒÔÓɶą̀OLTÉ豸×é³É¡£½ÚµãÄÚµÄÿ̨OLTÉ豸ÓÉOLTÉ豸Ë÷ÒýºÅΨһ±êʶ" + ::= { powerPropertyEntry 1 } + + powerCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { powerPropertyEntry 2 } + + powerCardOperationStatus OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + µçÔ´°å²Ù×÷״̬ + up(1) - ¸Ã°å¿¨¿ÉÒÔÌṩҵÎñ + down(2) - ¸Ã°å¿¨ÎÞ·¨ÌṩҵÎñ + testing(3) - ¸Ã°å¿¨´¦ÓÚ²âÊÔ״̬£¬¸Ã״̬Ï¿ÉÄÜÎÞ·¨Õý³£ÌṩҵÎñ" + ::= { powerPropertyEntry 3 } + + powerCardAlarmStatus OBJECT-TYPE + SYNTAX BITS + { + critical(0), + major(1), + minor(2), + warning(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + µçÔ´°å¸æ¾¯×´Ì¬" + ::= { powerPropertyEntry 4 } + + powerCardAction OBJECT-TYPE + SYNTAX INTEGER + { + noAction(1), + switchover(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¶ÔµçÔ´°åÊ©¼ÓµÄ²Ù×÷ + noAction(1) - ±íʾûÓÐÈκβÙ×÷£¬ÓÃÓÚĬÈÏÉèÖÃºÍÆäËû²Ù×÷Íê³Éºó»Ö¸´Öµ + switchover(2) - Ö÷±¸Çл»£¬Èç¹ûµçÔ´¹¤×÷ÔÚÖ÷±¸Ä£Ê½ + + Note: + + Switchover(2) shall be only set to the power board with powerCardRedundancyStatus + of active(1)" + ::= { powerPropertyEntry 5 } + + powerCardName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The power card name defined by vendor individual" + ::= { powerPropertyEntry 6 } + + powerCardPresenceStatus OBJECT-TYPE + SYNTAX INTEGER + { + installed(1), + notInstalled(2), + others(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical presence status of the power slot" + ::= { powerPropertyEntry 7 } + + powerCardRedundancyStatus OBJECT-TYPE + SYNTAX INTEGER + { + active(1), + stanby(2), + standalone(3), + loadShareing(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The redundancy status of the power card£º + active(1) - The power card is working on redundanct active/ + Standby mode and the current role is active. + stanby(2) - The power card is working on redundanct active/ + Standby mode and the current role is standby. + standalone(3) - The power card is not working on redundanct mode + and the current role is standalone. + loadShareing(4) - The power card is working on redundanct loadsharing + mode. + " + ::= { powerPropertyEntry 8 } + + fanObjects OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + ·çÉȱí" + ::= { systemObjects 5 } + + fanPropertyTable OBJECT-TYPE + SYNTAX SEQUENCE OF FanPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ·çÉÈÊôÐÔ±í" + ::= { fanObjects 1 } + + fanPropertyEntry OBJECT-TYPE + SYNTAX FanPropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { fanDeviceIndex, fanCardIndex} + ::= { fanPropertyTable 1 } + + FanPropertyEntry ::= + SEQUENCE { + fanDeviceIndex + INTEGER, + fanCardIndex + EponCardIndex, + fanCardOperationStatus + INTEGER, + fanCardAlarmStatus + BITS, + fanCardName + OCTET STRING, + fanCardPresenceStatus + INTEGER + } + + fanDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLTÉ豸Ë÷ÒýºÅ¡£ + Ò»¸öOLT½Úµã¿ÉÒÔÓɶą̀OLTÉ豸×é³É¡£½ÚµãÄÚµÄÿ̨OLTÉ豸ÓÉOLTÉ豸Ë÷ÒýºÅΨһ±êʶ" + ::= { fanPropertyEntry 1 } + + fanCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { fanPropertyEntry 2 } + + fanCardOperationStatus OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ·çÉȰå²Ù×÷״̬ + up(1) - ¸Ã°å¿¨¿ÉÒÔÌṩҵÎñ + down(2) - ¸Ã°å¿¨ÎÞ·¨ÌṩҵÎñ + testing(3) - ¸Ã°å¿¨´¦ÓÚ²âÊÔ״̬£¬¸Ã״̬Ï¿ÉÄÜÎÞ·¨Õý³£ÌṩҵÎñ" + ::= { fanPropertyEntry 3 } + + fanCardAlarmStatus OBJECT-TYPE + SYNTAX BITS + { + critical(0), + major(1), + minor(2), + warning(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ·çÉÈ°å¸æ¾¯×´Ì¬" + ::= { fanPropertyEntry 4 } + + fanCardName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The FAN card name defined by vendor individual" + ::= { fanPropertyEntry 5 } + + fanCardPresenceStatus OBJECT-TYPE + SYNTAX INTEGER + { + installed(1), + notInstalled(2), + others(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical presence status of the FAN card slot" + ::= { fanPropertyEntry 6 } + + fileTransferManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + Îļþ´«Êä½Úµã" + ::= { systemObjects 6 } + + fileTransferTable OBJECT-TYPE + SYNTAX SEQUENCE OF FileTransferEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Îļþ´«Êä½ø³Ì±í" + ::= { fileTransferManagement 1 } + + fileTransferEntry OBJECT-TYPE + SYNTAX FileTransferEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { fileTransferIndex } + ::= { fileTransferTable 1 } + + FileTransferEntry ::= + SEQUENCE { + fileTransferIndex + INTEGER, + fileTransferProtocolType + INTEGER, + serverIpAddress + IpAddress, + ftpUserName + DisplayString, + ftpUserPassword + DisplayString, + transferFileSrcNamePath + DisplayString, + transferFileDstNamePath + DisplayString, + transferAction + INTEGER, + transferStatus + INTEGER + } + + fileTransferIndex OBJECT-TYPE + SYNTAX INTEGER (1..10) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Îļþ´«Ëͽø³ÌÁ÷Ë®ºÅ" + ::= { fileTransferEntry 1 } + + fileTransferProtocolType OBJECT-TYPE + SYNTAX INTEGER + { + ftp(1), + tftp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³ÌʹÓõÄÎļþ´«ÊäЭÒéÀàÐÍ" + ::= { fileTransferEntry 2 } + + serverIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³ÌʹÓõķþÎñÆ÷IPµØÖ·" + ::= { fileTransferEntry 3 } + + ftpUserName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³ÌʹÓõÄÓû§Ãû£¬½öÊÊÓÃÓÚFTPЭÒé" + ::= { fileTransferEntry 4 } + + ftpUserPassword OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³ÌʹÓõÄÃÜÂ룬½öÊÊÓÃÓÚFTPЭÒé" + ::= { fileTransferEntry 5 } + + transferFileSrcNamePath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³Ì¶ÔÓ¦µÄÎļþÔ´Ãû³ÆÂ·¾¶£¬±ÈÈç¡®/tftproot/file/image.bin" + ::= { fileTransferEntry 6 } + + transferFileDstNamePath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³Ì¶ÔÓ¦µÄÎļþÄ¿µÄÃû³ÆÂ·¾¶£¬±ÈÈç¡®/tftproot/file/image.bin" + ::= { fileTransferEntry 7 } + + transferAction OBJECT-TYPE + SYNTAX INTEGER + { + noOperation(1), + put(2), + get(3), + halt(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¸Ã½ø³Ì¶ÔÓ¦µÄÎļþ´«Ê䶯×÷ + noOperation(1) - ±íʾûÓÐÈκδ«Êä²Ù×÷£¬ÓÃÓÚĬÈÏÉèÖÃºÍÆäËû²Ù×÷Íê³Éºó»Ö¸´Öµ + put(2) - ÉÏ´«Îļþ + get(3) - ÏÂÔØÎļþ + halt(4) - Í£Ö¹Îļþ´«ËÍ" + ::= { fileTransferEntry 8 } + + transferStatus OBJECT-TYPE + SYNTAX INTEGER + { + idle(1), + inProgress(2), + success(3), + failure(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ¸Ã½ø³Ì¶ÔÓ¦µÄÎļþ´«Êä״̬ + idle(1) - ¿ÕÏÐ + inProgress(2) - ÕýÔÚ´«ËÍÖÐ + success(3) - ´«Ëͳɹ¦ + failure(4) - ´«ËÍʧ°Ü" + ::= { fileTransferEntry 9 } + + + fileInfoManagementTable OBJECT-TYPE + SYNTAX SEQUENCE OF FileInfoManagementEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLTÎļþÐÅÏ¢¹ÜÀí±í + It is done by file list per directionary. + Please walk filePath for the file lists in the specified + path. If leave it NULL or walk fileInfoManagementEntry, + the file list of the root directionary shall be returned + " + ::= { fileTransferManagement 2 } + + fileInfoManagementEntry OBJECT-TYPE + SYNTAX FileInfoManagementEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { filePath, fileName } + ::= { fileInfoManagementTable 1 } + + FileInfoManagementEntry ::= + SEQUENCE { + filePath + DisplayString, + fileName + DisplayString, + fileSize + Counter32, + fileModifyTime + DateAndTime, + fileManagementAction + INTEGER, + fileAttribute + INTEGER + } + + filePath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + File path + It shall be started with a length octet, followed with path string. The length octet + shall indicate the number of character octets, excluding length itself. + For example, 0x05 41 42 43 44 45, respresents ABCDE + It shall be ended with '/', which is used to distinguish the two DisplayString + indexes. For example, if the path is flash/root, filePath shall be set to flash/root/. + " + ::= { fileInfoManagementEntry 1 } + fileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + File name. MUST not include '/' character and MUST not be NULL. + It shall be started with a length octet, followed with name string. The length octet + shall indicate the number of character octets, excluding length itself. + For example, 0x05 41 42 43 44 45, respresents ABCDE + " + ::= { fileInfoManagementEntry 2 } + + fileSize OBJECT-TYPE + SYNTAX Counter32 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Îļþ´óС£¬ÒÔ×Ö½ÚΪµ¥Î»" + ::= { fileInfoManagementEntry 3 } + + fileModifyTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ÎļþÐÞ¸Äʱ¼ä" + ::= { fileInfoManagementEntry 4 } + + fileManagementAction OBJECT-TYPE + SYNTAX INTEGER + { + noOperation(1), + erase(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¶ÔÎļþÊ©¼ÓµÄ¶¯×÷ + noOperation(1) - ±íʾûÓÐÈκδ«Êä²Ù×÷£¬ÓÃÓÚĬÈÏÉèÖÃºÍÆäËû²Ù×÷Íê³Éºó»Ö¸´Öµ + erase(2) - Îļþɾ³ý" + ::= { fileInfoManagementEntry 5 } + + fileAttribute OBJECT-TYPE + SYNTAX INTEGER + { + file(1), -- It is a file + dir(2) -- It is a directionary + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The attribute of the file" + ::= { fileInfoManagementEntry 6 } + + onuUpgradeManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + "" + ::= { systemObjects 7 } + + onuBatchUpgradeObjects OBJECT IDENTIFIER ::= { onuUpgradeManagement 1 } + + onuBatchUpgradeOnuList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..1024)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OnuÁÐ±í£¬Ã¿4byte±íʾһ¸öonu£¨²ÎÕÕEponDeviceIndex£©£¬³¤¶ÈΪ4 * £¨onu¸öÊý£©£¬×î´ó³¤¶ÈÊÇ4*256" + ::= { onuBatchUpgradeObjects 1 } + + onuBatchUpgradeAction OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "дÈëÈÎÒâÖµ´¥·¢Éý¼¶" + ::= { onuBatchUpgradeObjects 2 } + + onuBatchUpgradeStatus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OnuÁÐ±í£¬Ã¿2byte±íʾһ¸öonuµÄÉý¼¶×´Ì¬£¬³¤¶ÈΪ2 * £¨onu¸öÊý£©£¬Í¬µ±Ç°Éý¼¶ÈÎÎñµÄonulistÒ»Ò»¶ÔÓ¦ + ״̬Âë˵Ã÷£º + 1£ºIdle + 2£ºWaiting + 3£ºInProgress + 4£ºSuccess + 5£ºFailure£¨²»È·¶¨Ô­ÒòµÄ´íÎó£© + 6£ºOnuTypeNotConsistent£¨OnuÀàÐͲ»Ò»Ö£© + 7£ºFileDownloadFail£¨ÏÂÔØ¾µÏñʧ°Ü£¬°üÀ¨OLTÄÚ²¿°å¿¨¼ä´«Êäʧ°Ü»òÕßÎļþǰÖÃУÑéʧ°Ü£© + 8£ºOnuNotExist£¨OnuµôÏß»òÕß±ðµÄµ¼ÖÂOnuidʧЧµÄÇé¿ö£© + 9£ºNotConsistent£¨OnuͬÉý¼¶Îļþ²»Æ¥Å䣩 + 10£ºOnuCommunicationFail£¨OnuͨÐÅʧ°Ü£© + " + ::= { onuBatchUpgradeObjects 3 } + +-- +-- END of NSCRTV-EPON-SYSTEM-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPON-VLAN-MGM-MIB b/mibs/fs/NSCRTV-EPON-VLAN-MGM-MIB new file mode 100644 index 0000000000..68be566aaf --- /dev/null +++ b/mibs/fs/NSCRTV-EPON-VLAN-MGM-MIB @@ -0,0 +1,947 @@ + +NSCRTV-EPON-VLAN-MGM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType, + AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType + FROM NSCRTV-EPONEOC-EPON-MIB + vlanManagementObjects + FROM NSCRTV-EPONEOC-EPON-MIB; + +-------------------------------------------------------------------------------- +-- vlanManagementObjects [VLAN¹ÜÀíÏî](1.3.6.1.4.1.17409.2.3.7) +-------------------------------------------------------------------------------- + vlanGlobalInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanGlobalInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + È«¾ÖVLANÐÅÏ¢±í" + ::= { vlanManagementObjects 1 } + + vlanGlobalInfoEntry OBJECT-TYPE + SYNTAX VlanGlobalInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { vlanDeviceIndex } + ::= { vlanGlobalInfoTable 1 } + + VlanGlobalInfoEntry ::= + SEQUENCE { + vlanDeviceIndex + INTEGER, + maxVlanId + INTEGER, + maxSupportVlans + INTEGER, + createdVlanNumber + INTEGER + } + + vlanDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + É豸Ë÷ÒýºÅ¡£ + For OLT, set to corresponding device ID + For ONU, set to 0" + ::= { vlanGlobalInfoEntry 1 } + + maxVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ×î´óVLAN ID" + ::= { vlanGlobalInfoEntry 2 } + + maxSupportVlans OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ×î´óÖ§³ÖµÄVLAN¸öÊý" + ::= { vlanGlobalInfoEntry 3 } + + createdVlanNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ÒÑ´´½¨µÄVLAN¸öÊý" + ::= { vlanGlobalInfoEntry 4 } + + vlanConfigGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + VlanÅäÖÃ×é" + ::= { vlanManagementObjects 2 } + + oltVlanConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF OltVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLT VLAN³ÉÔ±ÅäÖñí" + ::= { vlanConfigGroup 1 } + + oltVlanConfigEntry OBJECT-TYPE + SYNTAX OltVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { oltVlanIndex, oltVlanDeviceIndex} + ::= { oltVlanConfigTable 1 } + + OltVlanConfigEntry ::= + SEQUENCE { + oltVlanIndex + INTEGER, + oltVlanDeviceIndex + INTEGER, + oltVlanName + OCTET STRING, + taggedPort + OCTET STRING, + untaggedPort + OCTET STRING, + oltVlanRowStatus + RowStatus + } + + oltVlanIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + VlanË÷ÒýºÅ" + ::= { oltVlanConfigEntry 1 } + + oltVlanDeviceIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLTÉ豸Ë÷ÒýºÅ¡£ + " + ::= { oltVlanConfigEntry 2 } + + oltVlanName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + OLT VLAN name" + ::= { oltVlanConfigEntry 3 } + + taggedPort OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Vlan°üÀ¨µÄtagµÄPON/SNI in OLT¡£ + It is presented by member port list. Each member port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of member ports in the port list. + The relationship is: + Length of the string = 4 * (NUM of member ports) + For example, if device 1, port 1/2 and 2/3 is the member ports, + then this object will be presented as: + 01 01 02 00 01 02 03 00 + " + ::= { oltVlanConfigEntry 4 } + + untaggedPort OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Vlan°üÀ¨µÄUntagµÄPON/SNI in OLT¡£ + It is presented by member port list. Each member port is identified + by 4-byte format, same as TC of EponDeviceIndex. The actual length of + this string depends of the number of member ports in the port list. + The relationship is: + Length of the string = 4 * (NUM of member ports) + For example, if device 1, port 1/2 and 2/3 is the member ports, + then this object will be presented as: + 01 01 02 00 01 02 03 00 + " + ::= { oltVlanConfigEntry 5 } + + oltVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬" + ::= { oltVlanConfigEntry 6 } + + onuVlanConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF OnuVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ONU VLAN³ÉÔ±ÅäÖñí + It is maintained by ONU itself. + " + ::= { vlanConfigGroup 2 } + + onuVlanConfigEntry OBJECT-TYPE + SYNTAX OnuVlanConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { onuVlanIndex } + ::= { onuVlanConfigTable 1 } + + OnuVlanConfigEntry ::= + SEQUENCE { + onuVlanIndex + INTEGER, + onuVlanName + OCTET STRING, + onuVlanTaggedPort + OCTET STRING, + onuVlanUntaggedPort + OCTET STRING, + onuVlanRowStatus + RowStatus + } + + onuVlanIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + VlanË÷ÒýºÅ" + ::= { onuVlanConfigEntry 1 } + + onuVlanName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ONU VLAN name" + ::= { onuVlanConfigEntry 2 } + + onuVlanTaggedPort OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Vlan°üÀ¨µÄtagµÄUNI¶Ë¿Ú¡£ + It is presented by member port list. Each member port is identified + by 2-byte format, One for slot ID, the last for port ID. The actual + length of this string depends of the number of tagged member ports + in the VLAN. If the ONU is fixed (not modulized), set slot ID to 0, + the NMS could ignore the slot info. + Note that, slot here shall follow the last byte definition of + EponCardIndex to indicate the main-slot and sub-slot index. + The relationship is: + Length of the string = 2 * (NUM of member ports) + For example, if port 1/2 and 3/4 is the tagged member ports of the + VLAN, then the object is presented as: + 01 02 03 04 + " + ::= { onuVlanConfigEntry 3 } + + onuVlanUntaggedPort OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Vlan°üÀ¨µÄUntagµÄUNI¶Ë¿Ú¡£ + It is presented by member port list. Each member port is identified + by 2-byte format, One for slot ID, the last for port ID. The actual + length of this string depends of the number of untagged member ports + in the VLAN. If the ONU is fixed (not modulized), set slot ID to FF, + the NMS could ignore the slot info. + Note that, slot here shall follow the last byte definition of + EponCardIndex to indicate the main-slot and sub-slot index. + The relationship is: + Length of the string = 2 * (NUM of member ports) + For example, if port 1/2 and 3/4 is the untagged member ports of the + VLAN, then the object is presented as: + 01 02 03 04 + " + ::= { onuVlanConfigEntry 4 } + + onuVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬" + ::= { onuVlanConfigEntry 5 } + + portVlanGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVlan×飨sni¡¢uni¡¢ponport£©" + ::= { vlanManagementObjects 3 } + + portVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVlan±í + This table applies on OLT pon port, OLT SNI, OLT onu ID, ONU UNI. + 1. If the table is maintained in OLT device: + Applied Obj - Descriptions of Index + ------------------------------------------------------------------ + OLT Pon Port - OnuNum of pvlanDeviceIndex shall be set to 0, + /OLT SNI pvlanCardIndex, and pvlanPortIndex set to 0 indicates + meaningless + OLT onu ID - Set pvlanDeviceIndex to corresponding ONU ID, + pvlanCardIndex, and pvlanPortIndex set to 0 indicates + meaningless + ONU UNI - Set pvlanDeviceIndex to corresponding ONU ID, + pvlanCardIndex, and pvlanPortIndex set to the corresponding + value + 2. If the table is maintained in ONU device: + pvlanDeviceIndex shall be set to 0 to indicate meaningless. + pvlanCardIndex shall be set to corresponding slot. + pvlanPortIndex shall be set to corresponding port. + " + + ::= { portVlanGroup 1 } + + portVlanEntry OBJECT-TYPE + SYNTAX PortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { pvlanDeviceIndex, pvlanCardIndex, pvlanPortIndex} + ::= { portVlanTable 1 } + + PortVlanEntry ::= + SEQUENCE { + pvlanDeviceIndex + EponDeviceIndex, + pvlanCardIndex + EponCardIndex, + pvlanPortIndex + EponPortIndex, + vlanTagTpid + OCTET STRING, + vlanTagCfi + TruthValue, + vlanTagPriority + INTEGER, + vlanPVid + INTEGER, + vlanMode + INTEGER + } + + pvlanDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLT/ONUÉ豸Ë÷ÒýºÅ¡£" + ::= { portVlanEntry 1 } + + pvlanCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ + " + ::= { portVlanEntry 2 } + + pvlanPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + pon¶Ë¿Ú/uni/sni¶Ë¿ÚË÷ÒýºÅ + " + ::= { portVlanEntry 3 } + + vlanTagTpid OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ±ê¼ÇµÄЭÒé±êʶ + It shall be presented in hexadecimal format. For example, 81 00 + to indicate 0x8100" + ::= { portVlanEntry 4 } + + vlanTagCfi OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + ¹æÔò¸ñʽָʾ·û" + ::= { portVlanEntry 5 } + + vlanTagPriority OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + vlanÓÅÏȼ¶" + ::= { portVlanEntry 6 } + + vlanPVid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + port Vlan ID" + ::= { portVlanEntry 7 } + + vlanMode OBJECT-TYPE + SYNTAX INTEGER + { + transparent(0), + tag(1), + translation(2), + aggregation(3), + trunk(4), + stacking(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + vlanģʽ + " + ::= { portVlanEntry 8 } + + portVlanTranslationTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortVlanTranslationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVlan·­Òë±í + This table applies on OLT pon port, OLT SNI, OLT onu ID, ONU UNI. + 1. If the table is maintained in OLT device: + Applied Obj - Descriptions of Index + ------------------------------------------------------------------ + OLT Pon Port - OnuNum of pvtDeviceIndex shall be set to 0, + /OLT SNI pvtCardIndex, and pvtPortIndex set to 0 indicates + meaningless + OLT onu ID - Set pvtDeviceIndex to corresponding ONU ID, + pvtCardIndex, and pvtPortIndex set to 0 indicates + meaningless + ONU UNI - Set pvtDeviceIndex to corresponding ONU ID, + pvtCardIndex, and pvtPortIndex set to the corresponding + value + + 2. If the table is maintained in ONU device: + pvtDeviceIndex shall be set to 0 to indicate meaningless. + pvtCardIndex shall be set to corresponding slot. + pvtPortIndex shall be set to corresponding port. + " + ::= { portVlanGroup 2 } + + portVlanTranslationEntry OBJECT-TYPE + SYNTAX PortVlanTranslationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { pvtDeviceIndex , pvtCardIndex , pvtPortIndex , portVidIndex } + ::= { portVlanTranslationTable 1 } + PortVlanTranslationEntry ::= + SEQUENCE { + pvtDeviceIndex + EponDeviceIndex, + pvtCardIndex + EponCardIndex, + pvtPortIndex + EponPortIndex, + portVidIndex + Unsigned32, + translationNewVid + Unsigned32, + translationRowStatus + RowStatus + } + pvtDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLT/ONUÉ豸Ë÷ÒýºÅ¡£" + ::= { portVlanTranslationEntry 1 } + + pvtCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { portVlanTranslationEntry 2 } + + pvtPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + pon¶Ë¿Ú/ONU/uni¶Ë¿ÚË÷ÒýºÅ/sni¶Ë¿Ú" + ::= { portVlanTranslationEntry 3 } + + portVidIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚԭʼVLAN IDË÷ÒýºÅ" + ::= { portVlanTranslationEntry 4 } + + translationNewVid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ·­ÒëµÄÐÂvlanºÅ" + ::= { portVlanTranslationEntry 5 } + + translationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬ " + ::= { portVlanTranslationEntry 6 } + + portVlanAggregationManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVlan¾ÛºÏ¹ÜÀí£¨VLAN Aggregation£©" + ::= { portVlanGroup 3 } + + portVlanAggregationConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortVlanAggregationConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVlan¾ÛºÏÅäÖñí + This table applies on OLT pon port, OLT onu ID, ONU UNI. + 1. If the table is maintained in OLT device: + Applied Obj - Descriptions of Index + ------------------------------------------------------------------ + OLT Pon Port - OnuNum of pvaDeviceIndex shall be set to 0, + pvaCardIndex, and pvaPortIndex set to 0 indicates + meaningless + OLT onu ID - Set pvaDeviceIndex to corresponding ONU ID, + pvaCardIndex, and pvaPortIndex set to 0 indicates + meaningless + ONU UNI - Set pvaDeviceIndex to corresponding ONU ID, + pvaCardIndex, and pvaPortIndex set to the corresponding + value + + 2. If the table is maintained in ONU device: + pvaDeviceIndex shall be set to 0 to indicate meaningless. + pvaCardIndex shall be set to corresponding slot. + pvaPortIndex shall be set to corresponding port. + " + ::= { portVlanAggregationManagement 1 } + + portVlanAggregationConfigEntry OBJECT-TYPE + SYNTAX PortVlanAggregationConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { pvaDeviceIndex , pvaCardIndex , pvaPortIndex , portAggregationVidIndex } + ::= { portVlanAggregationConfigTable 1 } + + PortVlanAggregationConfigEntry ::= + SEQUENCE { + pvaDeviceIndex + EponDeviceIndex, + pvaCardIndex + EponCardIndex, + pvaPortIndex + EponPortIndex, + portAggregationVidIndex + Unsigned32, + aggregationVidList + OCTET STRING, + aggregationRowStatus + RowStatus + } + + pvaDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + OLT/ONUÉ豸Ë÷ÒýºÅ¡£" + ::= { portVlanAggregationConfigEntry 1 } + + pvaCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { portVlanAggregationConfigEntry 2 } + + pvaPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + pon¶Ë¿Ú/uni¶Ë¿ÚË÷ÒýºÅ/ONU ID" + ::= { portVlanAggregationConfigEntry 3 } + + portAggregationVidIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVLAN¾ÛºÏ×éVLANºÅ" + ::= { portVlanAggregationConfigEntry 4 } + + aggregationVidList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (512)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ¾ÛºÏµÄvlan ID×é + ²ÉÓÃÀàËÆINTERNET±ÈÌØË³Ðò£¬´Ó×óµ½ÓÒµÄOCTET·Ö±ðΪOCTET 0, OCTET 1, ... + ÿ¸öOCTETµÄbit´Ó×óµ½ÓÒ·Ö±ðΪbit0£¬bit1£¬...£¬bit7¡£ + °´ÕÕbitºÍOCTETÓÉСµ½´óµÄ˳Ðò£¬Ã¿¸öbit¶ÔÓ¦ÓÚÒ»¸öVLAN£¬VLAN ID·¶Î§Îª0..4095¡£ + µÚÒ»¸öbit¶ÔÓ¦VLAN 0,×îºóÒ»¸öbit¶ÔÓ¦VLAN 4095¡£ + Èç¹ûbitÖÃ룬±íʾ¸Ã°üÀ¨¸ÃVLAN£¬·ñÔò²»°üÀ¨¡£" + ::= { portVlanAggregationConfigEntry 5 } + + + aggregationRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬" + ::= { portVlanAggregationConfigEntry 6 } + + portVlanTrunkTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortVlanTrunkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚVlan trunk±í£¨VLAN Trunk±í? + This table applies on OLT pon port, OLT SNI, OLT onu ID, ONU UNI. + 1. If the table is maintained in OLT device: + Applied Obj - Descriptions of Index + ------------------------------------------------------------------ + OLT Pon Port - OnuNum of pvtDeviceIndex shall be set to 0, + /OLT SNI pvtCardIndex, and pvtPortIndex set to 0 indicates + meaningless + OLT onu ID - Set pvtDeviceIndex to corresponding ONU ID, + pvtCardIndex, and pvtPortIndex set to 0 indicates + meaningless + ONU UNI - Set pvtDeviceIndex to corresponding ONU ID, + pvtCardIndex, and pvtPortIndex set to the corresponding + value + + 2. If the table is maintained in ONU device: + pvtDeviceIndex shall be set to 0 to indicate meaningless. + pvtCardIndex shall be set to corresponding slot. + pvtPortIndex shall be set to corresponding port. + " + ::= { portVlanGroup 4 } + + portVlanTrunkEntry OBJECT-TYPE + SYNTAX PortVlanTrunkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { trunkDeviceIndex, trunkCardIndex, trunkPortIndex } + ::= { portVlanTrunkTable 1 } + + PortVlanTrunkEntry ::= + SEQUENCE { + trunkDeviceIndex + EponDeviceIndex, + trunkCardIndex + EponCardIndex, + trunkPortIndex + EponPortIndex, + trunkVidList + OCTET STRING, + portVlanTrunkRowStatus + RowStatus + } + + trunkDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + É豸Ë÷ÒýºÅ¡£ + " + ::= { portVlanTrunkEntry 1 } + + trunkCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { portVlanTrunkEntry 2 } + trunkPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚË÷ÒýºÅ" + ::= { portVlanTrunkEntry 3 } + + trunkVidList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (512)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Trunked Vlan List for the port + ²ÉÓÃÀàËÆINTERNET±ÈÌØË³Ðò£¬´Ó×óµ½ÓÒµÄOCTET·Ö±ðΪOCTET 0, OCTET 1, ... + ÿ¸öOCTETµÄbit´Ó×óµ½ÓÒ·Ö±ðΪbit0£¬bit1£¬...£¬bit7¡£ + °´ÕÕbitºÍOCTETÓÉСµ½´óµÄ˳Ðò£¬Ã¿¸öbit¶ÔÓ¦ÓÚÒ»¸öVLAN£¬VLAN ID·¶Î§Îª0..4095¡£ + µÚÒ»¸öbit¶ÔÓ¦VLAN 0,×îºóÒ»¸öbit¶ÔÓ¦VLAN 4095¡£ + Èç¹ûbitÖÃ룬±íʾ¸Ã°üÀ¨¸ÃVLAN£¬·ñÔò²»°üÀ¨¡£ + " + ::= { portVlanTrunkEntry 4 } + + portVlanTrunkRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + ÐÐ״̬" + ::= { portVlanTrunkEntry 5 } + + qinQConfigGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + " + QinQÅäÖÃ×é + ±¸×¢£ºÒªÇóOLT/ONU¾ùÖ§³ÖQINQ£¬OLT¿ÉÑ¡£¬ONU±ØÑ¡" + ::= { vlanManagementObjects 4 } + + portQinQConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortQinQConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + QinQÅäÖÃÊôÐÔ±í + This table applies on OLT pon port, OLT SNI, OLT onu ID, ONU UNI. + 1. If the table is maintained in OLT device: + Applied Obj - Descriptions of Index + ------------------------------------------------------------------ + OLT Pon Port - OnuNum of pqDeviceIndex shall be set to 0, + /OLT SNI pqCardIndex, and pqPortIndex set to 0 indicates + meaningless + OLT onu ID - Set pqDeviceIndex to corresponding ONU ID, + pqCardIndex, and pqPortIndex set to 0 indicates + meaningless + ONU UNI - Set pqDeviceIndex to corresponding ONU ID, + pqCardIndex, and pqPortIndex set to the corresponding + value + + 2. If the table is maintained in ONU device: + pqDeviceIndex shall be set to 0 to indicate meaningless. + pqCardIndex shall be set to corresponding slot. + pqPortIndex shall be set to corresponding port. + " + ::= { qinQConfigGroup 1 } + + portQinQConfigEntry OBJECT-TYPE + SYNTAX PortQinQConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { pqDeviceIndex, pqCardIndex, pqPortIndex, pqStartVlanId, pqEndVlanId } + ::= { portQinQConfigTable 1 } + + PortQinQConfigEntry ::= + SEQUENCE { + pqDeviceIndex + EponDeviceIndex, + pqCardIndex + EponCardIndex, + pqPortIndex + EponPortIndex, + pqStartVlanId + INTEGER, + pqEndVlanId + INTEGER, + pqSVlanId + INTEGER, + pqSTagCosDetermine + INTEGER, + pqSTagCosNewValue + INTEGER, + pqRowStatus + RowStatus + } + + pqDeviceIndex OBJECT-TYPE + SYNTAX EponDeviceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ONU ID, for a specific ONU" + ::= { portQinQConfigEntry 1 } + + pqCardIndex OBJECT-TYPE + SYNTAX EponCardIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ" + ::= { portQinQConfigEntry 2 } + + pqPortIndex OBJECT-TYPE + SYNTAX EponPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + ¶Ë¿ÚË÷ÒýºÅ" + ::= { portQinQConfigEntry 3 } + + pqStartVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The starting VLAN ID, working together with pqEndVlanId, + consists of a VLAN group. The VLAN ID match the VLAN group + will be QinQed with specified outer VLAN + " + ::= { portQinQConfigEntry 4 } + + pqEndVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The ending VLAN ID, working together with pqStartVlanId, + consists of a VLAN range. The VLAN ID match the VLAN range + will be QinQed with specified outer VLAN + " + ::= { portQinQConfigEntry 5 } + + pqSVlanId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + The outer VLAN id to be QinQed" + ::= { portQinQConfigEntry 6 } + + pqSTagCosDetermine OBJECT-TYPE + SYNTAX INTEGER { + redefine(1), + copyFromCTag(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + What STAG COS will be set for this QinQ instance. It could + be either a new definition or copied from CTAG + " + ::= { portQinQConfigEntry 7 } + + pqSTagCosNewValue OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + The new STAG COS value if pqSTagCosDetermine is selected as + redefine(1) + " + DEFVAL { 0 } + ::= { portQinQConfigEntry 8 } + + pqRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + " + ::= { portQinQConfigEntry 9 } + +-- +-- END of NSCRTV-EPON-VLAN-MGM-MIB +-- + +END diff --git a/mibs/fs/NSCRTV-EPONEOC-EPON-MIB b/mibs/fs/NSCRTV-EPONEOC-EPON-MIB new file mode 100644 index 0000000000..8259bb3101 --- /dev/null +++ b/mibs/fs/NSCRTV-EPONEOC-EPON-MIB @@ -0,0 +1,312 @@ + +NSCRTV-EPONEOC-EPON-MIB DEFINITIONS ::= BEGIN + +IMPORTS + BridgeId, Timeout + FROM BRIDGE-MIB + IpAddress, Unsigned32, Integer32, Counter32,OBJECT-TYPE, TimeTicks, Gauge32, Counter64, + MODULE-IDENTITY, OBJECT-IDENTITY, enterprises + FROM SNMPv2-SMI + DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC; + + +nscrtvRoot OBJECT IDENTIFIER ::= { enterprises 17409 } + +-- DESCRIPTION +-- "nscrtvRoot¶¨ÒåÈ«¹ú¹ãµçÉ豸¹ÜÀíMIB¸ù½Úµã¡£" + +nscrtvHFCemsTree OBJECT IDENTIFIER ::= { nscrtvRoot 1 } +nscrtvEponEocTree OBJECT IDENTIFIER ::= { nscrtvRoot 2} +-- DESCRIPTION +-- "nscrtvEponEocTree¶¨ÒåEPON¡¢EoC¹ÜÀíϵͳMIB¸ù½Úµã," +-- "ËùÓÐEPON¡¢EoCϵͳµÄMIB¾ùÓ¦Ôڸýڵã϶¨Òå¡£" + +propertyIdent OBJECT IDENTIFIER ::= { nscrtvEponEocTree 1} +-- DESCRIPTION +-- "ÊôÐÔ(Property)MIBµÄ·ÖÖ§½Úµã±êʶ¡£" + +alarmsIdent OBJECT IDENTIFIER ::= { nscrtvEponEocTree 2} + +-- DESCRIPTION +-- "¸æ¾¯(Alarms)MIBµÄ·ÖÖ§½Úµã±êʶ¡£" + +eponTree OBJECT IDENTIFIER ::= { nscrtvEponEocTree 3} + +-- DESCRIPTION +-- "EPON MIBµÄ·ÖÖ§½Úµã±êʶ¡£" + +eoCTree OBJECT IDENTIFIER ::= { nscrtvEponEocTree 4} + +-- DESCRIPTION +-- "EoC MIBµÄ·ÖÖ§½Úµã±êʶ¡£" + + + eponAlarmTree OBJECT IDENTIFIER ::= { alarmsIdent 11 } + + eponTrapObjectGroup OBJECT IDENTIFIER ::= { eponAlarmTree 1 } + + eponAlarmObjGroup OBJECT IDENTIFIER ::= { eponAlarmTree 2 } + + eponManagementObjGroup OBJECT IDENTIFIER ::= { eponAlarmTree 3 } + + + systemObjects OBJECT IDENTIFIER ::= { eponTree 1 } + + sniObjects OBJECT IDENTIFIER ::= { eponTree 2 } + + ponPortObjects OBJECT IDENTIFIER ::= { eponTree 3 } + + onuObjects OBJECT IDENTIFIER ::= { eponTree 4 } + + uniObjects OBJECT IDENTIFIER ::= { eponTree 5 } + + igmpManagementObjects OBJECT IDENTIFIER ::= { eponTree 6 } + + vlanManagementObjects OBJECT IDENTIFIER ::= { eponTree 7 } + + qosManagementObjects OBJECT IDENTIFIER ::= { eponTree 8 } + + stpManagementObjects OBJECT IDENTIFIER ::= { eponTree 9 } + + performanceStatisticObjects OBJECT IDENTIFIER ::= { eponTree 10 } + + eponLinkedEoCManagementObjects OBJECT IDENTIFIER ::= { eponTree 11 } + + EponDeviceIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Epon olt/onuÉ豸Ë÷ÒýºÅ¡£ + ONU IDµÄ×é³É£¨4×Ö½Ú£©£¨¸ß--µÍ£© + Olt device-8bit OLT Card-8bit Pon port-8bit OnuNUM-8bit + Note: + ---- + 1. OLT device must not be 0. + 2. Card here shall confirm the last byte definition of EponCardIndex + to indicate the main-slot and sub-slot index. + 3. Pon port must not be 0. + 4. The useful ONU logical ID MUST never be set to 0, where NUM of 0 has + another meaning, to indicate that the ONU logical ID is meaningless, + or said to not applied. + + Usage guide: + ----------- + This TC could be used for OLT SNI, OLT PON port, OLT ONU ID + ONU UNI, OLT device, trunk. + If the refered MIB object does not have clear definition, + refer to the following: + Applied Obj - Descriptions of Index + ------------------------------------------------------------------ + OLT Pon Port - OnuNum shall be set to 0, + OLT SNI - Same as OLT Pon Port + OLT onu ID - Set OnuNUM to corresponding ONU logical ID + ONU UNI - Same as OLT ONU ID + OLT device - Set card, pon port and OnuNUM to 0 + Trunk - Card to 0x3F, pon port to trunk ID, OnuNUM to 0 + Olt device to corresponding ONU device + " + SYNTAX Unsigned32 + + EponCardIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + °å¿¨Ë÷ÒýºÅ + For easy presenting the chassis view by NMS, bCardIndex shall be formatted + in a following manner: + Four bytes of INTEGER, from the most significant byte to the least significant + bytes + ----------------------------------------------------------------------------- + Reserved byte Reserved byte Reserved byte Sub-slot 2-bit Main-slot 6-bit + Notes: + ----- + 1. Reserved bytes shall be set to 0. + 2. The main-slot shall be started from 1, and shall be in a consecutive manner, + for all slots, including service slots, control slots, switch slots, power + slots,FAN slots, etc.For example, 1, 2, 3 + 3. The sub-slot shall be started from 1, and shall be in a consecutive manner. + For example, 1, 2. If no sub-slot concept of a main-slot, set to 0. +4. For fixed device, if no slot concept, NE shall set both main-slot and sub-slot + to 0, to indicate this is meaningless. For modulized device, they MUST not be + set to 0.This definition shall applied to both OLT and ONU. +5. For trunk, since there is no slot concept, set main-slot to all-1 and sub-slot + to 0. This definition shall applied to both OLT and ONU. + + For example, + 0x00 00 00 0A, represents main-slot 10, no sub-slot + 0x00 00 00 42, represents main-slot 2, sub-slot 1 + 0x00 00 00 3F, represents a trunk + " + SYNTAX Unsigned32 + + EponPortIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Epon¶Ë¿ÚË÷ÒýºÅ + The device port number shall start from 1. Nunber 0 had specific meaning, stands + for portIndex is meaningless, for the situation defined. + " + SYNTAX INTEGER (0..255) + + EponAlarmCode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Alarm codes, uniquely indentifies each kind of alarm. + Refer to EPON alarm definition table" + SYNTAX INTEGER (1..65535) + + EponAlarmInstance ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Alarm instance, which define the detailed management object + reported the alarm. For example, OLT device 1, slot 2, port 3 + reports a port down alarm. + It is represents in OCTET STRING format. + 1. The first four OCTET has same definition as EponDeviceIndex TC. + 2. The fifth OCTET is the slot definition of ONU, which shall + have same definition as last byte definition in EponCardIndex + TC. + 3. The sixth OCTET is the UNI port ID of ONU, which is similar to + EponPortIndex TC. + 4. The seventh and eighth OCTETS are reserved and shall be set to + 0 at any time, and shall be ignored by maangement system. + For example, + 0x01 02 03 04 05 06 00 00, represents OLT device 1, slot 2, port 3, + ONU logical ID 4, slot 5 UNI port 6 of the connected ONU. + " + SYNTAX OCTET STRING ( SIZE (8) ) + + EponSeverityType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + ¸æ¾¯ÑÏÖØ³Ì¶È" + SYNTAX INTEGER + { + critical(1), + major(2), + minor(3), + warning(4), + info(5), + clear(6) + } + + AutoNegotiationTechAbility ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Technology ability of auto negotiation. Refer to + clause 30.6.1.1.5 of IEEE 802.3 2005 edition" + SYNTAX BITS + { + tenBaseTFullDuplex(1), + tenBaseTHalfDuplex(2), + hundredBaseTFullDuplex(3), + hundredBaseTHalfDuplex(4), + thousandBaseTFullDuplex(5), + thousandBaseTHalfDuplex(6), + thousandBaseXFullDuplex(7), + thousandBaseXHalfDuplex(8), + fdxPause(9), + fdxApause(10), + fdxSpause(11), + fdxBpause(12) + } + + TAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + First four octets sames definition of IpAddress, stands for NMS IP address + The last four octets same definition of INTEGER, stands for trap UDP port " + SYNTAX OCTET STRING (SIZE (8)) + + EponStats15MinRecordType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "15·ÖÖÓÐÔÄÜͳ¼Æ¼Ç¼µÄË÷ÒýºÅ + Ë÷ÒýºÅΪ0±íʾµ±Ç°15·ÖÖÓÐÔÄÜÊý¾Ý + 1..96±íʾÀúÊ·µÄ15·ÖÖÓÐÔÄÜ£¬1´ú±í×îеÄÊý¾Ý£¬96´ú±í×îÀϵÄÊý¾Ý" + SYNTAX INTEGER (0..96) + + EponStats24HourRecordType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "24СʱÐÔÄÜͳ¼Æ¼Ç¼µÄË÷ÒýºÅ + Ë÷ÒýºÅΪ0±íʾµ±Ç°24СʱÐÔÄÜÊý¾Ý + 1..30±íʾÀúÊ·µÄ24СʱÐÔÄÜ, 1´ú±í×îеÄÊý¾Ý£¬30´ú±í×îÀϵÄÊý¾Ý" + SYNTAX INTEGER (0..30) + + EponStatsThresholdType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "ÃÅÏÞÀàÐÍ£¬¼û ÐÔÄÜÁ¿¶¨Òå±í + 1- InOctets + 2 InPkts + 3 InBroadcastPkts + 4 InMulticastPkts + 5 InPkts64Octets + 6 InPkts65to127Octets + 7 InPkts128to255Octets + 8 InPkts256to511Octets + 9 InPkts512to1023Octets + 10 InPkts1024to1518Octets + 11 InPkts1519to1522Octets + 12 InUndersizePkts + 13 InOversizePkts + 14 InFragments + 15 InMpcpFrames + 16 InMpcpOctets + 17 InOAMFrames + 18 InOAMOctets + 19 InCRCErrorPkts + 20 InDropEvents + 21 InJabbers + 22 InCollision + 23 OutOctets + 24 OutPkts + 25 OutBroadcastPkts + 26 OutMulticastPkts + 27 OutPkts64Octets + 28 OutPkts65to127Octets + 29 OutPkts128to255Octets + 30 OutPkts256to511Octets + 31 OutPkts512to1023Octets + 32 OutPkts1024to1518Octets + 33 OutPkts1519o1522Octets + 34 OutUndersizePkts + 35 OutOversizePkts + 36 OutFragments + 37 OutMpcpFrames + 38 OutMpcpOctets + 39 OutOAMFrames + 40 OutOAMOctets + 41 OutCRCErrorPkts + 42 OutDropEvents + 43 OutJabbers + 44 OutCollision + 50 Temperature + + Note: + ---------------------------------------------------------------- + 1. For 50 Temperature, this parameter shall only applied to + a. Slot level, for each service/switch/management card, for + chassis-based system. + b. Node-level, for fixed box. + 2. For 50 Temperature, shall be applied to both OLT and ONU + 3. For 50 Temperature, since no 15-min performance data collection + are required, system shall ensure the temperature polling interval + no less than 5 seconds. The alarm shall be only generated when the + threshold is acrossed for three continuous intervals, and shall be + cleared, when the threshold is not accrossed any more, for three + continous intervals. + " + SYNTAX INTEGER (1..1024) + +-- +-- END of NSCRTV-EPONEOC-EPON-MIB +-- + +END diff --git a/mibs/fs/PIM-BSR-MIB b/mibs/fs/PIM-BSR-MIB new file mode 100644 index 0000000000..4793590ecc --- /dev/null +++ b/mibs/fs/PIM-BSR-MIB @@ -0,0 +1,715 @@ + PIM-BSR-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + NOTIFICATION-TYPE, + mib-2, Unsigned32, TimeTicks FROM SNMPv2-SMI + RowStatus, TruthValue, + StorageType FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, + NOTIFICATION-GROUP FROM SNMPv2-CONF + gbnL3 FROM ADMIN-MASTER-MIB; + + pimBsrMIB MODULE-IDENTITY + LAST-UPDATED "200702040000Z" -- 4 February 2007 + ORGANIZATION + "IETF Protocol Independent Multicast (PIM) Working Group" + CONTACT-INFO + "Email: pim@ietf.org + WG charter: + http://www.ietf.org/html.charters/pim-charter.html" + DESCRIPTION + "The MIB module for management of the Bootstrap Router + (BSR) mechanism for PIM routers. + + Copyright (C) The IETF Trust (2007). This version + of this MIB module is part of RFC yyyy; see the RFC + itself for full legal notices." + REVISION "200702040000Z" -- 4 February 2007 + DESCRIPTION "Initial version, published as RFC yyyy." + ::= { gbnL3 9 } + + -- + -- Top-level structure + -- + + pimBsrNotifications OBJECT IDENTIFIER ::= { pimBsrMIB 0 } + pimBsrObjects OBJECT IDENTIFIER ::= { pimBsrMIB 1 } + + -- + -- Conformance Information + -- + + pimBsrConformance OBJECT IDENTIFIER ::= { pimBsrMIB 2 } + pimBsrCompliances OBJECT IDENTIFIER ::= { pimBsrConformance 1 } + pimBsrGroups OBJECT IDENTIFIER ::= { pimBsrConformance 2 } + + -- + -- The BSR Candidate-RP Table + -- + + pimBsrCandidateRPTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimBsrCandidateRPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table listing the IP multicast group + prefixes for which the local router is to advertise + itself as a Candidate-RP." + ::= { pimBsrObjects 1 } + + pimBsrCandidateRPEntry OBJECT-TYPE + SYNTAX PimBsrCandidateRPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the + pimBsrCandidateRPTable." + INDEX { pimBsrCandidateRPAddressType, + pimBsrCandidateRPAddress, + pimBsrCandidateRPGroupAddress, + pimBsrCandidateRPGroupPrefixLength } + ::= { pimBsrCandidateRPTable 1 } + + PimBsrCandidateRPEntry ::= SEQUENCE { + pimBsrCandidateRPAddressType INTEGER, + pimBsrCandidateRPAddress OCTET STRING, + pimBsrCandidateRPGroupAddress OCTET STRING, + pimBsrCandidateRPGroupPrefixLength Unsigned32, + pimBsrCandidateRPBidir TruthValue, + pimBsrCandidateRPAdvTimer TimeTicks, + pimBsrCandidateRPPriority Unsigned32, + pimBsrCandidateRPAdvInterval Unsigned32, + pimBsrCandidateRPHoldtime Unsigned32, + pimBsrCandidateRPStatus RowStatus, + pimBsrCandidateRPStorageType StorageType + } + + pimBsrCandidateRPAddressType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Inet address type of the Candidate-RP." + --C-RPµÄµØÖ·ÀàÐÍ£¬IPv4»òÕßIPv6 + ::= { pimBsrCandidateRPEntry 1 } + + pimBsrCandidateRPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (unicast) address that will be advertised as a + Candidate-RP. The InetAddressType is given by the + pimBsrCandidateRPAddressType object." + --C-RPµÄµØÖ·£¬´ËµØÖ·Îªµ¥²¥µØÖ· + ::= { pimBsrCandidateRPEntry 2 } + + pimBsrCandidateRPGroupAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP multicast group address that, when combined with + the corresponding value of + pimBsrCandidateRPGroupPrefixLength, identifies a group + prefix for which the local router will advertise itself + as a Candidate-RP. The InetAddressType is given by the + pimBsrCandidateRPAddressType object." + --¶ÔÓ¦±¾ÌõÄ¿µÄC-RPËù¹ÜÀíµÄ×鵨ַ + ::= { pimBsrCandidateRPEntry 3 } + + pimBsrCandidateRPGroupPrefixLength OBJECT-TYPE + SYNTAX Unsigned32 (4..128) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The multicast group address mask that, when combined + with the corresponding value of + pimBsrCandidateRPGroupAddress, identifies a group prefix + for which the local router will advertise itself as a + Candidate-RP. The InetAddressType is given by the + pimBsrCandidateRPAddressType object." + --¶à²¥×éǰ׺³¤¶È + ::= { pimBsrCandidateRPEntry 4 } + + pimBsrCandidateRPBidir OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If this object is set to TRUE, this group range is + advertised with this RP as a BIDIR-PIM group range. If + it is set to FALSE, it is advertised as a PIM-SM group + range." + --¶à²¥×éºÍ×éǰ׺½áºÏËù´ú±íµÄ×鷶ΧÊÇ·ñBidir + DEFVAL { false } + ::= { pimBsrCandidateRPEntry 5 } + + pimBsrCandidateRPAdvTimer OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time remaining before the local router next sends + a Candidate-RP-Advertisement to the elected BSR for + this zone." + --·¢ËÍÏÂÒ»¸öC-RP-Adv±¨ÎĵÄÊ£Óàʱ¼ä + ::= { pimBsrCandidateRPEntry 6 } + + pimBsrCandidateRPPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The priority for this Candidate RP advertised in + Candidate-RP-Advertisements." + --ÓÅÏȼ¶£¬ÓÃÓÚC-RP-Adv±¨ÎÄÖеÄPriority + REFERENCE "I-D.ietf-pim-sm-bsr section 3.2" + DEFVAL { 192 } + ::= { pimBsrCandidateRPEntry 7 } + + pimBsrCandidateRPAdvInterval OBJECT-TYPE + SYNTAX Unsigned32 (0..26214) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A Candidate RP generates Candidate-RP-Advertisements + periodically. This object represents the time interval + in seconds between two consecutive advertisements." + --·¢ËÍC-RP-AdvµÄÖÜÆÚ + + REFERENCE "I-D.ietf-pim-sm-bsr section 3.2 and section 5" + DEFVAL { 60 } + + ::= { pimBsrCandidateRPEntry 8 } + + pimBsrCandidateRPHoldtime OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Holdtime for this Candidate RP. The amount of time (in + seconds) this Candidate-RP entry is valid." + --´ú±í±¾ÌõÄ¿×÷ΪÓÐЧÐÅÏ¢ÐèÒª±£´æµÄʱ¼ä + + REFERENCE "I-D.ietf-pim-sm-bsr section 4.2" + DEFVAL { 150 } + + ::= { pimBsrCandidateRPEntry 9 } + + pimBsrCandidateRPStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row, by which new entries may be + created, or old entries deleted from this table." + --±¾ÌõĿ״̬ + + ::= { pimBsrCandidateRPEntry 10 } + + + pimBsrCandidateRPStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type for this row. Rows having the value + 'permanent' need not allow write-access to any columnar + objects in the row." + --±¾ÌõÄ¿´æ´¢ÀàÐÍ + DEFVAL { nonVolatile } + ::= { pimBsrCandidateRPEntry 11 } + + -- + -- The BSR Elected BSR RP-Set Table + -- + + pimBsrElectedBSRRPSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimBsrElectedBSRRPSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table listing BSR-specific information + about PIM group mappings learned via C-RP advertisements + or created locally using configurations. This table is + maintained only on the Elected BSR. + + An Elected BSR uses this table to create Bootstrap + Messages after applying a local policy to include some + or all of the group mappings in this table." + --Elected BSR RP-Set±í£¬Ö»Óе±±¾µØÂ·ÓÉÆ÷µ±Ñ¡ÎªBSRʱ²Åά»¤¸Ã±í£¬ + --±íÖаüº¬ÁËËùÓÐͨ¹ý´¦ÀíÊܵ½µÄC-RP±¨ÎĶøÕûÀí³öÀ´µÄGroup-to-RPÓ³ÉäÐÅÏ¢¡£ + + ::= { pimBsrObjects 2 } + + pimBsrElectedBSRRPSetEntry OBJECT-TYPE + SYNTAX PimBsrElectedBSRRPSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the + pimBsrElectedBSRRPSetTable." + --Elected BSR RP-Set±íÌõÄ¿ + INDEX { pimBsrElectedBSRGrpMappingAddrType, + pimBsrElectedBSRGrpMappingGrpAddr, + pimBsrElectedBSRGrpMappingGrpPrefixLen, + pimBsrElectedBSRGrpMappingRPAddr } + ::= { pimBsrElectedBSRRPSetTable 1 } + + PimBsrElectedBSRRPSetEntry ::= SEQUENCE { + pimBsrElectedBSRGrpMappingAddrType INTEGER, + pimBsrElectedBSRGrpMappingGrpAddr OCTET STRING, + pimBsrElectedBSRGrpMappingGrpPrefixLen Unsigned32, + pimBsrElectedBSRGrpMappingRPAddr OCTET STRING, + pimBsrElectedBSRRPSetPriority Unsigned32, + pimBsrElectedBSRRPSetHoldtime Unsigned32, + pimBsrElectedBSRRPSetExpiryTime TimeTicks, + pimBsrElectedBSRRPSetGrpBidir TruthValue + } + + pimBsrElectedBSRGrpMappingAddrType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Inet address type of the IP multicast group + prefix." + --Ó³Éä×é²¥×éµÄIPµØÖ·ÀàÐÍ£¬IPv4»òIPv6 + ::= { pimBsrElectedBSRRPSetEntry 1 } + + pimBsrElectedBSRGrpMappingGrpAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP multicast group address which, when combined + with pimBsrElectedBSRGrpMappingGrpPrefixLen, gives the + group prefix for this mapping. The InetAddressType is + given by the pimBsrElectedBSRGrpMappingAddrType object. + + This address object is only significant up to + pimBsrElectedBSRGrpMappingGrpPrefixLen bits. The + remainder of the address bits are zero. This is + especially important for this field, which is part of + the index of this entry. Any non-zero bits would + signify an entirely different entry." + --Ó³Éä×é²¥×éµÄIPµØÖ· + ::= { pimBsrElectedBSRRPSetEntry 2 } + + pimBsrElectedBSRGrpMappingGrpPrefixLen OBJECT-TYPE + SYNTAX Unsigned32 (4..128) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The multicast group prefix length that, when combined + with pimBsrElectedBSRGrpMappingGrpAddr, gives the group + prefix for this mapping. The InetAddressType is given by + the pimBsrElectedBSRGrpMappingAddrType object. If + pimBsrElectedBSRGrpMappingAddrType is 'ipv4' or 'ipv4z', + this object must be in the range 4..32. If + pimBsrElectedBSRGrpMappingAddrType is 'ipv6' or 'ipv6z', + this object must be in the range 8..128." + --Ó³Éä×é²¥×éµÄIPµØÖ·Ç°×º³¤¶È£¬IPv4ȡֵ·¶Î§Îª4µ½32 + ::= { pimBsrElectedBSRRPSetEntry 3 } + + pimBsrElectedBSRGrpMappingRPAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IP address of the RP to be used for groups within + this group prefix. The InetAddressType is given by the + pimBsrElectedBSRGrpMappingAddrType object." + --Ó³ÉäRPµÄIPµØÖ· + ::= { pimBsrElectedBSRRPSetEntry 4 } + + pimBsrElectedBSRRPSetPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The priority for RP. Numerically higher values for + this object indicate lower priorities, with the value + zero denoting the highest priority." + --RPµÄÓÅÏȼ¶£¬È¡Öµ·¶Î§Îª0µ½255£¬ÖµÔ½Ð¡ÓÅÏȼ¶Ô½¸ß£¬0µÄÓÅÏȼ¶×î¸ß + + REFERENCE "I-D.ietf-pim-sm-bsr section 4.1" + ::= { pimBsrElectedBSRRPSetEntry 5 } + + pimBsrElectedBSRRPSetHoldtime OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The holdtime for RP" + REFERENCE "I-D.ietf-pim-sm-bsr section 4.1" + ::= { pimBsrElectedBSRRPSetEntry 6 } + --±¾C-RPÐÅÏ¢µÄά»¤Ê±¼ä£¬È¡Öµ·¶Î§Îª0µ½65535£¬È±Ê¡ÖµÎª150 + + pimBsrElectedBSRRPSetExpiryTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum time remaining before this entry will be + aged out. The value zero indicates that this entry will + never be aged out." + ::= { pimBsrElectedBSRRPSetEntry 7 } + --±¾C-RPÐÅÏ¢µÄÀÏ»¯Ê£Óàʱ¼ä£¬0±íʾÓÀ²»ÀÏ»¯ + + pimBsrElectedBSRRPSetGrpBidir OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this object is TRUE, this group range with this + RP is a BIDIR-PIM group range. If it is set to FALSE, + it is a PIM-SM group range." + --ÊÇ·ñΪBIDIR-PIMµÄ×鷶Χ + ::= { pimBsrElectedBSRRPSetEntry 8 } + + -- + -- The BSR Candidate-BSR Table + -- + + pimBsrCandidateBSRTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimBsrCandidateBSREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table containing Candidate-BSR + configuration for the local router. The table contains + one row for each zone for which the local router is + to advertise itself as a Candidate-BSR." + --Candidate-BSR±í£¬Ã¿¸ö±íÏîÌåÏÖÁ˱¾µØÂ·ÓÉÆ÷ÔÚ²»Í¬µÄAdmin-scopedÖÐÅäÖõÄC-BSRÐÅÏ¢¡£ + --ÓÉÓÚÎÒÃDz»Ö§³ÖAdmin-scopedµÄ»®·Ö£¬Òò´Ë¸Ã±íÖÐ×î¶àÖ»ÓÐÒ»¸ö±íÏî¡£ + ::= { pimBsrObjects 3 } + + pimBsrCandidateBSREntry OBJECT-TYPE + SYNTAX PimBsrCandidateBSREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the + pimBsrCandidateBSRTable." + --Candidate-BSR±íÌõÄ¿ + INDEX { pimBsrCandidateBSRZoneIndex } + ::= { pimBsrCandidateBSRTable 1 } + + PimBsrCandidateBSREntry ::= SEQUENCE { + pimBsrCandidateBSRZoneIndex Unsigned32, + pimBsrCandidateBSRAddressType INTEGER, + pimBsrCandidateBSRAddress OCTET STRING, + pimBsrCandidateBSRPriority Unsigned32, + pimBsrCandidateBSRHashMaskLength Unsigned32, + pimBsrCandidateBSRElectedBSR TruthValue, + pimBsrCandidateBSRBootstrapTimer TimeTicks, + pimBsrCandidateBSRStatus RowStatus, + pimBsrCandidateBSRStorageType StorageType + } + + pimBsrCandidateBSRZoneIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The zone index uniquely identifies the zone on a + device to which this Candidate BSR is attached. There is + one entry for each zone in ipMcastZoneTable. Scope-level + information for this zone can be extracted from + ipMcastZoneTable in IP Multicast MIB. + [I-D.ietf-mboned-ip-mcast-mib]." + --ÓòË÷Òý£¬¶ÔÓ¦ipMcastZoneTableÖеÄÓòÐÅÏ¢¡£ + --ÓÉÓÚ²»Ö§³ÖAdministratively Scoped»®·Ö£¬Òò´Ë¸Ã×Ö¶ÎÓÀԶΪȱʡֵ0 + ::= { pimBsrCandidateBSREntry 1 } + + pimBsrCandidateBSRAddressType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The address type of the Candidate-BSR." + --C-BSRµÄµØÖ·ÀàÐÍ + ::= { pimBsrCandidateBSREntry 2 } + + pimBsrCandidateBSRAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The (unicast) address that the local router will + use to advertise itself as a Candidate-BSR. The + InetAddressType is given by the + pimBsrCandidateBSRAddressType object." + --C-BSRµÄµØÖ· + ::= { pimBsrCandidateBSREntry 3 } + + pimBsrCandidateBSRPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The priority value for the local router as a + Candidate-BSR for this zone. Numerically higher + values for this object indicate higher priorities." + --¸ÃC-BSRÔÚpimBsrCandidateBSRZoneIndex¶ÔÓ¦µÄÓòÖеÄÓÅÏȼ¶£¬È¡Öµ·¶Î§0µ½255£¬ÖµÔ½´óÓÅÏȼ¶Ô½¸ß£¬È±Ê¡Îª0 + DEFVAL { 0 } + ::= { pimBsrCandidateBSREntry 4 } + + pimBsrCandidateBSRHashMaskLength OBJECT-TYPE + SYNTAX Unsigned32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The hash mask length (used in the RP hash function) + that the local router will advertise in its Bootstrap + messages for this zone. This object defaults + to 30 if pimBsrCandidateBSRAddressType is 'ipv4' or + 'ipv4z' , and defaults to 126 if + pimBsrCandidateBSRAddressType is 'ipv6' or 'ipv6z'." + --ÓÃÓÚhashº¯ÊýµÄÑÚÂ볤¶È£¬È¡Öµ·¶Î§0µ½128£¬IPv4ȱʡΪ32£¬IPv6ȱʡΪ126 + ::= { pimBsrCandidateBSREntry 5 } + + pimBsrCandidateBSRElectedBSR OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the local router is the elected BSR for this + zone." + --ÊÇ·ñΪ¸ÃÓòµ±Ñ¡µÄBSR + ::= { pimBsrCandidateBSREntry 6 } + + pimBsrCandidateBSRBootstrapTimer OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time remaining before the local router next + originates a Bootstrap message for this zone. + Value of this object is zero if + pimBsrCandidateBSRElectedBSR is 'FALSE'." + --·¢ËÍÏÂÒ»¸öbootstrap±¨ÎĵÄÊ£Óàʱ¼ä£¬µ±bElectedBSRΪFALSE£¬¸Ã×Ö¶ÎΪ0 + + ::= { pimBsrCandidateBSREntry 7 } + + pimBsrCandidateBSRStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row, by which new entries may + be created, or old entries deleted from this table." + --ÌõĿ״̬ + ::= { pimBsrCandidateBSREntry 8 } + + pimBsrCandidateBSRStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type for this row. Rows having the value + 'permanent' need not allow write-access to any columnar + objects in the row." + --ÌõÄ¿´æ´¢ÀàÐÍ + DEFVAL { nonVolatile } + ::= { pimBsrCandidateBSREntry 9 } + + -- + -- The BSR Elected-BSR Table + -- + + pimBsrElectedBSRTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimBsrElectedBSREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table containing information about + elected BSRs. The table contains one row for each + zone for which there is an elected BSR." + --Elected BSR±í£¬Ã¿¸ö±íÏÖ˵Ã÷Á˲»Í¬µÄAdmin-scopedµ±Ñ¡µÄBSRÐÅÏ¢¡£ + --ÓÉÓÚÎÒÃDz»Ö§³ÖAdmin-scopedµÄ»®·Ö£¬Òò´Ë¸Ã±íÖÐ×î¶àÖ»ÓÐÒ»¸ö±íÏî¡£ + ::= { pimBsrObjects 4 } + + pimBsrElectedBSREntry OBJECT-TYPE + SYNTAX PimBsrElectedBSREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the + pimBsrElectedBSRTable." + --Elected BSR±íÌõÄ¿ + INDEX { pimBsrElectedBSRZoneIndex } + ::= { pimBsrElectedBSRTable 1 } + + PimBsrElectedBSREntry ::= SEQUENCE { + pimBsrElectedBSRZoneIndex Unsigned32, + pimBsrElectedBSRAddressType INTEGER, + pimBsrElectedBSRAddress OCTET STRING, + pimBsrElectedBSRPriority Unsigned32, + pimBsrElectedBSRHashMaskLength Unsigned32, + pimBsrElectedBSRExpiryTime TimeTicks + } + + pimBsrElectedBSRZoneIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The zone index uniquely identifies the zone on a + device to which this Elected BSR is attached. There + is one entry for each zone in ipMcastZoneTable. + Scope-level information for this zone can be extracted + from ipMcastZoneTable in IP MCAST MIB." + --ÓòË÷Òý£¬¶ÔÓ¦ipMcastZoneTableÖеÄÓòÐÅÏ¢¡£ + --ÓÉÓÚ²»Ö§³ÖAdministratively Scoped»®·Ö£¬Òò´Ë¸Ã×Ö¶ÎÓÀԶΪȱʡֵ0 + ::= { pimBsrElectedBSREntry 1 } + + pimBsrElectedBSRAddressType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The address type of the elected BSR." + --µ±Ñ¡µÄBSRµÄµØÖ·ÀàÐÍ + ::= { pimBsrElectedBSREntry 2 } + + pimBsrElectedBSRAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) --(SIZE (4|8|16|20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The (unicast) address of the elected BSR. The + InetAddressType is given by the + pimBsrElectedBSRAddressType object." + --µ±Ñ¡µÄBSRµÄµØÖ· + ::= { pimBsrElectedBSREntry 3 } + + pimBsrElectedBSRPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The priority value for the elected BSR for this address + type. Numerically higher values for this object indicate + higher priorities." + --ÓÅÏȼ¶£¬È¡Öµ·¶Î§0µ½255£¬ÖµÔ½´óÓÅÏȼ¶Ô½¸ß + ::= { pimBsrElectedBSREntry 4 } + + pimBsrElectedBSRHashMaskLength OBJECT-TYPE + SYNTAX Unsigned32 (0..128) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hash mask length (used in the RP hash function) + advertised by the elected BSR for this zone." + --ÓÃÓÚhashº¯ÊýµÄÑÚÂ볤¶È£¬È¡Öµ·¶Î§0µ½128 + ::= { pimBsrElectedBSREntry 5 } + + pimBsrElectedBSRExpiryTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum time remaining before the elected BSR for + this zone will be declared down." + --ÀÏ»¯Ê£Óàʱ¼ä + ::= { pimBsrElectedBSREntry 6 } + + + + -- + -- PIM BSR Notifications + -- + + pimBsrElectedBSRLostElection NOTIFICATION-TYPE + OBJECTS { pimBsrCandidateBSRElectedBSR } + STATUS current + DESCRIPTION + "A pimBsrElectedBSRLostElection notification should be + generated when current E-BSR lost election to a new + Candidate BSR. Only an E-BSR should generate this + notification. + + This notification is generated when + pimBsrCandidateBSRElectedBSR becomes FALSE." + + REFERENCE "I-D.ietf-pim-sm-bsr section 3.1" + ::= { pimBsrNotifications 1 } + + pimBsrCandidateBSRWinElection NOTIFICATION-TYPE + OBJECTS { pimBsrCandidateBSRElectedBSR } + STATUS current + DESCRIPTION + "A pimBsrCandidateBSRWinElection notification should be + generated when a C-BSR wins BSR Election. Only an + E-BSR should generate this notification. + + This notification is generated when + pimBsrCandidateBSRElectedBSR becomes TRUE." + + REFERENCE "I-D.ietf-pim-sm-bsr section 3.1" + ::= { pimBsrNotifications 2 } + + -- + -- Compliance Statements + -- + + pimBsrCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for PIM routers that implement + the Bootstrap Router (BSR) mechanism." + MODULE -- this module + MANDATORY-GROUPS { pimBsrObjectGroup } + + GROUP pimBsrDiagnosticsGroup + DESCRIPTION + "This group is optional." + + ::= { pimBsrCompliances 1 } + + -- + -- Units of Conformance + -- + + pimBsrObjectGroup OBJECT-GROUP + OBJECTS { pimBsrCandidateRPBidir, + pimBsrCandidateRPAdvTimer, + pimBsrCandidateRPPriority, + pimBsrCandidateRPAdvInterval, + pimBsrCandidateRPHoldtime, + pimBsrCandidateRPStatus, + pimBsrElectedBSRRPSetPriority, + pimBsrElectedBSRRPSetHoldtime, + pimBsrElectedBSRRPSetExpiryTime, + pimBsrElectedBSRRPSetGrpBidir, + pimBsrCandidateBSRAddress, + pimBsrCandidateBSRPriority, + pimBsrCandidateBSRHashMaskLength, + pimBsrCandidateBSRElectedBSR, + pimBsrCandidateBSRBootstrapTimer, + pimBsrCandidateBSRStatus, + pimBsrElectedBSRAddress, + pimBsrElectedBSRPriority, + pimBsrElectedBSRHashMaskLength, + pimBsrElectedBSRExpiryTime } + STATUS current + DESCRIPTION + "A collection of objects for managing the Bootstrap + Router (BSR) mechanism for PIM routers." + ::= { pimBsrGroups 1 } + + pimBsrDiagnosticsGroup NOTIFICATION-GROUP + NOTIFICATIONS { pimBsrElectedBSRLostElection, + pimBsrCandidateBSRWinElection } + STATUS current + DESCRIPTION + "Objects providing additional diagnostics related to + the Bootstrap Router (BSR) mechanism for PIM routers." + ::= { pimBsrGroups 2 } + + END diff --git a/mibs/fs/SWITCH b/mibs/fs/SWITCH new file mode 100644 index 0000000000..767ac728a5 --- /dev/null +++ b/mibs/fs/SWITCH @@ -0,0 +1,65200 @@ +-- Imports declare + +SWITCH DEFINITIONS ::= BEGIN + +IMPORTS + SnmpAdminString + FROM SNMP-FRAMEWORK-MIB + + ifIndex + FROM IF-MIB + + TimeTicks, Counter32, OBJECT-IDENTITY, + mib-2, MODULE-IDENTITY, IpAddress, Counter64, + Unsigned32, Integer32, Gauge32, OBJECT-TYPE, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + + OwnerString + FROM RMON-MIB + + NOTIFICATION-GROUP, MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + + InetAddressPrefixLength, InetAddress, InetAddressType + FROM INET-ADDRESS-MIB + + InterfaceIndex, InterfaceIndexOrZero, ifIndex + FROM IF-MIB + + VrId + FROM VRRP-MIB + + TestAndIncr, TimeStamp, AutonomousType, DisplayString, + PhysAddress, TEXTUAL-CONVENTION, TruthValue, DateAndTime, + MacAddress, RowStatus + FROM SNMPv2-TC + + enterprises + FROM SNMPv2-SMI; + +-- Child OID declare + +switch MODULE-IDENTITY + LAST-UPDATED "201006260000Z" -- June 26, 2008 at 00:00 GMT + ORGANIZATION + "" + CONTACT-INFO + " + " + DESCRIPTION + "The System Information of the switch" + ::= { enterprises 27975 } + +------------------------------------------------------------------ +-- Switch Identifiers -- +------------------------------------------------------------------ + +system OBJECT IDENTIFIER ::= { switch 1 } +syslog OBJECT IDENTIFIER ::= { switch 2 } +mirror OBJECT IDENTIFIER ::= { switch 3 } +portSecurity OBJECT IDENTIFIER ::= { switch 4 } +stormControl OBJECT IDENTIFIER ::= { switch 5 } +ntp OBJECT IDENTIFIER ::= { switch 6 } +acl OBJECT IDENTIFIER ::= { switch 7 } +qos OBJECT IDENTIFIER ::= { switch 8 } +igsp OBJECT IDENTIFIER ::= { switch 9 } +linkAgg OBJECT IDENTIFIER ::= { switch 10 } +qBridgeExt OBJECT IDENTIFIER ::= { switch 11 } +dot1xExt OBJECT IDENTIFIER ::= { switch 12 } +timeRange OBJECT IDENTIFIER ::= { switch 13 } +stpExt OBJECT IDENTIFIER ::= { switch 14 } +igmpExt OBJECT IDENTIFIER ::= { switch 16 } +boardHealthyMonitor OBJECT IDENTIFIER ::= { switch 17 } +arpInsp OBJECT IDENTIFIER ::= { switch 20 } +pimsmExt OBJECT IDENTIFIER ::= { switch 21 } +ospfExt OBJECT IDENTIFIER ::= { switch 22 } +user OBJECT IDENTIFIER ::= { switch 30 } +snmpExt OBJECT IDENTIFIER ::= { switch 32 } +stm OBJECT IDENTIFIER ::= { switch 33 } +dnsClient OBJECT IDENTIFIER ::= { switch 34 } +ssh OBJECT IDENTIFIER ::= { switch 35 } +dhcp OBJECT IDENTIFIER ::= { switch 36 } +lswdevMMib OBJECT IDENTIFIER ::= { switch 37 } +lswTrapMib OBJECT IDENTIFIER ::= { switch 39 } +ipSourceGuard OBJECT IDENTIFIER ::= { switch 40 } +vrrpExt OBJECT IDENTIFIER ::= { switch 41 } +interface OBJECT IDENTIFIER ::= { switch 42 } +management OBJECT IDENTIFIER ::= { switch 43 } +mvr OBJECT IDENTIFIER ::= { switch 44 } +erps OBJECT IDENTIFIER ::= { switch 45 } +prefixList OBJECT IDENTIFIER ::= { switch 46 } +ipUnicast OBJECT IDENTIFIER ::= { switch 47 } +vrf OBJECT IDENTIFIER ::= { switch 48 } +aaa OBJECT IDENTIFIER ::= { switch 49 } +evc OBJECT IDENTIFIER ::= { switch 51 } +qinq OBJECT IDENTIFIER ::= { switch 52 } +rmonExt OBJECT IDENTIFIER ::= { switch 53 } +routeMap OBJECT IDENTIFIER ::= { switch 54 } +ripExt OBJECT IDENTIFIER ::= { switch 57 } +ldpExt OBJECT IDENTIFIER ::= { switch 60 } +bgp OBJECT IDENTIFIER ::= { switch 68 } +mpls OBJECT IDENTIFIER ::= { switch 69 } +smartlink OBJECT IDENTIFIER ::= { switch 70 } +flowctrl OBJECT IDENTIFIER ::= { switch 71 } +cputraffic OBJECT IDENTIFIER ::= { switch 72 } +portisolate OBJECT IDENTIFIER ::= { switch 73 } +phyloopback OBJECT IDENTIFIER ::= { switch 74 } +monitorlink OBJECT IDENTIFIER ::= { switch 75 } +udld OBJECT IDENTIFIER ::= { switch 76 } +policyBasedRouting OBJECT IDENTIFIER ::= { switch 77 } +ddos OBJECT IDENTIFIER ::= { switch 78 } +l2ping OBJECT IDENTIFIER ::= { switch 79 } +ipg OBJECT IDENTIFIER ::= { switch 80 } +syncE OBJECT IDENTIFIER ::= { switch 81 } +arpConfig OBJECT IDENTIFIER ::= { switch 82 } +cfm OBJECT IDENTIFIER ::= { switch 83 } +efm OBJECT IDENTIFIER ::= { switch 84 } +ptp OBJECT IDENTIFIER ::= { switch 85 } +pm OBJECT IDENTIFIER ::= { switch 90 } +alarm OBJECT IDENTIFIER ::= { switch 91 } +rsvpTe OBJECT IDENTIFIER ::= { switch 92 } +g8031 OBJECT IDENTIFIER ::= { switch 93 } +g8032 OBJECT IDENTIFIER ::= { switch 94 } +voiceVlan OBJECT IDENTIFIER ::= { switch 95 } +ivi OBJECT IDENTIFIER ::= { switch 96 } +product OBJECT IDENTIFIER ::= { switch 99 } +l2protocol OBJECT IDENTIFIER ::= { switch 100 } +loopbackDetect OBJECT IDENTIFIER ::= { switch 105 } +ipsla OBJECT IDENTIFIER ::= { switch 106 } + + e3008TS OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E300,8TS." + ::= { product 3080 } + + e30016TX OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E300,16TX." + ::= { product 3160 } + + e3508T12X OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E350,8T12X." + ::= { product 3200 } + + e30024TS OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E300,24TS." + ::= { product 3240 } + + e30024ST OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E300,24ST." + ::= { product 3241 } + + e30048TS OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E300,48TS." + ::= { product 3480 } + + b30048T OBJECT-IDENTITY + STATUS current + DESCRIPTION + "B300,48T." + ::= { product 3481 } + + e33048T OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E330,48T." + ::= { product 3485 } + + e33048SE OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E330,48SE." + ::= { product 3486 } + + e33048S OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E330,48S." + ::= { product 3487 } + + g24eu OBJECT-IDENTITY + STATUS current + DESCRIPTION + "G24EU,24+4." + ::= { product 3488 } + + e35048T4X OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E350,48T4X." + ::= { product 3520 } + + e58024Q OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E580,24Q." + ::= { product 5801 } + + e58048X2Q4Z OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E580,48X2Q4Z." + ::= { product 5802 } + + e58048X6Q OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E580,48X6Q." + ::= { product 5803 } + + e58032X2Q OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E580,32X2Q." + ::= { product 5804 } + + e58032X OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E580,32X." + ::= { product 5805 } + + e58020Q4Z OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E580,20Q4Z." + ::= { product 5806 } + + e602 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E600,2 slots." + ::= { product 6020 } + + e606 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E600,6 slots." + ::= { product 6060 } + + e614 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E600,14 slots." + ::= { product 6140 } + + e802 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E800,2 slots" + ::= { product 8020 } + + e806 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E800,6 slots" + ::= { product 8060 } + + e814 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "E800,14 slots" + ::= { product 8140 } + + + + +memory OBJECT IDENTIFIER ::= { system 1 } +systemStats OBJECT IDENTIFIER ::= { system 2 } +operate OBJECT IDENTIFIER ::= { system 3 } +--sysImageTable OBJECT IDENTIFIER ::= { system 4 } +sysImageTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysImageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The system image management table." + ::= { system 4 } +flash OBJECT IDENTIFIER ::= { system 5 } +cf OBJECT IDENTIFIER ::= { system 6 } +sysTrap OBJECT IDENTIFIER ::= { system 7 } +time OBJECT IDENTIFIER ::= { system 8 } + + + +-- Sub Module: SYSTEM + +ErrorFlag ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents a possible error condition." + SYNTAX INTEGER { noError(0), error(1) } + +memIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bogus Index. This should always return the integer 0." + ::= { memory 1 } + +memTotalReal OBJECT-TYPE + SYNTAX Integer32 + UNITS "kB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of real/physical memory installed on this host." + ::= { memory 5 } + +memTotalFree OBJECT-TYPE + SYNTAX Integer32 + UNITS "kB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of memory free or available for use on + this host.This value typically covers both real memory + and swap space or virtual memory." + ::= { memory 11 } + +memTotalUsed OBJECT-TYPE + SYNTAX Integer32 + UNITS "kB" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of memory used on this host. + This value typically covers both real memory + and swap space or virtual memory." + ::= { memory 12 } + +-- systemStats OBJECT IDENTIFIER ::= { system 2 } + +ssIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bogus Index.This should always return the integer 1." + ::= { systemStats 1 } + +ssCpuIdle OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of processor time spent idle, calculated over the last + minute." + ::= { systemStats 11 } + +-- The agent only implements those of the following counters that the +-- kernel supports! Don't expect all to be present. + +-- sysProcessTable OBJECT IDENTIFIER ::= { systemStats 100 } +sysProcessTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysProcessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The system precess table." + ::= { systemStats 100 } + + +sysProcessEntry OBJECT-TYPE + SYNTAX SysProcessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entity process entry. Each entry consists of information of an process. + The sysProcessIndex exclusively defines an process id." + INDEX { sysProcessIndex } + ::= { sysProcessTable 1 } + + +SysProcessEntry ::= + SEQUENCE + { + sysProcessIndex + Integer32, + sysProcessName + OCTET STRING + } + +sysProcessIndex OBJECT-TYPE + SYNTAX Integer32 (0..65536) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The pid of process." + ::= { sysProcessEntry 1 } + + +sysProcessName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the process." + ::= { sysProcessEntry 2 } + +-- operate OBJECT IDENTIFIER ::= { system 3 } + +configSave OBJECT-TYPE + SYNTAX Integer32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This should always write running-config to startup-config.And the + valid set value is 1. When get the configSave value, 1 means success, 0 means failure." + ::= { operate 1 } + +reload OBJECT-TYPE + SYNTAX INTEGER + { + rebootWithoutSave(1), + saveAndReboot(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This should allow to reboot the switch.The valid input value is 1 and 2. + Value 1 means the switch will reboot without savingcurrent configuration. + Value 2 means the switch will savecurrent configuration before reboot the switch." + ::= { operate 2 } + +rebootAt OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify auto reboot parameters at the special time. 0 is mean clear." + ::= { operate 3 } + +rebootDelay OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..3)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify auto reboot parameters reboot after delay some time. The value is [1, 720] minutes. 0 is mean clear." + ::= { operate 4 } + +version OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description the current version " + ::= { operate 5 } + +serviceTelnet OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Telnet service.1:enable 2:disable." + ::= { operate 6 } + +loginFail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This node only for login fail for three time." + ::= { operate 7 } + +lastCommand OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Save the last command line and time." + ::= { operate 8 } + +currentRunningImage OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the current running image." + ::= { operate 9 } + +sysStartUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show system startup time." + ::= { operate 10 } + +--sysImageTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF SysImageEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "The system image management table." +-- ::= { system 4 } + +sysImageEntry OBJECT-TYPE + SYNTAX SysImageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entity image entry.Each entry consists of information of an entity image. + The sysImageIndex exclusively defines an image file." + INDEX { sysImageIndex } + ::= { sysImageTable 1 } + + +SysImageEntry ::= + SEQUENCE + { + sysImageIndex + Integer32, + sysImageName + OCTET STRING, + sysImageCreateTime + OCTET STRING, + sysImageVersion + OCTET STRING, + sysImageSize + OCTET STRING, + sysImageDir + OCTET STRING, + sysImageIsBoot + TruthValue + } + +sysImageIndex OBJECT-TYPE + SYNTAX Integer32 (0..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of image." + ::= { sysImageEntry 1 } + + +sysImageName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The file name of the image." + ::= { sysImageEntry 2 } + +sysImageCreateTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The create time of the image." + ::= { sysImageEntry 3 } + +sysImageVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the image." + ::= { sysImageEntry 4 } + +sysImageSize OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the image." + ::= { sysImageEntry 5 } + +sysImageDir OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The dir of the image." + ::= { sysImageEntry 6 } + +sysImageIsBoot OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This image is the boot image (1),and is not the boot image (2). Only support enable(1)." + ::= { sysImageEntry 7 } + +-- +-- System Traps +-- + + + +--time OBJECT IDENTIFIER ::= { system 8 } + +timeSet OBJECT IDENTIFIER ::= { time 1 } +timeSetClock OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "current time. format HH:MM:SS." + ::= { timeSet 1 } + +timeSetMonth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Month of the year. range is [1, 12]." + ::= { timeSet 2 } + +timeSetDay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Day of the month. range is [1, 31]." + ::= { timeSet 3 } + +timeSetYear OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Year of the date. range is [2000, 2037]." + ::= { timeSet 4 } + +timezoneSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF TimezoneSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of SummerTime." + ::= { time 2 } + +timezoneSetEntry OBJECT-TYPE + SYNTAX TimezoneSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of timezone." + INDEX { timezoneSetZoneName } + ::= { timezoneSetTable 1 } + +TimezoneSetEntry ::= + SEQUENCE + { + timezoneSetZoneName + OCTET STRING, + timezoneSetType + Integer32, + timezoneSetHours + Integer32, + timezoneSetMinutes + Integer32, + timezoneSetSeconds + Integer32, + timezoneSetState + RowStatus + } + +timezoneSetZoneName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..64)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Zone name, must be less than 32 characters. only include [a-zA-Z_]. The begin and end character must be alphabet. Its length range is [3, 32)" + ::= { timezoneSetEntry 1 } + +timezoneSetType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Positive/Negative time zone offset from UTC. + 0 means Negative + 1 means Positive" + ::= { timezoneSetEntry 2 } + +timezoneSetHours OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Hours offset from UTC, must be range 0~23." + ::= { timezoneSetEntry 3 } + +timezoneSetMinutes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Minutes offset from UTC, must be range 0~59." + ::= { timezoneSetEntry 4 } + +timezoneSetSeconds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Seconds offset from UTC, must be range 0~59." + ::= { timezoneSetEntry 5 } + +timezoneSetState OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { timezoneSetEntry 6 } + +recurrentSummerTimeTable OBJECT-TYPE + SYNTAX SEQUENCE OF RecurrentSummerTimeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of SummerTime." + ::= { time 3 } + +recurrentSummerTimeEntry OBJECT-TYPE + SYNTAX RecurrentSummerTimeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of SummerTime." + INDEX { recurrentSummerTimeZoneName } + ::= { recurrentSummerTimeTable 1 } + +RecurrentSummerTimeEntry ::= + SEQUENCE { + recurrentSummerTimeZoneName + OCTET STRING, + recurrentSummerTimeStartMonth + Integer32, + recurrentSummerTimeStartDay + Integer32, + recurrentSummerTimeStartClock + OCTET STRING, + recurrentSummerTimeEndMonth + Integer32, + recurrentSummerTimeEndDay + Integer32, + recurrentSummerTimeEndClock + OCTET STRING, + recurrentSummerTimeOffset + Integer32, + recurrentSummerTimeState + RowStatus + } + +recurrentSummerTimeZoneName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..64)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Zone name, must be less than 32 characters. only include [a-zA-Z_]. The begin and end character must be alphabet. Its length range is [1, 32)" + ::= { recurrentSummerTimeEntry 1 } + +recurrentSummerTimeStartMonth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start month of the year. range is [1,12]" + ::= { recurrentSummerTimeEntry 2 } + +recurrentSummerTimeStartDay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Day in month to start. range is [1, 31]. " + ::= { recurrentSummerTimeEntry 3 } + +recurrentSummerTimeStartClock OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Time to start. format HH:MM:SS" + ::= { recurrentSummerTimeEntry 4 } + +recurrentSummerTimeEndMonth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Month to end. range is [1, 12]." + ::= { recurrentSummerTimeEntry 5 } + +recurrentSummerTimeEndDay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Day in month to end. range is [1, 31]." + ::= { recurrentSummerTimeEntry 6 } + +recurrentSummerTimeEndClock OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Time to end. format HH:MM:SS" + ::= { recurrentSummerTimeEntry 7 } + +recurrentSummerTimeOffset OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Summer time offset, unit is minute. range is [1, 1440]." + ::= { recurrentSummerTimeEntry 8 } + +recurrentSummerTimeState OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + + ::= { recurrentSummerTimeEntry 9 } + +summerTimeTable OBJECT-TYPE + SYNTAX SEQUENCE OF SummerTimeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of SummerTime." + ::= { time 4 } + +summerTimeEntry OBJECT-TYPE + SYNTAX SummerTimeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of SummerTime." + INDEX { summerTimeZoneName } + ::= { summerTimeTable 1 } + +SummerTimeEntry ::= + SEQUENCE { + summerTimeZoneName + OCTET STRING, + summerTimeStartMonth + Integer32, + summerTimeStartDay + Integer32, + summerTimeStartYear + Integer32, + summerTimeStartClock + OCTET STRING, + summerTimeEndMonth + Integer32, + summerTimeEndDay + Integer32, + summerTimeEndYear + Integer32, + summerTimeEndClock + OCTET STRING, + summerTimeOffset + Integer32, + summerTimeState + RowStatus + } + +summerTimeZoneName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Zone name, must be less than 32 characters. + only include [a-zA-Z_]. The begin and end character must be alphabet. Its length range is [1, 32)" + ::= { summerTimeEntry 1 } +summerTimeStartMonth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start month of the year. range is [1, 12]." + ::= { summerTimeEntry 2 } + +summerTimeStartDay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start day of month. range is [1, 31]." + ::= { summerTimeEntry 3 } + +summerTimeStartYear OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start year of summer-time. range is [2000, 2037]." + ::= { summerTimeEntry 4 } + +summerTimeStartClock OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start time. format HH:MM:SS." + ::= { summerTimeEntry 5 } + +summerTimeEndMonth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End month of year. range is [1, 12]." + ::= { summerTimeEntry 6 } + +summerTimeEndDay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End day of month. range is [1, 31]." + ::= { summerTimeEntry 7 } + +summerTimeEndYear OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End year of summer time. range is [2000, 2037]." + ::= { summerTimeEntry 8 } + +summerTimeEndClock OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End time. format HH:MM:SS." + ::= { summerTimeEntry 9 } + +summerTimeOffset OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Summer time offset, unit is minute. range is [1, 1440]." + ::= { summerTimeEntry 10 } + +summerTimeState OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { summerTimeEntry 11 } + +cpuUsage OBJECT IDENTIFIER ::= { system 9 } + +fiveSeconds OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU usage within five seconds." + ::= { cpuUsage 1 } + +oneMinute OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU usage within one minute." + ::= { cpuUsage 2 } + +fiveMinutes OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CPU usage within five minutes." + ::= { cpuUsage 3 } + +-- Sub Module: FLASH + +-- +-- Textual conventions +-- + +FlashOperationStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The status of the specified operation can be one of + the following. + opInProgress : the operation is in process. + opSuccess : the operation has been completed successfully. + opInvalid : the command is invalid or command-protocol-device combination + is unsupported by the system. + opInvalidProtocol :invalid protocol is specified + opInvalidSourceName :invalid source file name is specified. + opInvalidDestName :invalid target name is specified. + opInvalidServerAddress :invalid server address is specified + opDeviceBusy :the device is in use and locked by another process + opDeviceOpenError :invalid device name is specified. + opDeviceError : device read, write or erase error + opDeviceNotProgrammable :device isread-only but a write or + erase operation was specified. + opDeviceFull : device is filled to capacity + opFileOpenError :invalid file name; file not found in partition + opFileTransferError :file transfer was unsuccessful + opFileChecksumError :file checksum in Flash is invalid + opNoMemory :system is running in low on memory + opUnknownFailure :failure which is unknown + opDeleteFileOpenError :file is in used by another process + opDeleteInvalidDevice :invalid device name is specified + opDeleteInvalidFunction :deleted operation is unsupported + by the device. + opDeleteOperationError :operation is in a low error + opDeleteInvalidFileName :invalid file name is specified + pDeleteDeviceBusy :the device is in use and locked + by another process. + opDeleteParaError :the parameters are invalid + opDeleteInvalidPath :the file path is invalid." + SYNTAX INTEGER + { + opInProgress(1), + opSuccess(2), + opInvalid(3), + opInvalidProtocol(4), + opInvalidSourceName(5), + opInvalidDestName(6), + opInvalidServerAddress(7), + opDeviceBusy(8), + opDeviceOpenError(9), + opDeviceError(10), + opDeviceNotProgrammable(11), + opDeviceFull(12), + opFileOpenError(13), + opFileTransferError(14), + opFileChecksumError(15), + opNoMemory(16), + opAuthFail(17), + opTimeout(18), + opUnknownFailure(19), + opDeleteFileOpenError(20), + opDeleteInvalidDevice(21), + opDeleteInvalidFunction(22), + opDeleteOperationError(23), + opDeleteInvalidFileName(24), + opDeleteDeviceBusy(25), + opDeleteParaError(26), + opDeleteInvalidPath(27) + } + +-- +-- Node definitions +-- + +-- Flash device management MIB object +flashManMIBObjects OBJECT IDENTIFIER ::= { flash 1 } + + +-- The flash device information. +flashDevice OBJECT IDENTIFIER ::= { flashManMIBObjects 1 } + + +flashTable OBJECT-TYPE + SYNTAX SEQUENCE OF FlashEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table gives the properties of all the flashes on the system." + ::= { flashDevice 1 } + + +flashEntry OBJECT-TYPE + SYNTAX FlashEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of flashTable." + INDEX { flhIndex } + ::= { flashTable 1 } + + +FlashEntry ::= + SEQUENCE { + flhIndex + Integer32, + flhSize + OCTET STRING, + flhFree + OCTET STRING, + flhName + OCTET STRING, +-- flhChipNum +-- Integer32, + flhDescr + OCTET STRING +-- flhInitTime +-- TimeStamp +-- flhRemovable +-- TruthValue, +-- flhPartitionBool +-- TruthValue, +-- flhMinPartitionSize +-- Integer32, +-- flhMaxPartitions +-- Integer32, +-- flhPartitionNum +-- Integer32 + } + +flhIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of flashTable.It has a minimum value of 1, and maximum value + of the same as the value of flhSupportNum." + ::= { flashEntry 1 } + + +flhSize OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the total size of the flash device indexed by flhIndex. + The value should be zero if the flash is removed for a removable device." + ::= { flashEntry 2 } + + +flhFree OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the free size of the flash device." + ::= { flashEntry 3 } + + +flhName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The flash name within the system." + ::= { flashEntry 4 } + + +--flhChipNum OBJECT-TYPE +-- SYNTAX Integer32 (1..64) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The chip numbers in the flash." +-- ::= { flashEntry 5 } + + +flhDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DESCRIPTION of the purpose of the flash in the system." + ::= { flashEntry 6 } + + +--flhInitTime OBJECT-TYPE +-- SYNTAX TimeStamp +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- The initialization time for the flash component or partition, +-- recorded using the system time.This will be the boot time for +-- a fixed device.For a removable component or a partition, +-- it will be the initialization time. +-- " +-- ::= { flashEntry 8 } + + +--flhRemovable OBJECT-TYPE +-- SYNTAX TruthValue +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- The value indicates whether the flash indexed can be removed +-- or not. +-- The true(1) value indicates the flash device CAN be removed. +-- " +-- ::= { flashEntry 9 } +-- +-- +--flhPartitionBool OBJECT-TYPE +-- SYNTAX TruthValue +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- " +-- The value indicates whether the flash indexed can be partitioned +-- or not. +-- The true(1) value indicates the flash CAN be partitioned. +-- " +-- ::= { flashEntry 11 } +-- +-- +--flhMinPartitionSize OBJECT-TYPE +-- SYNTAX Integer32 +-- UNITS "bytes" +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- Minimum partition size supported. +-- If flhDevicePartitionBool is false, the value +-- of this object is the same as flhSize. +-- " +-- ::= { flashEntry 12 } +-- +-- +--flhMaxPartitions OBJECT-TYPE +-- SYNTAX Integer32 (1..8) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- The maximum count of partitions which the system supports +-- for this flash.If flhPartitionBool is false, +-- the object value is 1. +-- " +-- ::= { flashEntry 13 } +-- +-- +--flhPartitionNum OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- The actual number of partitions supported by the system for +-- this flash.If flhPartitionBool is false, this value is 1. +-- " +-- ::= { flashEntry 14 } + + +flhFiles OBJECT IDENTIFIER ::= { flashDevice 2 } + + +flhFileTable OBJECT-TYPE + SYNTAX SEQUENCE OF FlhFileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of file information." + ::= { flhFiles 1 } + + +flhFileEntry OBJECT-TYPE + SYNTAX FlhFileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry representing a file.Indexed using flash number, partition + number, and file number." + INDEX {flhFileIndex } + ::= { flhFileTable 1 } + + +FlhFileEntry ::= + SEQUENCE { + flhFileIndex + Integer32, + flhFileName + OCTET STRING, + flhFileSize + Integer32, + flhFileTime + OCTET STRING +-- flhFileChecksum +-- OCTET STRING + } + +flhFileIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the table, whose range is from 1 to 2147483647." + ::= { flhFileEntry 1 } + + +flhFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A valid file name supported by the file system." + ::= { flhFileEntry 2 } + + +flhFileSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The file size in bytes excluding the file header of file system. + The value should be greater than zero." + ::= { flhFileEntry 3 } + + +flhFileTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time when this file is modified last time." + ::= { flhFileEntry 4 } + + +--flhFileChecksum OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The file checksum in the header of file." +-- ::= { flhFileEntry 5 } + + +-- The operation on the flash. +flashOperate OBJECT IDENTIFIER ::= { flashManMIBObjects 2 } + + +flhOpTable OBJECT-TYPE + SYNTAX SEQUENCE OF FlhOpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table used to operate flash." + ::= { flashOperate 1 } + + +flhOpEntry OBJECT-TYPE + SYNTAX FlhOpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Note an operation can not be stopped until it is finished. + If notification is configured, NMS will receive a notification + at the end of the operation. + Entries in the table will be removed automatically in 5 minutes. + It can also be deleted by NMS directly." + INDEX { flhOperIndex } + ::= { flhOpTable 1 } + + +FlhOpEntry ::= + SEQUENCE { + flhOperIndex + Integer32, + flhOperType + INTEGER, + flhOperProtocol + INTEGER, + flhOperServerAddress + IpAddress, + flhOperServerUser + OCTET STRING, + flhOperPassword + OCTET STRING, + flhOperSourceFile + OCTET STRING, + flhOperDestinationFile + OCTET STRING, + flhOperStatus + FlashOperationStatus , +-- flhOperEndNotification +-- TruthValue, +-- flhOperProgress +-- TimeTicks, + flhOperIsManagementIf + TruthValue, + flhOperRowStatus + RowStatus + } + +flhOperIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Specifies the index of an entry.It is a + random value when creating an entry." + ::= { flhOpEntry 1 } + + +flhOperType OBJECT-TYPE + SYNTAX INTEGER + { + flash2Flash(1), + net2Flash(2), + flash2Net(3), + delete(4), + rename(5) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the operation to be executed. + flash2Flash(1) Copy a file from flash to flash. + net2Flash(2) Copy a file from net to flash; + flash2Net(3) Copy a file from flash to net. + delete(4) Delete a file from flash, the file name is specified by flhOperSourceFile; + rename(5) Change a file's name." + ::= { flhOpEntry 2 } + + +flhOperProtocol OBJECT-TYPE + SYNTAX INTEGER + { + ftp(1), + tftp(2) +-- clusterftp(3), +-- clustertftp(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the protocol used to transfer file. + The default protocol is ftp. + Both member switch and commander switch can use them if they + support HGMP v2. + 1 FTP + 2 TFTP" + -- DEFVAL { ftp } + ::= { flhOpEntry 3 } + + +flhOperServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The address of remote host acting as server for operation. + The default value is 0.0.0.0." +-- DEFVAL { 0.0.0.0 } + ::= { flhOpEntry 4 } + + +flhOperServerUser OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When using ftp to transfer files, the user name must be + specified through this node." + ::= { flhOpEntry 5 } + + +flhOperPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Remote user password for copying via ftp protocol.Optionally, + This object may be ignored for protocols other than ftp." + ::= { flhOpEntry 6 } + + +flhOperSourceFile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the source file name to be transferred. + It may be located on flash or remote server. + It may include the file path if it is applicable. + It must be specified." + ::= { flhOpEntry 7 } + + +flhOperDestinationFile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the destination file name. + It may be located on flash or remote server. + It may include the file path if it is applicable. + If it is not specified, the destination file name + is the same as source file name for application." + ::= { flhOpEntry 8 } + + +flhOperStatus OBJECT-TYPE + SYNTAX FlashOperationStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the specified operation can be one of + the following. + opInProgress(1) : the operation is in process. + opSuccess(2) : the operation has been completed successfully. + opInvalid(3) : the command is invalid or command-protocol-device combination is unsupported by the system. + opInvalidProtocol(4) :invalid protocol is specified + opInvalidSourceName(5) :invalid source file name is specified. + opInvalidDestName(6) :invalid target name is specified. + opInvalidServerAddress(7) :invalid server address is specified + opDeviceBusy(8) :the device is in use and locked by another process + opDeviceOpenError(9) :invalid device name is specified. + opDeviceError(10) : device read, write or erase error + opDeviceNotProgrammable(11) :device isread-only but a write or erase operation was specified. + opDeviceFull(12) : device is filled to capacity + opFileOpenError(13) :invalid file name; file not found in partition + opFileTransferError(14) :file transfer was unsuccessful + opFileChecksumError(15) :file checksum in Flash is invalid + opNoMemory(16) :system is running in low on memory + opUnknownFailure(19) :failure which is unknown + opDeleteFileOpenError(20) :file is in used by another process + opDeleteInvalidDevice(21) :invalid device name is specified + opDeleteInvalidFunction(22) :deleted operation is unsupported by the device. + opDeleteOperationError(23) :operation is in a low error + opDeleteInvalidFileName(24) :invalid file name is specified + pDeleteDeviceBusy(25) :the device is in use and locked by another process. + opDeleteParaError(26) :the parameters are invalid + opDeleteInvalidPath(27) :the file path is invalid." + ::= { flhOpEntry 9 } + + +--flhOperEndNotification OBJECT-TYPE +-- SYNTAX TruthValue +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- If the value of it is specified 'true', a notification +-- will be generated at the end of the operation. +-- Else no notification will be generated. +-- " +-- DEFVAL { false } +-- ::= { flhOpEntry 10 } + + +--flhOperProgress OBJECT-TYPE +-- SYNTAX TimeTicks +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The progress described as the time taken for the operation. +-- " +-- ::= { flhOpEntry 11 } + +flhOperIsManagementIf OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If use management interface running SNMP or not, true(1):enable.false(2):disable" + -- DEFVAL { true } + ::= { flhOpEntry 12 } + +flhOperRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { flhOpEntry 13 } + + +-- flashNotification OBJECT IDENTIFIER ::= { flashManMIBObjects 3 } +-- +-- +-- flhOperNotification NOTIFICATION-TYPE +-- OBJECTS { flhOperStatus } +-- STATUS current +-- DESCRIPTION +-- " +-- A flhOperNotification is sent at the completion of a flash +-- copy operation if flhOperEndNotification is true. +-- " +-- ::= { flashNotification 1 } + + +-- Sub Module: CF + + + +-- +-- Textual conventions +-- + +CfOperationStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The status of the specified operation can be one of the following. + opInProgress : the operation is in process. + opSuccess : the operation has been completed successfully. + opInvalid : the command is invalid or command-protocol-device combination is + unsupported by the system. + opInvalidProtocol :invalid protocol is specified + opInvalidSourceName :invalid source file name is specified. + opInvalidDestName :invalid target name is specified. + opInvalidServerAddress :invalid server address is specified + opDeviceBusy :the device is in use and locked by another process + opDeviceOpenError :invalid device name is specified. + opDeviceError : device read, write or erase error + opDeviceNotProgrammable :device isread-only but a write or + erase operation was specified + opDeviceFull : device is filled to capacity + opFileOpenError :invalid file name; file not found in partition + opFileTransferError :file transfer was unsuccessful + opFileChecksumError :file checksum in Cf is invalid + opNoMemory :system is running in low on memory + opUnknownFailure :failure which is unknown + opDeleteFileOpenError :file is in used by another process + opDeleteInvalidDevice :invalid device name is specified + opDeleteInvalidFunction :deleted operation is unsupported + by the device + opDeleteOperationError :operation is in a low error + opDeleteInvalidFileName :invalid file name is specified + pDeleteDeviceBusy :the device is in use and locked + by another process + opDeleteParaError :the parameters are invalid + opDeleteInvalidPath :the file path is invalid." + SYNTAX INTEGER + { + opInProgress(1), + opSuccess(2), + opInvalid(3), + opInvalidProtocol(4), + opInvalidSourceName(5), + opInvalidDestName(6), + opInvalidServerAddress(7), + opDeviceBusy(8), + opDeviceOpenError(9), + opDeviceError(10), + opDeviceNotProgrammable(11), + opDeviceFull(12), + opFileOpenError(13), + opFileTransferError(14), + opFileChecksumError(15), + opNoMemory(16), + opAuthFail(17), + opTimeout(18), + opUnknownFailure(19), + opDeleteFileOpenError(20), + opDeleteInvalidDevice(21), + opDeleteInvalidFunction(22), + opDeleteOperationError(23), + opDeleteInvalidFileName(24), + opDeleteDeviceBusy(25), + opDeleteParaError(26), + opDeleteInvalidPath(27) + } + +-- +-- Node definitions +-- + +-- Cf device management MIB object + cfManMIBObjects OBJECT IDENTIFIER ::= { cf 1 } + + +-- The cf device information. +cfDevice OBJECT IDENTIFIER ::= { cfManMIBObjects 1 } + +cfTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table gives the properties of all the cfes on the system." + ::= { cfDevice 1 } + + +cfEntry OBJECT-TYPE + SYNTAX CfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of cfTable." + INDEX { cfIndex } + ::= { cfTable 1 } + + +CfEntry ::= + SEQUENCE { + cfIndex + Integer32, + cfSize + OCTET STRING, + cfFree + OCTET STRING, + cfName + OCTET STRING, +-- cfChipNum +-- Integer32, + cfDescr + OCTET STRING +-- cfInitTime +-- TimeStamp +-- cfRemovable +-- TruthValue, +-- cfPartitionBool +-- TruthValue, +-- cfMinPartitionSize +-- Integer32, +-- cfMaxPartitions +-- Integer32, +-- cfPartitionNum +-- Integer32 + } + +cfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of cfTable.It has a minimum value of 1, and + maximum value of the same as the value of cfSupportNum." + ::= { cfEntry 1 } + + +cfSize OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Specifies the total size of the cf device indexed + by cfIndex.The value should be zero if the cf is + removed for a removable device. " + ::= { cfEntry 2 } + + +cfFree OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the free size of the cf device." + ::= { cfEntry 3 } + + +cfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cf name within the system." + ::= { cfEntry 4 } + + +--cfChipNum OBJECT-TYPE +-- SYNTAX Integer32 (1..64) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The chip numbers in the cf." +-- ::= { cfEntry 5 } + + + cfDescr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of the purpose of the cf in the system." + ::= { cfEntry 6 } + + + + cfFiles OBJECT IDENTIFIER ::= { cfDevice 2 } + + + cfFileTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfFileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of file information." + ::= { cfFiles 1 } + + + cfFileEntry OBJECT-TYPE + SYNTAX CfFileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry representing a file. Indexed using cf number, + partition number, and file number. + " + INDEX {cfFileIndex } + ::= { cfFileTable 1 } + + + CfFileEntry ::= + SEQUENCE { + cfFileIndex + Integer32, + cfFileName + OCTET STRING, + cfFileSize + Integer32, + cfFileTime + OCTET STRING +-- cfFileChecksum +-- OCTET STRING + } + + cfFileIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the table, whose range is from 1 to 2147483647" + ::= { cfFileEntry 1 } + + + cfFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A valid file name supported by the file system." + ::= { cfFileEntry 2 } + + + cfFileSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The file size in bytes excluding the file + header of file system. The value should be greater than zero. + " + ::= { cfFileEntry 3 } + + + cfFileTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The time when this file is modified last time. + " + ::= { cfFileEntry 4 } + + +-- The operation on the cf. + cfOperate OBJECT IDENTIFIER ::= { cfManMIBObjects 2 } + + +cfOpTable OBJECT-TYPE + SYNTAX SEQUENCE OF CfOpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table used to operate cf." + ::= { cfOperate 1 } + + +cfOpEntry OBJECT-TYPE + SYNTAX CfOpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Note an operation can not be stopped until it is finished. + If notification is configured, NMS will receive a notification + at the end of the operation. + Entries in the table will be removed automatically in 5 minutes. + It can also be deleted by NMS directly." + INDEX { cfOperIndex } + ::= { cfOpTable 1 } + + + CfOpEntry ::= + SEQUENCE { + cfOperIndex + Integer32, + cfOperType + INTEGER, + cfOperProtocol + INTEGER, + cfOperServerAddress + IpAddress, + cfOperServerUser + OCTET STRING, + cfOperPassword + OCTET STRING, + cfOperSourceFile + OCTET STRING , + cfOperDestinationFile + OCTET STRING, + cfOperStatus + CfOperationStatus, +-- cfOperEndNotification +-- TruthValue, +-- cfOperProgress +-- TimeTicks, + cfOperIsManagementIf + TruthValue, + cfOperRowStatus + RowStatus + } + +cfOperIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Specifies the index of an entry. It is a + random value when creating an entry." + ::= { cfOpEntry 1 } + + +cfOperType OBJECT-TYPE + SYNTAX INTEGER + { + cf2Cf(1), + net2Cf(2), + cf2Net(3), + delete(4), + rename(5) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the operation to be executed. + net2CfWithErase Copy a file to cf; erase cf beforehand. + net2CfWithoutErase Copy a file to cf; do not erase cf + beforehand. + cf2Net Copy a file from cf. + delete Delete a file from cf, the file name is + specified by cfOperSourceFile; + rename Change a file's name." + ::= { cfOpEntry 2 } +cfOperProtocol OBJECT-TYPE + SYNTAX INTEGER + { + ftp(1), + tftp(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the protocol used to transfer file.The default protocol is ftp. + when 'clusterftp' or 'clustertftp' is selected, the cfOperServerAddress needn't + be set the server address can be acquired automatically, the value of + cfOperServerAddress is uncertain during operation.Both member switch and + commander switch can use them if they support HGMP v2." +-- DEFVAL { ftp } + ::= { cfOpEntry 3 } + + +cfOperServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The address of remote host acting as server for operation. + The default value is 255.255.255.255." +-- DEFVAL { 'FFFFFFFF'h } + ::= { cfOpEntry 4 } + + +cfOperServerUser OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When using ftp to transfer files, the user name must be specified through + this node." + ::= { cfOpEntry 5 } + + +cfOperPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Remote user password for copying via ftp protocol.Optionally. + This object may be ignored for protocols other than ftp." + ::= { cfOpEntry 6 } + + +cfOperSourceFile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the source file name to be transferred. + It may be located on cf or remote server. + It may include the file path if it is applicable. + It must be specified." + ::= { cfOpEntry 7 } + + +cfOperDestinationFile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the destination file name. + It may be located on cf or remote server. + It may include the file path if it is applicable. + If it is not specified, the destination file name + is the same as source file name for application." + ::= { cfOpEntry 8 } + + +cfOperStatus OBJECT-TYPE + SYNTAX CfOperationStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of operation." + ::= { cfOpEntry 9 } + + +--cfOperEndNotification OBJECT-TYPE +-- SYNTAX TruthValue +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- " +-- If the value of it is specified 'true', a notification +-- will be generated at the end of the operation. +-- Else no notification will be generated. +-- " +-- DEFVAL { false } +-- ::= { cfOpEntry 10 } +-- +-- +--cfOperProgress OBJECT-TYPE +-- SYNTAX TimeTicks +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The progress described as the time taken for the operation." +-- ::= { cfOpEntry 11 } + + +cfOperIsManagementIf OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If use management interface running SNMP or not." +-- DEFVAL { true } + ::= { cfOpEntry 12 } + +cfOperRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfOpEntry 13 } + +-- Sub Module: SYSLOG + + +-- +-- Textual conventions +-- +MessageLevelType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify severity level of message." + SYNTAX INTEGER + { + emergency(0), + alert(1), + critical(2), + error(3), + warning(4), + notice(5), + informational(6), + debug(7) + } + +MessageTrapLevelType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify severity level of message." + SYNTAX INTEGER + { + high(0), + middle(1), + lower(2), + minor(3) + } + +TimeStampFormatType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify operation types on time stamp of message. + none: no time stamp information in message. + date: the time stamp type of message is date. + boot: the time stamp type of message is the time from uptime of system. + dateWithoutYear: the time stamp type of message is date without year + information." + SYNTAX INTEGER + { + bsd(0), + iso(1), + full(2), + null(3) + } + +FacilityType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify loghost facility which generates messages." + SYNTAX INTEGER + { + kernel(0), + userLevel(1), + mailSystem(2), + systemDaemons(3), + securityAuthorization(4), + syslog(5), + linePrinter(6), + networkNews(7), + uucp(8), + cron(9), + securityAuthorization2(10), + ftpDaemon(11), + ntp(12), + logAudit(13), + logAlert(14), + clockDaemon2(15), + local0(16), + local1(17), + local2(18), + local3(19), + local4(20), + local5(21), + local6(22), + local7(23) + } + +-- +-- +-- Node definitions +-- +syslogTimestamp OBJECT-TYPE + SYNTAX TimeStampFormatType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The log timestamp type. + 0 RBSD(RFC3164 or bsd). + 1 RISO(RFC3339 or iso). + 2 RFULL(date). + 3 NONE." + ::= { syslog 1 } + +syslogOperateLogEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of log operate true(1):enable.false(2):disable." + ::= { syslog 2 } + +syslogBuffer OBJECT IDENTIFIER ::= { syslog 3 } +syslogBufferMaxSize OBJECT-TYPE + SYNTAX INTEGER(10..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of messages that can be storedin logbuffer.MaxSize range 10~1000." + ::= { syslogBuffer 1 } + +syslogbufferSeverity OBJECT-TYPE + SYNTAX MessageLevelType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The operations staff can selectively filter the messages + with priority which consists of severity that generates + the message and severity of the message.Range 0~7. + " + -- DEFVAL { 7 } + ::= { syslogBuffer 2 } + +syslogBuffercurrentMessages OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of log messages stored in logbuffer." + ::= { syslogBuffer 3 } + +syslogBufferDroppedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of log messages dropped in logbuffer." + ::= { syslogBuffer 4 } +-- + +syslogFile OBJECT IDENTIFIER ::= { syslog 4 } + +syslogFileEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of log merge true(1):enable.false(2):disable." + ::= { syslogFile 1 } + +syslogFileSeverity OBJECT-TYPE + SYNTAX MessageLevelType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The operations staff can selectively filter the messages with priority + which consists of severity that generates the message and severity of + the message.Range 0~7." + ::= { syslogFile 2 } + + +syslogServer OBJECT IDENTIFIER ::= { syslog 5 } + +syslogServerEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of syslogtrap: true(1): enable.false(2): disable." + ::= { syslogServer 1 } + +syslogServerFacility OBJECT-TYPE + SYNTAX FacilityType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The operations staff can selectively filter the messages with priority + which consists of facility that generates the message and severity of + the message.Value range 0~11 or 16~23." + -- DEFVAL { local7 } + ::= { syslogServer 2 } + +syslogServerSeverity OBJECT-TYPE + SYNTAX MessageLevelType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The operations staff can selectively filter the messages with priority + which consists of severity that generates the message and severity of + the message.Value range 0~7.default 4" + ::= { syslogServer 3 } + +syslogServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of loghost." + ::= { syslogServer 4 } + +syslogServerEntry OBJECT-TYPE + SYNTAX SyslogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The loghost entry of syslog." + INDEX { syslogServerIpaddress, syslogServerMgmtIf } + ::= { syslogServerTable 1 } + +SyslogServerEntry ::= + SEQUENCE { + syslogServerIpaddress + IpAddress, + syslogServerMgmtIf + INTEGER, + syslogServerRowStatus +RowStatus + } + +syslogServerIpaddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ip address of loghost." + ::= { syslogServerEntry 1 } + +syslogServerMgmtIf OBJECT-TYPE + SYNTAX INTEGER + { + noUse(1), + useMgmtIf(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mgmt if of loghost. + 1 noUse. + 2 useMgmtIf." + ::= { syslogServerEntry 2 } + +syslogServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { syslogServerEntry 3 } + +syslogTrap OBJECT IDENTIFIER ::= { syslog 6 } + +syslogTrapEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of syslog trap. true(1):enable.false(2):disable." + ::= { syslogTrap 1 } + +syslogTrapSeverity OBJECT-TYPE + SYNTAX MessageTrapLevelType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The operations staff can selectively filter the messages with priority + which consists of severity that generates the message and severity of + the message. + 0 high. + 1 middle. + 2 lower. + 3 minor." + ::= { syslogTrap 2 } + +syslogMerge OBJECT IDENTIFIER ::= { syslog 7 } + +syslogMergeEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of log merge true(1):enable.false(2):disable." + ::= { syslogMerge 1 } + +syslogMergeFifoSize OBJECT-TYPE + SYNTAX INTEGER(100..10240) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The logging merge fifo-size, specify the logging merge buffer." + ::= { syslogMerge 2 } + +syslogMergeTimeout OBJECT-TYPE + SYNTAX INTEGER(1..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The logging merge timeout value, specify the logging merge interval.default 10." + ::= { syslogMerge 3 } + +syslogSync OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify sync parameter. true(1): sync the syslog and return value is always 0." + ::= { syslog 8 } + +syslogClearLogBuff OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear logging buffer. true(1): clear the logging buffer and return value is always 0." + ::= { syslog 9 } + +-- Sub Module: MIRROR + + +mSSrcIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MSSrcIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror session source port entries." + ::= { mirror 1 } + +mSSrcIfEntry OBJECT-TYPE + SYNTAX MSSrcIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of parameters that describe a source port to be added to a mirror + session." + INDEX + { + mSSrcIfID, + mSSrcIfIndex + } + ::= { mSSrcIfTable 1 } + +MSSrcIfEntry ::= + SEQUENCE + { + mSSrcIfID + Integer32, + mSSrcIfIndex + Integer32, + mSSrcIfDirection + INTEGER, + mSSrcIfRowStatus +RowStatus + } + +mSSrcIfID OBJECT-TYPE + SYNTAX Integer32 (1..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies an entry in the mirror session table." + ::= { mSSrcIfEntry 1 } + +mSSrcIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IfIndex of mirror group source port. including ethernet port and agg port" + ::= { mSSrcIfEntry 2 } + +mSSrcIfDirection OBJECT-TYPE + SYNTAX INTEGER + { + rx(1), + tx(2), + both(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror direction of source port.if the direction first configured + as rx, then configure tx, then the direction will be both." + ::= { mSSrcIfEntry 3 } + +mSSrcIfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mSSrcIfEntry 4 } + + +mSSrcVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF MSSrcVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror session source vlan entries." + ::= { mirror 2 } + +mSSrcVlanEntry OBJECT-TYPE + SYNTAX MSSrcVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of parameters that describe a source vlan to be added to a mirror session." + INDEX + { + mSSrcVlanID, + mSSrcVlanNum + } + ::= { mSSrcVlanTable 1 } + +MSSrcVlanEntry ::= + SEQUENCE + { + mSSrcVlanID + Integer32, + mSSrcVlanNum + Integer32, + mSSrcVlanDirection + INTEGER, + mSSrcVlanRowStatus +RowStatus + } + +mSSrcVlanID OBJECT-TYPE + SYNTAX Integer32 (1..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies an entry in the mirror session table." + ::= { mSSrcVlanEntry 1 } + +mSSrcVlanNum OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IfIndex of mirror group source vlan." + ::= { mSSrcVlanEntry 2 } + +mSSrcVlanDirection OBJECT-TYPE + SYNTAX INTEGER + { + rx(1), + tx(2), + both(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mirror direction of source vlan.if the direction first configured as + rx, then configure tx, then the direction will be both." + ::= { mSSrcVlanEntry 3 } + +mSSrcVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mSSrcVlanEntry 4 } + +mSDestIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MSDestIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror group dest port entries." + ::= { mirror 3 } + +mSDestIfEntry OBJECT-TYPE + SYNTAX MSDestIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of parameters that describe a dest port to be added to a mirror group." + INDEX + { + mSDestIfID + } + ::= { mSDestIfTable 1 } + +MSDestIfEntry ::= + SEQUENCE + { + mSDestIfID + Integer32, + mSDestIfIndex + Integer32, + mSSessionType + INTEGER, + mSDestVlanID + Integer32, + mSDestIfRowStatus +RowStatus + } + +mSDestIfID OBJECT-TYPE + SYNTAX Integer32 (1..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies an entry in the mirror session table." + ::= { mSDestIfEntry 1 } + +mSDestIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..1023) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IfIndex of mirror group dest port. only ethernet port. " + ::= { mSDestIfEntry 2 } + +mSSessionType OBJECT-TYPE + SYNTAX INTEGER + { + local(1), + remote(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "session type." + ::= { mSDestIfEntry 3 } + +mSDestVlanID OBJECT-TYPE + SYNTAX Integer32 (2..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IfIndex of mirror group dest vlan." + ::= { mSDestIfEntry 4 } +mSDestIfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mSDestIfEntry 5 } + +mSTable OBJECT-TYPE + SYNTAX SEQUENCE OF MSEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror group entries." + ::= { mirror 4 } + +mSEntry OBJECT-TYPE + SYNTAX MSEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of parameters that describe a mirror group." + INDEX + { + mSID + } + ::= { mSTable 1 } + +MSEntry ::= + SEQUENCE + { + mSID + Integer32, + mSType + INTEGER, + mSStatus + INTEGER, + mSRowStatus +RowStatus + } + +mSID OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies an entry in the mirror session table." + ::= { mSEntry 1 } + +mSType OBJECT-TYPE + SYNTAX INTEGER + { + local(1) , + remote(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of a mirror session. + 1 Local. + 2 remote." + ::= { mSEntry 2 } + +mSStatus OBJECT-TYPE + SYNTAX INTEGER + { + active(1), + inactive(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of a mirror session.A mirror session will be active only when it has destination port. + 1 Active. + 2 Inactive." + ::= { mSEntry 3 } + +mSRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize Destroy and Active." + ::= { mSEntry 4 } +-- +--mSEscapeMacTable +-- + +mSEscapeMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF MSEscapeMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of mirror session escape mac entries." + ::= { mirror 5 } + +mSEscapeMacEntry OBJECT-TYPE + SYNTAX MSEscapeMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of parameters that describe a escape mac to be added to a mirror session." + INDEX + { + mSEscapeMacIndex + } + ::= { mSEscapeMacTable 1 } + +MSEscapeMacEntry ::= + SEQUENCE + { + mSEscapeMacIndex + INTEGER, + mSEscapeMacAddress + OCTET STRING, + mSEscapeMacMask + OCTET STRING, + mSEscapeMacRowStatus + RowStatus + } + +mSEscapeMacIndex OBJECT-TYPE + SYNTAX INTEGER(1..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of a escape mac.Range 1~2." + ::= { mSEscapeMacEntry 1 } + +mSEscapeMacAddress OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..15)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specify certain mac address as special and not mirror." + ::= { mSEscapeMacEntry 2 } + +mSEscapeMacMask OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..15)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Mac mask of mirror Specify certain mac address." + ::= { mSEscapeMacEntry 3 } + +mSEscapeMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo(4) and Destroy(6) and Active(1). + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mSEscapeMacEntry 4 } + + +-- Sub Module: PORTSECURITY + + + +-- +-- Node definitions +-- + +portSecurityObject OBJECT IDENTIFIER ::= { portSecurity 1 } + +portSecurityPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table defines the securityStatus of each secure port. + Each port can have a number of authorised MAC addresses, and these are + stored in the portSecurityStaticAddressTable and + portSecurityDynamicAddressTable." + ::= { portSecurityObject 1 } + +portSecurityPortEntry OBJECT-TYPE + SYNTAX PortSecurityPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "There is a Rowin this table for each secure port and It is indexed + using the object ifIndex in RFC1213-MIB." + INDEX + { + ifIndex + } + ::= { portSecurityPortTable 1 } + +PortSecurityPortEntry ::= + SEQUENCE { + portSecurityEnable + INTEGER, + portSecurityViolationMode + INTEGER, + portSecurityMaximumNumberOfMacAddresses + Integer32, + portSecurityCurrentNumberOfMacAddresses + Integer32 + } + +portSecurityEnable OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This attribute controls the system wide operation of mac-authentication. + The system-wide mac-authentication options become non-operational + when this attribute is set to disabled." + ::= { portSecurityPortEntry 1 } + +portSecurityViolationMode OBJECT-TYPE + SYNTAX INTEGER + { + protect(0), + restrict(1), + shutdown(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This attribute determines what action to be taken when a security violation is detected + protect(0): discard packet silently + restrict(1): discard packet and print log + shutdown(2): discard packet, log and set the interface error-disabled." + ::= { portSecurityPortEntry 2 } + +portSecurityMaximumNumberOfMacAddresses OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates the maximum value that mac addresses can be learned. + Those objects are bound by the relationship: + staticNumberOfConfiguredMacAddresses + <= totalNumberOfMacAddresses + <= portSecurityMaximumMacAddresses." + ::= { portSecurityPortEntry 3 } + + portSecurityCurrentNumberOfMacAddresses OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates thecurrent number of Mac Addresses." + ::= { portSecurityPortEntry 4 } + + +portSecurityStaticAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityStaticAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the static MAC addresses assigned to each port." + ::= { portSecurityObject 2 } + +portSecurityStaticAddressEntry OBJECT-TYPE + SYNTAX PortSecurityStaticAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the static MAC addresses assigned to each port." + INDEX + { + ifIndex, + portSecurityStaticMacAddress, + portSecurityStaticVlanId + } + ::= { portSecurityStaticAddressTable 1 } + + PortSecurityStaticAddressEntry ::= + SEQUENCE { + portSecurityStaticPortIndex + Integer32, + portSecurityStaticVlanId + Integer32, + portSecurityStaticMacAddress + Integer32, + portSecurityStaticRowStatus + RowStatus + } + +portSecurityStaticPortIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port index which port security is configured. + This is the first index into the portSecurityStaticAddressTable." + ::= { portSecurityStaticAddressEntry 1 } + +portSecurityStaticVlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vlan ID associate with the port and the MAC address. + This is the second index into the portSecurityStaticAddressTable." + ::= { portSecurityStaticAddressEntry 2 } + +portSecurityStaticMacAddress OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The MAC address of a station assigned to this port. + The index format of mac address '01:02:0a:0b:ff:ff' should be '1.2.10.11.255.255' + This is the third index into the portSecurityStaticAddressTable." + ::= { portSecurityStaticAddressEntry 3 } + +portSecurityStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { portSecurityStaticAddressEntry 4 } + +portSecurityDynamicAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityDynamicAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the dynamic MAC addresses which + are learned each port." + ::= { portSecurityObject 3 } + +portSecurityDynamicAddressEntry OBJECT-TYPE + SYNTAX PortSecurityDynamicAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the dynamic MAC addresses which + are learned each port." + INDEX + { + ifIndex, + portSecurityDynamicMacAddress, + portSecurityDynamicVlanId + } + ::= { portSecurityDynamicAddressTable 1 } + +PortSecurityDynamicAddressEntry ::= + SEQUENCE { + portSecurityDynamicVlanId + Integer32, + portSecurityDynamicMacAddress + MacAddress, + portSecurityDynamicPortName + OCTET STRING + } + +portSecurityDynamicVlanId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Vlan ID associate with the port and the MAC address. + This is the third index into the portSecurityDynamicAddressTable." + ::= { portSecurityDynamicAddressEntry 1 } + +portSecurityDynamicMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address of a station assigned to this port.This + is the second index into the portSecurityDynamicAddressTable." + ::= { portSecurityDynamicAddressEntry 2 } + +portSecurityDynamicPortName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port name which port security is configured." + ::= { portSecurityDynamicAddressEntry 3 } + +-- Sub Module:stormCONTROL + + +stormControlObject OBJECT IDENTIFIER ::= {stormControl 1 } + +stormControlUnicastTable OBJECT-TYPE + SYNTAX SEQUENCE OF StormControlUnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the port name and storm control + unicast mode,level and pps. " + ::= { stormControlObject 1 } + +stormControlUnicastEntry OBJECT-TYPE + SYNTAX StormControlUnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the port name and storm control unicast mode and level. " + INDEX + { + ifIndex + } + + ::= { stormControlUnicastTable 1 } + +StormControlUnicastEntry ::= + SEQUENCE { + stormControlUnicastPortName + OCTET STRING, + stormControlUnicastMode + INTEGER, + stormControlUnicastLevel + OCTET STRING , + stormControlUnicastPps + Integer32, + stormControlUnicastRowStatus + RowStatus + } + +stormControlUnicastPortName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of interface which is configuredstorm + control." + ::= {stormControlUnicastEntry 1 } + +stormControlUnicastMode OBJECT-TYPE + SYNTAX INTEGER + { + packetPerSecond(1), + level(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This indicates which unicast mode is configured whenstorm control is used. + 1 PacketPerSecond. + 2 Level." + ::= {stormControlUnicastEntry 2 } + +stormControlUnicastLevel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..6)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When unicast mode is configured Level,this + indicates the percentage of bandwith. + The valid range is (0.00-100.00)." + ::= {stormControlUnicastEntry 3 } + +stormControlUnicastPps OBJECT-TYPE + SYNTAX Integer32 (0..1000000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When unicast mode is configured PacketPerSecond, + this indicates the number of packet per second." + ::= {stormControlUnicastEntry 4 } +stormControlUnicastRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= {stormControlUnicastEntry 5 } + +stormControlBroadcastTable OBJECT-TYPE + SYNTAX SEQUENCE OF StormControlBroadcastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the port name and storm control + broadcast mode,level and pps. " + ::= { stormControlObject 2 } + +stormControlBroadcastEntry OBJECT-TYPE + SYNTAX StormControlBroadcastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the port name andstorm control broadcast mode and level." + INDEX + { + ifIndex + } + ::= {stormControlBroadcastTable 1 } + +StormControlBroadcastEntry ::= + SEQUENCE { + stormControlBroadcastPortName + OCTET STRING , + stormControlBroadcastMode + INTEGER, + stormControlBroadcastLevel + OCTET STRING , + stormControlBroadcastPps + Integer32, + stormControlBroadcastRowStatus + RowStatus + } + +stormControlBroadcastPortName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of interface which is configuredstorm + control." + ::= {stormControlBroadcastEntry 1 } + +stormControlBroadcastMode OBJECT-TYPE + SYNTAX INTEGER + { + packetPerSecond(1), + level(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This indicates which broadcast mode is configured whenstorm control is used. + 1 PacketPerSecond. + 2 Level." + ::= {stormControlBroadcastEntry 2 } + +stormControlBroadcastLevel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..6)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When broadcast mode is configured Level,this + indicates the percentage of bandwith. + The valid range is (0.00-100.00)." + ::= {stormControlBroadcastEntry 3 } + +stormControlBroadcastPps OBJECT-TYPE + SYNTAX Integer32 (0..1000000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When broadcast mode is configured PacketPerSecond, + this indicates the number of packet per second." + ::= {stormControlBroadcastEntry 4 } +stormControlBroadcastRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= {stormControlBroadcastEntry 5 } + +stormControlMulticastTable OBJECT-TYPE + SYNTAX SEQUENCE OF StormControlMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the port name andstorm control + multicast mode and level." + ::= {stormControlObject 3 } + +stormControlMulticastEntry OBJECT-TYPE + SYNTAX StormControlMulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the port name andstorm control + multicast,level and pps." + INDEX + { + ifIndex + } + ::= {stormControlMulticastTable 1 } + +StormControlMulticastEntry ::= + SEQUENCE { + stormControlMulticastPortName + OCTET STRING , + stormControlMulticastMode + INTEGER, + stormControlMulticastLevel + OCTET STRING , + stormControlMulticastPps + Integer32, + stormControlMulticastRowStatus + RowStatus + } + +stormControlMulticastPortName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of interface which is configuredstorm control." + ::= {stormControlMulticastEntry 1 } + +stormControlMulticastMode OBJECT-TYPE + SYNTAX INTEGER + { + packetPerSecond(1), + level(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This indicates which multicast mode is configured whenstorm control is used. + 1 PacketPerSecond. + 2 Level." + ::= {stormControlMulticastEntry 2 } + +stormControlMulticastLevel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..6)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When multicast mode is configured Level,this indicates the percentage + of bandwith. The valid range is (0.00-100.00)." + ::= {stormControlMulticastEntry 3 } + +stormControlMulticastPps OBJECT-TYPE + SYNTAX Integer32 (0..1000000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When multicast mode is configured PacketPerSecond, this indicates the + number of packet per second." + ::= {stormControlMulticastEntry 4 } +stormControlMulticastRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= {stormControlMulticastEntry 5 } + +-- Sub Module: NTP + + + +ntpObject OBJECT IDENTIFIER ::= { ntp 1 } + +ntpStratum OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is an eight-bit integer indicating the stratum level + of the local clock, with values defined as follows: + 0, unspecified + 1, primary reference (e.g.,, radio clock) + 2-255, secondary reference (via NTP) " + ::= { ntpObject 1 } + +ntpReferenceClockIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the reference clock ip address." + ::= { ntpObject 2 } + +ntpFrequency OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The frequency of local clock relative to the primary + reference source." + ::= { ntpObject 3 } + +ntpPrecision OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Precision : This is a signed integer indicating the + precision relative to the reference clock ip." + ::= { ntpObject 4 } + +ntpReferenceTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the local time." + ::= { ntpObject 5 } + +ntpRootDelay OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed fixed-point number indicating + the total roundtrip delay to the primary reference source + at the root of the synchronization subnet, in seconds." + ::= { ntpObject 6 } + +ntpRootDispersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Root Dispersion : This is a signed fixed-point number + indicating the maximum error relative to the primary + reference source at the root of the synchronization + subnet, in seconds.Only positive values greater than + zero are possible." + ::= { ntpObject 7 } + +ntpPeerDispersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed fixed-point number indicating + the maximum error of the local clock relative to + the primary reference source at the root of the + synchronization subnet.Only positive values + greater than zero are possible." + ::= { ntpObject 8 } + +ntpClockOffset OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed, fixed-point number indicating the offset + of the local clock relative to the primary clock, in seconds." + ::= { ntpObject 9 } + +ntpStability OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed, fixed-point number indicating the stability + of the local clock relative to the primary clock, in seconds." + ::= { ntpObject 10 } + +ntpAssoTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpAssoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides information about the peers and servers + with which the local NTP has associations." + ::= { ntpObject 11 } + +ntpAssoEntry OBJECT-TYPE + SYNTAX NtpAssoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each association entry provides NTP information retrieved + from a particular initiative peer or server.Each peer or + server is identified by a unique association identifier. + Entries are automatically created when the user configures + the passive peer to unicast peer list or the passive server + to unicast server list." + INDEX { ntpAssoRemoteIpAddress } + ::= { ntpAssoTable 1 } + +NtpAssoEntry ::= + SEQUENCE { + ntpAssoRemoteIpAddress IpAddress, + ntpAssoRefId OCTET STRING, + ntpAssoStratum OCTET STRING, + ntpAssoWhen OCTET STRING, + ntpAssoPoll OCTET STRING, + ntpAssoReach OCTET STRING, + ntpAssoDelay OCTET STRING, + ntpAssoOffset OCTET STRING, + ntpAssoDispersion OCTET STRING + } + +ntpAssoRemoteIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the initiative peer or server." + ::= { ntpAssoEntry 1 } + +ntpAssoRefId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reference identifier of the peer or server." + ::= { ntpAssoEntry 2 } + +ntpAssoStratum OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a integer indicating the stratum level + of the peer of server clock." + ::= { ntpAssoEntry 3 } + +ntpAssoWhen OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a round second clock whose value change + from 1 to 60." + ::= { ntpAssoEntry 4 } + +ntpAssoPoll OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval at which the local host polls the peer." + ::= { ntpAssoEntry 5 } + +ntpAssoReach OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a shift register of NTP which is used to + determine the reach abilityStatus of the peer." + ::= { ntpAssoEntry 6 } + +ntpAssoDelay OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed fixed-point number indicating + the total roundtrip delay to the primary reference source + at the root of the synchronization subnet, in seconds." + ::= { ntpAssoEntry 7 } + +ntpAssoOffset OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed, fixed-point number indicating the offset + of the peer clock or server clock relative to the local + clock, in seconds." + ::= { ntpAssoEntry 8 } + +ntpAssoDispersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a signed fixed-point number indicating + the maximum error of the peer or server clock + relative to the primary reference source." + ::= { ntpAssoEntry 9 } + +ntpUniPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpUniPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides ipaddress about the peer + with which the local NTP has associations.This + Table support create and destroy association + peer entry." + ::= { ntpObject 12 } + +ntpUniPeerEntry OBJECT-TYPE + SYNTAX NtpUniPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides ipaddress about the peer with which the local NTP + has associations.This table support create and destroy association peer + entry." + INDEX { ntpUnicastPeerIpAddress } + ::= { ntpUniPeerTable 1 } + +NtpUniPeerEntry ::= + SEQUENCE{ + ntpUnicastPeerIpAddress + IpAddress, + ntpUnicastPeerKey + Integer32, + ntpUnicastPeerVersion + Integer32, + ntpUnicastPeerPrefer + INTEGER, + ntpUnicastPeerRowStatus + RowStatus + } + +ntpUnicastPeerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the initiative peer." + ::= { ntpUniPeerEntry 1 } + +ntpUnicastPeerKey OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The peer use which authentication key pair." + ::= { ntpUniPeerEntry 2 } + +ntpUnicastPeerVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The NTP verion of the peer." + ::= { ntpUniPeerEntry 3 } + +ntpUnicastPeerPrefer OBJECT-TYPE + SYNTAX INTEGER + { + prefer(1), + noPrefer(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates the NTP peer is a preferred peer." + ::= { ntpUniPeerEntry 4 } + +ntpUnicastPeerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ntpUniPeerEntry 5 } + +ntpUniServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpUniServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides ipaddress about the server with which the local NTP + has associations.This table support create and destroy association + server entry." + ::= { ntpObject 13 } + +ntpUniServerEntry OBJECT-TYPE + SYNTAX NtpUniServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides ipaddress about the server with which the local NTP + has associations.This table support create and destroy association + server entry." + INDEX { ntpUnicastServerIpAddress } + ::= { ntpUniServerTable 1 } + +NtpUniServerEntry ::= + SEQUENCE{ + ntpUnicastServerIpAddress IpAddress, + ntpUnicastServerKey Integer32, + ntpUnicastServerVersion Integer32, + ntpUnicastServerPrefer INTEGER, + ntpUnicastServerRowStatus RowStatus + } + +ntpUnicastServerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the initiative server." + ::= { ntpUniServerEntry 1 } + +ntpUnicastServerKey OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The server use which authentication key pair." + ::= { ntpUniServerEntry 2 } + +ntpUnicastServerVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The NTP verion of the server." + ::= { ntpUniServerEntry 3 } + +ntpUnicastServerPrefer OBJECT-TYPE + SYNTAX INTEGER + { + prefer(1), + noPrefer(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates the NTP server is a preferred server." + ::= { ntpUniServerEntry 4 } + +ntpUnicastServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ntpUniServerEntry 5 } + +ntpLocalRefClockStratum OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The stratum of local reference clock.If the value is 16, disable local reference clock." + ::= { ntpObject 14 } + +ntpSysAuthenticate OBJECT-TYPE + SYNTAX INTEGER + { + noAuthenticate(0), + authenticate(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is a integer indicating that system support authentication." + ::= { ntpObject 15 } + +ntpBroadcastDelay OBJECT-TYPE + SYNTAX Integer32 (1..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The broadcast delay of ntp broadcast mode." + ::= { ntpObject 16 } + + +-- +-- NTP key +-- +ntpKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table containing information of authentication key pair." + ::= { ntpObject 17 } + +ntpKeyEntry OBJECT-TYPE + SYNTAX NtpKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry containing information of authentication key pair." + INDEX { ntpKeyID } + ::= { ntpKeyTable 1 } + +NtpKeyEntry ::= + SEQUENCE { + ntpKeyID Integer32, + ntpKeyPair OCTET STRING, + ntpKeyRowStatus RowStatus + } + +ntpKeyID OBJECT-TYPE + SYNTAX Integer32 (1..64000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "NTP authentication key ID " + ::= { ntpKeyEntry 1 } + +ntpKeyPair OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "NTP authentication key pair." + ::= { ntpKeyEntry 2 } + +ntpKeyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ntpKeyEntry 3 } + + +-- +-- NTP trust key +-- +ntpTrustKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpTrustKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table containing information of authentication key pair that trusted." + ::= { ntpObject 18 } + +ntpTrustKeyEntry OBJECT-TYPE + SYNTAX NtpTrustKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry containing information of authentication key pair that trusted." + INDEX { ntpKeyID } + ::= { ntpTrustKeyTable 1 } + +NtpTrustKeyEntry ::= + SEQUENCE { + ntpTrustKeyID Integer32, + ntpTrustKeyTrust Integer32 + } + +ntpTrustKeyID OBJECT-TYPE + SYNTAX Integer32(1..64000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "NTP authentication key ID " + ::= { ntpTrustKeyEntry 1 } + +ntpTrustKeyTrust OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "NTP authentication key pair trust." + ::= { ntpTrustKeyEntry 2 } + +ntpInterfaceReload OBJECT-TYPE + SYNTAX INTEGER + { + reloadInterface(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reload interfaces." + ::= { ntpObject 19 } + +ntpTimeResetStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of time since reset." + ::= { ntpObject 20 } + +ntpRcvBufferStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of receive buffers." + ::= { ntpObject 21 } + +ntpFreeRcvBufferStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of free receive buffers." + ::= { ntpObject 22 } + +ntpUsedRcvBufferStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of used receive buffers." + ::= { ntpObject 23 } + +ntpLowWaterRefillStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of low water refills." + ::= { ntpObject 24 } + +ntpDroppedPktStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of dropped packets." + ::= { ntpObject 25 } + +ntpIgnoredPktStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of ignored packets." + ::= { ntpObject 26 } + +ntpReceivedPktStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of received packets." + ::= { ntpObject 27 } + +ntpPktSentStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of packets sent." + ::= { ntpObject 28 } + +ntpPktNotSentStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of packets not sent." + ::= { ntpObject 29 } + +ntpInterruptsHandledStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of interrupts handled." + ::= { ntpObject 30 } + +ntpReceivedByIntStatistic OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP I/O statistics of received by int." + ::= { ntpObject 31 } + + +-- +-- NTP Access Control Entries(ACE) Table +-- +ntpAceTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpAceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table create the Access Control Entries (ACE) of a NTP server/peer." + ::= { ntpObject 32 } + +ntpAceEntry OBJECT-TYPE + SYNTAX NtpAceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry containing information of NTP ACE." + INDEX { ntpAceIndex } + ::= { ntpAceTable 1 } + +NtpAceEntry ::= + SEQUENCE { + ntpAceIndex Integer32, + ntpAceAddress OCTET STRING, + ntpAceMask OCTET STRING, + ntpAceVersion INTEGER, + ntpAceKod INTEGER, + ntpAceIgnore INTEGER, + ntpAceNoquery INTEGER, + ntpAceNomodify INTEGER, + ntpAceNotrap INTEGER, + ntpAceNoserver INTEGER, + ntpAceNopeer INTEGER, + ntpAceNotrust INTEGER, + ntpAceLimited INTEGER, + ntpAceRowStatus RowStatus + } + +ntpAceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "NTP ace list index." + ::= { ntpAceEntry 1 } + +ntpAceAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..63)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Ip address or hostname of NTP restrict peer." + ::= { ntpAceEntry 2 } + +ntpAceMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7..15)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Mask of NTP restrict peer. + Default value is 255.255.255.255" + ::= { ntpAceEntry 3 } + +ntpAceVersion OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ignore these hosts if not the current NTP version.enable(1),disable(2)." + DEFVAL{ 2 } + ::= { ntpAceEntry 4 } + +ntpAceKod OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If access is denied, send a kiss-of-death packet." + DEFVAL{ 2 } + ::= { ntpAceEntry 5 } + +ntpAceIgnore OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ignore all packets from host that match this entry." + DEFVAL{ 2 } + ::= { ntpAceEntry 6 } + +ntpAceNoquery OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ignore all NTP mode 6 and 7 packets from the source. + Time service is not affected." + DEFVAL{ 2 } + ::= { ntpAceEntry 7 } + +ntpAceNomodify OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ignore all NTP mode 6 and 7 packets + which attempt to modify the stateof the server." + DEFVAL{ 2 } + ::= { ntpAceEntry 8 } + +ntpAceNotrap OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Decline to provide mode 6 control message + trap service to matching hosts." + DEFVAL{ 2 } + ::= { ntpAceEntry 9 } + +ntpAceNoserver OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ignore NTP packets whose mode is other than 6 or 7." + DEFVAL{ 2 } + ::= { ntpAceEntry 10 } + +ntpAceNopeer OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Provide stateless time service to polling hosts, + but do not allocate peer memory resources." + DEFVAL{ 2 } + ::= { ntpAceEntry 11 } + +ntpAceNotrust OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Treat these hosts normally in other respects, + but never use them as synchronization sources." + DEFVAL{ 2 } + ::= { ntpAceEntry 12 } + +ntpAceLimited OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "These hosts are subject to limitation of + number of clients from the same net." + DEFVAL{ 2 } + ::= { ntpAceEntry 13 } + +ntpAceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ntpAceEntry 20 } + +-- +-- NTP current restrict list +-- +ntpRestrictTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpRestrictEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table containing information of NTP current restrict list." + ::= { ntpObject 33 } + +ntpRestrictEntry OBJECT-TYPE + SYNTAX NtpRestrictEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry containing information of NTP restrict." + INDEX { ntpRestrictIndex } + ::= { ntpRestrictTable 1 } + +NtpRestrictEntry ::= + SEQUENCE { + ntpRestrictIndex Integer32, + ntpRestrictAddress OCTET STRING, + ntpRestrictMask OCTET STRING, + ntpRestrictCount Integer32, + ntpRestrictFlag OCTET STRING + } + +ntpRestrictIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "NTP current restrict list index." + ::= { ntpRestrictEntry 1 } + +ntpRestrictAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP current restrict address." + ::= { ntpRestrictEntry 2 } + +ntpRestrictMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP current restrict mask." + ::= { ntpRestrictEntry 3 } + +ntpRestrictCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP current restrict count value." + ::= { ntpRestrictEntry 4 } + +ntpRestrictFlag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "NTP current restrict flags." + ::= { ntpRestrictEntry 5 } + +-- Sub Module: ACL + + +-- Rule action value +RuleAction ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of rule's action. + permit: The packet matching the rule will be permitted to forward. + deny: The packet matching the rule will be denied. + " + SYNTAX INTEGER + { + permit(1), + deny(2) + } + +-- CounterClear value + CounterClear ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "cleared: Reset the value of the rule's counter. + nouse: 'nouse' will be returned when getting. + " + SYNTAX INTEGER + { + cleared(1), + nouse(2) + } + +-- PortOp value + PortOp ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The operation type of TCP and UDP. + lt : Less than given port number. + eq : Equal to given port number. + gt : Greater than given port number. +-- neq : Not equal to given port number. + range : Between two port numbers. + " + SYNTAX INTEGER + { + eq(0), +-- neq(1), + gt(2), + lt(3), + range(4), + invalid(5) + } + +-- Precedence value + PrecedenceValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of IP-packet's precedence. + <0-7> Value of precedence + routine Specify routine precedence(0) + priority Specify priority precedence(1) + immediate Specify immediate precedence(2) + flash Specify flash precedence(3) + flash-override Specify flash-override precedence(4) + critical Specify critical precedence(5) + internet Specify internetwork control precedence(6) + network Specify network control precedence(7) " + SYNTAX Integer32 (0..7|255) + +-- DSCP value + DSCPValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of DSCP. + <0-64> Value of DSCP + af11 Specify Assured Forwarding 11 service(10) + af12 Specify Assured Forwarding 12 service(12) + af13 Specify Assured Forwarding 13 service(14) + af21 Specify Assured Forwarding 21 service(18) + af22 Specify Assured Forwarding 22 service(20) + af23 Specify Assured Forwarding 23 service(22) + af31 Specify Assured Forwarding 31 service(26) + af32 Specify Assured Forwarding 32 service(28) + af33 Specify Assured Forwarding 33 service(30) + af41 Specify Assured Forwarding 41 service(34) + af42 Specify Assured Forwarding 42 service(36) + af43 Specify Assured Forwarding 43 service(38) + be Specify Best Effort service(0) + cs1 Specify Class Selector 1 service(8) + cs2 Specify Class Selector 2 service(16) + cs3 Specify Class Selector 3 service(24) + cs4 Specify Class Selector 4 service(32) + cs5 Specify Class Selector 5 service(40) + cs6 Specify Class Selector 6 service(48) + cs7 Specify Class Selector 7 service(56) + ef Specify Expedited Forwarding service(46) + nouse Do not use this filter(64) + " + SYNTAX Integer32 (0..64) + +-- +-- nodes defined +-- + aclData OBJECT IDENTIFIER ::= { acl 1 } + +-- +-- Node of aclGroupTable +-- +aclGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the match-order of number-acl group." + ::= { aclData 1 } + +aclGroupEntry OBJECT-TYPE + SYNTAX AclGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclGroupTable." + INDEX { aclGroupIndex } + ::= { aclGroupTable 1 } + +AclGroupEntry ::= + SEQUENCE + { + aclGroupIndex + Integer32, + aclGroupName + OCTET STRING, + aclGroupRuleNum + Unsigned32, + aclGroupRowStatus + RowStatus, + aclGroupDescription + OCTET STRING + } + +aclGroupIndex OBJECT-TYPE + SYNTAX Integer32 (10001..80000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of acl group. + MAC type :10001..20000 + IP Extend type :20001..30000 + IP type :30001..40000 + IPv6 type :40001..50000 + IPv6 Extend type :50001..60000 + MLPS type :60001..70000 + MPLS Extend type :70001..80000." + ::= { aclGroupEntry 1 } + +aclGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of acl group. Range 0~20." + ::= { aclGroupEntry 2 } + +aclGroupRuleNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of rules in this acl group." + ::= { aclGroupEntry 3 } + +aclGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclGroupEntry 4 } + +aclGroupDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The description of this acl group.Up to 100 characters.Range 0~100." + ::= { aclGroupEntry 5 } + +-- +-- Nodes of aclMacRuleTable +-- +aclMacRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of MAC acl group. + If some objects of this table are not supported by some products, + these objects can't be created, changed and applied. + Default value of these objects will be returned when they are read. + " + ::= { aclData 2 } + +aclMacRuleEntry OBJECT-TYPE + SYNTAX AclMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MAC acl group information." + INDEX { aclMacGroupIndex, aclMacRuleIndex } + ::= { aclMacRuleTable 1 } + + AclMacRuleEntry ::= + SEQUENCE + { + aclMacGroupIndex + Integer32, + aclMacRuleIndex + Integer32, + aclMacAct + RuleAction, + aclMacSrcMac + MacAddress , + aclMacSrcMacWild + MacAddress , + aclMacDestMac + MacAddress , + aclMacDestMacWild + MacAddress , + aclMacProtocol + OCTET STRING, + aclMacProtocolWild + OCTET STRING, + aclMacType + Integer32, + aclMacVlanId + Integer32, + aclMacInnerVlanId + Integer32, + aclMacCos + Integer32, + aclMacInnerCos + Integer32, + aclMacTimeRangeName + OCTET STRING, + aclMacRowStatus + RowStatus + } + +aclMacGroupIndex OBJECT-TYPE + SYNTAX Integer32 (10001..30000|50001..60000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of MAC-based acl group.Range is 10001~30000 and 50001~60000." + ::= { aclMacRuleEntry 1 } + +aclMacRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of MAC-based acl group. Range 1~131071." + ::= { aclMacRuleEntry 2 } + +aclMacAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of MAC acl rule. + (1) permit. + (2) deny." + ::= { aclMacRuleEntry 3 } + +aclMacSrcMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC of MAC acl rule. + If you do not want to use this filter, + set this item with any valid value + and set aclMacSrcMacWild 'FFFF.FFFF.FFFF'." + ::= { aclMacRuleEntry 4 } + +aclMacSrcMacWild OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC wildcard of MAC acl rule. + If you do not want to use this filter, + set aclMacSrcMac with any valid value + and set this item 'FFFF.FFFF.FFFF'." + ::= { aclMacRuleEntry 5 } + +aclMacDestMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC of MAC acl rule. + If you do not want to use this filter, + set this item with any valid value + and set aclMacDestMacWild 'FFFF.FFFF.FFFF'." + ::= { aclMacRuleEntry 6 } + +aclMacDestMacWild OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC wildcard of MAC acl rule. + If you do not want to use this filter, + set aclMacDestMac with any valid value + and set this item 'FFFF.FFFF.FFFF'." + ::= { aclMacRuleEntry 7 } + +aclMacProtocol OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..6)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ether type in decimal/hexadecimal, ranging in <0x0-0xffff>. + (aclMacProtocol = 0, aclMacProtocolWild = 0xffff) means any protocols. + " + ::= { aclMacRuleEntry 8 } + +aclMacProtocolWild OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..6)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Ether type wildcard in decimal/hexadecimal, ranging in <0x0-0xffff>, + reversely encoded. + (aclMacProtocol = 0, aclMacProtocolWild = 0xffff) means any protocols. + " + ::= { aclMacRuleEntry 9 } + +aclMacType OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The type of protocol + nouse(0) + eth2(1) + sap(2) + snap(3) " + ::= { aclMacRuleEntry 10 } + +aclMacVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The vlan id of MAC acl rule.Range 0~4094. + nouse(0) " + ::= { aclMacRuleEntry 11 } + +aclMacInnerVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The inner vlan id of MAC acl rule. Range 0~4094 + nouse(0) " + ::= { aclMacRuleEntry 12 } + +aclMacCos OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Vlan priority of MAC acl rule.Range 0~8 + nouse(8)." + ::= { aclMacRuleEntry 13 } + +aclMacInnerCos OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Inner vlan priority of MAC acl rule.Range 0~8. + nouse(8)." + ::= { aclMacRuleEntry 14 } + +aclMacTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of MAC acl rule.Range 0~20." + ::= { aclMacRuleEntry 15 } + +aclMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclMacRuleEntry 30 } + +-- +-- aclIpRuleTable +-- +aclIpRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for ip acl group." + ::= { aclData 3 } + +aclIpRuleEntry OBJECT-TYPE + SYNTAX AclIpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclIpRuleTable." + INDEX { aclIpGroupIndex, aclIpRuleIndex } + ::= { aclIpRuleTable 1 } + + AclIpRuleEntry ::= + SEQUENCE { + aclIpGroupIndex + Integer32, + aclIpRuleIndex + Integer32, + aclIpAct + RuleAction, + aclIpProtocol + Integer32, + aclIpSrcIp + IpAddress, + aclIpSrcWild + IpAddress, + aclIpDestIp + IpAddress, + aclIpDestWild + IpAddress, + aclIpPrecedence + Integer32, + aclIpDscp + DSCPValue, + aclIpFragments + TruthValue, + aclIpRouted + TruthValue, + aclIpOptions + TruthValue, + aclIpTimeRangeName + OCTET STRING, + aclIpRowStatus + RowStatus + } + +aclIpGroupIndex OBJECT-TYPE + SYNTAX Integer32 (20001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of ip acl group. Range 20001~40000." + ::= { aclIpRuleEntry 1 } + +aclIpRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of ip acl rule.Range 1~131071." + ::= { aclIpRuleEntry 2 } + +aclIpAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of ip acl rule. + (1) permit. + (2) deny." + ::= { aclIpRuleEntry 3 } + +aclIpProtocol OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The protocol-type of Ip acl group. + <0-255> Protocol number + Icmp Internet Control Message Protocol(1) + igmp Internet Group Management Protocol(2) + ospf OSPF routing protocol(89) + tcp Transmission Control Protocol (6) + udp User Datagram Protocol (17) + nouse Do not use this filter(256) " + ::= { aclIpRuleEntry 4 } + +aclIpSrcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address of ip acl group." + ::= { aclIpRuleEntry 5 } + +aclIpSrcWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address wild of ip acl group." + ::= { aclIpRuleEntry 6 } + +aclIpDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address of ip acl group." + ::= { aclIpRuleEntry 7 } + +aclIpDestWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address wild of ip acl group." + ::= { aclIpRuleEntry 8 } + +aclIpPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of Precedence.8 means do not use this filter.Range 0~8. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclIpDscp is setted." + ::= { aclIpRuleEntry 9 } + +aclIpDscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclIpPrecedence is setted." + ::= { aclIpRuleEntry 10 } + +aclIpFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. True(1),False(2)." + ::= { aclIpRuleEntry 11 } + +aclIpRouted OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclIpRuleEntry 12 } + +aclIpOptions OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching packet with ip option. True(1),False(2)." + ::= { aclIpRuleEntry 13 } + +aclIpTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of Ip acl rule.String length range 0~20." + ::= { aclIpRuleEntry 14 } + +aclIpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclIpRuleEntry 16 } + +-- +-- aclTcpRuleTable +-- +aclTcpRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclTcpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for tcp acl group." + ::= { aclData 4 } + +aclTcpRuleEntry OBJECT-TYPE + SYNTAX AclTcpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of hh3cAclTcpRuleTable." + INDEX { aclTcpGroupIndex, aclTcpRuleIndex } + ::= { aclTcpRuleTable 1 } + + AclTcpRuleEntry ::= + SEQUENCE { + aclTcpGroupIndex + Integer32, + aclTcpRuleIndex + Integer32, + aclTcpAct + RuleAction, + aclTcpSrcIp + IpAddress, + aclTcpSrcWild + IpAddress, + aclTcpDestIp + IpAddress, + aclTcpDestWild + IpAddress, + aclTcpPrecedence + Integer32, + aclTcpDscp + DSCPValue, + aclTcpFragments + TruthValue, + aclTcpRouted + TruthValue, + aclTcpOptions + TruthValue, + aclTcpSrcOp + PortOp, + aclTcpSrcPort1 + Integer32, + aclTcpSrcPort2 + Integer32, + aclTcpDestOp + PortOp, + aclTcpDestPort1 + Integer32, + aclTcpDestPort2 + Integer32, + aclTcpFlagOp + INTEGER, + aclTcpFlagUrg + TruthValue, + aclTcpFlagAck + TruthValue, + aclTcpFlagPsh + TruthValue, + aclTcpFlagRst + TruthValue, + aclTcpFlagSyn + TruthValue, + aclTcpFlagFin + TruthValue, + aclTcpTimeRangeName + OCTET STRING, + aclTcpRowStatus + RowStatus + } + +aclTcpGroupIndex OBJECT-TYPE + SYNTAX Integer32 (20001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of tcp acl group. Range 20001~40000." + ::= { aclTcpRuleEntry 1 } + +aclTcpRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of tcp acl group. Range 1~131071." + ::= { aclTcpRuleEntry 2 } + +aclTcpAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of tcp acl rule. + (1) permit. + (2) deny." + ::= { aclTcpRuleEntry 3 } + +aclTcpSrcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address of tcp acl group." + ::= { aclTcpRuleEntry 4 } + +aclTcpSrcWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address wild of tcp acl group." + ::= { aclTcpRuleEntry 5 } + +aclTcpDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address of tcp acl group." + ::= { aclTcpRuleEntry 6 } + +aclTcpDestWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address wild of tcp acl group." + ::= { aclTcpRuleEntry 7 } + +aclTcpPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of Precedence.8 means do not use this filter.Range 0~8. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclTcpDscp is setted." + ::= { aclTcpRuleEntry 8 } + +aclTcpDscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclTcpPrecedence is setted." + ::= { aclTcpRuleEntry 9 } + +aclTcpFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. True(1),False(2). + This node can not be setted true for aclTcpSrcOp or aclTcpDestOp is setted." + ::= { aclTcpRuleEntry 10 } + +aclTcpRouted OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclTcpRuleEntry 11 } + +aclTcpOptions OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching packet with ip option. True(1),False(2)." + ::= { aclTcpRuleEntry 12 } + +aclTcpSrcOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source port's operator of tcp acl group. + This node can not be setted if aclTcpFragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclTcpRuleEntry 13 } + +aclTcpSrcPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port1. Range 0~65535. " + ::= { aclTcpRuleEntry 14 } + +aclTcpSrcPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port2. Range 0~65535." + ::= { aclTcpRuleEntry 15 } + +aclTcpDestOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination port's operator of tcp acl group. + This node can not be setted if aclTcpFragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclTcpRuleEntry 16 } + +aclTcpDestPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port1. Range 0~65535." + ::= { aclTcpRuleEntry 17 } + +aclTcpDestPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port2. Range 0~65535." + ::= { aclTcpRuleEntry 18 } + +aclTcpFlagOp OBJECT-TYPE + SYNTAX INTEGER + { + matchAny(0), + matchAll(1), + invalid(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-flags' operator of tcp acl group.for example, established tcp packet with ack or rst flag setted, set this node matchAny(0) and set aclTcpFlagAck and aclTcpFlagRst can filter established tcp packet. + matchAny(0), + matchAll(1), + invalid(2)." + ::= { aclTcpRuleEntry 19 } + +aclTcpFlagUrg OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-urg flag of tcp acl group. True(1),False(2). + TCP protocol URG Packet." + ::= { aclTcpRuleEntry 20 } + +aclTcpFlagAck OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-ack flag of tcp acl group. + TCP protocol ACK Packet. True(1),False(2)." + ::= { aclTcpRuleEntry 21 } + +aclTcpFlagPsh OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-psh flag of tcp acl group. True(1),False(2). + TCP protocol PSH Packet." + ::= { aclTcpRuleEntry 22 } + +aclTcpFlagRst OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-rst flag of tcp acl group. True(1),False(2). + TCP protocol RST Packet." + ::= { aclTcpRuleEntry 23 } + +aclTcpFlagSyn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-syn flag of tcp acl group. True(1),False(2). + TCP protocol SYN Packet." + ::= { aclTcpRuleEntry 24 } + +aclTcpFlagFin OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-fin flag of tcp acl group. True(1),False(2). + TCP protocol FIN Packet." + ::= { aclTcpRuleEntry 25 } + +aclTcpTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of tcp acl rule." + ::= { aclTcpRuleEntry 26 } + +aclTcpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclTcpRuleEntry 28 } + +-- +-- aclUdpRuleTable +-- +aclUdpRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclUdpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for udp acl group." + ::= { aclData 5 } + +aclUdpRuleEntry OBJECT-TYPE + SYNTAX AclUdpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclUdpRuleTable." + INDEX { aclUdpGroupIndex, aclUdpRuleIndex } + ::= { aclUdpRuleTable 1 } + + AclUdpRuleEntry ::= + SEQUENCE { + aclUdpGroupIndex + Integer32, + aclUdpRuleIndex + Integer32, + aclUdpAct + RuleAction, + aclUdpSrcIp + IpAddress, + aclUdpSrcWild + IpAddress, + aclUdpDestIp + IpAddress, + aclUdpDestWild + IpAddress, + aclUdpPrecedence + Integer32, + aclUdpDscp + DSCPValue, + aclUdpFragments + TruthValue, + aclUdpRouted + TruthValue, + aclUdpOptions + TruthValue, + aclUdpSrcOp + PortOp, + aclUdpSrcPort1 + Integer32, + aclUdpSrcPort2 + Integer32, + aclUdpDestOp + PortOp, + aclUdpDestPort1 + Integer32, + aclUdpDestPort2 + Integer32, + aclUdpTimeRangeName + OCTET STRING, + aclUdpRowStatus + RowStatus + } + +aclUdpGroupIndex OBJECT-TYPE + SYNTAX Integer32 (20001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of udp acl group. Range 20001~40000." + ::= { aclUdpRuleEntry 1 } + +aclUdpRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of udp acl group. Range 1~131071." + ::= { aclUdpRuleEntry 2 } + +aclUdpAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of udp acl rule. + (1) permit. + (2) deny" + ::= { aclUdpRuleEntry 3 } + +aclUdpSrcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address of udp acl group." + ::= { aclUdpRuleEntry 4 } + +aclUdpSrcWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address wild of udp acl group." + ::= { aclUdpRuleEntry 5 } + +aclUdpDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address of udp acl group." + ::= { aclUdpRuleEntry 6 } + +aclUdpDestWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address wild of udp acl group." + ::= { aclUdpRuleEntry 7 } + +aclUdpPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of Precedence.8 means do not use this filter.Range 0~8. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclUdpDscp is setted." + ::= { aclUdpRuleEntry 8 } + +aclUdpDscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclUdpPrecedence is setted." + ::= { aclUdpRuleEntry 9 } + +aclUdpFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. True(1),False(2). + This node can not be setted true for aclUdpSrcOp or aclUdpDestOp is setted." + ::= { aclUdpRuleEntry 10 } + +aclUdpRouted OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclUdpRuleEntry 11 } + +aclUdpOptions OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching packet with ip option. True(1),False(2)." + ::= { aclUdpRuleEntry 12 } + +aclUdpSrcOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source port's operator of udp acl group. + This node can not be setted if aclUdpFragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclUdpRuleEntry 13 } + +aclUdpSrcPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port1. Range 0~65535." + ::= { aclUdpRuleEntry 14 } + +aclUdpSrcPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port2. Range 0~65535." + ::= { aclUdpRuleEntry 15 } + +aclUdpDestOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination port's operator of udp acl group. + This node can not be setted if aclUdpFragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclUdpRuleEntry 16 } + +aclUdpDestPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port1. Range 0~65535." + ::= { aclUdpRuleEntry 17 } + +aclUdpDestPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port2. Range 0~65535." + ::= { aclUdpRuleEntry 18 } + +aclUdpTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of udp acl rule. Range 0~20." + ::= { aclUdpRuleEntry 19 } + +aclUdpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclUdpRuleEntry 21 } + +-- +-- aclIcmpRuleTable +-- +aclIcmpRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIcmpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for icmp acl group." + ::= { aclData 6 } + +aclIcmpRuleEntry OBJECT-TYPE + SYNTAX AclIcmpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclIcmpRuleTable." + INDEX { aclIcmpGroupIndex, aclIcmpRuleIndex } + ::= { aclIcmpRuleTable 1 } + + AclIcmpRuleEntry ::= + SEQUENCE { + aclIcmpGroupIndex + Integer32, + aclIcmpRuleIndex + Integer32, + aclIcmpAct + RuleAction, + aclIcmpSrcIp + IpAddress, + aclIcmpSrcWild + IpAddress, + aclIcmpDestIp + IpAddress, + aclIcmpDestWild + IpAddress, + aclIcmpPrecedence + Integer32, + aclIcmpDscp + DSCPValue, + aclIcmpFragments + TruthValue, + aclIcmpRouted + TruthValue, + aclIcmpOptions + TruthValue, + aclIcmpType + Integer32, + aclIcmpCode + Integer32, + aclIcmpTimeRangeName + OCTET STRING, + aclIcmpRowStatus + RowStatus + } + +aclIcmpGroupIndex OBJECT-TYPE + SYNTAX Integer32 (20001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of icmp acl group. Range 20001~40000." + ::= { aclIcmpRuleEntry 1 } + +aclIcmpRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of icmp acl group. Range 1~131071." + ::= { aclIcmpRuleEntry 2 } + +aclIcmpAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of icmp acl rule. + (1) permit. + (2) deny" + ::= { aclIcmpRuleEntry 3 } + +aclIcmpSrcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address of icmp acl group." + ::= { aclIcmpRuleEntry 4 } + +aclIcmpSrcWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address wild of icmp acl group." + ::= { aclIcmpRuleEntry 5 } + +aclIcmpDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address of icmp acl group." + ::= { aclIcmpRuleEntry 6 } + +aclIcmpDestWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address wild of icmp acl group." + ::= { aclIcmpRuleEntry 7 } + +aclIcmpPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of Precedence.8 means do not use this filter.Range 0~8. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclIcmpDscp is setted." + ::= { aclIcmpRuleEntry 8 } + +aclIcmpDscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclIcmpPrecedence is setted." + ::= { aclIcmpRuleEntry 9 } + +aclIcmpFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. + This node can not be setted true if aclIcmpType is setted. True(1),False(2)." + ::= { aclIcmpRuleEntry 10 } + +aclIcmpRouted OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclIcmpRuleEntry 11 } + +aclIcmpOptions OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching packet with ip option. True(1),False(2)." + ::= { aclIcmpRuleEntry 12 } + +aclIcmpType OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of ICMP packet. + INTEGER<0-256> ICMP type + echo Type=8, Code=0 + echo-reply Type=0, Code=0 + fragmentneed-DFset Type=3, Code=4 + host-redirect Type=5, Code=1 + host-tos-redirect Type=5, Code=3 + host-unreachable Type=3, Code=1 + information-reply Type=16, Code=0 + information-request Type=15, Code=0 + net-redirect Type=5, Code=0 + net-tos-redirect Type=5, Code=2 + net-unreachable Type=3, Code=0 + parameter-problem Type=12, Code=0 + port-unreachable Type=3, Code=3 + protocol-unreachable Type=3, Code=2 + reassembly-timeout Type=11, Code=1 + source-quench Type=4, Code=0 + source-route-failed Type=3, Code=5 + timestamp-reply Type=14, Code=0 + timestamp-request Type=13, Code=0 + ttl-exceeded Type=11, Code=0 + nouse 256 + This node can not be setted if aclIcmpFragments is true." + ::= { aclIcmpRuleEntry 13 } + +aclIcmpCode OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The code of ICMP packet.INTEGER<0-256> + echo Type=8, Code=0 + echo-reply Type=0, Code=0 + fragmentneed-DFset Type=3, Code=4 + host-redirect Type=5, Code=1 + host-tos-redirect Type=5, Code=3 + host-unreachable Type=3, Code=1 + information-reply Type=16, Code=0 + information-request Type=15, Code=0 + net-redirect Type=5, Code=0 + net-tos-redirect Type=5, Code=2 + net-unreachable Type=3, Code=0 + parameter-problem Type=12, Code=0 + port-unreachable Type=3, Code=3 + protocol-unreachable Type=3, Code=2 + reassembly-timeout Type=11, Code=1 + source-quench Type=4, Code=0 + source-route-failed Type=3, Code=5 + timestamp-reply Type=14, Code=0 + timestamp-request Type=13, Code=0 + ttl-exceeded Type=11, Code=0 + nouse 256 + This node can not be setted if aclIcmpType is not setted." + ::= { aclIcmpRuleEntry 14 } + +aclIcmpTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of icmp acl rule. Range 0~20." + ::= { aclIcmpRuleEntry 15 } + +aclIcmpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclIcmpRuleEntry 17 } + + +-- +-- aclIgmpRuleTable +-- +aclIgmpRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIgmpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for igmp acl group." + ::= { aclData 7 } + +aclIgmpRuleEntry OBJECT-TYPE + SYNTAX AclIgmpRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclIgmpRuleTable." + INDEX { aclIgmpGroupIndex, aclIgmpRuleIndex } + ::= { aclIgmpRuleTable 1 } + + AclIgmpRuleEntry ::= + SEQUENCE { + aclIgmpGroupIndex + Integer32, + aclIgmpRuleIndex + Integer32, + aclIgmpAct + RuleAction, + aclIgmpSrcIp + IpAddress, + aclIgmpSrcWild + IpAddress, + aclIgmpDestIp + IpAddress, + aclIgmpDestWild + IpAddress, + aclIgmpPrecedence + Integer32, + aclIgmpDscp + DSCPValue, + aclIgmpFragments + TruthValue, + aclIgmpRouted + TruthValue, + aclIgmpOptions + TruthValue, + aclIgmpType + INTEGER, + aclIgmpTimeRangeName + OCTET STRING, + aclIgmpRowStatus + RowStatus + } + +aclIgmpGroupIndex OBJECT-TYPE + SYNTAX Integer32 (20001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of igmp acl group. Range 20001~40000." + ::= { aclIgmpRuleEntry 1 } + +aclIgmpRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of igmp acl group.Range 1~131071." + ::= { aclIgmpRuleEntry 2 } + +aclIgmpAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of igmp acl rule. + (1) permit. + (2) deny" + ::= { aclIgmpRuleEntry 3 } + +aclIgmpSrcIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address of igmp acl group." + ::= { aclIgmpRuleEntry 4 } + +aclIgmpSrcWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IP-address wild of igmp acl group." + ::= { aclIgmpRuleEntry 5 } + +aclIgmpDestIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address of igmp acl group." + ::= { aclIgmpRuleEntry 6 } + +aclIgmpDestWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IP-address wild of igmp acl group." + ::= { aclIgmpRuleEntry 7 } + +aclIgmpPrecedence OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of Precedence.8 means do not use this filter.Range 0~8. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclIgmpDscp is setted." + ::= { aclIgmpRuleEntry 8 } + +aclIgmpDscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter. + DSCP and Precedence both use IP TOS segment.This node can not be setted for aclIgmpPrecedence is setted." + ::= { aclIgmpRuleEntry 9 } + +aclIgmpFragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. + This node can not be setted true if aclIgmpType is setted. True(1),False(2)." + ::= { aclIgmpRuleEntry 10 } + +aclIgmpRouted OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclIgmpRuleEntry 11 } + +aclIgmpOptions OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching packet with ip option.True(1),False(2)." + ::= { aclIgmpRuleEntry 12 } + +aclIgmpType OBJECT-TYPE + SYNTAX INTEGER + { + precedence(0), + hostQuery(17), + hostReport(18), + dvmrp(19), + pim(20), + trace(21), + v2Report(22), + v2Leave(23), + mtraceResponse(30), + mtrace(31), + v3Report(34), + invalid(256) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of ICMP packet. + 0 precedence + 17 host query + 18 host report + 19 dvmrp + 20 pim + 21 trace + 22 v2 report + 23 v2 leave + 30 mtrace response + 31 mtrace + 34 v3 report + 256 nouse + This node can not be setted if aclIgmpFragments is true." + ::= { aclIgmpRuleEntry 13 } + +aclIgmpTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of igmp acl rule.Range 0~20." + ::= { aclIgmpRuleEntry 14 } + +aclIgmpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { aclIgmpRuleEntry 16 } + +-- +-- Nodes of aclMplsMacRuleTable +-- +aclMplsMacRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclMplsMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of MPLS MAC acl group. + If some objects of this table are not supported by some products, + these objects can't be created, changed and applied. + Default value of these objects will be returned when they are read. + " + ::= { aclData 8 } + +aclMplsMacRuleEntry OBJECT-TYPE + SYNTAX AclMplsMacRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS MAC acl group information." + INDEX { aclMplsMacGroupIndex, aclMplsMacRuleIndex } + ::= { aclMplsMacRuleTable 1 } + + AclMplsMacRuleEntry ::= + SEQUENCE + { + aclMplsMacGroupIndex + Integer32, + aclMplsMacRuleIndex + Integer32, + aclMplsMacAct + RuleAction, + aclMplsMacSrcMac + MacAddress , + aclMplsMacSrcMacWild + MacAddress , + aclMplsMacDestMac + MacAddress , + aclMplsMacDestMacWild + MacAddress , + aclMplsMacType + Integer32, + aclMplsMacVlanId + Integer32, + aclMplsMacInnerVlanId + Integer32, + aclMplsMacCos + Integer32, + aclMplsMacInnerCos + Integer32, + aclMplsMacTimeRangeName + OCTET STRING, + aclMplsMacRowStatus + RowStatus + } + +aclMplsMacGroupIndex OBJECT-TYPE + SYNTAX Integer32 (70001..80000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of MPLS MAC-based acl group. Range 70001 ~ 80000." + ::= { aclMplsMacRuleEntry 1 } + +aclMplsMacRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of MPLS MAC-based acl group. Range 1~131071." + ::= { aclMplsMacRuleEntry 2 } + +aclMplsMacAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of MPLS MAC acl rule. + (1) permit. + (2) deny." + ::= { aclMplsMacRuleEntry 3 } + +aclMplsMacSrcMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC of MPLS MAC acl rule." + ::= { aclMplsMacRuleEntry 4 } + +aclMplsMacSrcMacWild OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source MAC wildcard of MPLS MAC acl rule." + ::= { aclMplsMacRuleEntry 5 } + +aclMplsMacDestMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC of MAC acl rule. + If you do not want to use this filter, + set this item and aclMacDestMacWild 'FF:FF:FF:FF:FF:FF'." + ::= { aclMplsMacRuleEntry 6 } + +aclMplsMacDestMacWild OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination MAC wildcard of MAC acl rule. If you do not want to use + this filter, set this item and aclMacDestMac 'FF:FF:FF:FF:FF:FF'." + ::= { aclMplsMacRuleEntry 7 } + + +aclMplsMacType OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of protocol + nouse(0) + eth2(1) + sap(2) + snap(3) " + ::= { aclMplsMacRuleEntry 8 } + +aclMplsMacVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The vlan id of MAC acl rule.Range 0~4094. + nouse(0) " + ::= { aclMplsMacRuleEntry 9 } + +aclMplsMacInnerVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The inner vlan id of MAC acl rule. + nouse(0) " + ::= { aclMplsMacRuleEntry 10 } + +aclMplsMacCos OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Vlan priority of MAC acl rule.Range 0~8 + nouse(8)." + ::= { aclMplsMacRuleEntry 11 } + +aclMplsMacInnerCos OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Inner vlan priority of MAC acl rule. + nouse(8)." + ::= { aclMplsMacRuleEntry 12 } + +aclMplsMacTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of MAC acl rule." + ::= { aclMplsMacRuleEntry 13 } + +aclMplsMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row.Now only realize CreateAndGo and Destroy and Active." + ::= { aclMplsMacRuleEntry 20 } + + + +-- +-- aclMplsLabelRuleTable +-- +aclMplsLabelRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclMplsLabelRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for Mpls Label acl group." + ::= { aclData 9 } + +aclMplsLabelRuleEntry OBJECT-TYPE + SYNTAX AclMplsLabelRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of acl Mpls Label RuleTable." + INDEX { aclMplsLabelGroupIndex, aclMplsLabelRuleIndex } + ::= { aclMplsLabelRuleTable 1 } + + AclMplsLabelRuleEntry ::= + SEQUENCE { + aclMplsLabelGroupIndex + Integer32, + aclMplsLabelRuleIndex + Integer32, + aclMplsLabelAct + RuleAction, + aclMplsLabelLayer + Integer32, + aclMplsLabel1Value + Integer32, + aclMplsLabel1Wild + OCTET STRING, + aclMplsLabel1Exp + Integer32, + aclMplsLabel1Ttl + Integer32, + aclMplsLabel2Value + Integer32, + aclMplsLabel2Wild + OCTET STRING, + aclMplsLabel2Exp + Integer32, + aclMplsLabel2Ttl + Integer32, + aclMplsLabel3Value + Integer32, + aclMplsLabel3Wild + OCTET STRING, + aclMplsLabel3Exp + Integer32, + aclMplsLabel3Ttl + Integer32, + aclMplsLabel4Value + Integer32, + aclMplsLabel4Wild + OCTET STRING, + aclMplsLabel4Exp + Integer32, + aclMplsLabel4Ttl + Integer32, + aclMplsLabelSkBottom + TruthValue, + aclMplsLabelTimeRangeName + OCTET STRING, + aclMplsLabelRowStatus + RowStatus + } + +aclMplsLabelGroupIndex OBJECT-TYPE + SYNTAX Integer32 (60001..80000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of MplsLabel acl group. Range 60001~80000." + ::= { aclMplsLabelRuleEntry 1 } + +aclMplsLabelRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of MplsLabel acl rule.Range 1~131071." + ::= { aclMplsLabelRuleEntry 2 } + +aclMplsLabelAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of MplsLabel acl rule. + (1) permit. + (2) deny." + ::= { aclMplsLabelRuleEntry 3 } + +aclMplsLabelLayer OBJECT-TYPE + SYNTAX Integer32 (1..4) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The layer number of MPLS labels.Range is <1-4>. + Set 1 means match MPLS packets with more than + (or equal to) one layer MPLS label. + Set 2 means match MPLS packets with more than + (or equal to) two layer MPLS label. + Set 3 means match MPLS packets with more than + (or equal to) three layer MPLS label. + Set 4 means match MPLS packets with more than + (or equal to) four layer MPLS label." + ::= { aclMplsLabelRuleEntry 4 } + + +aclMplsLabel1Value OBJECT-TYPE + SYNTAX Integer32 (0..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The mpls label1 value in in decimal system. + Range is 0~1048575.Default value is 0." + ::= { aclMplsLabelRuleEntry 5 } + +aclMplsLabel1Wild OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..5)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MPLS label wildcard in hexadecimal system. + Range is string 0~fffff. + Default wild value is fffff, means any." + ::= { aclMplsLabelRuleEntry 6 } + +aclMplsLabel1Exp OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The exp value of the MPLS label.Range of exp is <0-7>. + 8 means do not use.Default value is 8." + ::= { aclMplsLabelRuleEntry 7 } + +aclMplsLabel1Ttl OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ttl value of the MPLS label.Range of ttl is <0-255>. + 256 means do not use.Default value is 256." + ::= { aclMplsLabelRuleEntry 8 } + +aclMplsLabel2Value OBJECT-TYPE + SYNTAX Integer32 (0..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The mpls label value in in decimal system. + Range is 0~1048575.Default value is 0." + ::= { aclMplsLabelRuleEntry 9 } + +aclMplsLabel2Wild OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..5)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MPLS label wildcard in hexadecimal system. + Range is string 0~fffff. + Defalut wild value is fffff, means any." + ::= { aclMplsLabelRuleEntry 10 } + +aclMplsLabel2Exp OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The exp value of the MPLS label.Range of exp is <0-7>. + 8 means do not use.Default value is 8." + ::= { aclMplsLabelRuleEntry 11 } + +aclMplsLabel2Ttl OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ttl value of the MPLS label.Range of ttl is <0-255>. + 256 means do not use.Default value is 256." + ::= { aclMplsLabelRuleEntry 12 } + +aclMplsLabel3Value OBJECT-TYPE + SYNTAX Integer32 (0..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The mpls label value in in decimal system. + Range is 0~1048575.Default value is 0." + ::= { aclMplsLabelRuleEntry 13 } + +aclMplsLabel3Wild OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..5)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MPLS label wildcard in hexadecimal system. + Range is string 0~fffff. + Default wild value is fffff, means any." + ::= { aclMplsLabelRuleEntry 14 } + +aclMplsLabel3Exp OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The exp value of the MPLS label.Range of exp is <0-7>. + 8 means do not use.Default value is 8." + ::= { aclMplsLabelRuleEntry 15 } + +aclMplsLabel3Ttl OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ttl value of the MPLS label.Range of ttl is <0-255>. + 256 means do not use.Default value is 256." + ::= { aclMplsLabelRuleEntry 16 } + +aclMplsLabel4Value OBJECT-TYPE + SYNTAX Integer32 (0..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The mpls label value in in decimal system. + Range is 0~1048575.Default value is 0." + ::= { aclMplsLabelRuleEntry 17 } + +aclMplsLabel4Wild OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..5)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MPLS label wildcard in hexadecimal system. + Range is string 0~fffff. + Default wild value is fffff, means any." + ::= { aclMplsLabelRuleEntry 18 } + +aclMplsLabel4Exp OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The exp value of the MPLS label.Range of exp is <0-7>. + 8 means do not use.Default value is 8." + ::= { aclMplsLabelRuleEntry 19 } + +aclMplsLabel4Ttl OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ttl value of the MPLS label.Range of ttl is <0-255>. + 256 means do not use.Default value is 256." + ::= { aclMplsLabelRuleEntry 20 } + +aclMplsLabelSkBottom OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set whether the topmost label as bottom of label stack. + True(1), means matching MPLS packets with + label layer num equal to aclMplsLabelLayer. + False(2), means matching MPLS packets with + label layer num more than aclMplsLabelLayer. + Default value is False." + ::= { aclMplsLabelRuleEntry 21 } + +aclMplsLabelTimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of used by the MPLS filter rule." + ::= { aclMplsLabelRuleEntry 22 } + +aclMplsLabelRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { aclMplsLabelRuleEntry 25 } + + +-- +-- aclIpv6RuleTable +-- +aclIpv6RuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIpv6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for ipv6 acl group." + ::= { aclData 10 } + +aclIpv6RuleEntry OBJECT-TYPE + SYNTAX AclIpv6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclIpv6RuleTable." + INDEX { aclIpv6GroupIndex, aclIpv6RuleIndex } + ::= { aclIpv6RuleTable 1 } + + AclIpv6RuleEntry ::= + SEQUENCE { + aclIpv6GroupIndex + Integer32, + aclIpv6RuleIndex + Integer32, + aclIpv6Act + RuleAction, + aclIpv6Protocol + Integer32, + aclIpv6SrcIpv6 + OCTET STRING, + aclIpv6SrcPrefixLen + Integer32, + aclIpv6DestIpv6 + OCTET STRING, + aclIpv6DestPrefixLen + Integer32, + aclIpv6FlowLabel + Integer32, + aclIpv6Dscp + DSCPValue, + aclIpv6Fragments + TruthValue, + aclIpv6Routed + TruthValue, + aclIpv6Options + TruthValue, + aclIpv6TimeRangeName + OCTET STRING, + aclIpv6RowStatus + RowStatus + } + +aclIpv6GroupIndex OBJECT-TYPE + SYNTAX Integer32 (40001..60000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of ipv6 acl group. Range 40001~60000." + ::= { aclIpv6RuleEntry 1 } + +aclIpv6RuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of ipv6 acl rule.Range 1~131071." + ::= { aclIpv6RuleEntry 2 } + +aclIpv6Act OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of ipv6 acl rule. + (1) permit. + (2) deny." + ::= { aclIpv6RuleEntry 3 } + +aclIpv6Protocol OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The protocol-type of Ipv6 acl group. + <0-255> Protocol number + Icmpv6 Internet Control Message Protocol(58) + ospf OSPF routing protocol(89) + tcp Transmission Control Protocol (6) + udp User Datagram Protocol (17) + nouse Do not use this filter(256)" + ::= { aclIpv6RuleEntry 4 } + +aclIpv6SrcIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address of ipv6 acl group." + ::= { aclIpv6RuleEntry 5 } + +aclIpv6SrcPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address prefix length of ipv6 acl group.Range 0~128" + ::= { aclIpv6RuleEntry 6 } + +aclIpv6DestIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address of ipv6 acl group." + ::= { aclIpv6RuleEntry 7 } + +aclIpv6DestPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address prefix length of ipv6 acl group.Range 0~128" + ::= { aclIpv6RuleEntry 8 } + +aclIpv6FlowLabel OBJECT-TYPE + SYNTAX Integer32 (0..1048576) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of FlowLabel.1048576 means do not use this filter.Range 0~1048576." + ::= { aclIpv6RuleEntry 9 } + +aclIpv6Dscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter.Range 0~64." + ::= { aclIpv6RuleEntry 10 } + +aclIpv6Fragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. True(1),False(2)." + ::= { aclIpv6RuleEntry 11 } + +aclIpv6Routed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclIpv6RuleEntry 12 } + +aclIpv6Options OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The flag of matching packet with ipv6 option. True(1),False(2)." + ::= { aclIpv6RuleEntry 13 } + +aclIpv6TimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of Ipv6 acl rule.String length range 0~20." + ::= { aclIpv6RuleEntry 14 } + +aclIpv6RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { aclIpv6RuleEntry 16 } + +-- +-- aclTcp6RuleTable +-- +aclTcp6RuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclTcp6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for tcp6 acl group." + ::= { aclData 11 } + +aclTcp6RuleEntry OBJECT-TYPE + SYNTAX AclTcp6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclTcp6RuleTable." + INDEX { aclTcp6GroupIndex, aclTcp6RuleIndex } + ::= { aclTcp6RuleTable 1 } + + AclTcp6RuleEntry ::= + SEQUENCE { + aclTcp6GroupIndex + Integer32, + aclTcp6RuleIndex + Integer32, + aclTcp6Act + RuleAction, + aclTcp6SrcIpv6 + OCTET STRING, + aclTcp6SrcPrefixLen + Integer32, + aclTcp6DestIpv6 + OCTET STRING, + aclTcp6DestPrefixLen + Integer32, + aclTcp6FlowLabel + Integer32, + aclTcp6Dscp + DSCPValue, + aclTcp6Fragments + TruthValue, + aclTcp6Routed + TruthValue, + aclTcp6Options + TruthValue, + aclTcp6SrcOp + PortOp, + aclTcp6SrcPort1 + Integer32, + aclTcp6SrcPort2 + Integer32, + aclTcp6DestOp + PortOp, + aclTcp6DestPort1 + Integer32, + aclTcp6DestPort2 + Integer32, + aclTcp6FlagOp + INTEGER, + aclTcp6FlagUrg + TruthValue, + aclTcp6FlagAck + TruthValue, + aclTcp6FlagPsh + TruthValue, + aclTcp6FlagRst + TruthValue, + aclTcp6FlagSyn + TruthValue, + aclTcp6FlagFin + TruthValue, + aclTcp6TimeRangeName + OCTET STRING, + aclTcp6RowStatus + RowStatus + } + +aclTcp6GroupIndex OBJECT-TYPE + SYNTAX Integer32 (40001..60000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of tcp6 acl group. Range 40001~60000." + ::= { aclTcp6RuleEntry 1 } + +aclTcp6RuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of tcp6 acl group. Range 1~131071." + ::= { aclTcp6RuleEntry 2 } + +aclTcp6Act OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of tcp6 acl rule. + (1) permit. + (2) deny." + ::= { aclTcp6RuleEntry 3 } + +aclTcp6SrcIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address of tcp6 acl group." + ::= { aclTcp6RuleEntry 4 } + +aclTcp6SrcPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address prefix length of tcp6 acl group.Range 0~128" + ::= { aclTcp6RuleEntry 5 } + +aclTcp6DestIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address of tcp6 acl group." + ::= { aclTcp6RuleEntry 6 } + +aclTcp6DestPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address prefix length of tcp6 acl group.Range 0~128" + ::= { aclTcp6RuleEntry 7 } + +aclTcp6FlowLabel OBJECT-TYPE + SYNTAX Integer32 (0..1048576) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of FlowLabel.1048576 means do not use this filter.Range 0~1048576." + ::= { aclTcp6RuleEntry 8 } + +aclTcp6Dscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter.Range 0~64." + ::= { aclTcp6RuleEntry 9 } + +aclTcp6Fragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. True(1),False(2). + This node can not be setted true for aclTcp6SrcOp or aclTcp6DestOp is setted." + ::= { aclTcp6RuleEntry 10 } + +aclTcp6Routed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclTcp6RuleEntry 11 } + +aclTcp6Options OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The flag of matching packet with ipv6 option. True(1),False(2)." + ::= { aclTcp6RuleEntry 12 } + +aclTcp6SrcOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source port's operator of tcp6 acl group. + This node can not be setted if aclTcp6Fragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclTcp6RuleEntry 13 } + +aclTcp6SrcPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port1. Range 0~65535. " + ::= { aclTcp6RuleEntry 14 } + +aclTcp6SrcPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port2. Range 0~65535." + ::= { aclTcp6RuleEntry 15 } + +aclTcp6DestOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination port's operator of tcp6 acl group. + This node can not be setted if aclTcp6Fragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclTcp6RuleEntry 16 } + +aclTcp6DestPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port1. Range 0~65535." + ::= { aclTcp6RuleEntry 17 } + +aclTcp6DestPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port2. Range 0~65535." + ::= { aclTcp6RuleEntry 18 } + +aclTcp6FlagOp OBJECT-TYPE + SYNTAX INTEGER + { + matchAny(0), + matchAll(1), + invalid(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-flags' operator of tcp6 acl group. + for example, established tcp packet with ack or rst flag setted, + set this node matchAny(0) and set aclTcp6FlagAck and aclTcp6FlagRst + can filter established tcp packet. + matchAny(0), + matchAll(1), + invalid(2)." + ::= { aclTcp6RuleEntry 19 } + +aclTcp6FlagUrg OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-urg flag of tcp6 acl group. True(1),False(2). + TCP protocol URG Packet." + ::= { aclTcp6RuleEntry 20 } + +aclTcp6FlagAck OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-ack flag of tcp6 acl group. + TCP protocol ACK Packet. True(1),False(2)." + ::= { aclTcp6RuleEntry 21 } + +aclTcp6FlagPsh OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-psh flag of tcp6 acl group. True(1),False(2). + TCP protocol PSH Packet." + ::= { aclTcp6RuleEntry 22 } + +aclTcp6FlagRst OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-rst flag of tcp6 acl group. True(1),False(2). + TCP protocol RST Packet." + ::= { aclTcp6RuleEntry 23 } + +aclTcp6FlagSyn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-syn flag of tcp6 acl group. True(1),False(2). + TCP protocol SYN Packet." + ::= { aclTcp6RuleEntry 24 } + +aclTcp6FlagFin OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The tcp-fin flag of tcp6 acl group. True(1),False(2). + TCP protocol FIN Packet." + ::= { aclTcp6RuleEntry 25 } + +aclTcp6TimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of tcp6 acl rule." + ::= { aclTcp6RuleEntry 26 } + +aclTcp6RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { aclTcp6RuleEntry 28 } + +-- +-- aclUdp6RuleTable +-- +aclUdp6RuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclUdp6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for udp6 acl group." + ::= { aclData 12 } + +aclUdp6RuleEntry OBJECT-TYPE + SYNTAX AclUdp6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclUdp6RuleTable." + INDEX { aclUdp6GroupIndex, aclUdp6RuleIndex } + ::= { aclUdp6RuleTable 1 } + + AclUdp6RuleEntry ::= + SEQUENCE { + aclUdp6GroupIndex + Integer32, + aclUdp6RuleIndex + Integer32, + aclUdp6Act + RuleAction, + aclUdp6SrcIpv6 + OCTET STRING, + aclUdp6SrcPrefixLen + Integer32, + aclUdp6DestIpv6 + OCTET STRING, + aclUdp6DestPrefixLen + Integer32, + aclUdp6FlowLabel + Integer32, + aclUdp6Dscp + DSCPValue, + aclUdp6Fragments + TruthValue, + aclUdp6Routed + TruthValue, + aclUdp6Options + TruthValue, + aclUdp6SrcOp + PortOp, + aclUdp6SrcPort1 + Integer32, + aclUdp6SrcPort2 + Integer32, + aclUdp6DestOp + PortOp, + aclUdp6DestPort1 + Integer32, + aclUdp6DestPort2 + Integer32, + aclUdp6TimeRangeName + OCTET STRING, + aclUdp6RowStatus + RowStatus + } + +aclUdp6GroupIndex OBJECT-TYPE + SYNTAX Integer32 (40001..60000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of udp6 acl group. Range 40001~60000." + ::= { aclUdp6RuleEntry 1 } + +aclUdp6RuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of udp6 acl group. Range 1~131071." + ::= { aclUdp6RuleEntry 2 } + +aclUdp6Act OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of udp6 acl rule. + (1) permit. + (2) deny" + ::= { aclUdp6RuleEntry 3 } + +aclUdp6SrcIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address of udp6 acl group." + ::= { aclUdp6RuleEntry 4 } + +aclUdp6SrcPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address prefix length of udp6 acl group.Range 0~128" + ::= { aclUdp6RuleEntry 5 } + +aclUdp6DestIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address of udp6 acl group." + ::= { aclUdp6RuleEntry 6 } + +aclUdp6DestPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address prefix length of udp6 acl group.Range 0~128" + ::= { aclUdp6RuleEntry 7 } + +aclUdp6FlowLabel OBJECT-TYPE + SYNTAX Integer32 (0..1048576) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of FlowLabel.1048576 means do not use this filter.Range 0~1048576." + ::= { aclUdp6RuleEntry 8 } + +aclUdp6Dscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter.Range 0~64." + ::= { aclUdp6RuleEntry 9 } + +aclUdp6Fragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. True(1),False(2). + This node can not be setted true for aclUdp6SrcOp or aclUdp6DestOp is setted." + ::= { aclUdp6RuleEntry 10 } + +aclUdp6Routed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclUdp6RuleEntry 11 } + +aclUdp6Options OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The flag of matching packet with ipv6 option. True(1),False(2)." + ::= { aclUdp6RuleEntry 12 } + +aclUdp6SrcOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source port's operator of udp6 acl group. + This node can not be setted if aclUdp6Fragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclUdp6RuleEntry 13 } + +aclUdp6SrcPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port1. Range 0~65535." + ::= { aclUdp6RuleEntry 14 } + +aclUdp6SrcPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer source port2. Range 0~65535." + ::= { aclUdp6RuleEntry 15 } + +aclUdp6DestOp OBJECT-TYPE + SYNTAX PortOp + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination port's operator of udp6 acl group. + This node can not be setted if aclUdp6Fragments is true. + eq(0), + gt(2), + lt(3), + range(4), + invalid(5)" + ::= { aclUdp6RuleEntry 16 } + +aclUdp6DestPort1 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port1. Range 0~65535." + ::= { aclUdp6RuleEntry 17 } + +aclUdp6DestPort2 OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth layer destination port2. Range 0~65535." + ::= { aclUdp6RuleEntry 18 } + +aclUdp6TimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of udp6 acl rule. Range 0~20." + ::= { aclUdp6RuleEntry 19 } + +aclUdp6RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { aclUdp6RuleEntry 21 } + +-- +-- aclIcmp6RuleTable +-- +aclIcmp6RuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF AclIcmp6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the rule for icmp6 acl group." + ::= { aclData 13 } + +aclIcmp6RuleEntry OBJECT-TYPE + SYNTAX AclIcmp6RuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of aclIcmp6RuleTable." + INDEX { aclIcmp6GroupIndex, aclIcmp6RuleIndex } + ::= { aclIcmp6RuleTable 1 } + + AclIcmp6RuleEntry ::= + SEQUENCE { + aclIcmp6GroupIndex + Integer32, + aclIcmp6RuleIndex + Integer32, + aclIcmp6Act + RuleAction, + aclIcmp6SrcIpv6 + OCTET STRING, + aclIcmp6SrcPrefixLen + Integer32, + aclIcmp6DestIpv6 + OCTET STRING, + aclIcmp6DestPrefixLen + Integer32, + aclIcmp6FlowLabel + Integer32, + aclIcmp6Dscp + DSCPValue, + aclIcmp6Fragments + TruthValue, + aclIcmp6Routed + TruthValue, + aclIcmp6Options + TruthValue, + aclIcmp6Type + Integer32, + aclIcmp6Code + Integer32, + aclIcmp6TimeRangeName + OCTET STRING, + aclIcmp6RowStatus + RowStatus + } + +aclIcmp6GroupIndex OBJECT-TYPE + SYNTAX Integer32 (40001..60000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of icmp6 acl group. Range 40001~60000." + ::= { aclIcmp6RuleEntry 1 } + +aclIcmp6RuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of icmp6 acl group. Range 1~131071." + ::= { aclIcmp6RuleEntry 2 } + +aclIcmp6Act OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of icmp6 acl rule. + (1) permit. + (2) deny" + ::= { aclIcmp6RuleEntry 3 } + +aclIcmp6SrcIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Source IPv6-address of icmp6 acl group." + ::= { aclIcmp6RuleEntry 4 } + +aclIcmp6SrcPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Source IPv6-address prefix length of icmp6 acl group.Range 0~128" + ::= { aclIcmp6RuleEntry 5 } + +aclIcmp6DestIpv6 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address of icmp6 acl group." + ::= { aclIcmp6RuleEntry 6 } + +aclIcmp6DestPrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Destination IPv6-address prefix length of icmp6 acl group.Range 0~128" + ::= { aclIcmp6RuleEntry 7 } + +aclIcmp6FlowLabel OBJECT-TYPE + SYNTAX Integer32 (0..1048576) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of FlowLabel.1048576 means do not use this filter.Range 0~1048576." + ::= { aclIcmp6RuleEntry 8 } + +aclIcmp6Dscp OBJECT-TYPE + SYNTAX DSCPValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of DSCP.64 means do not use this filter.Range 0~64." + ::= { aclIcmp6RuleEntry 9 } + +aclIcmp6Fragments OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching fragmented packet. + This node can not be setted true if aclIcmp6Type is setted. True(1),False(2)." + ::= { aclIcmp6RuleEntry 10 } + +aclIcmp6Routed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The flag of matching routed packet. True(1),False(2)." + ::= { aclIcmp6RuleEntry 11 } + +aclIcmp6Options OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The flag of matching packet with ipv6 option. True(1),False(2)." + ::= { aclIcmp6RuleEntry 12 } + +aclIcmp6Type OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of ICMPv6 packet.Range 0~256. + This node can not be setted if aclIcmp6Fragments is true." + ::= { aclIcmp6RuleEntry 13 } + +aclIcmp6Code OBJECT-TYPE + SYNTAX Integer32 (0..256) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The code of ICMPv6 packet.Range 0~256. + This node can not be setted if aclIcmp6Type is not setted." + ::= { aclIcmp6RuleEntry 14 } + +aclIcmp6TimeRangeName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Time-range of icmp6 acl rule. Range 0~20." + ::= { aclIcmp6RuleEntry 15 } + +aclIcmp6RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { aclIcmp6RuleEntry 17 } + + + +globalQos OBJECT IDENTIFIER ::= { qos 1 } +ifQos OBJECT IDENTIFIER ::= { qos 2 } +cbQoS OBJECT IDENTIFIER ::= { qos 3 } +srvQos OBJECT IDENTIFIER ::= { qos 4 } +stats OBJECT IDENTIFIER ::= { qos 10 } + +-- +--type definitions +-- + +--ColorType + ColorType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Color of the flow. " + SYNTAX INTEGER + { + none(0), + red(1), + yellow(2), + green(3) + } + +--PriMapType + PriMapType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Type of map." + SYNTAX INTEGER + { + cos(1), + dscp(2), + exp(3), + ipPre(4) + } + +--IfQueueId + IfQueueId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Queue Id" + SYNTAX Integer32 (0..7) + + + + +-- +--end of type definitions +-- + +-- +-- Node definitions +-- + +-- ifQosShapeObjects + + ifQosShapeObjects OBJECT IDENTIFIER ::= { ifQos 1 } + +-- ifQosShapeIfCfgTable +-- + ifQosShapeIfCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosShapeIfCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface shape." + ::= { ifQosShapeObjects 1 } + + ifQosShapeIfCfgEntry OBJECT-TYPE + SYNTAX IfQosShapeIfCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of interface shape talbe." + INDEX { ifIndex } + ::= { ifQosShapeIfCfgTable 1 } + + IfQosShapeIfCfgEntry ::= + SEQUENCE + { + ifQosShapeIfCfgType + INTEGER, + ifQosShapeIfCfgPercent + Integer32, + ifQosShapeIfCfgRate + Integer32, + ifQosShapeIfCfgRowStatus + RowStatus + } + + ifQosShapeIfCfgType OBJECT-TYPE + SYNTAX INTEGER {percent(1), rate(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Port shape mode type. + 1 means port shape is based on percent of interface max bandwidth. + 2 means port shape is based on the configured rate." + ::= { ifQosShapeIfCfgEntry 1 } + + ifQosShapeIfCfgPercent OBJECT-TYPE + SYNTAX Integer32 (0..99) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Percent value of interface max bandwidth. Range is <0-99>." + ::= { ifQosShapeIfCfgEntry 2 } + + ifQosShapeIfCfgRate OBJECT-TYPE + SYNTAX Integer32 (0..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Rate of interface max value. Range <0-10000000>kbps." + ::= { ifQosShapeIfCfgEntry 3 } + + ifQosShapeIfCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ifQosShapeIfCfgEntry 4 } + +-- ifQosShapeQueueCfgTable +-- + ifQosShapeQueueCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosShapeQueueCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface queue shape." + ::= { ifQosShapeObjects 2 } + + ifQosShapeQueueCfgEntry OBJECT-TYPE + SYNTAX IfQosShapeQueueCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of interface queue shape table." + INDEX { ifIndex, + ifQosShapeQueueCfgQueueId} + ::= { ifQosShapeQueueCfgTable 1 } + + IfQosShapeQueueCfgEntry ::= + SEQUENCE + { + ifQosShapeQueueCfgQueueId + IfQueueId, + ifQosShapeQueueCfgType + INTEGER, + ifQosShapeQueueCfgPercent + Integer32, + ifQosShapeQueueCfgPercentPeak + Integer32, + ifQosShapeQueueCfgRate + Integer32, + ifQosShapeQueueCfgRatePeak + Integer32, + ifQosShapeQueueCfgRowStatus + RowStatus + } + + ifQosShapeQueueCfgQueueId OBJECT-TYPE + SYNTAX IfQueueId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Queue Id of the interface. Range <0-7>" + ::= { ifQosShapeQueueCfgEntry 1 } + + ifQosShapeQueueCfgType OBJECT-TYPE + SYNTAX INTEGER {percent(1), rate(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Port shape mode type. + 1 means queue shape is based on percent of interface max bandwidth. + 2 means queue shape is based on the configured rate. + If no shape is configured, zero will be got." + ::= { ifQosShapeQueueCfgEntry 2 } + + ifQosShapeQueueCfgPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Percent value of interface max bandwidth. Range is <0-100>. + This value influences the commit information rate. + This value should not be larger than ifQosShapeQueueCfgPercentPeak. + If the queue shape is rate mode, this value is 0." + ::= { ifQosShapeQueueCfgEntry 3 } + + ifQosShapeQueueCfgPercentPeak OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Percent value of interface max bandwidth. Range is <0-100>. + This value influences the peak information rate. + This value should not be smaller than ifQosShapeQueueCfgPercent. + If the queue shape is rate mode, this value is 0." + ::= { ifQosShapeQueueCfgEntry 4 } + + ifQosShapeQueueCfgRate OBJECT-TYPE + SYNTAX Integer32 (0..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit information rate of interface queue shaping. Range <0-10000000>kbps. + This value should not be larger than ifQosShapeQueueCfgRatePeak. + If the queue shape is percent mode, this value is 0." + ::= { ifQosShapeQueueCfgEntry 5 } + + ifQosShapeQueueCfgRatePeak OBJECT-TYPE + SYNTAX Integer32 (0..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak information rate of interface queue shaping. Range <0-10000000>kbps. + This value should not be smaller than ifQosShapeQueueCfgRate. + If the queue shape is percent mode, this value is 0." + ::= { ifQosShapeQueueCfgEntry 6 } + + ifQosShapeQueueCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ifQosShapeQueueCfgEntry 7 } + +-- ifQosQueueObjects + + ifQosQueueObjects OBJECT IDENTIFIER ::= { ifQos 2 } + +-- ifQosQueueClassDrrWeightTable +-- +ifQosQueueClassDrrWeightTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosQueueClassDrrWeightEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface queue class and Drr Weight ." + ::= { ifQosQueueObjects 1 } + +ifQosQueueClassDrrWeightEntry OBJECT-TYPE + SYNTAX IfQosQueueClassDrrWeightEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface queue class and Drr Weight entry." + INDEX { ifIndex ,ifQosQueueClassDrrWeightQueueId} + ::= { ifQosQueueClassDrrWeightTable 1 } + +IfQosQueueClassDrrWeightEntry ::= + SEQUENCE + { + ifQosQueueClassDrrWeightQueueId + IfQueueId, + ifQosQueueClass + Integer32, + ifQosQueueDrrWeight + Integer32 + } + + ifQosQueueClassDrrWeightQueueId OBJECT-TYPE + SYNTAX IfQueueId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Queue Id.Range is <0-7>." + ::= { ifQosQueueClassDrrWeightEntry 1 } + + ifQosQueueClass OBJECT-TYPE + SYNTAX Integer32 (-1|0..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "<0-6>:Class Id of the selected queue. + Set -1 to return it to default value." + ::= { ifQosQueueClassDrrWeightEntry 2 } + + ifQosQueueDrrWeight OBJECT-TYPE + SYNTAX Integer32 (-1|1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DRR weight of selected queue. + <1-100>: DRR weight range. + Set -1 to return it to default value." + ::= { ifQosQueueClassDrrWeightEntry 3 } + + +-- ifQosQueueManageCfgTable +-- + ifQosQueueManageCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosQueueManageCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface queue management." + ::= { ifQosQueueObjects 3 } + + ifQosQueueManageCfgEntry OBJECT-TYPE + SYNTAX IfQosQueueManageCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of ifQosQueueManageCfgTable." + INDEX { ifIndex, + ifQosQueueManageQueueId } + ::= { ifQosQueueManageCfgTable 1 } + + IfQosQueueManageCfgEntry ::= + SEQUENCE + { + ifQosQueueManageQueueId + IfQueueId, + ifQosQueueManageDropType + Integer32, + ifQosQueueManageThresholdPrecedence0 + Integer32, + ifQosQueueManageThresholdPrecedence1 + Integer32, + ifQosQueueManageThresholdPrecedence2 + Integer32, + ifQosQueueManageMinThresholdPre0 + Integer32, + ifQosQueueManageMinThresholdPre1 + Integer32, + ifQosQueueManageMinThresholdPre2 + Integer32, + ifQosQueueManageMaxThresholdPre0 + Integer32, + ifQosQueueManageMaxThresholdPre1 + Integer32, + ifQosQueueManageMaxThresholdPre2 + Integer32, + ifQosQueueManageDropProbabilityPre0 + Integer32, + ifQosQueueManageDropProbabilityPre1 + Integer32, + ifQosQueueManageDropProbabilityPre2 + Integer32 + } + +ifQosQueueManageQueueId OBJECT-TYPE + SYNTAX IfQueueId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Queue Id.Range is <0-7>" + ::= { ifQosQueueManageCfgEntry 1 } + +ifQosQueueManageDropType OBJECT-TYPE + SYNTAX Integer32(-1..0) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Queue management mode. + (-1) taildrop. + (0-10) the value of EWMA factor,default EWMA factor is 9. + If this value is (0-10), the drop type is weighted random early drop(wred) mode." + ::= { ifQosQueueManageCfgEntry 2 } + +ifQosQueueManageThresholdPrecedence0 OBJECT-TYPE + SYNTAX Integer32 (-1..12884) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Drop threshold for precedence0, only for taildrop mode. + 65535 is returned for other mode.Range is <0-12884>. + The set of this value will be ignored for non-taildrop mode. + Set -1 to delete current configuration and retrieve default configuration. + For 1G port, default value is 224; + For 10G port, default value is 576" + ::= { ifQosQueueManageCfgEntry 3 } + +ifQosQueueManageThresholdPrecedence1 OBJECT-TYPE + SYNTAX Integer32 (-1|1..12885) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Drop threshold for precedence1, only for taildrop mode. + 65535 is returned for other mode.Range is <1-12885>. + The set of this value will be ignored for non-taildrop mode. + Set -1 to delete current configuration and retrieve default configuration. + For 1G port, default value is 240; + For 10G port, default value is 592." + ::= { ifQosQueueManageCfgEntry 4 } + +ifQosQueueManageThresholdPrecedence2 OBJECT-TYPE + SYNTAX Integer32 (-1|2..12886) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Drop threshold for precedence1, only for taildrop mode. + 65535 is returned for other mode. Range is <2-12886>. + The set of this value will be ignored for non-taildrop mode. + Set -1 to delete current configuration and retrieve default configuration + for all precedence. + For 1G port, default value is 256; + For 10G port, default value is 608." + ::= { ifQosQueueManageCfgEntry 5 } + +ifQosQueueManageMinThresholdPre0 OBJECT-TYPE + SYNTAX Integer32 (-1|0..12886) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence0 min threshold, only for wred mode. + 65535 is returned for other mode. Range is <0-12886>. + The set of this value will be ignored for non-wred mode. + Set -1 to delete current configuration and retrieve default configuration + for all precedence. + For 1G port, default value is 16;" + ::= { ifQosQueueManageCfgEntry 6 } + +ifQosQueueManageMinThresholdPre1 OBJECT-TYPE + SYNTAX Integer32 (-1|0..12886) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence1 min threshold, only for wred mode. + 65535 is returned for other mode. Range is <0-12886>. + The set of this value will be ignored for non-wred mode. + Set -1 to delete current configuration and retrieve default configuration + for all precedence. + For 1G port, default value is 24;" + ::= { ifQosQueueManageCfgEntry 7 } + +ifQosQueueManageMinThresholdPre2 OBJECT-TYPE + SYNTAX Integer32 (-1|0..12886) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence2 min threshold, only for wred mode. + 65535 is returned for other mode. Range is <0-12886>.For 1G port, default value is 32; + Set -1 to delete current configuration and retrieve default configuration." + ::= { ifQosQueueManageCfgEntry 8 } + +ifQosQueueManageMaxThresholdPre0 OBJECT-TYPE + SYNTAX Integer32 (-1|1..12887) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence0 max threshold, only for wred mode, + 65535 is returned for other mode.Range is <1-12887>. + The set of this value will be ignored for non-wred mode. + Set -1 to delete current configuration and retrieve default configuration + for all precedence. + For 1G port, default value is 480;" + ::= { ifQosQueueManageCfgEntry 9 } + +ifQosQueueManageMaxThresholdPre1 OBJECT-TYPE + SYNTAX Integer32 (-1|1..12887) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence1 max threshold, only for wred mode. + The set of this value will be ignored for non-wred mode. + 65535 is returned for other mode. Range is <1-12887>. + Set -1 to delete current configuration and retrieve default configuration + for all precedence. + For 1G port, default value is 496;" + ::= { ifQosQueueManageCfgEntry 10 } + +ifQosQueueManageMaxThresholdPre2 OBJECT-TYPE + SYNTAX Integer32 (-1|1..12887) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence2 max threshold, only for wred mode. + The set of this value will be ignored for non-taildrop mode. + 65535 is returned for other mode. Range is <1-12887>. + Set -1 to delete current configuration and retrieve default configuration + for all precedence. + For 1G port, default value is 512;" + ::= { ifQosQueueManageCfgEntry 11 } + +ifQosQueueManageDropProbabilityPre0 OBJECT-TYPE + SYNTAX Integer32 (-1|0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence0 drop probability, only for wred mode. + Set -1 to delete current configuration and retrieve default configuration. + The default value is 1024. -2 is returned for other mode. Range is <0-65535>." + DEFVAL{ 1024 } + ::= { ifQosQueueManageCfgEntry 12 } + +ifQosQueueManageDropProbabilityPre1 OBJECT-TYPE + SYNTAX Integer32 (-1|0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence1 drop probability, only for wred mode. + Set -1 to delete current configuration and retrieve default configuration. + The default value is 1024. -2 is returned for other mode. Range is <0-65535>." + DEFVAL{ 1024 } + ::= { ifQosQueueManageCfgEntry 13 } + +ifQosQueueManageDropProbabilityPre2 OBJECT-TYPE + SYNTAX Integer32 (-1|0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect drop precedence2 drop probability, only for wred mode. + Set -1 to delete current configuration and retrieve default configuration. + The default value is 1024. -2 is returned for other mode. Range is <0-65535>." + DEFVAL{ 1024 } + ::= { ifQosQueueManageCfgEntry 14 } + +--ifQosCarObjects + +ifQosCarObjects OBJECT IDENTIFIER ::= { ifQos 3 } + +--ifQosCarApplyTable + +ifQosCarApplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosCarApplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface CAR applied." + ::= { ifQosCarObjects 1 } + +ifQosCarApplyEntry OBJECT-TYPE + SYNTAX IfQosCarApplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of ifQosCarApplyTable." + INDEX { ifIndex, + ifQosCarApplyDirection } + ::= { ifQosCarApplyTable 1 } + + IfQosCarApplyEntry ::= + SEQUENCE + { + ifQosCarApplyDirection + INTEGER, + ifQosCarApplyColorMode + INTEGER, + ifQosCarApplyCir + Integer32, + ifQosCarApplyCbs + Integer32, + ifQosCarApplyType + INTEGER, + ifQosCarApplyPir + Integer32, + ifQosCarApplyPbs + Integer32, + ifQosCarApplyDropColor + ColorType, + ifQosCarApplyUseL3Length + INTEGER, + ifQosCarApplyRowStatus + RowStatus + } + +ifQosCarApplyDirection OBJECT-TYPE + SYNTAX INTEGER + { + input(1), + output(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Direction of this port-policer applied on. + (1) input. + (2) output." + ::= { ifQosCarApplyEntry 1 } + +ifQosCarApplyColorMode OBJECT-TYPE + SYNTAX INTEGER + { + colorAware(1), + colorBlind(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Value 1 for color aware mode policer, + value 2 for color blind mode policer. + " + ::= { ifQosCarApplyEntry 2 } + +ifQosCarApplyCir OBJECT-TYPE + SYNTAX Integer32 (8..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit information rate (kbps). + Range is <8-10000000>." + ::= { ifQosCarApplyEntry 3 } + +ifQosCarApplyCbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit burst size (bytes). + Range is <1000-128000>." + DEFVAL {128000} + ::= { ifQosCarApplyEntry 4 } + +ifQosCarApplyType OBJECT-TYPE + SYNTAX INTEGER + { + rfc2697(1), + rfc2698(2), + rfc4115(3), + bwp(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set (1) is select rfc2697 mode. + Set (2) is select rfc2698 mode. + Set (3) is select rfc4115 mode. + Set (4) is select bwp mode." + ::= { ifQosCarApplyEntry 5 } + +-- ifQosCarApplyEbs OBJECT-TYPE +-- SYNTAX Integer32 (1000..128000) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "Excess burst size (bytes). +-- Range is <1000-128000>." +-- DEFVAL {128000} +-- ::= { ifQosCarApplyEntry 6 } + +ifQosCarApplyPir OBJECT-TYPE + SYNTAX Integer32 (8..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When Type mode is rcf2698 means Peak information rate (kbps). + When Type mode is rfc2697&rfc4115&bwp means Excess Information Rate (kbps). + Range is <8-10000000>." + ::= { ifQosCarApplyEntry 7 } + +ifQosCarApplyPbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When Type mode is rcf2698 means Peak burst size (bytes). + When Type mode is rfc2697&rfc4115&bwp means Excess Burst Size (bytes). + Range is <1000-128000>." + DEFVAL {128000} + ::= { ifQosCarApplyEntry 8 } + +ifQosCarApplyDropColor OBJECT-TYPE + SYNTAX INTEGER + { + red(1), + yellow(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Drop color configuration.When configuring 'red(1)', + it only drops red packet; configuring 'yellow(2)', + it drops both 'red' and 'yellow' packet. + " + DEFVAL {red} + ::= { ifQosCarApplyEntry 9 } + +ifQosCarApplyUseL3Length OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "2 for using L2 frame length; + 1 for using L3 length. + " + DEFVAL {no} + ::= { ifQosCarApplyEntry 10 } + +ifQosCarApplyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ifQosCarApplyEntry 11 } + + +-- ifQosPriObjects + + ifQosPriObjects OBJECT IDENTIFIER ::= { ifQos 4 } + +-- ifQosCosTable +-- +ifQosCosTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosCosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface cos value." + ::= { ifQosPriObjects 1 } + +ifQosCosEntry OBJECT-TYPE + SYNTAX IfQosCosEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of ifQosCosTable." + INDEX { ifIndex } + ::= { ifQosCosTable 1 } + + IfQosCosEntry ::= + SEQUENCE + { + ifQosCosValue + Integer32 + } + +ifQosCosValue OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cos value for this interface.Range is <0-7>. + The default CoS for each interface is 0. + " + ::= { ifQosCosEntry 1 } + + +-- ifQosTrustTypeTable +-- +ifQosTrustTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosTrustTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface trust type." + ::= { ifQosPriObjects 2 } + +ifQosTrustTypeEntry OBJECT-TYPE + SYNTAX IfQosTrustTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of ifQosTrustTypeTable." + INDEX { ifIndex } + ::= { ifQosTrustTypeTable 1 } + +IfQosTrustTypeEntry ::= + SEQUENCE + { + ifQosTrustTypeValue + INTEGER + } + +ifQosTrustTypeValue OBJECT-TYPE + SYNTAX INTEGER + { + trustDefault(-1), + trustPort(0), + trustSTagCos(2), + trustDscpExp(3), + trustIpPre(4), + trustCTagCos(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Trust priority type for this interface. + Set trust-default to delete current configuration and retrieve default configuration. + trustDefault(-1) + trustPort(0) + trustSTagCos(2) + trustDscpExp(3) + trustIpPre(4) + trustCTagCos(5) + " + ::= { ifQosTrustTypeEntry 1 } + + +-- ifQosDomainTable +-- +ifQosDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface Domain value." + ::= { ifQosPriObjects 3 } + +ifQosDomainEntry OBJECT-TYPE + SYNTAX IfQosDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of ifQosDomainTable." + INDEX { ifIndex } + ::= { ifQosDomainTable 1 } + +IfQosDomainEntry ::= + SEQUENCE + { + ifQosDomainValue + Integer32 + } + +ifQosDomainValue OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Domain value for this interface. + Range <0-7>. The default value is + 0" + DEFVAL{0} + ::= { ifQosDomainEntry 1 } +-- ifQosReplacePriObjects + + ifQosReplacePriObjects OBJECT IDENTIFIER ::= { ifQos 5 } + +-- ifQosReplaceTable +-- +ifQosReplaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfQosReplaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ifQosReplaceEntry." + ::= { ifQosReplacePriObjects 1 } + +ifQosReplaceEntry OBJECT-TYPE + SYNTAX IfQosReplaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of ifQosReplaceTable." + INDEX { ifIndex } + ::= { ifQosReplaceTable 1 } + +IfQosReplaceEntry ::= + SEQUENCE + { + ifQosReplaceType + INTEGER + } + +ifQosReplaceType OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + cos(1), + cosctag(2), + cosstag(3), + dscpExp(4), + ctagdscp(5), + stagdscp(6), + nodscp(7), + nocos(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Replace priority type for this interface. The defult cos is stagcos; + The value of set this node only can be follow: + cos(1), + cosctag(2), + cosstag(3), + dscpExp(4), + nodscp(7), + nocos(8)" + DEFVAL {cos} + ::= { ifQosReplaceEntry 1 } + + +-- Sub Module: CBQOS +-- +-- Node definitions +-- + +-- cbQoSClassifierObjects + + cbQoSClassifierObjects OBJECT IDENTIFIER ::= { cbQoS 1 } + +cbQoSClassifierIndexNext OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to be used for + cbQoSClassifierIndex when creating rows in the + cbQoSClassifierCfgInfoTable. + If the value of this node is less than 0, + it indicates creating a Rowin cbQoSClassifierCfgInfoTable is not permitted. + " + ::= { cbQoSClassifierObjects 1 } + +-- cbQoSClassifierCfgInfoTable +-- +cbQoSClassifierCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CBQoSClassifierCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Classifier configuration information." + ::= { cbQoSClassifierObjects 2 } + +cbQoSClassifierCfgInfoEntry OBJECT-TYPE + SYNTAX CBQoSClassifierCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Classifier Configuration Information Entry." + INDEX { cbQoSClassifierIndex } + ::= { cbQoSClassifierCfgInfoTable 1 } + +CBQoSClassifierCfgInfoEntry ::= + SEQUENCE + { + cbQoSClassifierIndex + Integer32, + cbQoSClassifierName + OCTET STRING, + cbQoSClassifierRuleCount + Integer32, + cbQoSClassifierOperator + INTEGER, + cbQoSClassifierMatchRuleNextIndex + Integer32, + cbQoSClassifierRowStatus + RowStatus + } + +cbQoSClassifierIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of this class-map.Range is <10000-20000>." + ::= { cbQoSClassifierCfgInfoEntry 1 } + +cbQoSClassifierName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of class-map. Only used in creating a conceptual row, + can not modified in an 'active' Row " + ::= { cbQoSClassifierCfgInfoEntry 2 } + +cbQoSClassifierRuleCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The counter of match rules in class-map." + ::= { cbQoSClassifierCfgInfoEntry 3 } + +cbQoSClassifierOperator OBJECT-TYPE + SYNTAX INTEGER + { + and(1), + or(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Operator of the match rules of class-map. Default match operator is match-any. + 'and(1)' for match-all rules. 'or(2)' for match-any rules. + " + DEFVAL {or} + ::= { cbQoSClassifierCfgInfoEntry 4 } + +cbQoSClassifierMatchRuleNextIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to be used for + cbQoSMatchRuleIndex when creating rows in the + cbQoSMatchRuleCfgInfoTable.Begin with 0. + If the value of this node is less than 0, + it indicates creating a Rowin cbQoSMatchRuleCfgInfoTable is not permitted. + " + ::= { cbQoSClassifierCfgInfoEntry 5 } + +cbQoSClassifierRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSClassifierCfgInfoEntry 6 } + + +--cbQoSMatchRuleCfgInfoTable + +cbQoSMatchRuleCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CBQoSMatchRuleCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of match rule configuration in class-map. " + ::= { cbQoSClassifierObjects 3 } + +cbQoSMatchRuleCfgInfoEntry OBJECT-TYPE + SYNTAX CBQoSMatchRuleCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Match Rule Entry in Class-map." + INDEX { cbQoSClassifierIndex, cbQoSMatchRuleIndex } + ::= { cbQoSMatchRuleCfgInfoTable 1 } + +CBQoSMatchRuleCfgInfoEntry ::= + SEQUENCE + { + cbQoSMatchRuleIndex + Integer32, + cbQoSMatchRuleACLName + OCTET STRING, + cbQoSMatchRuleRowStatus + RowStatus + } + +cbQoSMatchRuleIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Match Rule. Currently only access-group(ACL) is used as matching rule. + Range is <10000-20000>." + ::= { cbQoSMatchRuleCfgInfoEntry 1 } + +cbQoSMatchRuleACLName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Match ACl name.Only used in creating a conceptual row, + can not modified in an 'active' Row " + ::= { cbQoSMatchRuleCfgInfoEntry 2 } + +cbQoSMatchRuleRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSMatchRuleCfgInfoEntry 3 } + +-- match evc is not supported by humber currently. 2011-08-05 + +--cbQoSMatchEvcTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF CbQoSMatchEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "The table of Match EVC is used to define EVC matching rule for a QoS class map. +-- If CoS values are configured, CoS field in the packet from the EVC is inspected +-- and only those matching the configured values are regarded as matching packets. +-- Otherwise, CoS field is ignored and only EVC is considered in the matching rule." +-- ::= { cbQoSClassifierObjects 4 } +-- +--cbQoSMatchEvcEntry OBJECT-TYPE +-- SYNTAX CbQoSMatchEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "One item of match entry." +-- INDEX { cbQoSMatchEvcClassMapIndex, cbQoSMatchEvcEvcIndex } +-- ::= { cbQoSMatchEvcTable 1 } +-- +-- CbQoSMatchEvcEntry ::= +-- SEQUENCE +-- { +-- cbQoSMatchEvcClassMapIndex +-- Integer32, +-- cbQoSMatchEvcEvcIndex +-- Integer32, +-- cbQoSMatchEvcAddCos +-- OCTET STRING, +-- cbQoSMatchEvcRowStatus +-- RowStatus +-- } +-- +--cbQoSMatchEvcClassMapIndex OBJECT-TYPE +-- SYNTAX Integer32 (1..2048) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The index of Class-map." +-- ::= { cbQoSMatchEvcEntry 1 } +-- +-- +--cbQoSMatchEvcEvcIndex OBJECT-TYPE +-- SYNTAX Integer32 (1..512) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The index of EVC entry." +-- ::= { cbQoSMatchEvcEntry 2 } +-- +--cbQoSMatchEvcAddCos OBJECT-TYPE +-- SYNTAX OCTET STRING (SIZE (1..15)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Add COS of Match EVC. The format is like 1,2,3." +-- ::= { cbQoSMatchEvcEntry 3 } +-- +-- +--cbQoSMatchEvcRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row.Now only realize CreateAndGo and +-- Destroy and Active." +-- ::= { cbQoSMatchEvcEntry 4 } + +-- +-- cbQoSPolicyObjects +-- + + cbQoSPolicyObjects OBJECT IDENTIFIER ::= { cbQoS 2 } + +cbQoSPolicyIndexNext OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to be used for + cbQoSPolicyIndex when creating rows in the + cbQoSPolicyCfgInfoTable. + " + ::= { cbQoSPolicyObjects 1 } + + +-- cbQoSPolicyCfgInfoTable +-- +cbQoSPolicyCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CBQoSPolicyCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of policy-map." + ::= { cbQoSPolicyObjects 2 } + +cbQoSPolicyCfgInfoEntry OBJECT-TYPE + SYNTAX CBQoSPolicyCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy-map table Entry." + INDEX {cbQoSPolicyIndex} + ::= { cbQoSPolicyCfgInfoTable 1 } + +CBQoSPolicyCfgInfoEntry ::= + SEQUENCE + { + cbQoSPolicyIndex + Integer32, + cbQoSPolicyName + OCTET STRING, + cbQoSPolicyClassCount + Integer32, + cbQoSPolicyClassNextIndex + Integer32, + cbQoSPolicyRowStatus + RowStatus + } + +cbQoSPolicyIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of this policy-map.Range is <10000-20000>." + ::= { cbQoSPolicyCfgInfoEntry 1 } + +cbQoSPolicyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of this policy-map. Only used in creating a conceptual row, + can not modified in an 'active' Row " + ::= { cbQoSPolicyCfgInfoEntry 2 } + +cbQoSPolicyClassCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The counter of class-maps in this policy-map." + ::= { cbQoSPolicyCfgInfoEntry 3 } + +cbQoSPolicyClassNextIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to be used for + cbQoSPolicyClassIndex when creating rows in the + cbQoSPolicyClassCfgInfoTable. + If the returned value is less 0, + it indicates creating a Rowis not permitted." + ::= { cbQoSPolicyCfgInfoEntry 4 } + +cbQoSPolicyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSPolicyCfgInfoEntry 5 } + + +-- cbQoSPolicyClassCfgInfoTable +-- +cbQoSPolicyClassCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CBQoSPolicyClassCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of policy-class." + ::= { cbQoSPolicyObjects 3 } + +cbQoSPolicyClassCfgInfoEntry OBJECT-TYPE + SYNTAX CBQoSPolicyClassCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy-class table Entry." + INDEX {cbQoSPolicyClassIndex, + cbQoSPolicyClassClassifierIndex} + ::= { cbQoSPolicyClassCfgInfoTable 1 } + +CBQoSPolicyClassCfgInfoEntry ::= + SEQUENCE + { + cbQoSPolicyClassIndex + Integer32, + cbQoSPolicyClassClassifierIndex + Integer32, + cbQoSPolicyClassClassifierName + OCTET STRING, + cbQoSPolicyClassRowStatus + RowStatus + } + +cbQoSPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of this policy-class.Range is <10000-20000>." + ::= { cbQoSPolicyClassCfgInfoEntry 1 } + +cbQoSPolicyClassClassifierIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of classifier applied by a policy. + It is corresponding to cbQoSClassifierName. + The maximum index value 20000 is reserved for class-map class-default only." + ::= { cbQoSPolicyClassCfgInfoEntry 2 } + +cbQoSPolicyClassClassifierName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of classifier applied by a policy. + It should exist in cbQoSClassifierCfgInfoTable. + Only used in creating a conceptual row, can not modified in an 'active' row. + " + ::= { cbQoSPolicyClassCfgInfoEntry 3 } + +cbQoSPolicyClassRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSPolicyClassCfgInfoEntry 4 } + + +-- cbQoSBehaviorObjects + +cbQoSBehaviorObjects OBJECT IDENTIFIER ::= { cbQoS 3 } + +cbQoSAggregativeCarIndexNext OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to be used for + cbQoSAggregativeCarIndex when creating rows in the + cbQoSAggregativeCarCfgInfoTable. + " + ::= { cbQoSBehaviorObjects 1 } + +-- cbQoSAggregativeCarCfgInfoTable +-- +cbQoSAggregativeCarCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CBQoSAggregativeCarCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of aggregate-policer." + ::= { cbQoSBehaviorObjects 2 } + +cbQoSAggregativeCarCfgInfoEntry OBJECT-TYPE + SYNTAX CBQoSAggregativeCarCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Aggregate-policer table Entry." + INDEX {cbQoSAggregativeCarIndex} + ::= { cbQoSAggregativeCarCfgInfoTable 1 } + + CBQoSAggregativeCarCfgInfoEntry ::= + SEQUENCE + { + cbQoSAggregativeCarIndex + Integer32, + cbQoSAggregativeCarName + OCTET STRING, + cbQoSAggregativeCarColorMode + INTEGER, + cbQoSAggregativeCarCir + Integer32, + cbQoSAggregativeCarCbs + Integer32, + cbQoSAggregativeCarType + INTEGER, + cbQoSAggregativeCarEbs + Integer32, + cbQoSAggregativeCarPir + Integer32, + cbQoSAggregativeCarPbs + Integer32, + cbQoSAggregativeCarDropColor + ColorType, + cbQoSAggregativeCarUseL3Length + INTEGER, + cbQoSAggregativeCarStats + INTEGER, + cbQoSAggregativeCarRowStatus + RowStatus + } + +cbQoSAggregativeCarIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of aggregate-policer.Range is <10000-20000>." + ::= { cbQoSAggregativeCarCfgInfoEntry 1 } + +cbQoSAggregativeCarName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of aggregate-policer.Only used in creating a conceptual row, + can not modified in an 'active' row. + " + ::= { cbQoSAggregativeCarCfgInfoEntry 2 } + +cbQoSAggregativeCarColorMode OBJECT-TYPE + SYNTAX INTEGER + { + colorAware(1), + colorBlind(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Value 1 for color aware mode policer; + value 2 for color blind mode policer. + Can modified in an 'active' row. + " + DEFVAL {colorBlind} + ::= { cbQoSAggregativeCarCfgInfoEntry 3 } + +cbQoSAggregativeCarCir OBJECT-TYPE + SYNTAX Integer32 (8..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit information rate (kbps).Range is <8-10000000>. + Only used in creating a conceptual row, + can not modified in an 'active' row. + " + ::= { cbQoSAggregativeCarCfgInfoEntry 4 } + +cbQoSAggregativeCarCbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit burst size (bytes).Range is <1000-128000>. + Only used in creating a conceptual row, + can not modified in an 'active' row." + DEFVAL {128000} + ::= { cbQoSAggregativeCarCfgInfoEntry 5 } + +cbQoSAggregativeCarType OBJECT-TYPE + SYNTAX INTEGER + { + trtcm-mode(1), + srtcm-mode(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set (1) is select TRTCM mode. + Set (2) is select SRTCM mode." + ::= { cbQoSAggregativeCarCfgInfoEntry 6 } + +cbQoSAggregativeCarEbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Excess burst size (bytes).Range is <1000-128000>. + Only used in creating a conceptual row, + can not modified in an 'active' row. + If the cbQoSAggregativeCarPir is not zero, + this value will be ignored. + " + DEFVAL {128000} + ::= { cbQoSAggregativeCarCfgInfoEntry 7 } + +cbQoSAggregativeCarPir OBJECT-TYPE + SYNTAX Integer32 (8..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak information rate (kbps).Range is <8-10000000>. + Only used in creating a conceptual row, + can not modified in an 'active' row. + This valude should not be less than cbQoSAggregativeCarCir. + " + ::= { cbQoSAggregativeCarCfgInfoEntry 8} + +cbQoSAggregativeCarPbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak burst size (bytes).Range is <1000-128000>. + Only used in creating a conceptual row, + can not modified in an 'active' row. + If the cbQoSAggregativeCarPir is zero, + this value will be ignored; + This valude should not be less than cbQoSAggregativeCarCbs. + " + DEFVAL {128000} + ::= { cbQoSAggregativeCarCfgInfoEntry 9 } + +cbQoSAggregativeCarDropColor OBJECT-TYPE + SYNTAX INTEGER + { + red(1), + yellow(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Drop color configuration.When configuring 'red', + it only drops red packet; configuring 'yellow', + it drops both 'red' and 'yellow' packet. + Only used in creating a conceptual row, + can not modified in an 'active' row. + " + DEFVAL {red} + ::= { cbQoSAggregativeCarCfgInfoEntry 10 } + +cbQoSAggregativeCarUseL3Length OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "2 for using L2 frame length; + 1 for using L3 length. + Only used in creating a conceptual row, + can not modified in an 'active' row. + " + DEFVAL {no} + ::= { cbQoSAggregativeCarCfgInfoEntry 11 } + +cbQoSAggregativeCarStats OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "2 policer stats is disable; + 1 policer stats is enable. + Only used in creating a conceptual row, + can not modified in an 'active' row. + " + DEFVAL {no} + ::= { cbQoSAggregativeCarCfgInfoEntry 12 } + +cbQoSAggregativeCarRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSAggregativeCarCfgInfoEntry 13 } + + +-- cbQoSBehaviorCarCfgInfoTable +-- +cbQoSBehaviorCarCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CbQoSBehaviorCarCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of behavior." + ::= { cbQoSBehaviorObjects 3 } + +cbQoSBehaviorCarCfgInfoEntry OBJECT-TYPE + SYNTAX CbQoSBehaviorCarCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Behavior table Entry." + INDEX {cbQoSBehaviorCarPolicyIndex, + cbQoSBehaviorCarPolicyClassIndex} + ::= { cbQoSBehaviorCarCfgInfoTable 1 } + +CbQoSBehaviorCarCfgInfoEntry ::= + SEQUENCE + { + cbQoSBehaviorCarPolicyIndex + Integer32, + cbQoSBehaviorCarPolicyClassIndex + Integer32, + cbQoSBehaviorCarColorMode + INTEGER, + cbQoSBehaviorCarCir + Integer32, + cbQoSBehaviorCarCbs + Integer32, + cbQoSBehaviorCarType + INTEGER, + cbQoSBehaviorCarPir + Integer32, + cbQoSBehaviorCarPbs + Integer32, + cbQoSBehaviorCarDropColor + ColorType, + cbQoSBehaviorCarUseL3Length + INTEGER, + cbQoSBehaviorCarStats + INTEGER, + cbQoSBehaviorCarRowStatus + RowStatus + } + +cbQoSBehaviorCarPolicyIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy-map. Range is <10000-20000>. + Associated with cbQoSPolicyIndex of cbQoSPolicyCfgInfoEntry. + " + ::= { cbQoSBehaviorCarCfgInfoEntry 1 } + +cbQoSBehaviorCarPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy class-map. Range is <10000-20000>. + Associated with cbQoSPolicyClassIndex of cbQoSPolicyClassCfgInfoEntry. + " + ::= { cbQoSBehaviorCarCfgInfoEntry 2 } + + +cbQoSBehaviorCarColorMode OBJECT-TYPE + SYNTAX INTEGER + { + colorAware(1), + colorBlind(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Value 1 for color aware mode policer, + value 2 for color blind mode policer. + Only for policer behavior." + ::= { cbQoSBehaviorCarCfgInfoEntry 5 } + +cbQoSBehaviorCarCir OBJECT-TYPE + SYNTAX Integer32 (8..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit information rate (kbps).Range is <8-10000000>. + Only for policer behavior. + " + ::= { cbQoSBehaviorCarCfgInfoEntry 6 } + +cbQoSBehaviorCarCbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Commit burst size (bytes).Range is <1000-128000>. + Only for policer behavior. + " + DEFVAL {128000} + ::= { cbQoSBehaviorCarCfgInfoEntry 7 } + +cbQoSBehaviorCarType OBJECT-TYPE + SYNTAX INTEGER + { + rfc2697(1), + rfc2698(2), + rfc4115(3), + bwp(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set (1) is select rfc2697 mode. + Set (2) is select rfc2698 mode. + Set (3) is select rfc4115 mode. + Set (4) is select bwp mode." + ::= { cbQoSBehaviorCarCfgInfoEntry 8 } + +cbQoSBehaviorCarEbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Excess burst size (bytes).Range is <1000-128000>. + Only for policer behavior. + " + + DEFVAL {128000} + ::= { cbQoSBehaviorCarCfgInfoEntry 9 } + +cbQoSBehaviorCarPir OBJECT-TYPE + SYNTAX Integer32 (8..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak information rate (kbps).Range is <8-10000000>. + Only for policer behavior. + " + ::= { cbQoSBehaviorCarCfgInfoEntry 10 } + +cbQoSBehaviorCarPbs OBJECT-TYPE + SYNTAX Integer32 (1000..128000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak burst size (bytes).Range is <1000-128000>. + Only for policer behavior. + " + DEFVAL {128000} + ::= { cbQoSBehaviorCarCfgInfoEntry 11 } + +cbQoSBehaviorCarDropColor OBJECT-TYPE + SYNTAX INTEGER + { + red(1), + yellow(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Drop color configuration.Only 'red' and 'yellow' can be used here. + When configuring 'red(1)', it only drops red packet; + configuring 'yellow(2)', it drops both 'red' and 'yellow' packet. + Only for policer behavior. + When policy mode is aggregative policer, the result of DropColor will be none(0). + " + DEFVAL {red} + ::= { cbQoSBehaviorCarCfgInfoEntry 12 } + +cbQoSBehaviorCarUseL3Length OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "2 for using L2 frame length; + 1 for using L3 length. + Only for policer behavior. + " + DEFVAL {no} + ::= { cbQoSBehaviorCarCfgInfoEntry 13 } + +cbQoSBehaviorCarStats OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "2 policer stats is disable; + 1 policer stats is enable. + Only for policer behavior. + " + DEFVAL {no} + ::= { cbQoSBehaviorCarCfgInfoEntry 14 } + +cbQoSBehaviorCarRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSBehaviorCarCfgInfoEntry 15 } + + + +-- cbQoSBehaviorPriColorCfgInfoTable +-- +cbQoSBehaviorPriColorCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CbQoSBehaviorPriColorCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of setting priority-color behavior." + ::= { cbQoSBehaviorObjects 4 } + +cbQoSBehaviorPriColorCfgInfoEntry OBJECT-TYPE + SYNTAX CbQoSBehaviorPriColorCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Setting priority-color table Entry." + INDEX {cbQoSBehaviorPriColorPolicyIndex, + cbQoSBehaviorPriColorPolicyClassIndex} + ::= { cbQoSBehaviorPriColorCfgInfoTable 1 } + +CbQoSBehaviorPriColorCfgInfoEntry ::= + SEQUENCE + { + cbQoSBehaviorPriColorPolicyIndex + Integer32, + cbQoSBehaviorPriColorPolicyClassIndex + Integer32, + cbQoSBehaviorPriColorSetPriority + Integer32, + cbQoSBehaviorPriColorSetColor + ColorType + } + +cbQoSBehaviorPriColorPolicyIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy-map. Associated with cbQoSPolicyIndex of cbQoSPolicyCfgInfoEntry. + " + ::= { cbQoSBehaviorPriColorCfgInfoEntry 1 } + +cbQoSBehaviorPriColorPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy class-map.Range is <10000-20000>. + Associated with cbQoSPolicyClassIndex of cbQoSPolicyClassCfgInfoEntry. + " + ::= { cbQoSBehaviorPriColorCfgInfoEntry 2 } + +cbQoSBehaviorPriColorSetPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Internal priority value.Range id <0-63>. + Default priority is 0." + ::= { cbQoSBehaviorPriColorCfgInfoEntry 3 } + +cbQoSBehaviorPriColorSetColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Internal color. Set (1)red, (2)yellow, (3)green. + Set (0) means no set priority." + ::= { cbQoSBehaviorPriColorCfgInfoEntry 4 } + + + +-- cbQoSBehaviorOptionTable +-- +cbQoSBehaviorOptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF CbQoSBehaviorOptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of behavior." + ::= { cbQoSBehaviorObjects 5 } + +cbQoSBehaviorOptionEntry OBJECT-TYPE + SYNTAX CbQoSBehaviorOptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ClassTrafficOption table Entry." + INDEX {cbQoSBehaviorOptionPolicyIndex, + cbQoSBehaviorOptionPolicyClassIndex} + ::= { cbQoSBehaviorOptionTable 1 } + +CbQoSBehaviorOptionEntry ::= + SEQUENCE + { + cbQoSBehaviorOptionPolicyIndex + Integer32, + cbQoSBehaviorOptionPolicyClassIndex + Integer32, + cbQoSBehaviorOptionTrust + INTEGER, + cbQoSBehaviorOptionStatsEn + INTEGER, + cbQoSBehaviorOptionRedirectIfindex + Integer32, + cbQoSBehaviorOptionMonitorSession + Integer32 + } + +cbQoSBehaviorOptionPolicyIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy-map.Range is <10000-20000>. + Associated with cbQoSPolicyIndex of cbQoSPolicyCfgInfoEntry. + " + ::= { cbQoSBehaviorOptionEntry 1 } + +cbQoSBehaviorOptionPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy class-map.Range is <10000-20000>. + Associated with cbQoSPolicyClassIndex of cbQoSPolicyClassCfgInfoEntry. + " + ::= { cbQoSBehaviorOptionEntry 2 } + +cbQoSBehaviorOptionTrust OBJECT-TYPE + SYNTAX INTEGER + { + trustNone(-1), + trustPort(0), + trustCos(2), + trustDscp(3), + trustIpPre(4), + trustCosCtag(5), + trustCosStag(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use which prioritization type for this flow. + trustNone(-1) + trustPort(0) + trustCos(2) + trustDscp(3) + trustIpPre(4) + trustCosCtag(5) + trustCosStag(6) + " + DEFVAL { trustNone } + ::= { cbQoSBehaviorOptionEntry 3 } + +cbQoSBehaviorOptionStatsEn OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1 for enable statistics for each ace in class map; + 2 for disable statistics for each ace in class map. + Default value is 2." + DEFVAL { disable } + ::= { cbQoSBehaviorOptionEntry 4 } + +cbQoSBehaviorOptionRedirectIfindex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "<1-65535>:Interface index of redirect. + Set 0 means no redirect. " + DEFVAL { 0 } + ::= { cbQoSBehaviorOptionEntry 5 } + +cbQoSBehaviorOptionMonitorSession OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "<1-3> monitor session number; + 0 no monitor, default value is 0." + DEFVAL { 0 } + ::= { cbQoSBehaviorOptionEntry 6 } + + +-- cbQoSBehaviorCarAgpCfgTable +-- +cbQoSBehaviorCarAgpCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF CbQoSBehaviorCarAgpCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of behavior." + ::= { cbQoSBehaviorObjects 6 } + +cbQoSBehaviorCarAgpCfgEntry OBJECT-TYPE + SYNTAX CbQoSBehaviorCarAgpCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Behavior table Entry." + INDEX {cbQoSBehaviorCarAgpPolicyIndex, + cbQoSBehaviorCarAgpPolicyClassIndex} + ::= { cbQoSBehaviorCarAgpCfgTable 1 } + +CbQoSBehaviorCarAgpCfgEntry ::= + SEQUENCE + { + cbQoSBehaviorCarAgpPolicyIndex + Integer32, + cbQoSBehaviorCarAgpPolicyClassIndex + Integer32, + cbQoSBehaviorCarAgpCarName + OCTET STRING, + cbQoSBehaviorCarAgpRowStatus + RowStatus + } + +cbQoSBehaviorCarAgpPolicyIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy-map. Range is <10000-20000>. + Associated with cbQoSPolicyIndex of cbQoSPolicyCfgInfoEntry. + " + ::= { cbQoSBehaviorCarAgpCfgEntry 1 } + +cbQoSBehaviorCarAgpPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32(10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of Policy class-map. Range is <10000-20000>. + Associated with cbQoSPolicyClassIndex of cbQoSPolicyClassCfgInfoEntry. + " + ::= { cbQoSBehaviorCarAgpCfgEntry 2 } + +cbQoSBehaviorCarAgpCarName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Only for aggregative policer name. + " + ::= { cbQoSBehaviorCarAgpCfgEntry 3 } + +cbQoSBehaviorCarAgpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSBehaviorCarAgpCfgEntry 15 } + + + + +-- cbQoSApplyPolicyObjects + + cbQoSApplyPolicyObjects OBJECT IDENTIFIER ::= { cbQoS 4 } + +-- cbQoSIfApplyPolicyTable +-- +cbQoSIfApplyPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF CBQoSIfApplyPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of policy applied on interface." + ::= { cbQoSApplyPolicyObjects 1 } + +cbQoSIfApplyPolicyEntry OBJECT-TYPE + SYNTAX CBQoSIfApplyPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy-applied table Entry." + INDEX {cbQoSIfApplyPolicyIfIndex, + cbQoSIfApplyPolicyDirection} + ::= { cbQoSIfApplyPolicyTable 1 } + + CBQoSIfApplyPolicyEntry ::= + SEQUENCE + { + cbQoSIfApplyPolicyIfIndex + Integer32, + cbQoSIfApplyPolicyDirection + INTEGER, + cbQoSIfApplyPolicyIndex + Integer32, + cbQoSIfApplyPolicyName + OCTET STRING, + cbQoSIfApplyPolicyRowStatus + RowStatus + } + +cbQoSIfApplyPolicyIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ifindex. The interface should only be physical, vlan, or linkagg interface. " + ::= { cbQoSIfApplyPolicyEntry 1 } + +cbQoSIfApplyPolicyDirection OBJECT-TYPE + SYNTAX INTEGER + { + input(1), + output(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Direction of this service-policy applied on. + 1. input direction. + 2. output direction." + ::= { cbQoSIfApplyPolicyEntry 2 } + +cbQoSIfApplyPolicyIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of policy in cbQoSPolicyCfgInfoTable. + It is corresponding to cbQoSIfApplyPolicyName." + ::= { cbQoSIfApplyPolicyEntry 3 } + +cbQoSIfApplyPolicyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Name of policy applied. + It should exist in cbQoSPolicyCfgInfoTable. + Only used in creating a conceptual row, can not modified in an 'active' Row " + ::= { cbQoSIfApplyPolicyEntry 4 } + +cbQoSIfApplyPolicyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cbQoSIfApplyPolicyEntry 5 } + +-- Sub Module: GLOBALQOS + + + + globalQosEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable qos globally. enable(1),disable(2)." + ::= { globalQos 1 } + + + globalQosFlowFirst OBJECT-TYPE + SYNTAX INTEGER + { + false(2), + true(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set 'true(1)' for flow policer first, 'false(2)' for port policer first. + Default value is false(2)." + DEFVAL{false} + ::= { globalQos 2 } + + globalQosResetMapObjects OBJECT IDENTIFIER ::= { globalQos 3 } + + globalQosResetDomainMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosResetDomainMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Reset configuration of qos maping table in specified domain." + ::= { globalQosResetMapObjects 1 } + + globalQosResetDomainMapEntry OBJECT-TYPE + SYNTAX GlobalQosResetDomainMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosResetDomainMapTable." + INDEX { + globalQosResetDomainMapDomain + } + ::= { globalQosResetDomainMapTable 1 } + + GlobalQosResetDomainMapEntry ::= + SEQUENCE + { + globalQosResetDomainMapDomain + Integer32, + globalQosResetDomainMapType + INTEGER + } + + globalQosResetDomainMapDomain OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Qos domain.Range is <0-7>." + ::= { globalQosResetDomainMapEntry 1 } + + globalQosResetDomainMapType OBJECT-TYPE + SYNTAX INTEGER + { + cosPriColor(1), + dscpPriColor(2), + expPriColor(3), + ipPrecPriColor(4), + priColorCos(5), + priColorDscp(6), + priColorExp(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Restore the whole running map table to system default table. + Set the value to restore related table. + cosPriColor(1) Restore the COS-to-Priority/Color map + dscpPriColor(2) Restore dscp-priority-color map + expPriColor(3) Restore the exp-to-priority/color map + ipPrecPriColor(4) Restore the IP Precedence to Pri/Color map + priColorCos(5) Restore PRI_COLOR-to-COS map + priColorDscp(6) Restore PRI_COLOR-to-DSCP map + priColorExp(7) Restore PRI_COLOR-to-EXP map + The get of this value alway return 0" + ::= { globalQosResetDomainMapEntry 2 } + + globalQosResetPriColorQidTid OBJECT-TYPE + SYNTAX Integer32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set 1 to reset priority-color-queueId-thresholdId mapping. + Zero will be returned. " + ::= { globalQosResetMapObjects 2 } + +-- globalQosMapObjects + + globalQosMapObjects OBJECT IDENTIFIER ::= { globalQos 4 } + +-- globalQosMapIngressTable +-- + globalQosMapIngressTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosMapIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Running table of interface ingress map." + ::= { globalQosMapObjects 1 } + + globalQosMapIngressEntry OBJECT-TYPE + SYNTAX GlobalQosMapIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosMapIngressTable." + INDEX { + globalQosMapIngressType, + globalQosMapIngressDomain, + globalQosMapIngressValue} + ::= { globalQosMapIngressTable 1 } + + GlobalQosMapIngressEntry ::= + SEQUENCE + { + globalQosMapIngressType + PriMapType, + globalQosMapIngressDomain + Integer32, + globalQosMapIngressValue + Integer32, + globalQosMapIngressToPriority + Integer32, + globalQosMapIngressToColor + ColorType + } + + globalQosMapIngressType OBJECT-TYPE + SYNTAX PriMapType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Type of map. + cos(1), + dscp(2), + exp(3), + ipPre(4) " + ::= { globalQosMapIngressEntry 1 } + + globalQosMapIngressDomain OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ingress domain. Range is <0-7>." + ::= { globalQosMapIngressEntry 2 } + + globalQosMapIngressValue OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Different type has different GlobalQosMapIngressValue. + Type-name Range of GlobalQosMapIngressValue + cos (0..7) + dscp (0..63) + ipPre (0..7) + exp (0..7)" + ::= { globalQosMapIngressEntry 3 } + + globalQosMapIngressToPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Internal priority value.Range is <0-63>." + ::= { globalQosMapIngressEntry 4 } + + globalQosMapIngressToColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Internal color.Set (1)red, (2)yellow, (3)green." + ::= { globalQosMapIngressEntry 5 } + +-- globalQosMapEgressTable +-- + globalQosMapEgressTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosMapEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Running table of interface egress map." + ::= { globalQosMapObjects 2 } + + globalQosMapEgressEntry OBJECT-TYPE + SYNTAX GlobalQosMapEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosMapEgressTable" + INDEX { + globalQosMapEgressType, + globalQosMapEgressDomain, + globalQosMapEgressPriority, + globalQosMapEgressColor} + ::= { globalQosMapEgressTable 1 } + + GlobalQosMapEgressEntry ::= + SEQUENCE + { + globalQosMapEgressType + PriMapType, + globalQosMapEgressDomain + Integer32, + globalQosMapEgressPriority + Integer32, + globalQosMapEgressColor + ColorType, + globalQosMapEgressValue + Integer32 + } + + globalQosMapEgressType OBJECT-TYPE + SYNTAX PriMapType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Type of the egress map-table. Only value cos(1), dscp(2), exp(3) can be use." + ::= { globalQosMapEgressEntry 1 } + + globalQosMapEgressDomain OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Egress domain.Range is <0-7>." + ::= { globalQosMapEgressEntry 2 } + + globalQosMapEgressPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal priority value.Range is <0-63>." + ::= { globalQosMapEgressEntry 3 } + + globalQosMapEgressColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal color. Set (1)red, (2)yellow, (3)green." + ::= { globalQosMapEgressEntry 4 } + + globalQosMapEgressValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Different type has different GlobalQosMapIngressValue. + Type-name Range of GlobalQosMapIngressValue + cos (0..7) + dscp (0..63) + exp (0..7)" + ::= { globalQosMapEgressEntry 5 } + + globalQosMapPriColorQidTidTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosMapPriColorQidTidEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of qos map priority-color to QueueId - thresholdId." + ::= { globalQosMapObjects 3 } + + globalQosMapPriColorQidTidEntry OBJECT-TYPE + SYNTAX GlobalQosMapPriColorQidTidEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosMapPriColorQidTidTable." + INDEX { + globalQosMapPriColorQidTidPriority, + globalQosMapPriColorQidTidColor} + ::= { globalQosMapPriColorQidTidTable 1 } + + GlobalQosMapPriColorQidTidEntry ::= + SEQUENCE + { + globalQosMapPriColorQidTidPriority + Integer32, + globalQosMapPriColorQidTidColor + ColorType, + globalQosMapPriColorQidTidQueueId + IfQueueId, + globalQosMapPriColorQidTidThresholdId + Integer32 + } + + + globalQosMapPriColorQidTidPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "QoS Map Priority to be configured.Range is <0-63>." + ::= { globalQosMapPriColorQidTidEntry 1 } + + globalQosMapPriColorQidTidColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal color. Set (1)red, (2)yellow, (3)green." + ::= { globalQosMapPriColorQidTidEntry 2 } + + globalQosMapPriColorQidTidQueueId OBJECT-TYPE + SYNTAX IfQueueId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The queue id to be mapped to.Range is <0-7>." + ::= { globalQosMapPriColorQidTidEntry 3 } + + globalQosMapPriColorQidTidThresholdId OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The threasholdId id to be mapped to.Range is <0-3>." + ::= { globalQosMapPriColorQidTidEntry 4 } + + +-- globalQosMapIngressDefaultTable +-- + globalQosMapIngressDefaultTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosMapIngressDefaultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface ingress map." + ::= { globalQosMapObjects 4 } + + globalQosMapIngressDefaultEntry OBJECT-TYPE + SYNTAX GlobalQosMapIngressDefaultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosMapIngressDefaultTable." + INDEX { + globalQosMapIngressDefaultType, + globalQosMapIngressDefaultDomain, + globalQosMapIngressDefaultValue} + ::= { globalQosMapIngressDefaultTable 1 } + + GlobalQosMapIngressDefaultEntry ::= + SEQUENCE + { + globalQosMapIngressDefaultType + PriMapType, + globalQosMapIngressDefaultDomain + Integer32, + globalQosMapIngressDefaultValue + Integer32, + globalQosMapIngressDefaultToPriority + Integer32, + globalQosMapIngressDefaultToColor + ColorType + } + + globalQosMapIngressDefaultType OBJECT-TYPE + SYNTAX PriMapType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Type of map. + cos(1), + dscp(2), + exp(3), + ipPre(4) " + ::= { globalQosMapIngressDefaultEntry 1 } + + globalQosMapIngressDefaultDomain OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ingress domain." + ::= { globalQosMapIngressDefaultEntry 2 } + + globalQosMapIngressDefaultValue OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Different type has different GlobalQosMapIngressValue. + Type-name Range of GlobalQosMapIngressValue + cos (0..7) + dscp (0..63) + ipPre (0..7) + exp (0..7)" + ::= { globalQosMapIngressDefaultEntry 3 } + + globalQosMapIngressDefaultToPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internal priority value." + ::= { globalQosMapIngressDefaultEntry 4 } + + globalQosMapIngressDefaultToColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internal color.Set (1)red, (2)yellow, (3)green." + ::= { globalQosMapIngressDefaultEntry 5 } + +-- globalQosMapEgressDefaultTable +-- + globalQosMapEgressDefaultTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosMapEgressDefaultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of interface egress map." + ::= { globalQosMapObjects 5 } + + globalQosMapEgressDefaultEntry OBJECT-TYPE + SYNTAX GlobalQosMapEgressDefaultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosMapEgressDefaultTable." + INDEX { + globalQosMapEgressDefaultType, + globalQosMapEgressDefaultDomain, + globalQosMapEgressDefaultPriority, + globalQosMapEgressDefaultColor} + ::= { globalQosMapEgressDefaultTable 1 } + + GlobalQosMapEgressDefaultEntry ::= + SEQUENCE + { + globalQosMapEgressDefaultType + PriMapType, + globalQosMapEgressDefaultDomain + Integer32, + globalQosMapEgressDefaultPriority + Integer32, + globalQosMapEgressDefaultColor + ColorType, + globalQosMapEgressDefaultValue + Integer32 + } + + globalQosMapEgressDefaultType OBJECT-TYPE + SYNTAX PriMapType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Type of the egress map-table. Only valude cos(1), dscp(2), exp(3) can be use." + ::= { globalQosMapEgressDefaultEntry 1 } + + globalQosMapEgressDefaultDomain OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Egress domain." + ::= { globalQosMapEgressDefaultEntry 2 } + + globalQosMapEgressDefaultPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal priority value." + ::= { globalQosMapEgressDefaultEntry 3 } + + globalQosMapEgressDefaultColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal color. Set (1)red, (2)yellow, (3)green." + ::= { globalQosMapEgressDefaultEntry 4 } + + globalQosMapEgressDefaultValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Different type has different GlobalQosMapIngressValue. + Type-name Range of GlobalQosMapIngressValue + cos (0..7) + dscp (0..63) + exp (0..7)" + ::= { globalQosMapEgressDefaultEntry 5 } + + + + globalQosMapPriColorQidTidDefaultTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosMapPriColorQidTidDefaultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of default qos mapping configuration of priority-color to QueueId - thresholdId." + ::= { globalQosMapObjects 6 } + + globalQosMapPriColorQidTidDefaultEntry OBJECT-TYPE + SYNTAX GlobalQosMapPriColorQidTidDefaultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosMapPriColorQidTidDefaultTable." + INDEX { + globalQosMapPriColorQidTidDefaultPriority, + globalQosMapPriColorQidTidDefaultColor} + ::= { globalQosMapPriColorQidTidDefaultTable 1 } + + GlobalQosMapPriColorQidTidDefaultEntry ::= + SEQUENCE + { + globalQosMapPriColorQidTidDefaultPriority + Integer32, + globalQosMapPriColorQidTidDefaultColor + ColorType, + globalQosMapPriColorQidTidDefaultQueueId + IfQueueId, + globalQosMapPriColorQidTidDefaultThresholdId + Integer32 + } + + + globalQosMapPriColorQidTidDefaultPriority OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal priority." + ::= { globalQosMapPriColorQidTidDefaultEntry 1 } + + globalQosMapPriColorQidTidDefaultColor OBJECT-TYPE + SYNTAX ColorType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Internal color. Set (1)red, (2)yellow, (3)green." + ::= { globalQosMapPriColorQidTidDefaultEntry 2 } + + globalQosMapPriColorQidTidDefaultQueueId OBJECT-TYPE + SYNTAX IfQueueId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The queue id." + ::= { globalQosMapPriColorQidTidDefaultEntry 3 } + + globalQosMapPriColorQidTidDefaultThresholdId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The threasholdId id." + ::= { globalQosMapPriColorQidTidDefaultEntry 4 } + + globalQosCfiTable OBJECT-TYPE + SYNTAX SEQUENCE OF GlobalQosCfiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of qos domain cfi config." + ::= { globalQos 5 } + + globalQosCfiEntry OBJECT-TYPE + SYNTAX GlobalQosCfiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of globalQosCfiTable." + INDEX { + globalQosCfiDomain} + ::= { globalQosCfiTable 1 } + + GlobalQosCfiEntry ::= + SEQUENCE + { + globalQosCfiDomain + Integer32, + globalQosCfiEnable + TruthValue + } + + + globalQosCfiDomain OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "QoS domain to be configured. Range is <0~7>." + ::= { globalQosCfiEntry 1 } + + globalQosCfiEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfi enable status of qos domain. + Set (1)enable, (2)disable. + Default:(2)disable." + ::= { globalQosCfiEntry 2 } + + + +-- Sub Module: STATS + + + +-- +--type definitions +-- + + +--Direction + DirectionType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The direction of policy on at interface." + SYNTAX INTEGER + { + inbound(1), + outbound(2) + } + +--Enable + EnableType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The direction of policy on at interface." + SYNTAX INTEGER + { + enabled(1), + disabled(2) + } + +--Clear value + QosStatsClear ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "cleared: Reset the value of the rule's counter. + nouse: 'nouse' will be returned when getting. + " + SYNTAX INTEGER + { + cleared(0), + nouse(1) + } + +-- +--end of type definitions +-- + +--srvQos definition +srvQosSapIngressObjects OBJECT IDENTIFIER ::= { srvQos 1 } +srvQosSapEgressObjects OBJECT IDENTIFIER ::= { srvQos 2 } +srvQosFreeQueueInfoObjects OBJECT IDENTIFIER ::= { srvQos 3 } + +--sap ingress definition-- +srvQosSapIngressTable OBJECT-TYPE + SYNTAX SEQUENCE OF SrvQosSapIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of qos sap ingress." + ::= { srvQosSapIngressObjects 1 } + +srvQosSapIngressEntry OBJECT-TYPE + SYNTAX SrvQosSapIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of qos sap ingress." + INDEX {srvQosSapIngressName} + ::= { srvQosSapIngressTable 1 } + +SrvQosSapIngressEntry ::= + SEQUENCE + { + srvQosSapIngressName + OCTET STRING, + srvQosSapIngressRowStatus + RowStatus, + srvQosSapIngressDescription + OCTET STRING, + srvQosSapIngressApplyPolicyMap + OCTET STRING + } + +srvQosSapIngressName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Name of the qos sap ingress." + ::= { srvQosSapIngressEntry 1} + +srvQosSapIngressRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the srvQosSapIngressEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { srvQosSapIngressEntry 2} + +srvQosSapIngressDescription OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Descrption of the qos sap ingress." + ::= { srvQosSapIngressEntry 3} + +srvQosSapIngressApplyPolicyMap OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Policy map for the qos sap ingress." + ::= { srvQosSapIngressEntry 4} + +--sap ingress policer definition-- +srvQosSapIngressPolicerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SrvQosSapIngressPolicerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of qos sap ingress policer." + ::= { srvQosSapIngressObjects 2} + +srvQosSapIngressPolicerEntry OBJECT-TYPE + SYNTAX SrvQosSapIngressPolicerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of qos sap ingress policer." + INDEX {srvQosSapIngressName} + ::= { srvQosSapIngressPolicerTable 1 } + +SrvQosSapIngressPolicerEntry ::= + SEQUENCE + { + srvQosSapIngressPolicerMode + INTEGER, + srvQosSapIngressPolicerCir + Integer32, + srvQosSapIngressPolicerCbs + Integer32, + srvQosSapIngressPolicerEbs + Integer32, + srvQosSapIngressPolicerPir + Integer32, + srvQosSapIngressPolicerPbs + Integer32, + srvQosSapIngressPolicerDropColor + INTEGER, + srvQosSapIngressPolicerUseL3Length + INTEGER + } + + +srvQosSapIngressPolicerMode OBJECT-TYPE + SYNTAX INTEGER{ colorAware(0), colorBlind(1) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Policer mode of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 1} + +srvQosSapIngressPolicerCir OBJECT-TYPE + SYNTAX Integer32(1..10000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cir of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 2} + +srvQosSapIngressPolicerCbs OBJECT-TYPE + SYNTAX Integer32(0..4000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cbs of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 3} + +srvQosSapIngressPolicerEbs OBJECT-TYPE + SYNTAX Integer32(0..4000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ebs of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 4} + +srvQosSapIngressPolicerPir OBJECT-TYPE + SYNTAX Integer32(1..10000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Pir of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 5} + +srvQosSapIngressPolicerPbs OBJECT-TYPE + SYNTAX Integer32(0..4000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Pbs of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 6} + +srvQosSapIngressPolicerDropColor OBJECT-TYPE + SYNTAX INTEGER{ none(0), red(1), yellow(2), green(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Drop color of the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 7} + +srvQosSapIngressPolicerUseL3Length OBJECT-TYPE + SYNTAX INTEGER{ false(0), true(1) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If L3 length is used for the qos sap ingress." + ::= { srvQosSapIngressPolicerEntry 8} + +srvQosSapEgressTable OBJECT-TYPE + SYNTAX SEQUENCE OF SrvQosSapEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of qos sap Egress." + ::= { srvQosSapEgressObjects 1 } + +--sap egress definition-- +srvQosSapEgressEntry OBJECT-TYPE + SYNTAX SrvQosSapEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of qos sap Egress." + INDEX {srvQosSapEgressName} + ::= { srvQosSapEgressTable 1 } + +SrvQosSapEgressEntry ::= + SEQUENCE + { + srvQosSapEgressName + OCTET STRING, + srvQosSapEgressRowStatus + RowStatus, + srvQosSapEgressDescription + OCTET STRING, + srvQosSapEgressShapeAverage + Integer32 + } + +srvQosSapEgressName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Name of the qos sap Egress." + ::= { srvQosSapEgressEntry 1} + +srvQosSapEgressRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the srvQosSapEgressEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { srvQosSapEgressEntry 2} + +srvQosSapEgressDescription OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Descrption of the qos sap Egress." + ::= { srvQosSapEgressEntry 3} + +srvQosSapEgressShapeAverage OBJECT-TYPE + SYNTAX Integer32(0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Total Rate of the qos sap Egress." + ::= { srvQosSapEgressEntry 4} + +--sap egress queue definition-- +srvQosSapEgressQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF SrvQosSapEgressQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of qos sap egress queue." + ::= { srvQosSapEgressObjects 2 } + +srvQosSapEgressQueueEntry OBJECT-TYPE + SYNTAX SrvQosSapEgressQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of qos sap egress queue." + INDEX {srvQosSapEgressName, srvQosSapEgressQueueId} + ::= { srvQosSapEgressQueueTable 1 } + +SrvQosSapEgressQueueEntry ::= + SEQUENCE + { + srvQosSapEgressQueueId + Integer32, + srvQosSapEgressQueueShapeAverageRateCir + Integer32, + srvQosSapEgressQueueShapeAverageRatePir + Integer32 + } + +srvQosSapEgressQueueId OBJECT-TYPE + SYNTAX Integer32(0..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Id of the qos sap Egress Queue." + ::= { srvQosSapEgressQueueEntry 1} + +srvQosSapEgressQueueShapeAverageRateCir OBJECT-TYPE + SYNTAX Integer32(0..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Shape rate for commit information rate, kbps." + ::= { srvQosSapEgressQueueEntry 2} + +srvQosSapEgressQueueShapeAverageRatePir OBJECT-TYPE + SYNTAX Integer32(0..10000000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Shape rate for peak information rate, kbps." + ::= { srvQosSapEgressQueueEntry 3} + +--sap egress queue info definition-- +srvQosSapEgressQueueInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF SrvQosSapEgressQueueInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of qos sap egress queue info." + ::= { srvQosSapEgressObjects 3 } + +srvQosSapEgressQueueInfoEntry OBJECT-TYPE + SYNTAX SrvQosSapEgressQueueInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of qos sap egress queue info." + INDEX {srvQosSapEgressName, srvQosSapEgressQueueId} + ::= { srvQosSapEgressQueueInfoTable 1 } + +SrvQosSapEgressQueueInfoEntry ::= + SEQUENCE + { + srvQosSapEgressQueueInfoRandomDetect + Integer32, + srvQosSapEgressQueueInfoTailDropThreshold0 + Integer32, + srvQosSapEgressQueueInfoTailDropThreshold1 + Integer32, + srvQosSapEgressQueueInfoTailDropThreshold2 + Integer32, + srvQosSapEgressQueueInfoTailDropThreshold3 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMinThreshold0 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMinThreshold1 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMinThreshold2 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMinThreshold3 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMaxThreshold0 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMaxThreshold1 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMaxThreshold2 + Integer32, + srvQosSapEgressQueueInfoRandomDetectMaxThreshold3 + Integer32, + srvQosSapEgressQueueInfoRandomDetectDropProbability0 + Integer32, + srvQosSapEgressQueueInfoRandomDetectDropProbability1 + Integer32, + srvQosSapEgressQueueInfoRandomDetectDropProbability2 + Integer32, + srvQosSapEgressQueueInfoRandomDetectDropProbability3 + Integer32 + } + +srvQosSapEgressQueueInfoRandomDetect OBJECT-TYPE + SYNTAX Integer32 (-1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "-1: Tail Drop + 0-10: WRED Exponential-Weighted-Moving-Average (EWMA) factor." + ::= { srvQosSapEgressQueueInfoEntry 1} + +srvQosSapEgressQueueInfoTailDropThreshold0 OBJECT-TYPE + SYNTAX Integer32(0..24571) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Tail drop threshold0." + ::= { srvQosSapEgressQueueInfoEntry 2} + +srvQosSapEgressQueueInfoTailDropThreshold1 OBJECT-TYPE + SYNTAX Integer32(1..24572) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Tail drop threshold1, should greater than threshold0." + ::= { srvQosSapEgressQueueInfoEntry 3} + +srvQosSapEgressQueueInfoTailDropThreshold2 OBJECT-TYPE + SYNTAX Integer32(2..24573) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Tail drop threshold2, should greater than threshold1." + ::= { srvQosSapEgressQueueInfoEntry 4} + +srvQosSapEgressQueueInfoTailDropThreshold3 OBJECT-TYPE + SYNTAX Integer32(3..24574) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Tail drop threshold3, should greater than threshold2." + ::= { srvQosSapEgressQueueInfoEntry 5} + + +srvQosSapEgressQueueInfoRandomDetectMinThreshold0 OBJECT-TYPE + SYNTAX Integer32(0..24573) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold0's min threshold range." + ::= { srvQosSapEgressQueueInfoEntry 6} + +srvQosSapEgressQueueInfoRandomDetectMinThreshold1 OBJECT-TYPE + SYNTAX Integer32(0..24573) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold1's min threshold range." + ::= { srvQosSapEgressQueueInfoEntry 7} + +srvQosSapEgressQueueInfoRandomDetectMinThreshold2 OBJECT-TYPE + SYNTAX Integer32(0..24573) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold2's min threshold range." + ::= { srvQosSapEgressQueueInfoEntry 8} + +srvQosSapEgressQueueInfoRandomDetectMinThreshold3 OBJECT-TYPE + SYNTAX Integer32(0..24573) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold3's min threshold range." + ::= { srvQosSapEgressQueueInfoEntry 9} + +srvQosSapEgressQueueInfoRandomDetectMaxThreshold0 OBJECT-TYPE + SYNTAX Integer32(1..24574) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold0's max threshold range." + ::= { srvQosSapEgressQueueInfoEntry 10} + +srvQosSapEgressQueueInfoRandomDetectMaxThreshold1 OBJECT-TYPE + SYNTAX Integer32(1..24574) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold1's max threshold range." + ::= { srvQosSapEgressQueueInfoEntry 11} + +srvQosSapEgressQueueInfoRandomDetectMaxThreshold2 OBJECT-TYPE + SYNTAX Integer32(1..24574) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold2's max threshold range." + ::= { srvQosSapEgressQueueInfoEntry 12} + +srvQosSapEgressQueueInfoRandomDetectMaxThreshold3 OBJECT-TYPE + SYNTAX Integer32(1..24574) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold3's max threshold range." + ::= { srvQosSapEgressQueueInfoEntry 13} + +srvQosSapEgressQueueInfoRandomDetectDropProbability0 OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold0 drop probability range." + ::= { srvQosSapEgressQueueInfoEntry 14} + +srvQosSapEgressQueueInfoRandomDetectDropProbability1 OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold1 drop probability range." + ::= { srvQosSapEgressQueueInfoEntry 15} + +srvQosSapEgressQueueInfoRandomDetectDropProbability2 OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold2 drop probability range." + ::= { srvQosSapEgressQueueInfoEntry 16} + +srvQosSapEgressQueueInfoRandomDetectDropProbability3 OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Random-detect threshold3 drop probability range." + ::= { srvQosSapEgressQueueInfoEntry 17} + +--"show qos free-queue-info" +srvQosFreeQueueInfoServiceQueueNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of queues allocated by each service." + ::= { srvQosFreeQueueInfoObjects 1} + +srvQosFreeQueueInfoMaxSupportQueueNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum support queue number." + ::= { srvQosFreeQueueInfoObjects 2} + +srvQosFreeQueueInfoAllocatedQueueNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The allocated queue number." + ::= { srvQosFreeQueueInfoObjects 3} + +srvQosFreeQueueInfoMaxSupportServiceNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum support service number." + ::= { srvQosFreeQueueInfoObjects 4} + +srvQosFreeQueueInfoAllocatedServiceNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The allocated service number." + ::= { srvQosFreeQueueInfoObjects 5} + +-- +-- Node definitions +-- + +-- Globle Stats enable + +qosStatsEnableObjects OBJECT IDENTIFIER ::= { stats 1 } + +qosStatsPolicyEnable OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of policer statistics. + (1) enable. + (2) disable." + ::= { qosStatsEnableObjects 1 } + +qosStatsQueueEnable OBJECT-TYPE + SYNTAX EnableType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of queue statistics. + (1) enable. + (2) disable." + ::= { qosStatsEnableObjects 2 } + +-- Globle Stats clear + +qosStatsClearStaticsObjects OBJECT IDENTIFIER ::= { stats 2 } + +-- Clear Policy QosStats + +qosStatsClearPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsClearPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of clearing Stats for Policy in a QoS policy applied on the interface." + ::= { qosStatsClearStaticsObjects 1 } + +qosStatsClearPolicyEntry OBJECT-TYPE + SYNTAX QosStatsClearPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Clear Stats information entry." + INDEX {qosStatsClearPolicyIndex } + ::= { qosStatsClearPolicyTable 1 } + +QosStatsClearPolicyEntry ::= + SEQUENCE + { + qosStatsClearPolicyIndex + Integer32, + qosStatsClearPolicyPolicerStats + QosStatsClear, + qosStatsClearPolicyAceMatchStats + QosStatsClear + } + +qosStatsClearPolicyIndex OBJECT-TYPE + SYNTAX Integer32 (10000..20000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy map entry index. Range 10000~20000." + ::= { qosStatsClearPolicyEntry 1 } + +qosStatsClearPolicyPolicerStats OBJECT-TYPE + SYNTAX QosStatsClear + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset the value of the policer statistics in policy-map.Clear(0)." + ::= { qosStatsClearPolicyEntry 2 } + +qosStatsClearPolicyAceMatchStats OBJECT-TYPE + SYNTAX QosStatsClear + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset the value of the ace-matching statistics in policy-map.Clear(0)." + ::= { qosStatsClearPolicyEntry 3 } + +-- Clearing port-policy QosStats + +qosStatsClearPortPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsClearPortPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of clearing Stats for Policy + in a QoS PortPolicy applied on the interface." + ::= { qosStatsClearStaticsObjects 2 } + +qosStatsClearPortPolicyEntry OBJECT-TYPE + SYNTAX QosStatsClearPortPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Clear Stats information entry." + INDEX { qosStatsClearPortPolicyIfIndex, + qosStatsClearPortPolicyDirection } + ::= { qosStatsClearPortPolicyTable 1 } + +QosStatsClearPortPolicyEntry ::= + SEQUENCE + { + qosStatsClearPortPolicyIfIndex + Integer32, + qosStatsClearPortPolicyDirection + DirectionType, + qosStatsClearPortPolicyStats + QosStatsClear + } + +qosStatsClearPortPolicyIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface Index, equal to ifIndex." + ::= { qosStatsClearPortPolicyEntry 1 } + +qosStatsClearPortPolicyDirection OBJECT-TYPE + SYNTAX DirectionType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy direction: + inbound (1) + outbound (2)" + ::= { qosStatsClearPortPolicyEntry 2 } + +qosStatsClearPortPolicyStats OBJECT-TYPE + SYNTAX QosStatsClear + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset the statistics of port policer.Clear(0)." + ::= { qosStatsClearPortPolicyEntry 3 } + +-- Clear Agg policy QosStats + +qosStatsClearAggPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsClearAggPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of clearing Stats for Policy in a QoS AggPolicy applied on the + interface." + ::= { qosStatsClearStaticsObjects 3 } + +qosStatsClearAggPolicyEntry OBJECT-TYPE + SYNTAX QosStatsClearAggPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Clear agg policer stats information entry." + INDEX { qosStatsClearAggPolicyIndex } + ::= { qosStatsClearAggPolicyTable 1 } + +QosStatsClearAggPolicyEntry ::= + SEQUENCE + { + qosStatsClearAggPolicyIndex + Integer32, + qosStatsClearAggPolicyStats + QosStatsClear + } + +qosStatsClearAggPolicyIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of aggregate-policer." + ::= { qosStatsClearAggPolicyEntry 1 } + +qosStatsClearAggPolicyStats OBJECT-TYPE + SYNTAX QosStatsClear + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset the value of the Stats.Clear(0)." + ::= { qosStatsClearAggPolicyEntry 2 } + +-- Clear queue QosStats + +qosStatsClearQueueTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsClearQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of clearing Stats for Policy in a QoS Queue applied on the + interface." + ::= { qosStatsClearStaticsObjects 4 } + +qosStatsClearQueueEntry OBJECT-TYPE + SYNTAX QosStatsClearQueueEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Clear Stats information entry." + INDEX { qosStatsClearQueueifIndex, + qosStatsClearQueueId} + ::= { qosStatsClearQueueTable 1 } + +QosStatsClearQueueEntry ::= + SEQUENCE + { + qosStatsClearQueueifIndex + Integer32, + qosStatsClearQueueId + IfQueueId, + qosStatsClearQueueStats + QosStatsClear + } + +qosStatsClearQueueifIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface Index, equal to ifIndex." + ::= { qosStatsClearQueueEntry 1 } + +qosStatsClearQueueId OBJECT-TYPE + SYNTAX IfQueueId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface queue id." + ::= { qosStatsClearQueueEntry 2 } + +qosStatsClearQueueStats OBJECT-TYPE + SYNTAX QosStatsClear + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset the value of the Stats.Clear(0)." + ::= { qosStatsClearQueueEntry 3 } + +-- Running Stats information + +qosStatsRunStaticsObjects OBJECT IDENTIFIER ::= { stats 3 } + +-- Policy Stats,policy Running Stats information + +qosStatsCbPolicyRunInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsCbPolicyRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Running Stats for Policy in a QoS policy applied on the interface." + ::= { qosStatsRunStaticsObjects 1 } + +qosStatsCbPolicyRunInfoEntry OBJECT-TYPE + SYNTAX QosStatsCbPolicyRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy Stats information entry." + INDEX { qosStatsCbPolicyIfIndex, + qosStatsCbPolicyDirection, + qosStatsPolicyClassIndex } + ::= { qosStatsCbPolicyRunInfoTable 1 } + +QosStatsCbPolicyRunInfoEntry ::= + SEQUENCE + { + qosStatsCbPolicyIfIndex + Integer32, + qosStatsCbPolicyDirection + DirectionType, + qosStatsPolicyClassIndex + Integer32, + qosStatsPolicyGreenPackets + Counter64, + qosStatsPolicyGreenBytes + Counter64, + qosStatsPolicyRedPackets + Counter64, + qosStatsPolicyRedBytes + Counter64, + qosStatsPolicyYellowPackets + Counter64, + qosStatsPolicyYellowBytes + Counter64, + qosStatsPolicyClassBasedPkts + Counter64, + qosStatsPolicyClassBasedBytes + Counter64 + } + +qosStatsCbPolicyIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface Index, equal to ifIndex." + ::= { qosStatsCbPolicyRunInfoEntry 1 } + +qosStatsCbPolicyDirection OBJECT-TYPE + SYNTAX DirectionType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy direction: + inbound (1) + outbound (2) + " + ::= { qosStatsCbPolicyRunInfoEntry 2 } + +qosStatsPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "PolicyClass Index in a QoS policy." + ::= { qosStatsCbPolicyRunInfoEntry 3 } + +qosStatsPolicyGreenPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of green packets." + ::= { qosStatsCbPolicyRunInfoEntry 4 } + +qosStatsPolicyGreenBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of green bytes." + ::= { qosStatsCbPolicyRunInfoEntry 5 } + +qosStatsPolicyRedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of red packets." + ::= { qosStatsCbPolicyRunInfoEntry 6 } + +qosStatsPolicyRedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of red bytes." + ::= { qosStatsCbPolicyRunInfoEntry 7 } + +qosStatsPolicyYellowPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of yellow packets." + ::= { qosStatsCbPolicyRunInfoEntry 8 } + +qosStatsPolicyYellowBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of yellow bytes." + ::= { qosStatsCbPolicyRunInfoEntry 9 } + +qosStatsPolicyClassBasedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of policy class matching packets." + ::= { qosStatsCbPolicyRunInfoEntry 10 } + +qosStatsPolicyClassBasedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of policy class matching bytes." + ::= { qosStatsCbPolicyRunInfoEntry 11 } + +-- Port policy: policy Running Stats information on port + + +qosStatsPortPolicyRunInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsPortPolicyRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Running Stats in a QoS policy applied on the port." + ::= { qosStatsRunStaticsObjects 2 } + +qosStatsPortPolicyRunInfoEntry OBJECT-TYPE + SYNTAX QosStatsPortPolicyRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy Stats information entry." + INDEX { qosStatsCbPolicyIfIndex, + qosStatsCbPolicyDirection } + ::= { qosStatsPortPolicyRunInfoTable 1 } + +QosStatsPortPolicyRunInfoEntry ::= + SEQUENCE + { + qosStatsPortPolicyIfIndex + Integer32, + qosStatsPortPolicyDirection + DirectionType, + qosStatsPortPolicyConfirmPackets + Counter64, + qosStatsPortPolicyConfirmBytes + Counter64, + qosStatsPortPolicyNoConfirmPackets + Counter64, + qosStatsPortPolicyNoConfirmBytes + Counter64 + } + +qosStatsPortPolicyIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface Index, equal to ifIndex." + ::= { qosStatsPortPolicyRunInfoEntry 1 } + +qosStatsPortPolicyDirection OBJECT-TYPE + SYNTAX DirectionType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy direction: + inbound (1) + outbound (2) + " + ::= { qosStatsPortPolicyRunInfoEntry 2 } + +qosStatsPortPolicyConfirmPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of green packets." + ::= { qosStatsPortPolicyRunInfoEntry 3 } + +qosStatsPortPolicyConfirmBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of green bytes." + ::= { qosStatsPortPolicyRunInfoEntry 4 } + +qosStatsPortPolicyNoConfirmPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of red packets." + ::= { qosStatsPortPolicyRunInfoEntry 5 } + +qosStatsPortPolicyNoConfirmBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of red bytes." + ::= { qosStatsPortPolicyRunInfoEntry 6 } + +-- Queue Stats + +qosStatsIfQueueRunInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsIfQueueRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Running Stats for queue + in a QoS policy applied on the interface." + ::= { qosStatsRunStaticsObjects 3 } + +qosStatsIfQueueRunInfoEntry OBJECT-TYPE + SYNTAX QosStatsIfQueueRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Queue Stats entry." + INDEX { qosStatsQueueIfIndex, + qosStatsQueueID } + ::= { qosStatsIfQueueRunInfoTable 1 } + +QosStatsIfQueueRunInfoEntry ::= + SEQUENCE + { + qosStatsQueueIfIndex + Integer32, + qosStatsQueueID + Integer32, + qosStatsIfQueueTransmittedPackets + Counter64, + qosStatsIfQueueTransmittedBytes + Counter64, + qosStatsIfQueueDropPackets + Counter64, + qosStatsIfQueueDropBytes + Counter64 + } + +qosStatsQueueIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface Index, equal to ifIndex." + ::= { qosStatsIfQueueRunInfoEntry 1 } + +qosStatsQueueID OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Queue ID. Range <0-7>." + ::= { qosStatsIfQueueRunInfoEntry 2 } + +qosStatsIfQueueTransmittedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of packets enqueued." + ::= { qosStatsIfQueueRunInfoEntry 3 } + +qosStatsIfQueueTransmittedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of bytes enqueued." + ::= { qosStatsIfQueueRunInfoEntry 4 } + +qosStatsIfQueueDropPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Number of packets discarded when enqueued by tail-drop/wred method. It's zero if the system does not support queue drop statistics." + ::= { qosStatsIfQueueRunInfoEntry 5 } + +qosStatsIfQueueDropBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Number of bytes discarded when enqueued by tail-drop/wred method. + It's zero if the system does not support queue drop statistics." + ::= { qosStatsIfQueueRunInfoEntry 6 } + +qosStatsCbPolicyAceBasedRunInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsCbPolicyAceBasedRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Running Stats for matching QoS policy Ace applied on the interface. The matching ace statistics is only for match-any class-map in policy-map" + ::= { qosStatsRunStaticsObjects 4 } + +qosStatsCbPolicyAceBasedRunInfoEntry OBJECT-TYPE + SYNTAX QosStatsCbPolicyAceBasedRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy Stats information entry." + INDEX { qosStatsCbAceBasedIfIndex, + qosStatsCbAceBasedDirection, + qosStatsCbAceBasedPolicyClassIndex, + qosStatsCbAceBasedMatchRuleIndex, + qosStatsCbAceBasedAclGroupRuleIndex } + ::= { qosStatsCbPolicyAceBasedRunInfoTable 1 } + +QosStatsCbPolicyAceBasedRunInfoEntry ::= + SEQUENCE + { + qosStatsCbAceBasedIfIndex + Integer32, + qosStatsCbAceBasedDirection + DirectionType, + qosStatsCbAceBasedPolicyClassIndex + Integer32, + qosStatsCbAceBasedMatchRuleIndex + Integer32, + qosStatsCbAceBasedAclGroupRuleIndex + Integer32, + qosStatsCbAceBasedPkts + Counter64, + qosStatsCbAceBasedBytes + Counter64 + } + +qosStatsCbAceBasedIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface Index, equal to ifIndex." + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 1 } + +qosStatsCbAceBasedDirection OBJECT-TYPE + SYNTAX DirectionType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy direction: + inbound (1) + outbound (2) + " + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 2 } + +qosStatsCbAceBasedPolicyClassIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "PolicyClass index in policy-map." + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 3 } + +qosStatsCbAceBasedMatchRuleIndex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Match rule index in Class-map." + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 4 } + +qosStatsCbAceBasedAclGroupRuleIndex OBJECT-TYPE + SYNTAX Integer32(1..2147483646) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Rule index(sequence num in cli) in acl Group. " + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 5 } + +qosStatsCbAceBasedPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of packets matching ace in policy-map." + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 6 } + +qosStatsCbAceBasedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bytes of packets matching ace in policy-map." + ::= { qosStatsCbPolicyAceBasedRunInfoEntry 7 } + +-- Agg Policy Stats,policy Running Stats information + + +qosStatsAggPolicyRunInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF QosStatsAggPolicyRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Running Stats in a QoS aggregate policy applied on the interface." + ::= { qosStatsRunStaticsObjects 5 } + +qosStatsAggPolicyRunInfoEntry OBJECT-TYPE + SYNTAX QosStatsAggPolicyRunInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Aggregate Policy Stats information entry." + INDEX { qosStatsAggPolicyIndex } + ::= { qosStatsAggPolicyRunInfoTable 1 } + +QosStatsAggPolicyRunInfoEntry ::= + SEQUENCE + { + qosStatsAggPolicyIndex + Integer32, + qosStatsAggPolicyRedPackets + Counter64, + qosStatsAggPolicyRedBytes + Counter64, + qosStatsAggPolicyGreenPackets + Counter64, + qosStatsAggPolicyGreenBytes + Counter64, + qosStatsAggPolicyYellowPackets + Counter64, + qosStatsAggPolicyYellowBytes + Counter64 + } + +qosStatsAggPolicyIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of aggregate-policer." + ::= { qosStatsAggPolicyRunInfoEntry 1 } + +qosStatsAggPolicyRedPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of red packets." + ::= { qosStatsAggPolicyRunInfoEntry 2 } + +qosStatsAggPolicyRedBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of red bytes." + ::= { qosStatsAggPolicyRunInfoEntry 3 } + +qosStatsAggPolicyGreenPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of green packets." + ::= { qosStatsAggPolicyRunInfoEntry 4 } + +qosStatsAggPolicyGreenBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of green bytes." + ::= { qosStatsAggPolicyRunInfoEntry 5 } + +qosStatsAggPolicyYellowPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of yellow packets." + ::= { qosStatsAggPolicyRunInfoEntry 6 } + +qosStatsAggPolicyYellowBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of yellow bytes." + ::= { qosStatsAggPolicyRunInfoEntry 7 } + + + + +-- Sub Module: IGSP + +EnabledStatus::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A simpleStatus value for the object." + SYNTAX INTEGER { enabled(1), disabled(2) } + + +-- ================================================================== +-- +-- ======================= definition begin ========================= +-- +-- ================================================================== + + lswIgmpsnoopingMibObject OBJECT IDENTIFIER ::= { igsp 1 } + lswIgmpsnoopingTrap OBJECT IDENTIFIER ::= { igsp 2 } +igmpSnoopingStatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping. + enable(1) + disable(2)" + ::= { lswIgmpsnoopingMibObject 1 } + +igmpSnoopingFastLeaveStatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping Fast Leave. + enable(1) + disable(2)" + ::= { lswIgmpsnoopingMibObject 2 } + +igmpSnoopingVersion OBJECT-TYPE + SYNTAX INTEGER (1..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Configure to set IGMP Snooping Version." + ::= { lswIgmpsnoopingMibObject 3 } + +igmpSnoopingMaxMemberNumber OBJECT-TYPE + SYNTAX INTEGER (1..8192) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Configure the max member number." + ::= { lswIgmpsnoopingMibObject 4 } + +igmpSnoopingDiscardUnknownstatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping Discard unknown multicast traffic. + enable(1) + disable(2)" + ::= { lswIgmpsnoopingMibObject 5 } + +igmpSnoopingReportSuppressionStatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping Report-Suppression. + enable(1) + disable(2)" + ::= { lswIgmpsnoopingMibObject 6 } + +igmpSnoopingLastMemberQueryInterval OBJECT-TYPE + SYNTAX INTEGER (1000..25500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Configure to set IGMP Snooping Last Member Query Interval. Interval range 1000~25500." + ::= { lswIgmpsnoopingMibObject 7 } + +igmpSnoopingQueryInterval OBJECT-TYPE + SYNTAX INTEGER (2..18000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Configure to set IGMP Snooping Query Interval.Must more than query max response time. Interval range 2~18000." + ::= { lswIgmpsnoopingMibObject 8 } + +igmpSnoopingQueryMaxResponseTime OBJECT-TYPE + SYNTAX INTEGER (1..25) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Configure to set IGMP Snooping Query Max Response Time.Time range 1~25." + ::= { lswIgmpsnoopingMibObject 9 } + +igmpSnoopingVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table contains, one entry per vlan, + infomation about the IGMP Snooping." + ::= { lswIgmpsnoopingMibObject 10 } + +igmpSnoopingVlanEntry OBJECT-TYPE + SYNTAX IgmpSnoopingVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry containing information about the + IGMP Snooping on vlan." + INDEX { igmpSnoopingVlanID } + ::= { igmpSnoopingVlanTable 1 } + +IgmpSnoopingVlanEntry ::= SEQUENCE { + igmpSnoopingVlanID + Integer32, + igmpSnoopingVlanEnabled + EnabledStatus, + igmpSnoopingVlanFastLeaveStatus + EnabledStatus, + igmpSnoopingVlanReportSuppressionStatus + EnabledStatus, + igmpSnoopingVlanVersion + INTEGER, + igmpSnoopingVlanMaxMemberNumber + INTEGER, + igmpSnoopingVlanDiscardUnknownStatus + EnabledStatus, + igmpSnoopingVlanGroupAccesslist + OCTET STRING, + igmpSnoopingVlanLastMemberQueryInterval + INTEGER, + igmpSnoopingVlanQuerier + EnabledStatus, + igmpSnoopingVlanQuerierOperationalAddress + IpAddress, + igmpSnoopingVlanQuerierConfigureAddress + IpAddress, + igmpSnoopingVlanQuerierTimeout + INTEGER, + igmpSnoopingVlanQueryInterval + INTEGER, + igmpSnoopingVlanQueryMaxResponseTime + INTEGER, + igmpSnoopingVlanStatusGrpJoinsCnt + Counter32, + igmpSnoopingVlanStatusGrpLeavesCnt + Counter32, + igmpSnoopingVlanStatusV1QuerierWCnt + Counter32, + igmpSnoopingVlanStatusV2QuerierWCnt + Counter32, + igmpSnoopingVlanStatusResetCounters + INTEGER, + igmpSnoopingVlanGrpNum + INTEGER, + igmpSnoopingVlanElectedQuerierAddress + IpAddress + } + +igmpSnoopingVlanID OBJECT-TYPE + SYNTAX Integer32(1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index uniquely identifies the VLAN id which IGMP + snooping is enabled or disabled." + ::= { igmpSnoopingVlanEntry 1 } + +igmpSnoopingVlanEnabled OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicating whether IGMP snooping is enabled on this VLAN. + enable(1) + disable(2)" + -- DEFVAL { enabled } + ::= { igmpSnoopingVlanEntry 2 } + +igmpSnoopingVlanFastLeaveStatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping Fast Leave on VLAN, + enable(1) + disable(2)." + ::= { igmpSnoopingVlanEntry 3 } + +igmpSnoopingVlanReportSuppressionStatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping Report-Suppression on VLAN. + enable(1) + disable(2)" + ::= { igmpSnoopingVlanEntry 4 } + +igmpSnoopingVlanVersion OBJECT-TYPE + SYNTAX INTEGER (1..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set IGMP Snooping Version on VLAN.Version range 1~3." + ::= { igmpSnoopingVlanEntry 5 } + +igmpSnoopingVlanMaxMemberNumber OBJECT-TYPE + SYNTAX INTEGER (1..8192) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the max member number on VLAN.Range 1~8192." + ::= { igmpSnoopingVlanEntry 6 } + + igmpSnoopingVlanDiscardUnknownStatus OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable IGMP Snooping Discard unknown multicast traffic on VLAN. + enable(1) + disable(2)" + ::= { igmpSnoopingVlanEntry 7 } + +igmpSnoopingVlanGroupAccesslist OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the IGMP Snooping Group Acess-list on VLAN." + ::= { igmpSnoopingVlanEntry 8 } + +igmpSnoopingVlanLastMemberQueryInterval OBJECT-TYPE + SYNTAX INTEGER (1000..25500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set IGMP Snooping Last Member Query Interval on VLAN. Interval range 1000~25500." + ::= { igmpSnoopingVlanEntry 10 } + +igmpSnoopingVlanQuerier OBJECT-TYPE + SYNTAX EnabledStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to Enable or Disable IGMP Snooping Querier on VLAN. + enable(1) + disable(2)" + ::= { igmpSnoopingVlanEntry 11 } + +igmpSnoopingVlanQuerierOperationalAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Configure to get IGMP Snooping Querier Operational Adress on VLAN." + ::= { igmpSnoopingVlanEntry 12 } + +igmpSnoopingVlanQuerierConfigureAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set IGMP Snooping Querier Configure Adress on VLAN." + ::= { igmpSnoopingVlanEntry 13 } + +igmpSnoopingVlanQuerierTimeout OBJECT-TYPE + SYNTAX INTEGER (60..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set IGMP Snooping Querier Timeout value on VLAN. Timeout range 60~300. " + ::= { igmpSnoopingVlanEntry 14 } + +igmpSnoopingVlanQueryInterval OBJECT-TYPE + SYNTAX INTEGER (2..18000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set IGMP Snooping Query Interval on VLAN. Query interval should be greater than Query Response Interval. Interval range 2~18000." + ::= { igmpSnoopingVlanEntry 15 } + +igmpSnoopingVlanQueryMaxResponseTime OBJECT-TYPE + SYNTAX INTEGER (1..25) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set IGMP Snooping Query Max Response Time on VLAN." + ::= { igmpSnoopingVlanEntry 16 } + +igmpSnoopingVlanStatusGrpJoinsCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Configure to get IGMP Snooping Group Joins Count on VLAN." + ::= { igmpSnoopingVlanEntry 17 } + +igmpSnoopingVlanStatusGrpLeavesCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Configure to get IGMP Snooping Group Leaves Count on VLAN." + ::= { igmpSnoopingVlanEntry 18 } + +igmpSnoopingVlanStatusV1QuerierWCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Configure to get IGMP Snooping Group V1-Querier Warnings Count on VLAN." + ::= { igmpSnoopingVlanEntry 19 } + +igmpSnoopingVlanStatusV2QuerierWCnt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Configure to get IGMP Snooping Group V2-Querier Warnings Count on VLAN." + ::= { igmpSnoopingVlanEntry 20 } + +igmpSnoopingVlanStatusResetCounters OBJECT-TYPE + SYNTAX INTEGER { + reset(1) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Configure to reset IGMP SnoopingStatus Counters on VLAN. + 1 reset." + ::= { igmpSnoopingVlanEntry 21 } + +igmpSnoopingVlanGrpNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Configure to get IGMP Snooping group number on VLAN." + ::= { igmpSnoopingVlanEntry 22 } + +igmpSnoopingVlanElectedQuerierAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Configure to get IGMP Snooping Elected Querier Adress on VLAN." + ::= { igmpSnoopingVlanEntry 23 } + +igmpSnoopingMrouterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpSnoopingMrouterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about igmp snooping mrouter port list + per vlan." + ::= { lswIgmpsnoopingMibObject 11 } + +igmpSnoopingMrouterPortEntry OBJECT-TYPE + SYNTAX IgmpSnoopingMrouterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about IGMP Snooping Mrouter Port on VLAN." + INDEX { igmpSnoopingVlanid, igmpSnoopingmrouterPort} + ::= { igmpSnoopingMrouterPortTable 1 } + +IgmpSnoopingMrouterPortEntry ::= + SEQUENCE { + igmpSnoopingVlanid + Integer32, + igmpSnoopingmrouterPort + Integer32, + igmpSnoopingmrouterPortRowStatus +RowStatus + } + +igmpSnoopingVlanid OBJECT-TYPE + SYNTAX Integer32(1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN identifier of this mrouter port." + ::= { igmpSnoopingMrouterPortEntry 1 } + +igmpSnoopingmrouterPort OBJECT-TYPE + SYNTAX Integer32 (1..1152) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "mrouter port ifindex . + 1~1024 is switch port, 1025~1151 is agg port(agg1~127)." + ::= { igmpSnoopingMrouterPortEntry 2 } + +igmpSnoopingmrouterPortRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { igmpSnoopingMrouterPortEntry 3 } + +igmpSnoopingGrpNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Configure to get IGMP Snooping total group number." + ::= { lswIgmpsnoopingMibObject 12 } + +igmpSnoopingGrplimitReach NOTIFICATION-TYPE + OBJECTS { configSave } + STATUS current + DESCRIPTION + "Igmp snooping group record reaches total limit" + ::= { lswIgmpsnoopingTrap 1 } + +igmpSnoopingVlanGrplimitReach NOTIFICATION-TYPE + OBJECTS { configSave } + STATUS current + DESCRIPTION + "Igmp snooping group record reaches limit on vlan" + ::= { lswIgmpsnoopingTrap 2 } + +igmpSnoopingVlanQuerierSwitch NOTIFICATION-TYPE + OBJECTS { igmpSnoopingVlanQuerierOperationalAddress } + STATUS current + DESCRIPTION + "Igmp snooping group querier changes" + ::= { lswIgmpsnoopingTrap 3 } + +-- Sub Module: LINKAGG + + +-- +-- for load balance +-- + + +linkAggLoadBalance OBJECT-TYPE + SYNTAX BITS { + dst-mac(0), + src-mac(1), + src-ip(2), + dst-ip(3), + src-port(4), + dst-port(5), + ip-protocol(6), + vxlan-vni(7), + nvgre-vsid(8), + inner-dst-mac(9), + inner-src-mac(10), + inner-src-ip(11), + inner-dst-ip(12), + inner-src-port(13), + inner-dst-port(14), + inner-ip-protocol(15) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config load balance. + 1 dst-mac. + 2 src-mac. + 3 src-ip. + 4 dst-ip. + 5 src-port. + 6 dst-port. + 7 ip-protocol. + 8 vxlan-vni. + 9 nvgre-vsid. + 10 inner-dst-mac. + 11 inner-src-mac. + 12 inner-src-ip. + 13 inner-dst-ip. + 14 inner-src-port. + 15 inner-dst-port. + 16 inner-ip-protocol." + ::= { linkAgg 1 } + + + +lacpObject OBJECT IDENTIFIER ::= { linkAgg 2 } +-- +-- config lacp system priority +-- +lacpSysPriorityCfg OBJECT IDENTIFIER ::= { lacpObject 1 } +lacpSysPriority OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config lacp system priority." + ::= { lacpSysPriorityCfg 1 } + + + +-- +-- config channel group on port +-- +lacpIfCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpIfCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for lacp configuration on interface." + ::= { lacpObject 2 } + + + +lacpIfCfgEntry OBJECT-TYPE + SYNTAX LacpIfCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for lacp configuration on interface." + INDEX + { + lacpIfCfgAdminAggNumber, ifIndex + } + ::= { lacpIfCfgTable 1 } + +LacpIfCfgEntry ::= + SEQUENCE + { + lacpIfCfgAdminAggNumber + Integer32, + lacpIfCfgMode + INTEGER, + lacpIfCfgRowStatus + RowStatus + } + + + +lacpIfCfgAdminAggNumber OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Config channel group number." + ::= { lacpIfCfgEntry 1 } + + + +lacpIfCfgMode OBJECT-TYPE + SYNTAX INTEGER + { + passive(1), + active(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The channel group mode." + ::= { lacpIfCfgEntry 2 } + + +lacpIfCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { lacpIfCfgEntry 3 } + + +-- +-- config lacp parameter on port +-- + +lacpIfCfgParaTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpIfCfgParaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for lacp configuration on interface." + ::= { lacpObject 3 } + + + +lacpIfCfgParaEntry OBJECT-TYPE + SYNTAX LacpIfCfgParaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for lacp configuration on interface." + INDEX + { + ifIndex + } + ::= { lacpIfCfgParaTable 1 } + +LacpIfCfgParaEntry ::= + SEQUENCE { + lacpIfCfgParaPriority + Integer32, + lacpIfCfgParaTimeOut + INTEGER + } + +lacpIfCfgParaPriority OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config lacp priority on interface." + ::= { lacpIfCfgParaEntry 1 } + + +lacpIfCfgParaTimeOut OBJECT-TYPE + SYNTAX INTEGER + { + short(1), + long(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config lacp expire timer on interface." + ::= { lacpIfCfgParaEntry 2 } + + +-- +-- display port state +-- + + +lacpPortStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpPortStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying port state of interface." + ::= { lacpObject 4 } + + +lacpPortStateEntry OBJECT-TYPE + SYNTAX LacpPortStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for lacp configuration on interface." + INDEX + { + lacpPortStateGroupNum, ifIndex + } + ::= { lacpPortStateTable 1 } + + +LacpPortStateEntry ::= + SEQUENCE { + lacpPortStateGroupNum + Integer32, + lacpPortState + OCTET STRING + } + +lacpPortStateGroupNum OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display port state." + ::= { lacpPortStateEntry 1 } + +lacpPortState OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display port state." + ::= { lacpPortStateEntry 2 } + + + +-- +-- display lacp actor state +-- + +lacpActorStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpActorStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying actor state." + ::= { lacpObject 5 } + + + +lacpActorStateEntry OBJECT-TYPE + SYNTAX LacpActorStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying actor state." + INDEX + { + lacpActorGroupNum, ifIndex + } + ::= { lacpActorStateTable 1 } + +LacpActorStateEntry ::= + SEQUENCE { + lacpActorGroupNum + Integer32, + lacpActorSystemId + OCTET STRING, + lacpActorPortNum + Integer32, + lacpActorPortTransitPduType + OCTET STRING, + lacpActorPortMode + OCTET STRING, + lacpActorPortPriority + Integer32, + lacpActorPortOperKey + Integer32, + lacpActorPortStatsFlag + OCTET STRING, + lacpActorPortActivity + OCTET STRING, + lacpActorPortTimeout + OCTET STRING, + lacpActorPortAggregation + OCTET STRING, + lacpActorPortSynchronization + OCTET STRING, + lacpActorPortCollecting + OCTET STRING, + lacpActorPortDistributing + OCTET STRING, + lacpActorPortDefaulted + OCTET STRING, + lacpActorPortExpired + OCTET STRING + } + + +lacpActorGroupNum OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display actor group number." + ::= { lacpActorStateEntry 1 } + +lacpActorSystemId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor system id." + ::= { lacpActorStateEntry 2 } + + +lacpActorPortNum OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port number." + ::= { lacpActorStateEntry 3 } + + +lacpActorPortTransitPduType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port number. It should be 'fast' or 'slow'. " + ::= { lacpActorStateEntry 4 } + + +lacpActorPortMode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port mode. It should be 'active' or 'passive'." + ::= { lacpActorStateEntry 5 } + +lacpActorPortPriority OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port priority." + ::= { lacpActorStateEntry 6 } + + +lacpActorPortOperKey OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port operate key." + ::= { lacpActorStateEntry 7 } + + + +lacpActorPortStatsFlag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port stats flag." + ::= { lacpActorStateEntry 8 } + + + +lacpActorPortActivity OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port activity. It should be 'active' or 'passive'." + ::= { lacpActorStateEntry 9 } + + +lacpActorPortTimeout OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port timeout. It should be 'short' or 'long'." + ::= { lacpActorStateEntry 10 } + + + +lacpActorPortAggregation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port number. It should be 'yes' or 'no'." + ::= { lacpActorStateEntry 11 } + +lacpActorPortSynchronization OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port synchronization. It should be 'yes' or 'no'." + ::= { lacpActorStateEntry 12 } + + +lacpActorPortCollecting OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port collecting. It should be 'yes' or 'no'." + ::= { lacpActorStateEntry 13 } + +lacpActorPortDistributing OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port distributing. It should be 'yes' or 'no'." + ::= { lacpActorStateEntry 14 } + +lacpActorPortDefaulted OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port defaulted. It should be 'yes' or 'no'." + ::= { lacpActorStateEntry 15 } + + +lacpActorPortExpired OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display actor port expired . It should be 'yes' or 'no'." + ::= { lacpActorStateEntry 16 } + + + + + +-- +-- display lacp neighbor state +-- +lacpNeighborStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpNeighborStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying neighbor state." + ::= { lacpObject 6 } + + + +lacpNeighborStateEntry OBJECT-TYPE + SYNTAX LacpNeighborStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying neighbor state." + INDEX + { + lacpNeighborGroupNum, ifIndex + } + ::= { lacpNeighborStateTable 1 } + +LacpNeighborStateEntry ::= + SEQUENCE { + lacpNeighborGroupNum + Integer32, + lacpNeighborSystemId + OCTET STRING, + lacpNeighborPortNum + Integer32, + lacpNeighborPortTransitPduType + OCTET STRING, + lacpNeighborPortMode + OCTET STRING, + lacpNeighborPortPriority + Integer32, + lacpNeighborOperKey + Integer32, + lacpNeighborPortStatsFlag + OCTET STRING, + lacpNeighborPortActivity + OCTET STRING, + lacpNeighborPortTimeout + OCTET STRING, + lacpNeighborPortAggregation + OCTET STRING, + lacpNeighborPortSynchronization + OCTET STRING, + lacpNeighborPortCollecting + OCTET STRING, + lacpNeighborPortDistributing + OCTET STRING, + lacpNeighborPortDefaulted + OCTET STRING, + lacpNeighborPortExpired + OCTET STRING + } + +lacpNeighborGroupNum OBJECT-TYPE + SYNTAX Integer32(1..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "display neighbor group number." + ::= { lacpNeighborStateEntry 1 } + + +lacpNeighborSystemId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor system id." + ::= { lacpNeighborStateEntry 2 } + + +lacpNeighborPortNum OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor port number." + ::= { lacpNeighborStateEntry 3 } + + +lacpNeighborPortTransitPduType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor port transmit pdu. It should be 'fast' or 'slow'." + ::= { lacpNeighborStateEntry 4 } + + +lacpNeighborPortMode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor port mode. It should be 'active' or 'passive'." + ::= { lacpNeighborStateEntry 5 } + + +lacpNeighborPortPriority OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor port number." + ::= { lacpNeighborStateEntry 6 } + +lacpNeighborOperKey OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor operational key." + ::= { lacpNeighborStateEntry 7 } + +lacpNeighborPortStatsFlag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag." + ::= { lacpNeighborStateEntry 8 } + + + +lacpNeighborPortActivity OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'active' or 'passive'." + ::= { lacpNeighborStateEntry 9 } + +lacpNeighborPortTimeout OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'short' or 'long'." + ::= { lacpNeighborStateEntry 10 } + +lacpNeighborPortAggregation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'yes' or 'no'." + ::= { lacpNeighborStateEntry 11 } + +lacpNeighborPortSynchronization OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'yes' or 'no'." + ::= { lacpNeighborStateEntry 12 } + + +lacpNeighborPortCollecting OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'yes' or 'no'." + ::= { lacpNeighborStateEntry 13 } + +lacpNeighborPortDistributing OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'yes' or 'no'." + ::= { lacpNeighborStateEntry 14 } + +lacpNeighborPortDefaulted OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'yes' or 'no'." + ::= { lacpNeighborStateEntry 15 } + +lacpNeighborPortExpired OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor stats flag. It should be 'yes' or 'no'." + ::= { lacpNeighborStateEntry 16 } + + + +-- +-- +-- +lacpCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF LacpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying neighbor state." + ::= { lacpObject 7 } + + + +lacpCounterEntry OBJECT-TYPE + SYNTAX LacpCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used for displaying neighbor state." + INDEX + { + lacpCounterGroupNum + } + ::= { lacpCounterTable 1 } + + LacpCounterEntry ::= + SEQUENCE + { + lacpCounterGroupNum + Integer32, + lacpCounterSendPduCnt + Integer32, + lacpCounterRecvPduCnt + Integer32, + lacpCounterSendErrPktCnt + Integer32, + lacpCounterRecvErrPktCnt + Integer32 + } + +lacpCounterGroupNum OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display lacp group number." + ::= { lacpCounterEntry 1 } + +lacpCounterSendPduCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display lacp send pdu counts." + ::= { lacpCounterEntry 2 } + +lacpCounterRecvPduCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor receive pdu counts." + ::= { lacpCounterEntry 3 } + + +lacpCounterSendErrPktCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor send error packet counts." + ::= { lacpCounterEntry 4 } + + + +lacpCounterRecvErrPktCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display neighbor recevie error packet counts." + ::= { lacpCounterEntry 5 } + + + +-- +-- clear lacp counter +-- + lacpClearCntCfg OBJECT IDENTIFIER ::= { lacpObject 8 } +lacpClearCounter OBJECT-TYPE + SYNTAX Integer32 (0..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear lacp counter. The system will clear all lacp's couter if the value is '0'." + ::= { lacpClearCntCfg 1 } + + + + + staticLinkAggObject OBJECT IDENTIFIER ::= { linkAgg 3 } +-- +-- +-- static link aggregation table +-- + +staticLinkAggTable OBJECT-TYPE + SYNTAX SEQUENCE OF StaticLinkAggEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the link aggregator number, name and + configure type and memberlist." + ::= { staticLinkAggObject 1 } + +staticLinkAggEntry OBJECT-TYPE + SYNTAX StaticLinkAggEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the link aggregator number, name and configure type + and memberlist." + + INDEX { + staticLinkAggNumber, + ifIndex + } + ::= { staticLinkAggTable 1 } + +StaticLinkAggEntry ::= + SEQUENCE { + staticLinkAggNumber + Integer32, + staticLinkAggIndex + Integer32, + staticLinkAggName + OCTET STRING, + staticLinkAggMemberIndex + Integer32, + staticLinkAggMemberName + OCTET STRING, + staticLinkAggMemberEnable + INTEGER, + staticLinkAggMemberRowStatus + RowStatus + } + +staticLinkAggNumber OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The number of Link aggregator interface.This is the index of Link + Aggregator table." + ::= { staticLinkAggEntry 1 } + +staticLinkAggIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of link aggregator interface." + ::= { staticLinkAggEntry 2 } + +staticLinkAggName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of link aggregator interface." + ::= { staticLinkAggEntry 3 } + +staticLinkAggMemberIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of interface member added to link aggregator." + ::= { staticLinkAggEntry 4 } + +staticLinkAggMemberName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of interface member added to link aggregator." + ::= { staticLinkAggEntry 5 } + +staticLinkAggMemberEnable OBJECT-TYPE + SYNTAX INTEGER + { + down(0), + bundle(1), + adminDown(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The member is Bundle when the value is 1. + the member is down when the value is 0. + the member is admin down when the value is 2." + ::= { staticLinkAggEntry 6 } + +staticLinkAggMemberRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { staticLinkAggEntry 7 } + + +-- Sub Module: QBRIDGEEXT + + + VlanIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d " + STATUS current + DESCRIPTION + "A value used to index per-VLAN tables: values of 0 and + 4095 are not permitted.If the value is between 1 and + 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with + global scope within a given bridged domain (see VlanId + textual convention).If the value is greater than 4095, + + + then it represents a VLAN with scope local to the + particular agent, i.e., one without a global VLAN-ID + assigned to it.Such VLANs are outside the scope of + IEEE 802.1Q, but it is convenient to be able to manage them + in the same way using this MIB." + SYNTAX Unsigned32 + + VlanList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Each octet within this value specifies a set of eight + VLANs." + SYNTAX OCTET STRING (SIZE(0..256)) + + VlanClassRuleIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d " + STATUS current + DESCRIPTION + "A value used to index vlan class rule tables: values of 0 to + 4095 are permitted." + SYNTAX INTEGER (0..4095) + + VlanClassGroupIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d " + STATUS current + DESCRIPTION + "A value used to index vlan class group tables: values of 0 to + 31 are permitted." + SYNTAX INTEGER (0..31) + + VlanClassProtocol ::= TEXTUAL-CONVENTION + -- DISPLAY-HINT "d " + STATUS current + DESCRIPTION + "A value used to index vlan class Protocols." + SYNTAX INTEGER + { + ip(1), + ipv4(2), + ipv6(3), + mpls(4), + mplsmcast(5), + arp(6), + rarp(7), + pppoe(11) + } + + VlanClassEnableBase ::= TEXTUAL-CONVENTION + -- DISPLAY-HINT "d " + STATUS current + DESCRIPTION + "A value used to index vlan class enable based." + SYNTAX INTEGER + { + mac(1), + ip(2), + protocol(4) + } + +VlanClassIpv6Address ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 addresses. + This is a binary string of 16 octets in network byte-order." + SYNTAX OCTET STRING (SIZE (16)) +-- +-- groups in the QBRIDGEEXT MIB +-- + + vlanExt OBJECT IDENTIFIER ::= { qBridgeExt 1 } + fdbExt OBJECT IDENTIFIER ::= { qBridgeExt 2 } + vlanClass OBJECT IDENTIFIER ::= { qBridgeExt 3 } + + +-- +-- vlanExt group +-- + + +vlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about VLAN entries + of the device." + ::= { vlanExt 1 } + +vlanEntry OBJECT-TYPE + SYNTAX VlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific VLAN of the device." + INDEX { vlanIndex } + ::= { vlanTable 1 } + +VlanEntry ::= + SEQUENCE { + vlanIndex + VlanIndex, + vlanName + OCTET STRING, + vlanStatus + INTEGER, + vlanRowStatus + RowStatus , + vlanIfConfig + INTEGER, + vlanStatsPktIn + Counter64, + vlanStatsPktOut + Counter64, + vlanStatsByteIn + Counter64, + vlanStatsByteOut + Counter64, + vlanStatsEn + INTEGER + } + +vlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An forward ID, which may be same as VLAN ID in IVL mode." + ::= { vlanEntry 1 } + +vlanName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN." + ::= { vlanEntry 2 } + +vlanStatus OBJECT-TYPE + SYNTAX INTEGER{ + inactive(1), + active(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An administratively VLANStatus . + 1 Inactive; + 2 Active(2)." + ::= { vlanEntry 3 } + +vlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo(4) and Destroy(6) and Active(1)." + ::= { vlanEntry 4 } + + +vlanIfConfig OBJECT-TYPE + SYNTAX INTEGER + { + create(1), + destroy(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object create/destroy vlan interface. + 1 Create. + 2 Destroy." + ::= { vlanEntry 5 } + +vlanStatsPktIn OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packtes number of Vlan." + ::= { vlanEntry 7 } + +vlanStatsPktOut OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packtes number of Vlan." + ::= { vlanEntry 8 } + +vlanStatsByteIn OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of Vlan." + ::= { vlanEntry 9 } + +vlanStatsByteOut OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of Vlan." + ::= { vlanEntry 10 } + +vlanStatsEn OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize Active(1) and Inactive(0)." + ::= { vlanEntry 11 } + +portVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about interface's VLAN properties." + ::= { vlanExt 2 } + +portVlanEntry OBJECT-TYPE + SYNTAX PortVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific interface's VLAN properties." + INDEX { ifIndex } + ::= { portVlanTable 1 } + +PortVlanEntry ::= + SEQUENCE { + vlanTagType + INTEGER, + pvid + INTEGER, + ingressFilter + INTEGER, + allowedVlans + VlanList, + allowedVlanAdd + VlanList, + allowedVlanDel + VlanList + } + +vlanTagType OBJECT-TYPE + SYNTAX INTEGER{ + all(1), + qinq(2), + untagged(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "all(1) -- trunk mode + qinq(2) -- qinq mode + untagged(3) -- access mode." + ::= { portVlanEntry 1 } + +pvid OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN. + Vid range is 2~4094." + ::= { portVlanEntry 2 } + + +ingressFilter OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An administratively assigned string, which may be used to identify the VLAN. + 1 Enable. + 2 Disable." + ::= { portVlanEntry 3 } + +allowedVlans OBJECT-TYPE + SYNTAX VlanList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VLAN list of this port, should use the 3 format below: + all - all VLANs in the VLAN database + none - none VLAN + string such as 1,3,10-20,4094 + " + ::= { portVlanEntry 4 } + +allowedVlanAdd OBJECT-TYPE + SYNTAX VlanList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VLAN list to add to this port, string such as 1,3,10-20,4094. + Use for set node, when get node return meaningless." + ::= { portVlanEntry 5 } + +allowedVlanDel OBJECT-TYPE + SYNTAX VlanList + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VLAN list to remove from this port, string such as 1,3,10-20,4094. + Use for set node, when get node return meaningless." + ::= { portVlanEntry 6 } + +vlanReplaceDscpExpTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanReplaceDscpExpEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A table that contains information about VLAN Replace Dscp/Exp + of the device. + Not support on this version" + ::= { vlanExt 3 } + +vlanReplaceDscpExpEntry OBJECT-TYPE + SYNTAX VlanReplaceDscpExpEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Information about a specific VLAN of the device." + INDEX { vlanReplaceDscpExpIndex } + ::= { vlanReplaceDscpExpTable 1 } + +VlanReplaceDscpExpEntry ::= + SEQUENCE { + vlanReplaceDscpExpIndex + VlanIndex, + vlanReplaceDscpExpEn + INTEGER + } + +vlanReplaceDscpExpIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Index of VLAN ID in IVL mode." + ::= { vlanReplaceDscpExpEntry 1 } + +vlanReplaceDscpExpEn OBJECT-TYPE + SYNTAX INTEGER{ + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Status of replace the dscp/exp field in packets on egress for specified VLAN.. + 1 replace dscp/exp; + 2 do not replace dscp/exp." + DEFVAL { disable } + ::= { vlanReplaceDscpExpEntry 2 } + + +-- +-- fdbExt group +-- + +unicastTable OBJECT-TYPE + SYNTAX SEQUENCE OF UnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about unicast entries + for which the device has forwarding and/or filtering + information.This information is used by the + transparent bridging function in determining how to + propagate a received frame." + ::= { fdbExt 1 } + +unicastEntry OBJECT-TYPE + SYNTAX UnicastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific unicast MAC address for + which the device has some forwarding and/or filtering + information." + INDEX { vlanIndex, unicastAddress , fdbPort} + ::= { unicastTable 1 } + +UnicastEntry ::= + SEQUENCE { + unicastVID + VlanIndex, + unicastAddress + MacAddress, + fdbPort + INTEGER, + fdbStatus + INTEGER, + fdbRowStatus +RowStatus + } + +unicastVID OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN identifier of this FDB entry." + ::= { unicastEntry 1 } + +unicastAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unicast MAC address for which the device has forwarding and/or filtering information." + ::= { unicastEntry 2 } + +fdbPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Either the value '0', or the port number." + ::= { unicastEntry 3 } + +fdbStatus OBJECT-TYPE + SYNTAX INTEGER { + static(1), + learned(2), + self(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object clear the MAC address of this system theStatus of this entry. + static(1) - the value of static configured MAC address, used for forwarding. + dynamic(2) - the value of learnt MAC address." + ::= { unicastEntry 4 } + +fdbRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo(4) and Destroy(6) and Active(1). + Can't destroy a learned fdb entry. Using the node addressClearOperation can destroy learned fdb entries." + ::= { unicastEntry 5 } + +multicastTable OBJECT-TYPE + SYNTAX SEQUENCE OF MulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about unicast entries + for which the device has forwarding and/or filtering + information.This information is used by the + transparent bridging function in determining how to + propagate a received frame." + ::= { fdbExt 2 } + +multicastEntry OBJECT-TYPE + SYNTAX MulticastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific multicast MAC address for + which the device has some forwarding and/or filtering + information." + INDEX { vlanIndex, multicastAddress, destinationPort} + ::= { multicastTable 1 } + +MulticastEntry ::= + SEQUENCE { + multicastVID + VlanIndex, + multicastAddress + MacAddress, + destinationPort + Integer32, + multicastRowStatus +RowStatus + } + +multicastVID OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN identifier of this multicast entry." + ::= { multicastEntry 1 } + +multicastAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A multicast MAC address for which the device has + forwarding and/or filtering information." + ::= { multicastEntry 2 } + +destinationPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A destination port of the multicast MAC address for which the device has + forwarding and/or filtering information." + ::= { multicastEntry 3 } + +multicastRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + Can't destroy a learned fdb entry. Using the node addressClearOperation can destroy learned fdb entries. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { multicastEntry 4 } + +filterTable OBJECT-TYPE + SYNTAX SEQUENCE OF FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about filter entries + for which the device has filtering information." + ::= { fdbExt 3 } + +filterEntry OBJECT-TYPE + SYNTAX FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific filter MAC address for + which the device has filtering information." + INDEX { filterAddress } + ::= { filterTable 1 } + +FilterEntry ::= + SEQUENCE { + filterAddress + MacAddress, + filterRowStatus +RowStatus + } + +filterAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unicast MAC address for which the device has filtering information." + ::= { filterEntry 1 } + +filterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { filterEntry 2 } + +addressClearOperation OBJECT-TYPE + SYNTAX INTEGER{ + static(1), + dynamic(2), + filter(3), + multicast(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object clear the MAC address of this system theStatus of this entry. + static(1) - clear those entris which are created by management. + dynamic(2) - clear those entris which are created by learning. + filter(3) - clear those MAC filter entris. + multicast(4) - clear all multicast entries configured through management." + ::= { fdbExt 4 } + +addressAgingTime OBJECT-TYPE + SYNTAX INTEGER (10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Dynamic mac address aging time, the unit of which is second. + Ageing-time range 10~1000000" + ::= { fdbExt 5 } + +fdbExtTrap OBJECT IDENTIFIER ::= { fdbExt 10 } + +fdbExtDbFull NOTIFICATION-TYPE + OBJECTS { vlanIndex } + STATUS current + DESCRIPTION + "Fdb DB full." + ::= { fdbExtTrap 1 } + +-- +-- vlanClass +-- + +--VlanClassRuleIp +vlanClassRuleIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanClassRuleIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about filter entries + for which the device has filtering information." + ::= { vlanClass 1 } + +vlanClassRuleIpEntry OBJECT-TYPE + SYNTAX VlanClassRuleIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific filter IP address for which the device has + filtering information." + INDEX { vlanClassRuleIpIndex, vlanClassRuleIpAddress,vlanClassRuleIpAddressLen, vlanClassIpVlanID} + ::= { vlanClassRuleIpTable 1 } + +VlanClassRuleIpEntry ::= + SEQUENCE { + vlanClassRuleIpIndex + VlanClassRuleIndex, + vlanClassRuleIpAddress + IpAddress, + vlanClassRuleIpAddressLen + Integer32, + vlanClassIpVlanID + VlanIndex, + vlanClassRuleIpRowStatus + RowStatus + } +vlanClassRuleIpIndex OBJECT-TYPE + SYNTAX VlanClassRuleIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Vlan Class rule ID." + ::= { vlanClassRuleIpEntry 1 } + +vlanClassRuleIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unicast IP address for which the device has filtering information." + ::= { vlanClassRuleIpEntry 2 } + +vlanClassRuleIpAddressLen OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the mask lenghth of ip." + ::= { vlanClassRuleIpEntry 3 } + +vlanClassIpVlanID OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vlan ID which is mapped for the entry." + ::= { vlanClassRuleIpEntry 4 } + +vlanClassRuleIpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { vlanClassRuleIpEntry 5 } + + --VlanClassRuleMac +vlanClassRuleMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanClassRuleMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about filter entries + for which the device has filtering information." + ::= { vlanClass 2 } + +vlanClassRuleMacEntry OBJECT-TYPE + SYNTAX VlanClassRuleMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific filter MAC address for + which the device has filtering information." + INDEX { vlanClassRuleMacIndex, vlanClassRuleMacAddress,vlanClassMacVlanID} + ::= { vlanClassRuleMacTable 1 } + +VlanClassRuleMacEntry ::= + SEQUENCE { + vlanClassRuleMacIndex + VlanClassRuleIndex, + vlanClassRuleMacAddress + MacAddress, + vlanClassMacVlanID + VlanIndex, + vlanClassRuleMacRowStatus +RowStatus + } +vlanClassRuleMacIndex OBJECT-TYPE + SYNTAX VlanClassRuleIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Vlan Class rule ID." + ::= { vlanClassRuleMacEntry 1 } + +vlanClassRuleMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unicast MAC address for which the device has filtering information." + ::= { vlanClassRuleMacEntry 2 } + +vlanClassMacVlanID OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vlan ID which is mapped for the entry." + ::= { vlanClassRuleMacEntry 3 } + +vlanClassRuleMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { vlanClassRuleMacEntry 4 } + + --VlanClassRuleProtocol +vlanClassRuleProtocolTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanClassRuleProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about filter entries + for which the device has filtering information." + ::= { vlanClass 3 } + +vlanClassRuleProtocolEntry OBJECT-TYPE + SYNTAX VlanClassRuleProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific filter Protocol for + which the device has filtering information." + INDEX { vlanClassRuleProtocolIndex, vlanClassRuleProtocol,vlanClassProtocolVlanID} + ::= { vlanClassRuleProtocolTable 1 } + +VlanClassRuleProtocolEntry ::= + SEQUENCE { + vlanClassRuleProtocolIndex + VlanClassRuleIndex, + vlanClassRuleProtocol + VlanClassProtocol, + vlanClassProtocolVlanID + VlanIndex, + vlanClassRuleProtocolRowStatus +RowStatus + } +vlanClassRuleProtocolIndex OBJECT-TYPE + SYNTAX VlanClassRuleIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Vlan Class rule ID." + ::= { vlanClassRuleProtocolEntry 1 } + +vlanClassRuleProtocol OBJECT-TYPE + SYNTAX VlanClassProtocol + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The protocol for which the device has filtering information. + 2504 means ARP + 32821 means RARP + 2048 means IPv4 + 34525 means IPv6 + 34887 means MPLS + 34888 means MPLS Multicast + 13 means PPPOE + " + ::= { vlanClassRuleProtocolEntry 2 } + +vlanClassProtocolVlanID OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vlan ID which is mapped for the entry." + ::= { vlanClassRuleProtocolEntry 3 } + +vlanClassRuleProtocolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { vlanClassRuleProtocolEntry 4 } + + --VlanClassRuleIpv6 +--vlanClassRuleIpv6Table OBJECT-TYPE +-- SYNTAX SEQUENCE OF VlanClassRuleIpv6Entry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "A table that contains information about filter entries +-- for which the device has filtering information." +-- ::= { vlanClass 4 } + +--vlanClassRuleIpv6Entry OBJECT-TYPE +-- SYNTAX VlanClassRuleIpv6Entry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Information about a specific filter IPv6 address for which the device +-- has filtering information." +-- INDEX { vlanClassRuleIpv6Index, vlanClassRuleIpv6Address,vlanClassRuleIpv6AddressLen, vlanClassIpv6VlanID} +-- ::= { vlanClassRuleIpv6Table 1 } +-- +--VlanClassRuleIpv6Entry ::= +-- SEQUENCE { +-- vlanClassRuleIpv6Index +-- VlanClassRuleIndex, +-- vlanClassRuleIpv6Address +-- VlanClassIpv6Address, +-- vlanClassRuleIpv6AddressLen +-- Integer32, +-- vlanClassIpv6VlanID +-- VlanIndex, +-- vlanClassRuleIpv6RowStatus +--RowStatus +-- } +--vlanClassRuleIpv6Index OBJECT-TYPE +-- SYNTAX VlanClassRuleIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "An Vlan Class rule ID." +-- ::= { vlanClassRuleIpv6Entry 1 } +-- +--vlanClassRuleIpv6Address OBJECT-TYPE +-- SYNTAX VlanClassIpv6Address +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "A unicast IP address for which the device has filtering information." +-- ::= { vlanClassRuleIpv6Entry 2 } +-- +--vlanClassRuleIpv6AddressLen OBJECT-TYPE +-- SYNTAX Integer32 (0..65535) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "This object indicates the mask lenghth of ip." +-- ::= { vlanClassRuleIpv6Entry 3 } +-- +--vlanClassIpv6VlanID OBJECT-TYPE +-- SYNTAX VlanIndex +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Vlan ID which is mapped for the entry." +-- ::= { vlanClassRuleIpv6Entry 4 } +-- +--vlanClassRuleIpv6RowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row.Now only realize CreateAndGo +-- and Destroy and Active." +-- ::= { vlanClassRuleIpv6Entry 5 } +-- + +--VlanClassGroup +vlanClassGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanClassGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about filter entries + for which the device has filtering information." + ::= { vlanClass 5 } + +vlanClassGroupEntry OBJECT-TYPE + SYNTAX VlanClassGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific filter group for + which the device has filtering information." + INDEX { vlanClassGroupIndex,vlanClassRuleIndex } + ::= { vlanClassGroupTable 1 } + +VlanClassGroupEntry ::= + SEQUENCE { + vlanClassGroupIndex + VlanClassGroupIndex, + vlanClassRuleIndex + VlanClassRuleIndex, + vlanClassGroupRowStatus +RowStatus + } +vlanClassGroupIndex OBJECT-TYPE + SYNTAX VlanClassGroupIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Vlan Class group ID." + ::= { vlanClassGroupEntry 1 } + +vlanClassRuleIndex OBJECT-TYPE + SYNTAX VlanClassRuleIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vlan Class rule index." + ::= { vlanClassGroupEntry 2 } + +vlanClassGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { vlanClassGroupEntry 3 } + +--VlanClass Enable inteface +vlanClassEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanClassEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains information about filter entries + for which the device has filtering information." + ::= { vlanClass 6 } + +vlanClassEnableEntry OBJECT-TYPE + SYNTAX VlanClassEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a specific filter for + which the device has filtering information." + INDEX { vlanClassEnableIfIndex} + ::= { vlanClassEnableTable 1 } + +VlanClassEnableEntry ::= + SEQUENCE { + vlanClassEnableIfIndex + Integer32, + vlanClassEnableGroup + VlanClassGroupIndex, + vlanClassEnableBase + VlanClassEnableBase, + vlanClassEnableRowStatus + RowStatus + } +vlanClassEnableIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index which is enabled for Vlan Class ." + ::= { vlanClassEnableEntry 1 } + +vlanClassEnableGroup OBJECT-TYPE + SYNTAX VlanClassGroupIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Vlan Class group ID. + Group ID range is 0~31." + ::= { vlanClassEnableEntry 2 } + +vlanClassEnableBase OBJECT-TYPE + SYNTAX VlanClassEnableBase + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Vlan ID which is mapped for the entry." + ::= { vlanClassEnableEntry 3 } + +vlanClassEnableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { vlanClassEnableEntry 5 } + + +-- Sub Module: DOT1XEXT + + +-- ================================================================== +-- +-- =====================object definition begin====================== +-- +-- ================================================================== + + + dot1xExtMaxReauthReqTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1xExtMaxReauthReqEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of login entry." + ::= { dot1xExt 1 } + + dot1xExtMaxReauthReqEntry OBJECT-TYPE + SYNTAX Dot1xExtMaxReauthReqEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login entry" + INDEX { dot1xExtMaxReauthReqIndex} + ::= { dot1xExtMaxReauthReqTable 1 } + + Dot1xExtMaxReauthReqEntry ::= + SEQUENCE + { + dot1xExtMaxReauthReqIndex + Integer32, + dot1xExtMaxReauthReqVersion + INTEGER, + dot1xExtMaxReauthReqNum + Integer32, + dot1xExtMaxReqNum + Integer32 + } + + dot1xExtMaxReauthReqIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Index." + ::= { dot1xExtMaxReauthReqEntry 1 } + + dot1xExtMaxReauthReqVersion OBJECT-TYPE + SYNTAX INTEGER + { + version1(1), + version2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the protocol version and the default number is 2.The range is 1 to 2. " + DEFVAL {version2} + ::= { dot1xExtMaxReauthReqEntry 2 } + + dot1xExtMaxReauthReqNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Number of reauthentication attempts before becoming unauthorized. The range is 1 to 10. Not supported now" + ::= { dot1xExtMaxReauthReqEntry 3 } + + dot1xExtMaxReqNum OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Number of times that the switch sends an EAP-request/identity frame to the client. The range is 1 to 10." + DEFVAL {2} + ::= { dot1xExtMaxReauthReqEntry 4 } + + -- IEEE 802.1X VLAN policy + dot1xExtVlanPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1xExtVlanPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of dot1x guest vlan configuration." + ::= { dot1xExt 2 } + + dot1xExtVlanPolicyEntry OBJECT-TYPE + SYNTAX Dot1xExtVlanPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of dot1x guest vlan configuration." + INDEX { dot1xExtVlanPolicyIndex} + ::= { dot1xExtVlanPolicyTable 1 } + + Dot1xExtVlanPolicyEntry ::= + SEQUENCE + { + dot1xExtVlanPolicyIndex + Integer32, + dot1xExtGuestVlan + Integer32 + } + + dot1xExtVlanPolicyIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Index." + ::= { dot1xExtVlanPolicyEntry 1 } + + dot1xExtGuestVlan OBJECT-TYPE + SYNTAX Integer32 (0|2..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "When you configure a guest VLAN, clients that are not IEEE 802.1x-capable + are put into the guest VLAN when the server does not receive a response to + its EAP request/identity frame. Clients that are IEEE 802.1x-capable but + fail authentication not granted network access.The vlan range is + between [2-4094], 0 means guest vlan is not configured." + DEFVAL {0} + ::= { dot1xExtVlanPolicyEntry 2 } + + +-- IEEE 802.1X global resource +dot1xExtMacBasedResource OBJECT IDENTIFIER ::= { dot1xExt 3 } +dot1xExtMacBasedResourceMaxInterface OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Max count of dot1x mac based interface. " + ::= { dot1xExtMacBasedResource 1 } + +dot1xExtMacBasedResourceCurrentInterface OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current count of dot1x mac based interface. " + ::= { dot1xExtMacBasedResource 2 } + +dot1xExtMacBasedResourceMaxUser OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Max count of dot1x mac based users (only include hardware accept or reject entries). " + ::= { dot1xExtMacBasedResource 3 } + +dot1xExtMacBasedResourceCurrentUser OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current count of dot1x mac based users (only include hardware accept or reject entries). " + ::= { dot1xExtMacBasedResource 4 } + +dot1xExtMacBasedResourceMaxUserAll OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Max count of all dot1x mac based users (include waiting entries). " + ::= { dot1xExtMacBasedResource 5 } + +dot1xExtMacBasedResourceCurrentUserAll OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current count of all dot1x mac based users (include waiting entries). " + ::= { dot1xExtMacBasedResource 6 } + +-- IEEE 802.1X Mac based config +dot1xExtMacBasedConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1xExtMacBasedConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of dot1x mac based interface." + ::= { dot1xExt 4 } + +dot1xExtMacBasedConfigEntry OBJECT-TYPE + SYNTAX Dot1xExtMacBasedConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Dot1x mac based interface entry" + INDEX { dot1xExtMacBasedConfigIndex} + ::= { dot1xExtMacBasedConfigTable 1 } + +Dot1xExtMacBasedConfigEntry ::= + SEQUENCE + { + dot1xExtMacBasedConfigIndex + Integer32, + dot1xExtMacBasedConfigMode + INTEGER, + dot1xExtMacBasedConfigBypassEn + INTEGER, + dot1xExtMacBasedConfigMaxUser + Integer32, + dot1xExtMacBasedConfigCurrentUser + Integer32, + dot1xExtMacBasedConfigMaxUserAll + Integer32, + dot1xExtMacBasedConfigCurrentUserAll + Integer32 + } + +dot1xExtMacBasedConfigIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Index of interface." + ::= { dot1xExtMacBasedConfigEntry 1 } + +dot1xExtMacBasedConfigMode OBJECT-TYPE + SYNTAX INTEGER + { + port(0), + mac(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Dot1x port mode. 0: dot1x port based mode. 1: dot1x mac based mode." + DEFVAL{port} + ::= { dot1xExtMacBasedConfigEntry 2 } + +dot1xExtMacBasedConfigBypassEn OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Dot1x mac auth bypass function. 0: disable. 1: enable" + DEFVAL{disable} + ::= { dot1xExtMacBasedConfigEntry 3 } + +dot1xExtMacBasedConfigMaxUser OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Max user number of the port (only include hardware accept or reject entries). + Default: by default the max user number of the port is same as the max user number of the system. Different TCAM proflies have different default values." + ::= { dot1xExtMacBasedConfigEntry 4 } + +dot1xExtMacBasedConfigCurrentUser OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Current user number of the port (only include hardware accept or reject entries)" + DEFVAL{0} + ::= { dot1xExtMacBasedConfigEntry 5 } + +dot1xExtMacBasedConfigMaxUserAll OBJECT-TYPE + SYNTAX Integer32 (1..510) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Max user number of the port (include waiting entries)" + ::= { dot1xExtMacBasedConfigEntry 6 } + +dot1xExtMacBasedConfigCurrentUserAll OBJECT-TYPE + SYNTAX Integer32 (0..510) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Current user number of the port (include waiting entries) + Default: by default the max user number of the port is same as the max user number of the system. Different TCAM proflies have different default values. + It should be 2 times large as the max hardware entries number, please reference to dot1xExtMacBasedConfigCurrentUser." + DEFVAL{0} + ::= { dot1xExtMacBasedConfigEntry 7 } + +-- IEEE 802.1X Mac based user entry +dot1xExtMacBasedUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1xExtMacBasedUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of dot1x mac based users." + ::= { dot1xExt 5 } + +dot1xExtMacBasedUserEntry OBJECT-TYPE + SYNTAX Dot1xExtMacBasedUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Dot1x mac based user entry" + INDEX { dot1xExtMacBasedUserIndex, dot1xExtMacBasedUserMac} + ::= { dot1xExtMacBasedUserTable 1 } + +Dot1xExtMacBasedUserEntry ::= + SEQUENCE + { + dot1xExtMacBasedUserIndex + Integer32, + dot1xExtMacBasedUserMac + MacAddress, + dot1xExtMacBasedUserState + INTEGER, + dot1xExtMacBasedUserTimer + Integer32, + dot1xExtMacBasedUserIsBypass + INTEGER, + dot1xExtMacBasedUserInGuestVlan + INTEGER, + dot1xExtMacBasedUserGuestVlanID + Integer32, + dot1xExtMacBasedUserOffLine + INTEGER + } + +dot1xExtMacBasedUserIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Index of interface." + ::= { dot1xExtMacBasedUserEntry 1 } + +dot1xExtMacBasedUserMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Mac address of user" + ::= { dot1xExtMacBasedUserEntry 2 } + +dot1xExtMacBasedUserState OBJECT-TYPE + SYNTAX INTEGER + { + waiting(0), + accept(1), + reject(2), + reauth(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "State of the mac based user entry." + ::= { dot1xExtMacBasedUserEntry 3 } + +dot1xExtMacBasedUserTimer OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Time (seconds) before state changed. " + ::= { dot1xExtMacBasedUserEntry 4 } + +dot1xExtMacBasedUserIsBypass OBJECT-TYPE + SYNTAX INTEGER + { + eapolUser(0), + bypassUser(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Log on Method of the user." + ::= { dot1xExtMacBasedUserEntry 5 } + +dot1xExtMacBasedUserInGuestVlan OBJECT-TYPE + SYNTAX INTEGER + { + no(0), + yes(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "If user is in guest vlan." + ::= { dot1xExtMacBasedUserEntry 6 } + +dot1xExtMacBasedUserGuestVlanID OBJECT-TYPE + SYNTAX Integer32(0|2..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The guest vlan id. If the user is not authenticated by guest vlan, the id should be 0." + ::= { dot1xExtMacBasedUserEntry 7 } + +dot1xExtMacBasedUserOffLine OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + offLine(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use this node to force a MAC user off line. + The default value is 0. + If this node's value is set to 1, the user should be forced offline and this entry should be deleted. + " + DEFVAL {none} + ::= { dot1xExtMacBasedUserEntry 8 } + + +dot1xExtMacBasedClear OBJECT IDENTIFIER ::= { dot1xExt 6 } +dot1xExtMacBasedClearInterface OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a interface to clear all mac users. " + ::= { dot1xExtMacBasedClear 1 } + +-- Sub Module: TRNG + + +-- +-- Node definitions +-- + +trngMibObjects OBJECT IDENTIFIER ::= { timeRange 1 } + + +trngCreateTimerangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TrngCreateTimerangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Creat TimeRange." + ::= { trngMibObjects 1 } + + +trngCreateTimerangeEntry OBJECT-TYPE + SYNTAX TrngCreateTimerangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the entry of trngCreateTimerangeTable." + INDEX { trngIndex } + ::= { trngCreateTimerangeTable 1 } + + +TrngCreateTimerangeEntry ::= + SEQUENCE + { + trngIndex + Integer32, + trngName + OCTET STRING, + trngValidFlag + TruthValue, + trngCreateRowStatus + RowStatus + } + +trngIndex OBJECT-TYPE + SYNTAX Integer32 (1..256) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TimeRange's index." + ::= { trngCreateTimerangeEntry 1 } + + +trngName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "TimeRange's name " + ::= { trngCreateTimerangeEntry 2 } + + +trngValidFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Valid or invalid flag." + ::= { trngCreateTimerangeEntry 3 } + + +trngCreateRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { trngCreateTimerangeEntry 4 } + + +trngAbsoluteTable OBJECT-TYPE + SYNTAX SEQUENCE OF TrngAbsoluteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Creat absoluteness time item of the TimeRange." + ::= { trngMibObjects 2 } + + +trngAbsoluteEntry OBJECT-TYPE + SYNTAX TrngAbsoluteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the entry of trngAbsoluteTable." + INDEX { trngAbsoluteNameIndex } + ::= { trngAbsoluteTable 1 } + + +TrngAbsoluteEntry ::= + SEQUENCE { + trngAbsoluteNameIndex + Integer32, + timerangeAbsoluteStartTime + OCTET STRING, + timerangeAbsoluteEndTime + OCTET STRING, + timerangeAbsolueRowStatus + RowStatus + } + +trngAbsoluteNameIndex OBJECT-TYPE + SYNTAX Integer32 (1..256) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TimeRange's index." + ::= { trngAbsoluteEntry 1 } + +timerangeAbsoluteStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start point of the timerange.The format defined like 'hh:mm:ss,Mon/D/YYYY'. + The Month of the year should be First three letters of the month." + ::= { trngAbsoluteEntry 2 } + + +timerangeAbsoluteEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End point of the timerange.The format defined like 'hh:mm:ss,Mon/D/YYYY'. + The Month of the year should be First three letters of the month." + ::= { trngAbsoluteEntry 3 } + + +timerangeAbsolueRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { trngAbsoluteEntry 4 } + + +trngPeriodicTable OBJECT-TYPE + SYNTAX SEQUENCE OF TrngPeriodicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Creat periodic time item of the TimeRange." + ::= { trngMibObjects 3 } + + +trngPeriodicEntry OBJECT-TYPE + SYNTAX TrngPeriodicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of trngPeriodicTable." + INDEX { trngPeriodicNameIndex } + ::= { trngPeriodicTable 1 } + + +TrngPeriodicEntry ::= + SEQUENCE { + trngPeriodicNameIndex + Integer32, + trngPeriodicStartDayOfWeek + Integer32, + trngPeriodicEndDayOfWeek + Integer32, + timerangePeriodicStartTime + OCTET STRING, + timerangePeriodicEndTime + OCTET STRING, + timerangePeriodicRowStatus + RowStatus + } + +trngPeriodicNameIndex OBJECT-TYPE + SYNTAX Integer32 (1..256) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TimeRange's index." + ::= { trngPeriodicEntry 1 } + +trngPeriodicStartDayOfWeek OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The start day of week. + 1 monday + 2 tuesday + 3 wednesday + 4 thursday + 5 friday + 6 saturday + 7 sunday + 8 daily + 9 weekday + 10 weekend + " + ::= { trngPeriodicEntry 2 } + +trngPeriodicEndDayOfWeek OBJECT-TYPE + SYNTAX Integer32 (1..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " The end day of week. + 1 monday + 2 tuesday + 3 wednesday + 4 thursday + 5 friday + 6 saturday + 7 sunday + " + ::= { trngPeriodicEntry 3 } + +timerangePeriodicStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Start point of this timerange,The format defined like 'hh:mm'." + ::= { trngPeriodicEntry 4 } + + +timerangePeriodicEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "End point of this timerange.The format defined like 'hh:mm'." + ::= { trngPeriodicEntry 5 } + + +timerangePeriodicRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { trngPeriodicEntry 6 } + +-- Sub Module: STPEXTENSIONS + + +BridgeId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The Bridge-Identifier, as used in the Spanning Tree + Protocol, to uniquely identify a bridge.Its first two + octets (in network byte order) contain a priority value, + and its last 6 octets contain the MAC address used to + refer to a bridge in a unique fashion (typically, the + numerically smallest MAC address of all ports on the + bridge)." + SYNTAX OCTET STRING (SIZE (8)) + + +stpExtStpEnable OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether spanning tree protocol is enabled on the device or not. + The meanings of the values are: + enabled(1) - Enable spanning tree protocol; + disabled(2) - Disable spanning tree protocol." + ::= { stpExt 1 } + + +stpExtPathcostStandard OBJECT-TYPE + SYNTAX INTEGER { dot1d1998(1), dot1t(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the administrative spanning tree path cost mode configured on device. + The meanings of the values are: + dot1d1998(1) - the standard of path cost is IEEE 802.1D-1998 standard; + dot1t(2) - the standard of path cost is IEEE 802.1T standard." + + ::= { stpExt 2 } + + +stpExtBpduGuard OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the BpduGuard is enabled on the device or not. + The meanings of the values are: + enable(1) - Enable bpdu-guard globally; + disabled(2) - Disable bpdu-guard globally." + ::= { stpExt 3 } + +stpExtBpduFilter OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the BpduFilter is enabled on the device or not. + The meanings of the values are: + enable(1) - Enable bpdu-filter globally; + disabled(2) - Disable bpdu-filter globally." + ::= { stpExt 4 } + + +stpExtBpduTransparent OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "An indication of whether the BpduTransparent is enabled on the device or not. + If BPDU transparent is enabled(1), Bridge should forward BPDUs as common data + packets; If BPDU transparent is disabled(2), Bridge should send BPDUs to CPU + and discard BPDUs.The default value is disabled(2)." + ::= { stpExt 5 } + +stpExtPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF StpExtPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains extended stp information." + ::= { stpExt 6 } + +stpExtPortEntry OBJECT-TYPE + SYNTAX StpExtPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of extended stp information maintained by each port." + INDEX { stpxpPortIndex } + ::= { stpExtPortTable 1 } + +StpExtPortEntry ::= + SEQUENCE + { + stpxpPortIndex + InterfaceIndex, + stpxRootGuardObjects + INTEGER, + stpxRestrictedTcnObjects + INTEGER, + stpxRestrictedRoleObjects + INTEGER, + stpxEdgePortAdminBpduGuardObjects + INTEGER, + stpxEdgePortOperBpduGuardObjects + INTEGER, + stpxEdgePortAdminBpduFilterObjects + INTEGER, + stpxEdgePortOperBpduFilterObjects + INTEGER, + stpxForceVersionObjects + INTEGER, + stpxLoopGuardObjects + INTEGER + } + +stpxpPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port number of the port for which this entry contains bridge + management information." + ::= { stpExtPortEntry 1 } + +stpxRootGuardObjects OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the RootGuard capability is enabled + on this port or not. + When a port's root guard is enabled(1) , if this port receives + a superior BPDU, this port should be set to discarding state. + The default value is disabled(2)." + ::= { stpExtPortEntry 2 } + +stpxRestrictedTcnObjects OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the RestrictedTcn capability is + enabled on this port or not. + If restricted TCN is enabled(1) on a port , this port should + not propagate received topology change notifications and topology + changes to other Ports.The default value is disabled(2)." + ::= { stpExtPortEntry 3 } + +stpxRestrictedRoleObjects OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the RestrictedRole capability is enabled on + this port or not. If restricted Role is enabled(1) on a port, + this Port should not to be selected as Root Port ; + even it has the best spanning tree priority vector.The default value + is disabled(2)." + ::= { stpExtPortEntry 4 } + +stpxEdgePortAdminBpduGuardObjects OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the administrative BpduGuard capability is + enabled on this port or not. + If an edge port's bpdu guard is enable(1) ,when this port receives + a BPDU, this port should be set into error-disabled state; + If an edge port's bpdu guard is default(0) , this port's + stpxEdgePortOperBpduGuardObjects determined in accordance with + stpExtBpduGuard.The default value is default(0)." + ::= { stpExtPortEntry 5 } + +stpxEdgePortOperBpduGuardObjects OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operational value of the edge port's bpdu guard parameter. + If stpxEdgePortAdminBpduGuardObjects is set to default(0), + then the value of stpxEdgePortOperBpduGuardObjects is determined in + accordance with stpExtBpduGuard." + ::= { stpExtPortEntry 6 } + +stpxEdgePortAdminBpduFilterObjects OBJECT-TYPE + SYNTAX INTEGER {default(0),enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the administrative BpduFilter capability + is enabled on this port or not. + If an edge port's bpdu filter is disabled(2) , this port should + transmit and receive BPDUs; + if an edge port's bpdu filter is enabled(1) , this port should + not transmit and receive any BPDU. + if an edge port's bpdu filter is default(0) , this port's + stpxEdgePortOperBpduFilterObjectsisdetermined in accordance with + stpExtBpduFilter.The default value is default(0)." + ::= { stpExtPortEntry 7 } + +stpxEdgePortOperBpduFilterObjects OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operational value of the edge port's bpdu filter parameter. + If stpxEdgePortAdminBpduFilterObjects is set to default(0), + then the value of stpxEdgePortOperBpduFilterObjects is determined in + accordance with stpExtBpduFilter." + ::= { stpExtPortEntry 8 } + + +stpxForceVersionObjects OBJECT-TYPE + SYNTAX INTEGER {stp(0),rstp(2),mstp(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A Force Protocol Version parameter, controlled by management, + instructs MSTP to emulate additional aspects of the behavior of + earlier versions of spanning tree protocol that are not strictly + required for interoperability.The value of this parameter applies + to all Ports of the Bridge." + ::= { stpExtPortEntry 9 } + +stpxLoopGuardObjects OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the LoopGuard capability is enabled + on this port or not. + When a port's loop guard is enabled(1) , and BPDUs are not received + on a non-designated port after max_age, that port should move into + the STP loop-inconsistent blocking state and should not pass user traffic. + The default value is disabled(2)." + ::= { stpExtPortEntry 10 } + +stpExtTrapEnable OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "An indication of whether spanning tree protocol trap is enabled + on the device or not. The meanings of the values are: + enabled(1) - Enable spanning tree protocol trap; + disabled(2) - Disable spanning tree protocol trap." + ::= { stpExt 7 } + +stpExtMaxhops OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max hops of spanning tree protocol, + its range is <1-40> and default value is 20" + ::= {stpExt 8 } + +-- +-- MIB for IEEE 802.1s Multiple Spanning Tree Protocol +-- + +mstpExt OBJECT IDENTIFIER ::= { stpExt 10 } + + + +stpVersion OBJECT-TYPE + SYNTAX INTEGER + { + stp(1), + rstp(2), + mstp(3) + } + MAX-ACCESS read-write + STATUS current + + DESCRIPTION + "The version of Spanning Tree Protocol the bridge is + currently running.The value 'stpCompatible(1)' + indicates the Spanning Tree Protocol specified in + IEEE 802.1D-1998 ,'rstp(2)' indicates the Rapid + Spanning Tree Protocol specified in IEEE 802.1w and + clause 17 of 802.1D-2004,'mstp(3)'indicates the Multiple + Spanning Tree Protocol specified in IEEE 802.1s + .The values are directly from the IEEE standard. + New values may be defined as future versions of + the protocol become available." +-- DEFVAL INDEX { rstp } + ::= { mstpExt 1 } + + +stpRegionName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configuration name that identifies the MST + region and is used as one of the inputs in the + computation of the MST Configuration Identifier. + This object does not have any default value." + REFERENCE + "IEEE 802.1s clause 13.7" + ::= { mstpExt 2 } + +stpRevision OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object identifies the MST revision that + identifies the MST region and is used as one + of the inputs in the computation of the MST + configuration Identifier.This object does not + have any default value." + REFERENCE + "IEEE 802.1s: Section 13.7" + ::= { mstpExt 3 } + +stpVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF StpVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MSTI-VLAN mapping. + This release supports up to 16 instances; + each spanning tree instance is identified + by an instance ID that ranges from 0 to 4094. + Instance 0 is mandatory and is always present." + ::= { mstpExt 4 } + +stpVlanEntry OBJECT-TYPE + SYNTAX StpVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information maintained by every MST instance + about the VLANs mapped to that instance." + INDEX { stpVlanInstId } + ::= { stpVlanTable 1 } + +StpVlanEntry ::= + SEQUENCE + { + stpVlanId + Integer32, + stpVlanInstId + Integer32 + } + +stpVlanId OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is the index to the MSTI-VLAN Table." + REFERENCE + "IEEE 802.1s" + ::= { stpVlanEntry 1 } + +stpVlanInstId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Identifier of this MST Instance." + REFERENCE + "IEEE 802.1s" + ::= { stpVlanEntry 2 } + + +stpInstTable OBJECT-TYPE + SYNTAX SEQUENCE OF StpInstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MST instance-specific + configuration and operational information." + ::= { mstpExt 5 } + +stpInstEntry OBJECT-TYPE + SYNTAX StpInstEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information maintained by every mst instance + about the STP topology for that instance." + INDEX { stpInstId } + ::= { stpInstTable 1 } + +StpInstEntry ::= + SEQUENCE + { + stpInstId + Integer32, + stpPriority + Integer32, + stpInstDesignatedRoot + BridgeId, + stpInstRootCost + Integer32, + stpInstRootPort + Integer32 + } + +stpInstId OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifier of this MST Instance. + MST establishes and maintains additional + spanning trees withineach MST region. + These spanning trees are referred to as + MST instances (MSTIs)." + REFERENCE + "IEEE 802.1s" + ::= { stpInstEntry 1 } + +stpPriority OBJECT-TYPE + SYNTAX Integer32 (0..61440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The lower the priority of the bridge, the higher likelihood of the bridge becoming a root bridge or a designated bridge for the LAN. The permitted range of values is 0-61440. The priority values must be in multiples of 4096." + + REFERENCE + "IEEE 802.1s: Section 13.23.2" +-- DEFVAL { 32768 } + ::= { stpInstEntry 2 } + +stpInstDesignatedRoot OBJECT-TYPE + SYNTAX BridgeId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The bridge identifier of the root of the + corresponding spanning tree instance as determined + by the Spanning Tree Protocol for that instance. + This value is used as the CIST Root Identifier or MSTI + regional root identifier parameter in all MST BPDUs + originated by this node." + REFERENCE + "IEEE 802.1s: Section 13.23.6, 13.23.12" + ::= { stpInstEntry 3 } +stpInstRootCost OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cost of the path to the root as seen from + this bridge for this instance." + REFERENCE + "IEEE 802.1s: Section 13.23.6, 13.23.12" + ::= { stpInstEntry 4 } + +stpInstRootPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number of the port which offers the + lowest cost path from this bridge to the root + bridge for this instance." + REFERENCE + "IEEE 802.1s: Section 13.23.6, 13.23.12" + ::= { stpInstEntry 5 } + + +stpInstPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF StpInstPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains MST port and instance information." + ::= { mstpExt 6 } + +stpInstPortEntry OBJECT-TYPE + SYNTAX StpInstPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of information maintained by every MST port + for each MST instance it belongs to about the Spanning + Tree Protocol state for that port." + INDEX { stpInstId, stpxpPortIndex } + ::= { stpInstPortTable 1 } + +StpInstPortEntry ::= + SEQUENCE + { + stpInstPortPriority + Integer32, + stpInstPortState + INTEGER, + stpInstPortPathCost + Integer32, + stpInstPortDesignatedRoot + BridgeId, + stpInstPortDesignatedCost + Integer32, + stpInstPortDesignatedBridge + BridgeId, + stpInstPortDesignatedPort + InterfaceIndex, + stpInstPortRole + INTEGER, + stpInstRestrictedRole + INTEGER, + stpInstRestrictedTcn + INTEGER + } + +stpInstPortPriority OBJECT-TYPE + SYNTAX Integer32 (0..240) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of the priority field which is + contained in the most significant 4 bits + of the first (in network byte order) + octet of the (2 octet long) Port ID.As it is + contained only in 4 bits, the value has to be + a multiple of 16.The other octet of the Port + ID is given by the value of stpInstPortIndex." + REFERENCE + "IEEE 802.1s: Section 13.24.21 " + ::= { stpInstPortEntry 1 } + +stpInstPortState OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + discarding(2), + learning(3), + forwarding(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port'scurrent state as defined by + application of the Spanning Tree Protocol.This + state controls what action a port takes on + reception of a frame.For ports which + are disabled (see dot1dStpPortEnable), this object + will have a value of disabled(1)." + REFERENCE + "IEEE 802.1s: Section 13.16" + ::= { stpInstPortEntry 2 } + +stpInstPortPathCost OBJECT-TYPE + SYNTAX Integer32 (1..200000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The contribution of this port to the path cost of + paths towards the spanning tree root which include + this port.802.1D-1990 recommends that the + default value of this parameter be in inverse + proportion to the speed of the attached LAN. + Path cost in range .(802.1t:1-200000000, 802.1d-1998:1-65535)." + REFERENCE + "IEEE 802.1s: Section 13.24.8, 13.24.17" + ::= { stpInstPortEntry 3 } + +stpInstPortDesignatedRoot OBJECT-TYPE + SYNTAX BridgeId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unique Bridge Identifier of the Bridge + recorded as the Root in the Configuration BPDUs + transmitted by the Designated Bridge for the + segment to which the port is attached." + REFERENCE + "IEEE 802.1s: Section 13.24.4, 13.24.11" + ::= { stpInstPortEntry 4 } + +stpInstPortDesignatedCost OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The path cost of the Designated Port of the + segment connected to this port.This value is + compared to the Root Path Cost field in received + bridge PDUs." + REFERENCE + "IEEE 802.1s: Section 13.24.4, 13.24.11" + ::= { stpInstPortEntry 5 } + +stpInstPortDesignatedBridge OBJECT-TYPE + SYNTAX BridgeId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Bridge Identifier of the bridge which this + port considers to be the Designated Bridge for + this port's segment." + REFERENCE + "IEEE 802.1s: Section 13.24.4, 13.24.11" + ::= { stpInstPortEntry 6 } + +stpInstPortDesignatedPort OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port Identifier of the port on the Designated + Bridge for this port's segment." + REFERENCE + "IEEE 802.1s: Section 13.24.4, 13.24.11" + ::= { stpInstPortEntry 7 } + + +stpInstPortRole OBJECT-TYPE + SYNTAX INTEGER + { + master(0), + alternate(1), + root(2), + designated(3), + disabled(4), + backup(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The role of the port.As per IEEE 802.1s, the + port can have any of the following roles: + Disabled, Root, Designated, Alternate, Backup, + Master." + REFERENCE + "IEEE 802.1s: Section 13.24.25" + ::= { stpInstPortEntry 8 } + +stpInstRestrictedRole OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the RestrictedRole capability is + enabled on this port or not. + If restricted Role is enabled(1) on a port,this Port should + not to be selected as Root Port ; even it has the best spanning + tree priority vector.The default value is disabled(2)." + ::= { stpInstPortEntry 9 } + +stpInstRestrictedTcn OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the RestrictedTcn capability is enabled + on this port or not. + If restricted TCN is enabled(1) on a port , this port should + not propagate received topology change notifications and topology + changes to other Ports.The default value is disabled(2)." + ::= { stpInstPortEntry 10 } + +stpInstNum OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the number of mst configured instances." + ::= { mstpExt 7 } + +stpDigests OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the number of MST Configuration Identification." + ::= { mstpExt 8 } + +-- Sub Module: IGMPEXT + + +igmpRouterInterfaceExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpRouterInterfaceExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of interface entry." + ::= { igmpExt 1 } + +igmpRouterInterfaceExtEntry OBJECT-TYPE + SYNTAX IgmpRouterInterfaceExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "igmp router interface entry." + INDEX { igmpRouterIfIndex, igmpRouterQuerierType} + ::= { igmpRouterInterfaceExtTable 1 } + +IgmpRouterInterfaceExtEntry ::= + SEQUENCE + { + igmpRouterIfIndex + Integer32, + igmpRouterQuerierType + Integer32, + igmpRouterIfGroupLimit + Integer32, + igmpRouterIfImmediateLeaveAccess + OCTET STRING, + igmpRouterIfProxyService + TruthValue, + igmpRouterIfAccess + OCTET STRING, + igmpRouterIfQuerierTimeout + Integer32, + igmpRouterIfGroupLimitExceptAccess + OCTET STRING, + igmpRouterIfClearGrp + INTEGER + } + +igmpRouterIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "igmp router Interface index." + ::= { igmpRouterInterfaceExtEntry 1 } + +igmpRouterQuerierType OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "igmp router Interface querier type: ipv4 or ipv6." + ::= { igmpRouterInterfaceExtEntry 2 } + +igmpRouterIfGroupLimit OBJECT-TYPE + SYNTAX Integer32(1..8192) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "igmp router Interface group limit." + ::= { igmpRouterInterfaceExtEntry 3 } + +igmpRouterIfImmediateLeaveAccess OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Leave groups immediately without sending last member query, + use for one host network only." + ::= { igmpRouterInterfaceExtEntry 4 } + +igmpRouterIfProxyService OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Igmp router Interface proxy service . + True(1),False(2)." + ::= { igmpRouterInterfaceExtEntry 5 } + +igmpRouterIfAccess OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "igmp router Interface IGMP group access group." + ::= { igmpRouterInterfaceExtEntry 6 } + +igmpRouterIfQuerierTimeout OBJECT-TYPE + SYNTAX Integer32(60..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "igmp router Interface IGMP previous querier timeout." + DEFVAL { 255 } + ::= { igmpRouterInterfaceExtEntry 7 } + +igmpRouterIfGroupLimitExceptAccess OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "igmp router Interface IGMP group access group, Groups + not to be counted." + ::= { igmpRouterInterfaceExtEntry 8 } + +igmpRouterIfClearGrp OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + clear(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Delete IGMP group cache entries." + ::= { igmpRouterInterfaceExtEntry 9 } + +igmpRouterGobalGrpLimit OBJECT-TYPE + SYNTAX Integer32(1..8192) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Igmp router global group limit." + ::= { igmpExt 2 } + +igmpRouterSsmMappingEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(2), + enable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of ssm mapping .enable(1), disable(2). Default setting is disable(2)." + DEFVAL { disable } + ::= { igmpExt 3 } + +igmpRouterSsmMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF IgmpRouterSsmMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure ssm mapping list. using acl to map to specified source" + ::= { igmpExt 4 } + +igmpRouterSsmMappingEntry OBJECT-TYPE + SYNTAX IgmpRouterSsmMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of igmpRouterSsmMappingTable." + INDEX { igmpRouterSsmMappingAclName, igmpRouterSsmMappingSourceAddress} + ::= { igmpRouterSsmMappingTable 1 } + +IgmpRouterSsmMappingEntry ::= + SEQUENCE { + igmpRouterSsmMappingIndex INTEGER, + igmpRouterSsmMappingSourceAddress IpAddress, + igmpRouterSsmMappingAclName OCTET STRING, + igmpRouterSsmMappingRowStatus RowStatus + } + +igmpRouterSsmMappingIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "index of group list mapping (1~32)" + ::= { igmpRouterSsmMappingEntry 1 } + +igmpRouterSsmMappingSourceAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "source address which group list mapping to" + ::= { igmpRouterSsmMappingEntry 2 } + +igmpRouterSsmMappingAclName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "acl name of group list " + ::= { igmpRouterSsmMappingEntry 3 } + +igmpRouterSsmMappingRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { igmpRouterSsmMappingEntry 4 } + + +-- Sub Module: BOARDHEALTHYMONITOR + +-- +-- Textual conventions +-- +SysmonBootType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify the place to boot to." + SYNTAX INTEGER + { + hold(0), + reload(1) + } + +HBMReactivateType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify the type to reactive." + SYNTAX INTEGER + { + warning(0), + shutdown(1), + reload(2) + } + +-- +-- Node definitions +-- +--sysmon OBJECT IDENTIFIER ::= { boardHealthyMonitor 1 } + +sysmonEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of sysmon .enable(1), disable(2). Default setting is enable(1)." + ::= { boardHealthyMonitor 1 } + +heartBeatMonitor OBJECT IDENTIFIER ::= { boardHealthyMonitor 2 } + + +heartBeatMonitorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of heart-beat-monitor. enable(1), disable(2). Default setting is enable(1)" + ::= { heartBeatMonitor 1 } + +heartBeatMonitorReactivate OBJECT-TYPE + SYNTAX HBMReactivateType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The reactive type of heart-beat-monitor.warning(0), shutdown(1), reload(2). Default setting is reload(2). " + DEFVAL { reload } + ::= { heartBeatMonitor 2 } + + +lastDumpedProcess OBJECT-TYPE + SYNTAX INTEGER(1..65536) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The process id of last dumped process." + ::= { boardHealthyMonitor 3 } + + +-- Sub Module: ARPINSP + + +-- arp type value + ArpType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "arp's type, request or response." + SYNTAX INTEGER + { + request(1), + response(2), + all(3) + } + +-- +-- Node of arpAclGroupTable +-- +arpAclGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpAclGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure arp access list." + ::= { arpInsp 1 } + + +arpAclGroupEntry OBJECT-TYPE + SYNTAX ArpAclGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the index of arpAclGroupTable." + INDEX { arpAclGroupIndex } + ::= { arpAclGroupTable 1 } + +ArpAclGroupEntry ::= + SEQUENCE + { + arpAclGroupIndex + Integer32, + arpAclGroupName + OCTET STRING, + arpAclGroupRowStatus + RowStatus + } + + +arpAclGroupIndex OBJECT-TYPE + SYNTAX Integer32 (30001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of arp acl group." + ::= { arpAclGroupEntry 1 } + +arpAclGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name of arp acl group." + ::= { arpAclGroupEntry 2 } + +arpAclGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { arpAclGroupEntry 3 } + +-- +-- Nodes of arpAclRuleTable +-- +arpAclRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpAclRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ARP acl rules." + ::= { arpInsp 2 } + +arpAclRuleEntry OBJECT-TYPE + SYNTAX ArpAclRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Arp acl rules information." + INDEX { arpAclIndex, arpAclRuleIndex } + ::= { arpAclRuleTable 1 } + + ArpAclRuleEntry ::= + SEQUENCE + { + arpAclIndex + Integer32, + arpAclRuleIndex + Integer32, + arpAclAct + RuleAction, + arpType + ArpType, + arpSenderIp + IpAddress, + arpSenderIpWild + IpAddress, + arpSenderMac + OCTET STRING, + arpSenderMacWild + OCTET STRING, + arpAclLog + TruthValue, + arpAclRowStatus + RowStatus + } + + +arpAclIndex OBJECT-TYPE + SYNTAX Integer32 (30001..40000) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of arp acl group." + ::= { arpAclRuleEntry 1 } + +arpAclRuleIndex OBJECT-TYPE + SYNTAX Integer32 (1..131071) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The rule index of arp acl rule." + ::= { arpAclRuleEntry 2 } + +arpAclAct OBJECT-TYPE + SYNTAX RuleAction + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The action of arp acl rule. + permit(1), deny(2)." + ::= { arpAclRuleEntry 3 } + +arpType OBJECT-TYPE + SYNTAX ArpType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of arp: request or response or all. + request(1), response(2), all(3)." + ::= { arpAclRuleEntry 4 } + +arpSenderIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ARP sender IP adress." + ::= { arpAclRuleEntry 5 } + +arpSenderIpWild OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ARP sender IP adress's wild." + ::= { arpAclRuleEntry 6 } + +arpSenderMac OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ARP sender mac adress." + ::= { arpAclRuleEntry 7 } + +arpSenderMacWild OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ARP sender mac adress's wild ." + ::= { arpAclRuleEntry 8 } + +arpAclLog OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "record the log when being matched. + true(1), false(2)." + ::= { arpAclRuleEntry 9 } + +arpAclRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { arpAclRuleEntry 10 } + +-- +-- Nodes of arpAclApplyTable +-- +arpAclApplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpAclApplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ARP acl applying." + ::= { arpInsp 3 } + +arpAclApplyEntry OBJECT-TYPE + SYNTAX ArpAclApplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Arp acl applying information." + INDEX { arpAclApplyVid } + ::= { arpAclApplyTable 1 } + + ArpAclApplyEntry ::= + SEQUENCE + { + arpAclApplyVid + Integer32, + arpAclApplyName + OCTET STRING, + arpAclApplyStatic + TruthValue, + arpAclApplyRowStatus + RowStatus + } + +arpAclApplyVid OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The vlan id of arp acl applied." + ::= { arpAclApplyEntry 1 } + +arpAclApplyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The applied arp acl name." + ::= { arpAclApplyEntry 2 } + +arpAclApplyStatic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The arp acl applied type is static. + true(1), false(2)." + DEFVAL{false} + ::= { arpAclApplyEntry 3 } + +arpAclApplyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { arpAclApplyEntry 4 } + +-- +-- Nodes of arpInspValidateDestMac +-- +arpInspValidateDestMac OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "whether do Validation of arp's dest-mac. + true(1), false(2)." + ::= { arpInsp 4 } + +-- +-- Nodes of arpInspValidateIP +-- +arpInspValidateIP OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "whether do Validation of arp's IP. + true(1), false(2)." + ::= { arpInsp 5 } + +-- +-- Nodes of arpInspValidateSrcMac +-- +arpInspValidateSrcMac OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "whether do Validation of arp's src-mac. + true(1), false(2)." + ::= { arpInsp 6 } + +-- +-- Nodes of arpInspEnableTable +-- +arpInspEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpInspEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ARP Inspection Enable." + ::= { arpInsp 7 } + +arpInspEnableEntry OBJECT-TYPE + SYNTAX ArpInspEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Arp inspection enable information." + INDEX { arpInspEnVid } + ::= { arpInspEnableTable 1 } + +ArpInspEnableEntry ::= + SEQUENCE + { + arpInspEnVid + Integer32, + arpInspEnableRowStatus + RowStatus + } + +arpInspEnVid OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The vlan id, which enables arp inspection." + ::= { arpInspEnableEntry 1 } + +arpInspEnableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { arpInspEnableEntry 2 } + +-- +-- Nodes of arpInspIfTrustTable +-- +arpInspIfTrustTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpInspIfTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ARP trust interface." + ::= { arpInsp 8 } + +arpInspIfTrustEntry OBJECT-TYPE + SYNTAX ArpInspIfTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ARP trust interface information." + INDEX { arpInspTrustIfindex } + ::= { arpInspIfTrustTable 1 } + +ArpInspIfTrustEntry ::= + SEQUENCE + { + arpInspTrustIfindex + Integer32, + arpInspTrustRowStatus + RowStatus + } + +arpInspTrustIfindex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ifindex." + ::= { arpInspIfTrustEntry 1 } + +arpInspTrustRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { arpInspIfTrustEntry 2 } + +-- +-- Nodes of arpInspLogbuffEntries +-- +arpInspLogbuffEntries OBJECT-TYPE + SYNTAX Integer32 (10..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of entries for log buffer. Range 10~1024. Default value is 32." + DEFVAL { 32 } + ::= { arpInsp 9 } + +-- +-- Nodes of arpInspLogbuffLogsTable +-- +arpInspLogbuffLogsTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArpInspLogbuffLogsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ARP Inspection log buff logs." + ::= { arpInsp 10 } + +arpInspLogbuffLogsEntry OBJECT-TYPE + SYNTAX ArpInspLogbuffLogsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ARP log buff logs information." + INDEX { arpInspLogbuffLogs } + ::= { arpInspLogbuffLogsTable 1 } + +ArpInspLogbuffLogsEntry ::= + SEQUENCE + { + arpInspLogbuffLogs + Integer32, + arpInspLogbuffInterval + Integer32, + arpInspLogbuffRowStatus + RowStatus + } + +arpInspLogbuffLogs OBJECT-TYPE + SYNTAX Integer32 (0..1024) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of logs per interval. Range 0~1024. Default value is 5." + DEFVAL { 5 } + ::= { arpInspLogbuffLogsEntry 1 } + +arpInspLogbuffInterval OBJECT-TYPE + SYNTAX Integer32 (0..86400) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Interval for controlling logging rate. Range 0~86400. Default value is 1." + DEFVAL { 1 } + ::= { arpInspLogbuffLogsEntry 2 } + +arpInspLogbuffRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo(4) and Destroy(6) and Active(1)." + ::= { arpInspLogbuffLogsEntry 3 } + + pimsmMibObject OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Description." + ::= { pimsmExt 1 } + + pimInterfaceExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimInterfaceExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of pim interface extension entry." + ::= { pimsmMibObject 1 } + + pimInterfaceExtEntry OBJECT-TYPE + SYNTAX PimInterfaceExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "pim sm interface extension entry" + INDEX { pimInterfaceIfIndex, pimInterfaceIPVersion} + ::= { pimInterfaceExtTable 1 } + + PimInterfaceExtEntry ::= + SEQUENCE + { + pimInterfaceIfIndex + Integer32, + pimInterfaceIPVersion + Integer32, + pimInterfaceExcludeGenid + TruthValue, + pimInterfaceNeighborFilter + OCTET STRING, + pimInterfaceUnicastBsm + TruthValue + } + + pimInterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "pim Interface index." + ::= { pimInterfaceExtEntry 1 } + + pimInterfaceIPVersion OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "pim interface IP version" + ::= { pimInterfaceExtEntry 2 } + + pimInterfaceExcludeGenid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION " Exclude gen-id option from PIM hello packets on this interface" + ::= { pimInterfaceExtEntry 3 } + + pimInterfaceNeighborFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "PIM peering filter" + ::= { pimInterfaceExtEntry 4 } + + pimInterfaceUnicastBsm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION " Enable sending and receiving of unicast BSM for backward compatibility" + ::= { pimInterfaceExtEntry 5 } + + pimAcceptRegisterList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Register accept filter at RP" + ::= { pimsmMibObject 2 } + + pimIgnoreRpSetPriority OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ignore RP set priority value.enable(1),disable(2)." + ::= { pimsmMibObject 3 } + + pimCiscoRegisterChecksum OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Calculate register checksum over whole packet (Cisco compatibility).enable(1),disable(2)." + ::= { pimsmMibObject 4 } + + pimJpTimer OBJECT-TYPE + SYNTAX Unsigned32(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Join/Prune timer" + ::= { pimsmMibObject 5 } + + pimRegisterRateLimit OBJECT-TYPE + SYNTAX Unsigned32(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rate limit for PIM registers, Packets per second" + ::= { pimsmMibObject 6 } + + pimRegisterRpReachability OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable RP reachability check for PIM registers" + ::= { pimsmMibObject 7 } + + pimRegisterSource OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Source address for PIM register" + ::= { pimsmMibObject 8 } + + pimRegisterSuppression OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Register suppression for PIM registers" + ::= { pimsmMibObject 9 } + + pimRpRegisterKat OBJECT-TYPE + SYNTAX Unsigned32(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "KAT for (S,G) at RP from PIM registers: KAT time in secs" + ::= { pimsmMibObject 10 } + + pimSptSwitchThresholdInfinity OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Source-tree switching threshold Never switch" + ::= { pimsmMibObject 11 } + + pimSptSwitchThresholdInfinityList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Source-tree switching threshold Never switch list" + ::= { pimsmMibObject 12 } + + pimBsrCandidate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Candidate bootstrap router (candidate BSR)" + ::= { pimsmMibObject 13 } + + pimSsmDefault OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set SSM range as default. enable(1), disable(2). Default setting is disable(2)." + ::= { pimsmMibObject 14 } + + pimSsmRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set SSM range to group list by acl" + ::= { pimsmMibObject 15 } + + pimMcastPimSmAdminMode OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "PIM SM administrative mode enable. Always enable. + set value: (1)enable + (2)disable" + ::= { pimsmMibObject 16 } + + pimSwitchIPRoutingMode OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "IP Routing administrative mode enable. Always enable. + set value: (1)enable + (2)disable" + ::= { pimsmMibObject 17 } + + pimIfMcastEnableExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF PimIfMcastEnableExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of pim interface mcast enable extension entry." + ::= { pimsmMibObject 18 } + + pimIfMcastEnableExtEntry OBJECT-TYPE + SYNTAX PimIfMcastEnableExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "pim sm interface extension entry" + INDEX { pimIfMcastEnableIfIndex, pimIfMcastEnableIPVersion} + ::= { pimIfMcastEnableExtTable 1 } + + PimIfMcastEnableExtEntry ::= + SEQUENCE + { + pimIfMcastEnableIfIndex + Integer32, + pimIfMcastEnableIPVersion + Integer32, + pimIfMcastEnable + Integer32, + pimIfMcastEnableState + Integer32 + } + + pimIfMcastEnableIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "pim Interface index." + ::= { pimIfMcastEnableExtEntry 1 } + + pimIfMcastEnableIPVersion OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "pim interface IP version.IPv4(1),IPv6(2)." + ::= { pimIfMcastEnableExtEntry 2 } + + pimIfMcastEnable OBJECT-TYPE + SYNTAX Integer32 (4..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "pim Interface multicast enable. + set value: (4)set + (6)unset" + ::= { pimIfMcastEnableExtEntry 3 } + + pimIfMcastEnableState OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "pim Interface multicast enable. + set value: (1)active + (2)inactive" + ::= { pimIfMcastEnableExtEntry 4 } + +-- Sub Module: OSPFEXT + +ospfExtProcessTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtProcessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of process entry. The the 0 index is used by default vrf, + if the index is 0, the ospfExtProcessVrfName is invalid." + ::= { ospfExt 1 } + +ospfExtProcessEntry OBJECT-TYPE + SYNTAX OspfExtProcessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ospf process entry." + INDEX { ospfExtProcessIndex} + ::= { ospfExtProcessTable 1 } + +OspfExtProcessEntry ::= + SEQUENCE + { + ospfExtProcessIndex + Integer32, + ospfExtProcessVrfName + OCTET STRING, + ospfExtProcessRowStatus + RowStatus, + ospfExtProcessLsaSummaryRouterCount + Integer32, + ospfExtProcessLsaSummaryRouterMaxAge + Integer32, + ospfExtProcessLsaSummaryNetworkCount + Integer32, + ospfExtProcessLsaSummaryNetworkMaxAge + Integer32, + ospfExtProcessLsaSummaryNetCount + Integer32, + ospfExtProcessLsaSummaryNetMaxAge + Integer32, + ospfExtProcessLsaSummaryASBRCount + Integer32, + ospfExtProcessLsaSummaryASBRMaxAge + Integer32, + ospfExtProcessLsaSummaryType5ExtCount + Integer32, + ospfExtProcessLsaSummaryType5ExtMaxAge + Integer32, + ospfExtProcessLsaSummaryAttributeCount + Integer32, + ospfExtProcessLsaSummaryAttributeMaxAge + Integer32, + ospfExtProcessLsaSummaryOpaqueLinkCount + Integer32, + ospfExtProcessLsaSummaryOpaqueLinkMaxAge + Integer32, + ospfExtProcessLsaSummaryOpaqueProcessCount + Integer32, + ospfExtProcessLsaSummaryOpaqueProcessMaxAge + Integer32, + ospfExtProcessLsaSummaryOpaqueASCount + Integer32, + ospfExtProcessLsaSummaryOpaqueASMaxAge + Integer32, + ospfExtProcessRouteSummaryConnectedCount + Integer32, + ospfExtProcessRouteSummaryDiscardCount + Integer32, + ospfExtProcessRouteSummaryIntraAreaCount + Integer32, + ospfExtProcessRouteSummaryInterAreaCount + Integer32, + ospfExtProcessRouteSummaryExtType1Count + Integer32, + ospfExtProcessRouteSummaryExtType2Count + Integer32, + ospfExtProcessRouteSummaryN1Count + Integer32, + ospfExtProcessRouteSummaryN2Count + Integer32 + } + +ospfExtProcessIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ospf index." + ::= { ospfExtProcessEntry 1 } + +ospfExtProcessVrfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VRF Name to associate with this ospf." + ::= { ospfExtProcessEntry 2 } + +ospfExtProcessRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtProcessEntry 3 } + +ospfExtProcessLsaSummaryRouterCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf router LSA count for specified process." + ::= { ospfExtProcessEntry 4 } + +ospfExtProcessLsaSummaryRouterMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf router LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 5 } + +ospfExtProcessLsaSummaryNetworkCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf network LSA count for specified process." + ::= { ospfExtProcessEntry 6 } + +ospfExtProcessLsaSummaryNetworkMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf network LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 7 } + +ospfExtProcessLsaSummaryNetCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary net LSA count for specified process." + ::= { ospfExtProcessEntry 8 } + +ospfExtProcessLsaSummaryNetMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary net LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 9 } + +ospfExtProcessLsaSummaryASBRCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary ASBR LSA count for specified process." + ::= { ospfExtProcessEntry 10 } + +ospfExtProcessLsaSummaryASBRMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary ASBR LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 11 } + +ospfExtProcessLsaSummaryType5ExtCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf type-5 Ext LSA count for specified process." + ::= { ospfExtProcessEntry 12 } + +ospfExtProcessLsaSummaryType5ExtMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf type-5 Ext LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 13 } + +ospfExtProcessLsaSummaryAttributeCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf attribute LSA count for specified process." + ::= { ospfExtProcessEntry 14 } + +ospfExtProcessLsaSummaryAttributeMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf attribute LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 15 } + +ospfExtProcessLsaSummaryOpaqueLinkCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf opaque link LSA count for specified process." + ::= { ospfExtProcessEntry 16 } + +ospfExtProcessLsaSummaryOpaqueLinkMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf opaque link LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 17 } + +ospfExtProcessLsaSummaryOpaqueProcessCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf opaque area LSA count for specified process." + ::= { ospfExtProcessEntry 18 } + +ospfExtProcessLsaSummaryOpaqueProcessMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf opaque area LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 19 } + +ospfExtProcessLsaSummaryOpaqueASCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf opaque AS LSA count for specified process." + ::= { ospfExtProcessEntry 20 } + +ospfExtProcessLsaSummaryOpaqueASMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Ospf opaque AS LSA count in max age status for specified process." + ::= { ospfExtProcessEntry 21 } + +ospfExtProcessRouteSummaryConnectedCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf connected route count for specified process." + ::= { ospfExtProcessEntry 22 } + +ospfExtProcessRouteSummaryDiscardCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf black-hole route count for specified process." + ::= { ospfExtProcessEntry 23 } + +ospfExtProcessRouteSummaryIntraAreaCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf intra area route count for specified process." + ::= { ospfExtProcessEntry 24 } + +ospfExtProcessRouteSummaryInterAreaCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf inter area route count for specified process." + ::= { ospfExtProcessEntry 25 } + +ospfExtProcessRouteSummaryExtType1Count OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf Ext type 1 route count for specified process." + ::= { ospfExtProcessEntry 26 } + +ospfExtProcessRouteSummaryExtType2Count OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf Ext type 2 route count for specified process." + ::= { ospfExtProcessEntry 27 } + +ospfExtProcessRouteSummaryN1Count OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf N1 route count for specified process." + ::= { ospfExtProcessEntry 28 } + +ospfExtProcessRouteSummaryN2Count OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf N2 route count for specified process." + ::= { ospfExtProcessEntry 29 } + +ospfExtBinding OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Binding ospf process to mib." + ::= { ospfExt 2 } + +ospfExtIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of if entry." + ::= { ospfExt 3 } + +ospfExtIfEntry OBJECT-TYPE + SYNTAX OspfExtIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login entry." + INDEX { ospfExtIfIpAddress, ospfExtAddressLessIf} + ::= { ospfExtIfTable 1 } + +OspfExtIfEntry ::= + SEQUENCE + { + ospfExtIfIpAddress + IpAddress, + ospfExtAddressLessIf + Integer32, + ospfExtIfMtu + Integer32, + ospfExtIfCost + Integer32, + ospfExtIfOutgoingLSA + INTEGER, + ospfExtIfMtuIgnore + INTEGER, +-- modified by liuht for bug 23735 in 2013-07-08 +-- ospfExtIfType +-- INTEGER, +-- ospfExtIfDisable +-- INTEGER, + ospfExtIfAuth + INTEGER, + ospfExtIfDeadInterval + Integer32, + ospfExtIfHelloInterval + Integer32, + ospfExtIfPri + Integer32, + ospfExtIfRetransInterval + Integer32, + ospfExtIfTransDelay + Integer32, + ospfExtIfDRRouterId + IpAddress, + ospfExtIfBackupDRRouterId + IpAddress, + ospfExtIfDbFilterFlag + INTEGER, + ospfExtIfHelloDue + OCTET STRING, + ospfExtIfNeighborCount + Gauge32, + ospfExtIfAdjacentNeighborCount + Gauge32, + ospfExtIfCryptSequenceNumber + Gauge32, + ospfExtIfHelloRecv + Gauge32, + ospfExtIfHelloSend + Gauge32, + ospfExtIfDDRecv + Gauge32, + ospfExtIfDDSend + Gauge32, + ospfExtIfLSReqRecv + Gauge32, + ospfExtIfLSReqSend + Gauge32, + ospfExtIfLSUpdRecv + Gauge32, + ospfExtIfLSUpdSend + Gauge32, + ospfExtIfLsAckRecv + Gauge32, + ospfExtIfLsAckSend + Gauge32, + ospfExtIfLsAckDiscard + Gauge32, + ospfExtIfTeMetric + Integer32 + } + +ospfExtIfIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The IP address of this OSPF interface." + ::= { ospfExtIfEntry 1 } + +ospfExtAddressLessIf OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "For the purpose of easing the instancing of + addressed and addressless interfaces; This + variable takes the value 0 on interfaces with + IP Addresses, and the corresponding value of + ifIndex for interfaces having no IP Address." + ::= { ospfExtIfEntry 2 } + +ospfExtIfMtu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF interface MTU.The range is 576-65535 and the default value is 1500." + ::= { ospfExtIfEntry 3 } + +ospfExtIfCost OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF interface MTU.The range is 1-65535 and the default value is 1." + ::= { ospfExtIfEntry 4 } + +ospfExtIfOutgoingLSA OBJECT-TYPE + SYNTAX INTEGER + { + unset(1), + set(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Filter OSPF LSA during synchronization and flooding." + ::= { ospfExtIfEntry 5 } + +ospfExtIfMtuIgnore OBJECT-TYPE + SYNTAX INTEGER + { + unset(1), + set(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ignores the MTU in DBD packets." + ::= { ospfExtIfEntry 6 } + +-- modified by liuht for bug 23735 in 2013-07-08 +--ospfExtIfType OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- pointToPoint(1), +-- broadcast(2), +-- nonBroadcast(3), +-- pointToMultipoint(4), +-- pointToMultipointAndNonBroadcast(5), +-- none(6) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The OSPF interface type." +-- ::= { ospfExtIfEntry 7 } + +--ospfExtIfDisable OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- disable(1), +-- enable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Disable OSPF." +-- ::= { ospfExtIfEntry 8 } + + +ospfExtIfAuth OBJECT-TYPE + SYNTAX INTEGER + { + noAuthentication(0), + simple(1), + message-digest(2), + unset(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Display authentication type." + ::= { ospfExtIfEntry 9 } + +ospfExtIfDeadInterval OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The OSPF dead interval, the default value is: + 40(broadcast), 120(non-broadcast), 120(pointToMultipoint), 40(pointToPoint), 120(pointToMultipointAndNonBroadcast).." + ::= { ospfExtIfEntry 10 } + +ospfExtIfHelloInterval OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The OSPF hello interval, the default value is: + 10(broadcast), 30(non-broadcast), 30(pointToMultipoint), 10(pointToPoint), 30(pointToMultipointAndNonBroadcast)." + ::= { ospfExtIfEntry 11 } + +ospfExtIfPri OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The OSPF priority, the default value is 1." + ::= { ospfExtIfEntry 12 } + +ospfExtIfRetransInterval OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The OSPF retransmit interval, the default value is 5." + ::= { ospfExtIfEntry 13 } + +ospfExtIfTransDelay OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The OSPF transmit delay, the default value is 1." + ::= { ospfExtIfEntry 14 } + +ospfExtIfDRRouterId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The designated router id of this OSPF interface." + ::= { ospfExtIfEntry 15 } + +ospfExtIfBackupDRRouterId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The backup designated router id of this OSPF interface." + ::= { ospfExtIfEntry 16 } + +ospfExtIfDbFilterFlag OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The database filter flag of this OSPF interface." + ::= { ospfExtIfEntry 17 } + +ospfExtIfHelloDue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hello due time of this OSPF interface." + ::= { ospfExtIfEntry 18 } + +ospfExtIfNeighborCount OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The neighbor count of this OSPF interface." + ::= { ospfExtIfEntry 19 } + +ospfExtIfAdjacentNeighborCount OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The adjacent neighbor count id of this OSPF interface." + ::= { ospfExtIfEntry 20 } + +ospfExtIfCryptSequenceNumber OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The crypt sequence number of this OSPF interface." + ::= { ospfExtIfEntry 21 } + +ospfExtIfHelloRecv OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hello recieved count of this OSPF interface." + ::= { ospfExtIfEntry 22 } + +ospfExtIfHelloSend OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hello send count of this OSPF interface." + ::= { ospfExtIfEntry 23 } + +ospfExtIfDDRecv OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DD recieved count of this OSPF interface." + ::= { ospfExtIfEntry 24 } + +ospfExtIfDDSend OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The DD send count of this OSPF interface." + ::= { ospfExtIfEntry 25 } + +ospfExtIfLSReqRecv OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS req recieved count of this OSPF interface." + ::= { ospfExtIfEntry 26 } + +ospfExtIfLSReqSend OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS req send count id of this OSPF interface." + ::= { ospfExtIfEntry 27 } + +ospfExtIfLSUpdRecv OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS update recieved count of this OSPF interface." + ::= { ospfExtIfEntry 28 } + +ospfExtIfLSUpdSend OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS update send count of this OSPF interface." + ::= { ospfExtIfEntry 29 } + +ospfExtIfLsAckRecv OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS ack recieved count of this OSPF interface." + ::= { ospfExtIfEntry 30 } + +ospfExtIfLsAckSend OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS ack send count of this OSPF interface." + ::= { ospfExtIfEntry 31 } + +ospfExtIfLsAckDiscard OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The LS ack discard count of this OSPF interface." + ::= { ospfExtIfEntry 32 } + +--for bug 23740, 3.2 unsupport this node +ospfExtIfTeMetric OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "OSPF TE metric value." + ::= { ospfExtIfEntry 33 } + +ospfExtAreaStubTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtAreaStubEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of area stub entry." + ::= { ospfExt 4 } + +ospfExtAreaStubEntry OBJECT-TYPE + SYNTAX OspfExtAreaStubEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Area stub entry." + INDEX { ospfExtAreaStubStat} + ::= { ospfExtAreaStubTable 1 } + +OspfExtAreaStubEntry ::= + SEQUENCE + { + ospfExtAreaStubStat + RowStatus, + ospfExtAreaStubNoSummary + INTEGER + } + +ospfExtAreaStubStat OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtAreaStubEntry 1 } + +ospfExtAreaStubNoSummary OBJECT-TYPE + SYNTAX INTEGER + { + noSummary(1), + summary(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Do not inject inter-area routes into stub." + ::= { ospfExtAreaStubEntry 2 } + +ospfExtFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of area stub entry." + ::= { ospfExt 5 } + +ospfExtFilterEntry OBJECT-TYPE + SYNTAX OspfExtFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Area stub entry." + INDEX { ospfExtFilterId} + ::= { ospfExtFilterTable 1 } + +OspfExtFilterEntry ::= + SEQUENCE + { + ospfExtFilterId + Integer32, + ospfExtFilterPrefixIn + OCTET STRING, + ospfExtFilterPrefixOut + OCTET STRING, + ospfExtFilterAccessIn + OCTET STRING, + ospfExtFilterAccessOut + OCTET STRING + } + +ospfExtFilterId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying an area." + ::= { ospfExtFilterEntry 1 } + +ospfExtFilterPrefixIn OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of an IP prefix-list.Max length is 20." + ::= { ospfExtFilterEntry 2 } + +ospfExtFilterPrefixOut OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of an IP prefix-list.Max length is 20." + ::= { ospfExtFilterEntry 3 } + +ospfExtFilterAccessIn OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of an access-list.Max length is 20." + ::= { ospfExtFilterEntry 4 } + +ospfExtFilterAccessOut OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of an access-list.Max length is 20." + ::= { ospfExtFilterEntry 5 } + +ospfExtSummaryAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtSummaryAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of summary address entry." + ::= { ospfExt 6 } + +ospfExtSummaryAddrEntry OBJECT-TYPE + SYNTAX OspfExtSummaryAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "summary address entry " + INDEX { ospfExtSummaryAddrStat} + ::= { ospfExtSummaryAddrTable 1 } + +OspfExtSummaryAddrEntry ::= + SEQUENCE + { + ospfExtSummaryAddrStat + RowStatus, + ospfExtSummaryAddrNotAdvertise + INTEGER, + ospfExtSummaryAddrTag + Gauge32, + ospfExtSummaryAddrMetric + Gauge32, + ospfExtSummaryAddrMetricType + INTEGER + } + +ospfExtSummaryAddrStat OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtSummaryAddrEntry 1 } + +ospfExtSummaryAddrNotAdvertise OBJECT-TYPE + SYNTAX INTEGER + { + noAdvertise(1), + advertise(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Suppress routes that match the prefix." + ::= { ospfExtSummaryAddrEntry 2 } + +ospfExtSummaryAddrTag OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set tag (0-4294967295)." + ::= { ospfExtSummaryAddrEntry 3 } + +ospfExtSummaryAddrMetric OBJECT-TYPE + SYNTAX Gauge32 (0..16777215) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary address metric value." + ::= { ospfExtSummaryAddrEntry 4 } + +ospfExtSummaryAddrMetricType OBJECT-TYPE + SYNTAX INTEGER (0..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF summary address metic type, the default value is 2, 0 means unspecified." + ::= { ospfExtSummaryAddrEntry 5 } + +ospfExtProperty OBJECT IDENTIFIER ::= { ospfExt 7 } + +compatibleRfc OBJECT-TYPE + SYNTAX INTEGER + { + uncompatible(1), + compatible(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This should always write running-config to startup-config. + And the valid value is 1." + ::= { ospfExtProperty 1 } + +timersSpfDelay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Delay between receiving a change to SPF calculation. + The range is 0-2147483647.Default value is 5." + ::= { ospfExtProperty 2 } + +timersSpfHold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Hold time between consecutive SPF calculations. + The range is 0-2147483647.Default value is 10." + ::= { ospfExtProperty 3 } + +refreshTimer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Adjust refresh parameters.The range is 10-1800.Default value is 10." + ::= { ospfExtProperty 4 } + +referBandwidth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use reference bandwidth method to assign OSPF cost. + The range is 1-4294967.Default value is 100." + ::= { ospfExtProperty 5 } + +maxConcurrentDd OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number allowed to process DD concurrently. + The range is 1-65535.Default value is 5." + ::= { ospfExtProperty 6 } + +maximumArea OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of ospf area.The range is 1-4294967294.Default value is 3000." + ::= { ospfExtProperty 7 } + +defaultMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set metric of redistributed routes.The range is 0-16777214.The unset value is -1." + ::= { ospfExtProperty 8 } + +distance OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF Administrative distance.The range is 1-255.The unset value is -1." + ::= { ospfExtProperty 9 } + +distanceIntra OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance for intra-area routes.The range is 1-255.The unset value is -1." + ::= { ospfExtProperty 10 } + +distanceInter OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance for inter-area routes.The range is 1-255. + The unset value is -1." + ::= { ospfExtProperty 11 } + +distanceExternal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance for external routes.The range is 1-255.The unset value is -1." + ::= { ospfExtProperty 12 } + + +ospfExtNeighborTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtNeighborEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of neighbour entry." + ::= { ospfExt 8 } + +ospfExtNeighborEntry OBJECT-TYPE + SYNTAX OspfExtNeighborEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "neighbour address entry." + INDEX { ospfExtNeighborStat} + ::= { ospfExtNeighborTable 1 } + +OspfExtNeighborEntry ::= + SEQUENCE + { + ospfExtNeighborStat + RowStatus, + ospfExtNeighborPollInterval + Integer32, + ospfExtNeighborCost + Integer32, + ospfExtNeighborPri + Integer32, + ospfExtNeighborStateStr + INTEGER, + ospfExtNeighborDeadTimeStr + OCTET STRING, + ospfExtNeighborIpAddr + IpAddress, + ospfExtNeighborIfName + OCTET STRING + } + +ospfExtNeighborStat OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize Destroy and Active." + ::= { ospfExtNeighborEntry 1 } + +ospfExtNeighborPollInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF dead-router polling interval.The range is 1-65535. + Default value is 120.The unset value is -1." + ::= { ospfExtNeighborEntry 2 } + +ospfExtNeighborCost OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF neighbor cost value.The range is 1-65535. + The unset value is -1." + ::= { ospfExtNeighborEntry 3 } + +ospfExtNeighborPri OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OSPF neighbor priority, the unset value is -1." + ::= { ospfExtNeighborEntry 4 } + +ospfExtNeighborStateStr OBJECT-TYPE + SYNTAX INTEGER + { + dependUpon(0), + down(1), + attempt(2), + init(3), + twoway(4), + exStart(5), + exchange(6), + loading(7), + full(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF NeighborState.The range is 0-8." + ::= { ospfExtNeighborEntry 5 } + +ospfExtNeighborDeadTimeStr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF dead-router time string." + ::= { ospfExtNeighborEntry 6 } + +ospfExtNeighborIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF neighbor ip address." + ::= { ospfExtNeighborEntry 7 } + +ospfExtNeighborIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF neighbor interface name." + ::= { ospfExtNeighborEntry 8 } + +ospfExtRedistribute OBJECT IDENTIFIER ::= { ospfExt 9 } + +redistributeBgp OBJECT-TYPE + SYNTAX INTEGER + { + no(0), + yes(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol." + ::= { ospfExtRedistribute 1 } + +redistributeBgpMetricType OBJECT-TYPE + SYNTAX INTEGER + { + reset(0), + type1(1), + type2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric type.The unset value is 0." + DEFVAL { type2 } + ::= { ospfExtRedistribute 2 } + +redistributeBgpMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric. + The range is 0-16777214.The unset value is -1." + ::= { ospfExtRedistribute 3 } + +redistributeBgpRouteMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol route map reference." + ::= { ospfExtRedistribute 4 } + +redistributeBgpTag OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol tag.The range is 0-4294967295." + ::= { ospfExtRedistribute 5 } + +redistributeConnected OBJECT-TYPE + SYNTAX INTEGER + { + no(0), + yes(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute connected." + ::= { ospfExtRedistribute 6 } + +redistributeConnectedMetricType OBJECT-TYPE + SYNTAX INTEGER + { + type1(1), + type2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric type. + The unset value is 0." + DEFVAL { type2 } + ::= { ospfExtRedistribute 7 } + +redistributeConnectedMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric.The range is 0-16777214. + The unset value is -1." + ::= { ospfExtRedistribute 8 } + +redistributeConnectedRouteMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol route map reference." + ::= { ospfExtRedistribute 9 } + +redistributeConnectedTag OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol tag.The range is 0-4294967295." + ::= { ospfExtRedistribute 10 } + +redistributeRip OBJECT-TYPE + SYNTAX INTEGER + { + no(0), + yes(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RedistributeRip routing information protocol." + ::= { ospfExtRedistribute 11 } + +redistributeRipMetricType OBJECT-TYPE + SYNTAX INTEGER + { + type1(1), + type2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric type. + The unset value is 0." + DEFVAL { type2 } + ::= { ospfExtRedistribute 12 } + +redistributeRipMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric. + The range is 0-16777214.The unset value is -1." + ::= { ospfExtRedistribute 13 } + +redistributeRipRouteMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol route map reference." + ::= { ospfExtRedistribute 14 } + +redistributeRipTag OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol tag.The range is 0-4294967295. + The unset value is -1." + ::= { ospfExtRedistribute 15 } + +redistributeStatic OBJECT-TYPE + SYNTAX INTEGER + { + no(0), + yes(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "RedistributeRip static routes." + ::= { ospfExtRedistribute 16 } + +redistributeStaticMetricType OBJECT-TYPE + SYNTAX INTEGER + { + type1(1), + type2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric type.The unset value is 0." + DEFVAL { type2 } + ::= { ospfExtRedistribute 17 } + +redistributeStaticMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol metric.The range is 0-16777214. + The unset value is -1." + ::= { ospfExtRedistribute 18 } + +redistributeStaticRouteMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol route map reference." + ::= { ospfExtRedistribute 19 } + +redistributeStaticTag OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute border gateway protocol tag.The range is 0-4294967295." + ::= { ospfExtRedistribute 20 } + + +redistributeBgpTagClr OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset redistribute Bgp." + ::= { ospfExtRedistribute 21 } + + +redistributeConnectedTagClr OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset redistribute Connected." + ::= { ospfExtRedistribute 22 } + + + +redistributeRipTagClr OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset redistribute Rip." + ::= { ospfExtRedistribute 23 } + + +redistributeStaticTagClr OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + reset(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset redistribute Static" + ::= { ospfExtRedistribute 24 } + + + + ospfExtdistribute OBJECT IDENTIFIER ::= { ospfExt 10 } + +ospfExtdistributeIn OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Filter incoming routing updates." + ::= { ospfExtdistribute 1 } + +ospfExtdistributeOutBgp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Filter outgoing routing updates for bgp." + ::= { ospfExtdistribute 2 } + +ospfExtdistributeOutConnected OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Filter outgoing routing updates for connected." + ::= { ospfExtdistribute 3 } + +ospfExtdistributeOutRip OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Filter outgoing routing updates for rip." + ::= { ospfExtdistribute 4 } + +ospfExtdistributeOutStatic OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Filter outgoing routing updates for static." + ::= { ospfExtdistribute 5 } + +ospfExtOriginate OBJECT IDENTIFIER ::= { ospfExt 11 } + +ospfExtOriginateEn OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Control distribution of default information." + ::= { ospfExtOriginate 1 } + +ospfExtOriginateAlways OBJECT-TYPE + SYNTAX INTEGER + { + no(2), + yes(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Always advertise default route." + ::= { ospfExtOriginate 2 } + +ospfExtOriginateMetricType OBJECT-TYPE + SYNTAX INTEGER + { + type1(1), + type2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set OSPF metric type for default routes.The unset value is 0." + DEFVAL { type2 } + ::= { ospfExtOriginate 3 } + +ospfExtOriginateMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set OSPF default metric.The range is 0-16777214.The unset value is -1." + ::= { ospfExtOriginate 4 } + +ospfExtOriginateRouteMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Route map reference." + ::= { ospfExtOriginate 5 } + +ospfExtNetworkTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtNetworkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of area stub entry." + ::= { ospfExt 12 } + +ospfExtNetworkEntry OBJECT-TYPE + SYNTAX OspfExtNetworkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Network entry" + INDEX { ospfExtNetworkArea} + ::= { ospfExtNetworkTable 1 } + + OspfExtNetworkEntry ::= + SEQUENCE + { + ospfExtNetworkArea + IpAddress, + ospfExtNetworkRowStatus + RowStatus + } + +ospfExtNetworkArea OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "OSPF area ID in IP address format." + ::= { ospfExtNetworkEntry 1 } + +ospfExtNetworkRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtNetworkEntry 2 } + +ospfExtPassiveIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtPassiveIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of passive interface entry." + ::= { ospfExt 13 } + +ospfExtPassiveIfEntry OBJECT-TYPE + SYNTAX OspfExtPassiveIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Network entry " + INDEX { ospfExtPassiveIfId} + ::= { ospfExtPassiveIfTable 1 } + +OspfExtPassiveIfEntry ::= + SEQUENCE + { + ospfExtPassiveIfId + Integer32, + ospfExtPassiveIfName + OCTET STRING, + ospfExtPassiveIfStatus + RowStatus + } + +ospfExtPassiveIfId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface's id." + ::= { ospfExtPassiveIfEntry 1 } + +ospfExtPassiveIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Interface's name." + ::= { ospfExtPassiveIfEntry 2 } + +ospfExtPassiveIfStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtPassiveIfEntry 3 } + +-- +-- ospfExtMsgDigestKeyTable +-- + +ospfExtMsgDigestKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtMsgDigestKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of digest-key entry." + ::= { ospfExt 14 } + +ospfExtMsgDigestKeyEntry OBJECT-TYPE + SYNTAX OspfExtMsgDigestKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { ospfExtMsgDigestKeyIfindex,ospfExtMsgDigestKeyId } + ::= { ospfExtMsgDigestKeyTable 1 } + +OspfExtMsgDigestKeyEntry ::= + SEQUENCE + { + ospfExtMsgDigestKeyIfindex + Integer32, + ospfExtMsgDigestKeyId + Integer32, + ospfExtMsgDigestKeyPwd + OCTET STRING, + ospfExtMsgDigestKeyStatus + RowStatus + } + +ospfExtMsgDigestKeyIfindex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface's id." + ::= { ospfExtMsgDigestKeyEntry 1 } + +ospfExtMsgDigestKeyId OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "digest key's id." + ::= { ospfExtMsgDigestKeyEntry 2 } + +ospfExtMsgDigestKeyPwd OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "digest key password." + ::= { ospfExtMsgDigestKeyEntry 3 } + + +ospfExtMsgDigestKeyStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtMsgDigestKeyEntry 4 } + +-- The OSPF Area Data Structure contains information +-- regarding the various areas. The interfaces and +-- virtual links are configured as part of these areas. +-- Area 0.0.0.0, by definition, is the Backbone Area +-- +-- ospfExtAreaTable +-- + +ospfExtAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtAreaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of area authentication entry." + ::= { ospfExt 15 } + +ospfExtAreaEntry OBJECT-TYPE + SYNTAX OspfExtAreaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Area authentication entry." + INDEX { ospfExtAreaId } + ::= { ospfExtAreaTable 1 } + +OspfExtAreaEntry ::= + SEQUENCE + { + ospfExtAreaId + IpAddress, + ospfExtAreaDefaultCost + Integer32, +--modified by liuht for bug 23742,2013-07-09 +-- ospfExtAreaRowStatus +-- RowStatus, + ospfExtAreaAuthType + INTEGER, + ospfExtAreaLsaSummaryRouterCount + Integer32, + ospfExtAreaLsaSummaryRouterMaxAge + Integer32, + ospfExtAreaLsaSummaryNetworkCount + Integer32, + ospfExtAreaLsaSummaryNetworkMaxAge + Integer32, + ospfExtAreaLsaSummaryNetCount + Integer32, + ospfExtAreaLsaSummaryNetMaxAge + Integer32, + ospfExtAreaLsaSummaryASBRCount + Integer32, + ospfExtAreaLsaSummaryASBRMaxAge + Integer32, + ospfExtAreaLsaSummaryType5ExtCount + Integer32, + ospfExtAreaLsaSummaryType5ExtMaxAge + Integer32, + ospfExtAreaLsaSummaryAttributeCount + Integer32, + ospfExtAreaLsaSummaryAttributeMaxAge + Integer32, + ospfExtAreaLsaSummaryOpaqueLinkCount + Integer32, + ospfExtAreaLsaSummaryOpaqueLinkMaxAge + Integer32, + ospfExtAreaLsaSummaryOpaqueAreaCount + Integer32, + ospfExtAreaLsaSummaryOpaqueAreaMaxAge + Integer32, + ospfExtAreaLsaSummaryOpaqueASCount + Integer32, + ospfExtAreaLsaSummaryOpaqueASMaxAge + Integer32 + } + +ospfExtAreaId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying an area. + Area ID 0.0.0.0 is used for the OSPF backbone." + ::= { ospfExtAreaEntry 1 } + +ospfExtAreaDefaultCost OBJECT-TYPE + SYNTAX Integer32 (1..16777215) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ospf area default cost." + ::= { ospfExtAreaEntry 2 } + +--modified by liuht for bug 23742,2013-07-09 +--ospfExtAreaRowStatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row.Now only realize CreateAndGo +-- and Destroy and Active. +-- 1 means Active +-- 4 means CreateAndGo +-- 6 means Destroy" +-- ::= { ospfExtAreaEntry 5 } + +ospfExtAreaAuthType OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + simplePassword(1), + md5(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use message-digest authentication." + ::= { ospfExtAreaEntry 6 } + + +ospfExtAreaLsaSummaryRouterCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf router LSA count for specified area." + ::= { ospfExtAreaEntry 7 } + +ospfExtAreaLsaSummaryRouterMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf router LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 8 } + +ospfExtAreaLsaSummaryNetworkCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf network LSA count for specified area." + ::= { ospfExtAreaEntry 9 } + +ospfExtAreaLsaSummaryNetworkMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf network LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 10 } + +ospfExtAreaLsaSummaryNetCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary net LSA count for specified area." + ::= { ospfExtAreaEntry 11 } + +ospfExtAreaLsaSummaryNetMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary net LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 12 } + +ospfExtAreaLsaSummaryASBRCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary ASBR LSA count for specified area." + ::= { ospfExtAreaEntry 13 } + +ospfExtAreaLsaSummaryASBRMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf summary ASBR LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 14 } + +ospfExtAreaLsaSummaryType5ExtCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf type-5 Ext LSA count for specified area." + ::= { ospfExtAreaEntry 15 } + +ospfExtAreaLsaSummaryType5ExtMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf type-5 Ext LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 16 } + +ospfExtAreaLsaSummaryAttributeCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf attribute LSA count for specified area." + ::= { ospfExtAreaEntry 17 } + +ospfExtAreaLsaSummaryAttributeMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf attribute LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 18 } + +ospfExtAreaLsaSummaryOpaqueLinkCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf opaque link LSA count for specified area." + ::= { ospfExtAreaEntry 19 } + +ospfExtAreaLsaSummaryOpaqueLinkMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf opaque link LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 20 } + +ospfExtAreaLsaSummaryOpaqueAreaCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf opaque area LSA count for specified area." + ::= { ospfExtAreaEntry 21 } + +ospfExtAreaLsaSummaryOpaqueAreaMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf opaque area LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 22 } + +ospfExtAreaLsaSummaryOpaqueASCount OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf opaque AS LSA count for specified area." + ::= { ospfExtAreaEntry 23 } + +ospfExtAreaLsaSummaryOpaqueASMaxAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ospf opaque AS LSA count in max age status for specified area." + ::= { ospfExtAreaEntry 24 } + +-- +-- ospfExtAreaRangeTable +-- + +ospfExtAreaRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtAreaRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of area range entry." + ::= { ospfExt 16 } + +ospfExtAreaRangeEntry OBJECT-TYPE + SYNTAX OspfExtAreaRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Area range entry." + INDEX { ospfExtAreaRangeRowStatus} + ::= { ospfExtAreaRangeTable 1 } + +OspfExtAreaRangeEntry ::= + SEQUENCE + { + ospfExtAreaRangeRowStatus + RowStatus, + ospfExtAreaRangeAdvertise + INTEGER + } + +ospfExtAreaRangeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtAreaRangeEntry 5 } + +ospfExtAreaRangeAdvertise OBJECT-TYPE + SYNTAX INTEGER + { + advertise(1), + noAdvertise(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use message-digest authentication." + ::= { ospfExtAreaRangeEntry 6 } + +-- +-- ospfExtAreaVirtualLinkTable +-- + +ospfExtAreaVirtualLinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtAreaVirtualLinkEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Table of area virtual link entry." + ::= { ospfExt 17 } + +ospfExtAreaVirtualLinkEntry OBJECT-TYPE + SYNTAX OspfExtAreaVirtualLinkEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Area virtual link entry." + INDEX { ospfExtAreaVirtualLinkAreaId, ospfExtAreaVirtualLinkIpAddr} + ::= { ospfExtAreaVirtualLinkTable 1 } + +OspfExtAreaVirtualLinkEntry ::= + SEQUENCE + { + ospfExtAreaVirtualLinkAreaId + IpAddress, + ospfExtAreaVirtualLinkIpAddr + IpAddress, + ospfExtAreaVirtualLinkDeadInterval + Integer32, + ospfExtAreaVirtualLinkHelloInterval + Integer32, + ospfExtAreaVirtualLinkRetransInterval + Integer32, + ospfExtAreaVirtualLinkTransDelay + Integer32, + ospfExtAreaVirtualLinkAuthKey + OCTET STRING, + ospfExtAreaVirtualLinkRowStatus + RowStatus, + ospfExtAreaVirtualLinkAuthClr + INTEGER, + ospfExtAreaVirtualLinkStat + INTEGER, + ospfExtAreaVirtualLinkIfName + OCTET STRING, + ospfExtAreaVirtualLinkLocalAddr + IpAddress, + ospfExtAreaVirtualLinkRemoteAddr + IpAddress, + ospfExtAreaVirtualLinkHelloDue + OCTET STRING, + ospfExtAreaVirtualLinkAdjacencyState + INTEGER + } + +ospfExtAreaVirtualLinkAreaId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION "The OSPF area ID." + ::= { ospfExtAreaVirtualLinkEntry 1 } + +ospfExtAreaVirtualLinkIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "The ID(ip address) associated with virtual link neighbor." + ::= { ospfExtAreaVirtualLinkEntry 2 } + +ospfExtAreaVirtualLinkDeadInterval OBJECT-TYPE + SYNTAX Integer32(1..65535) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The OSPF virtual link dead interval, the default value is 40." + ::= { ospfExtAreaVirtualLinkEntry 3 } + +ospfExtAreaVirtualLinkHelloInterval OBJECT-TYPE + SYNTAX Integer32(1..65535) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The OSPF virtual link hello interval, the default value is 10." + ::= { ospfExtAreaVirtualLinkEntry 4 } + +ospfExtAreaVirtualLinkRetransInterval OBJECT-TYPE + SYNTAX Integer32(1..3600) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The OSPF virtual link retransmit interval, the default value is 5." + ::= { ospfExtAreaVirtualLinkEntry 5 } + +ospfExtAreaVirtualLinkTransDelay OBJECT-TYPE + SYNTAX Integer32(1..3600) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The OSPF virtual link transmit delay, the default value is 1." + ::= { ospfExtAreaVirtualLinkEntry 6 } + +ospfExtAreaVirtualLinkAuthKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..8)) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The OSPF virtual link authentication key." + ::= { ospfExtAreaVirtualLinkEntry 7 } + +ospfExtAreaVirtualLinkRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfExtAreaVirtualLinkEntry 10 } + +ospfExtAreaVirtualLinkAuthClr OBJECT-TYPE + SYNTAX INTEGER + { + none(0), + simplePassword(1), + md5(2) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Enable authentication, the default value is 0." + ::= { ospfExtAreaVirtualLinkEntry 11 } + +ospfExtAreaVirtualLinkStat OBJECT-TYPE + SYNTAX INTEGER + { + dependUpon(0), + down(1), + loopback(2), + waiting(3), + pointTopoint(4), + drOther(5), + backup(6), + dr(7) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The OSPF virtual link status.Range is 0-7." + ::= { ospfExtAreaVirtualLinkEntry 12 } + +ospfExtAreaVirtualLinkIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The OSPF virtual link interface name." + ::= { ospfExtAreaVirtualLinkEntry 13 } + +ospfExtAreaVirtualLinkLocalAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The OSPF virtual link local address." + ::= { ospfExtAreaVirtualLinkEntry 14 } + +ospfExtAreaVirtualLinkRemoteAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The OSPF virtual link remote address." + ::= { ospfExtAreaVirtualLinkEntry 15 } + +ospfExtAreaVirtualLinkHelloDue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The OSPF virtual link hello due." + ::= { ospfExtAreaVirtualLinkEntry 16 } + +ospfExtAreaVirtualLinkAdjacencyState OBJECT-TYPE + SYNTAX INTEGER + { + dependUpon(0), + down(1), + attempt(2), + init(3), + twoway(4), + exStart(5), + exchange(6), + loading(7), + full(8) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The OSPF virtual link adjacency state, range is 0-8." + ::= { ospfExtAreaVirtualLinkEntry 17 } + +-- +-- ospfExtAreaVirtualLinkMsgDigestKeyTable +-- + +ospfExtAreaVirtualLinkMsgDigestKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtAreaVirtualLinkMsgDigestKeyEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Table of area authentication entry." + ::= { ospfExt 18 } + +ospfExtAreaVirtualLinkMsgDigestKeyEntry OBJECT-TYPE + SYNTAX OspfExtAreaVirtualLinkMsgDigestKeyEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Area authentication entry." + INDEX { ospfExtAreaVirtualLinkMsgDigestKeyRowStatus} + ::= { ospfExtAreaVirtualLinkMsgDigestKeyTable 1 } + +OspfExtAreaVirtualLinkMsgDigestKeyEntry ::= + SEQUENCE + { + ospfExtAreaVirtualLinkMsgDigestKeyRowStatus + RowStatus, + ospfExtAreaVirtualLinkMsgDigestKeyPwd + OCTET STRING + } + +ospfExtAreaVirtualLinkMsgDigestKeyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ospfExtAreaVirtualLinkMsgDigestKeyEntry 1 } + +ospfExtAreaVirtualLinkMsgDigestKeyPwd OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..16)) + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "Area virtual link digest key password." + ::= { ospfExtAreaVirtualLinkMsgDigestKeyEntry 2 } + +-- +-- ospfExtRouterLsdbTable +-- + +ospfExtRouterLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtRouterLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of OSPF router LSDB." + ::= { ospfExt 19 } + +ospfExtRouterLsdbEntry OBJECT-TYPE + SYNTAX OspfExtRouterLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single instance of LSDB entry." + INDEX { ospfExtRouterLsaId} + ::= { ospfExtRouterLsdbTable 1 } + +OspfExtRouterLsdbEntry ::= + SEQUENCE + { + ospfExtRouterLsaId + Integer32, + ospfExtRouterLsaAge + Integer32, + ospfExtRouterLsaOption + OCTET STRING, + ospfExtRouterLsaAdvRouter + IpAddress, + ospfExtRouterLsaSeq + Gauge32, + ospfExtRouterLsaChkSum + Integer32, + ospfExtRouterLsaLinkCount + Integer32, + ospfExtRouterLsaOpaqueID + Integer32, + ospfExtRouterLsaOpaqueType + INTEGER, + ospfExtRouterLsaLength + Integer32 + } + +ospfExtRouterLsaId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA id." + ::= { ospfExtRouterLsdbEntry 1 } + +ospfExtRouterLsaAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA aging time." + ::= { ospfExtRouterLsdbEntry 2 } + +ospfExtRouterLsaOption OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA option string." + ::= { ospfExtRouterLsdbEntry 3 } + +ospfExtRouterLsaAdvRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA ADV Router." + ::= { ospfExtRouterLsdbEntry 4 } + +ospfExtRouterLsaSeq OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA sequence number." + ::= { ospfExtRouterLsdbEntry 5 } + +ospfExtRouterLsaChkSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtRouterLsdbEntry 6 } + +ospfExtRouterLsaLinkCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA link count." + ::= { ospfExtRouterLsdbEntry 7 } + +ospfExtRouterLsaOpaqueID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA tag, used by summary LSA and AS external LSA." + ::= { ospfExtRouterLsdbEntry 8 } + +ospfExtRouterLsaOpaqueType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA opaque type." + ::= { ospfExtRouterLsdbEntry 9 } + +ospfExtRouterLsaLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtRouterLsdbEntry 10 } + +-- +-- ospfExtNetworkLsdbTable +-- + +ospfExtNetworkLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtNetworkLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of OSPF network LSDB." + ::= { ospfExt 20 } + +ospfExtNetworkLsdbEntry OBJECT-TYPE + SYNTAX OspfExtNetworkLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single instance of LSDB entry." + INDEX { ospfExtNetworkLsaId} + ::= { ospfExtNetworkLsdbTable 1 } + +OspfExtNetworkLsdbEntry ::= + SEQUENCE + { + ospfExtNetworkLsaId + Integer32, + ospfExtNetworkLsaAge + Integer32, + ospfExtNetworkLsaOption + OCTET STRING, + ospfExtNetworkLsaAdvRouter + IpAddress, + ospfExtNetworkLsaSeq + Gauge32, + ospfExtNetworkLsaChkSum + Integer32, + ospfExtNetworkLsaOpaqueID + Integer32, + ospfExtNetworkLsaOpaqueType + INTEGER, + ospfExtNetworkLsaLength + Integer32, + ospfExtNetworkLsaNetworkMask + IpAddress + } + +ospfExtNetworkLsaId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA id." + ::= { ospfExtNetworkLsdbEntry 1 } + +ospfExtNetworkLsaAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA aging time." + ::= { ospfExtNetworkLsdbEntry 2 } + +ospfExtNetworkLsaOption OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA option string." + ::= { ospfExtNetworkLsdbEntry 3 } + +ospfExtNetworkLsaAdvRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA ADV Router." + ::= { ospfExtNetworkLsdbEntry 4 } + +ospfExtNetworkLsaSeq OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA sequence number." + ::= { ospfExtNetworkLsdbEntry 5 } + +ospfExtNetworkLsaChkSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtNetworkLsdbEntry 6 } + +ospfExtNetworkLsaOpaqueID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA tag, used by summary LSA and AS external LSA." + ::= { ospfExtNetworkLsdbEntry 8 } + +ospfExtNetworkLsaOpaqueType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA opaque type." + ::= { ospfExtNetworkLsdbEntry 9 } + +ospfExtNetworkLsaLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtNetworkLsdbEntry 10 } + +ospfExtNetworkLsaNetworkMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA network mask, used by network, summary,summary_asbr LSA." + ::= { ospfExtNetworkLsdbEntry 11 } + +-- +-- ospfExtSummaryLsdbTable +-- + +ospfExtSummaryLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtSummaryLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of OSPF summary LSDB." + ::= { ospfExt 21 } + +ospfExtSummaryLsdbEntry OBJECT-TYPE + SYNTAX OspfExtSummaryLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single instance of LSDB entry." + INDEX { ospfExtSummaryLsaId} + ::= { ospfExtSummaryLsdbTable 1 } + +OspfExtSummaryLsdbEntry ::= + SEQUENCE + { + ospfExtSummaryLsaId + Integer32, + ospfExtSummaryLsaAge + Integer32, + ospfExtSummaryLsaOption + OCTET STRING, + ospfExtSummaryLsaAdvRouter + IpAddress, + ospfExtSummaryLsaSeq + Gauge32, + ospfExtSummaryLsaChkSum + Integer32, + ospfExtSummaryLsaOpaqueID + Integer32, + ospfExtSummaryLsaOpaqueType + INTEGER, + ospfExtSummaryLsaLength + Integer32, + ospfExtSummaryLsaNetworkMask + IpAddress, + ospfExtSummaryLsaTos0Metric + Integer32 + } + +ospfExtSummaryLsaId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA id." + ::= { ospfExtSummaryLsdbEntry 1 } + +ospfExtSummaryLsaAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA aging time." + ::= { ospfExtSummaryLsdbEntry 2 } + +ospfExtSummaryLsaOption OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA option string." + ::= { ospfExtSummaryLsdbEntry 3 } + +ospfExtSummaryLsaAdvRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA ADV Router." + ::= { ospfExtSummaryLsdbEntry 4 } + +ospfExtSummaryLsaSeq OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA sequence number." + ::= { ospfExtSummaryLsdbEntry 5 } + +ospfExtSummaryLsaChkSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtSummaryLsdbEntry 6 } + +ospfExtSummaryLsaOpaqueID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA tag, used by summary LSA and AS external LSA." + ::= { ospfExtSummaryLsdbEntry 8 } + +ospfExtSummaryLsaOpaqueType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA opaque type." + ::= { ospfExtSummaryLsdbEntry 9 } + +ospfExtSummaryLsaLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtSummaryLsdbEntry 10 } + +ospfExtSummaryLsaNetworkMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA network mask, used by network, summary,summary_asbr LSA." + ::= { ospfExtSummaryLsdbEntry 11 } + +ospfExtSummaryLsaTos0Metric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA TOS0 metric value, used by summary, summary_asbr, as_external LSA." + ::= { ospfExtSummaryLsdbEntry 12 } + +-- +-- ospfExtSummaryAsbrLsdbTable +-- + +ospfExtSummaryAsbrLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtSummaryAsbrLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of OSPF Summary ASBR LSDB." + ::= { ospfExt 22 } + +ospfExtSummaryAsbrLsdbEntry OBJECT-TYPE + SYNTAX OspfExtSummaryAsbrLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single instance of LSDB entry." + INDEX { ospfExtSummaryAsbrLsaId} + ::= { ospfExtSummaryAsbrLsdbTable 1 } + +OspfExtSummaryAsbrLsdbEntry ::= + SEQUENCE + { + ospfExtSummaryAsbrLsaId + Integer32, + ospfExtSummaryAsbrLsaAge + Integer32, + ospfExtSummaryAsbrLsaOption + OCTET STRING, + ospfExtSummaryAsbrLsaAdvRouter + IpAddress, + ospfExtSummaryAsbrLsaSeq + Gauge32, + ospfExtSummaryAsbrLsaChkSum + Integer32, + ospfExtSummaryAsbrLsaOpaqueID + Integer32, + ospfExtSummaryAsbrLsaOpaqueType + INTEGER, + ospfExtSummaryAsbrLsaLength + Integer32, + ospfExtSummaryAsbrLsaNetworkMask + IpAddress, + ospfExtSummaryAsbrLsaTos0Metric + Integer32 + } + +ospfExtSummaryAsbrLsaId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA id." + ::= { ospfExtSummaryAsbrLsdbEntry 1 } + +ospfExtSummaryAsbrLsaAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA aging time." + ::= { ospfExtSummaryAsbrLsdbEntry 2 } + +ospfExtSummaryAsbrLsaOption OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA option string." + ::= { ospfExtSummaryAsbrLsdbEntry 3 } + +ospfExtSummaryAsbrLsaAdvRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA ADV Router." + ::= { ospfExtSummaryAsbrLsdbEntry 4 } + +ospfExtSummaryAsbrLsaSeq OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA sequence number." + ::= { ospfExtSummaryAsbrLsdbEntry 5 } + +ospfExtSummaryAsbrLsaChkSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtSummaryAsbrLsdbEntry 6 } + +ospfExtSummaryAsbrLsaOpaqueID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA tag, used by summary LSA and AS external LSA." + ::= { ospfExtSummaryAsbrLsdbEntry 8 } + +ospfExtSummaryAsbrLsaOpaqueType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA opaque type." + ::= { ospfExtSummaryAsbrLsdbEntry 9 } + +ospfExtSummaryAsbrLsaLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtSummaryAsbrLsdbEntry 10 } + +ospfExtSummaryAsbrLsaNetworkMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA network mask, used by network, summary,summary_asbr LSA." + ::= { ospfExtSummaryAsbrLsdbEntry 11 } + +ospfExtSummaryAsbrLsaTos0Metric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA TOS0 metric value, used by summary, summary_asbr, as_external LSA." + ::= { ospfExtSummaryAsbrLsdbEntry 12 } + +-- +-- ospfExtAsExtLsdbTable +-- + +ospfExtAsExtLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtAsExtLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of OSPF AS external LSDB." + ::= { ospfExt 23 } + +ospfExtAsExtLsdbEntry OBJECT-TYPE + SYNTAX OspfExtAsExtLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single instance of LSDB entry." + INDEX { ospfExtAsExtLsaId} + ::= { ospfExtAsExtLsdbTable 1 } + +OspfExtAsExtLsdbEntry ::= + SEQUENCE + { + ospfExtAsExtLsaId + Integer32, + ospfExtAsExtLsaAge + Integer32, + ospfExtAsExtLsaOption + OCTET STRING, + ospfExtAsExtLsaAdvRouter + IpAddress, + ospfExtAsExtLsaSeq + Gauge32, + ospfExtAsExtLsaChkSum + Integer32, + ospfExtAsExtLsaOpaqueID + Integer32, + ospfExtAsExtLsaOpaqueType + INTEGER, + ospfExtAsExtLsaLength + Integer32, + ospfExtAsExtLsaNetworkMask + IpAddress, + ospfExtAsExtLsaTos0Metric + Integer32, + ospfExtAsExtLsaMetricType + INTEGER, + ospfExtAsExtLsaForwardAddress + IpAddress, + ospfExtAsExtLsaExternalRouteTag + Integer32 + } + +ospfExtAsExtLsaId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA id." + ::= { ospfExtAsExtLsdbEntry 1 } + +ospfExtAsExtLsaAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA aging time." + ::= { ospfExtAsExtLsdbEntry 2 } + +ospfExtAsExtLsaOption OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA option string." + ::= { ospfExtAsExtLsdbEntry 3 } + +ospfExtAsExtLsaAdvRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA ADV Router." + ::= { ospfExtAsExtLsdbEntry 4 } + +ospfExtAsExtLsaSeq OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA sequence number." + ::= { ospfExtAsExtLsdbEntry 5 } + +ospfExtAsExtLsaChkSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtAsExtLsdbEntry 6 } + +ospfExtAsExtLsaOpaqueID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA tag, used by summary LSA and AS external LSA." + ::= { ospfExtAsExtLsdbEntry 8 } + +ospfExtAsExtLsaOpaqueType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA opaque type." + ::= { ospfExtAsExtLsdbEntry 9 } + +ospfExtAsExtLsaLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA check sum." + ::= { ospfExtAsExtLsdbEntry 10 } + +ospfExtAsExtLsaNetworkMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA network mask, used by network, summary,summary_asbr LSA." + ::= { ospfExtAsExtLsdbEntry 11 } + +ospfExtAsExtLsaTos0Metric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA TOS0 metric value, used by summary, summary_asbr, as_external LSA." + ::= { ospfExtAsExtLsdbEntry 12 } + +ospfExtAsExtLsaMetricType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA metric type, used by as_external LSA." + ::= { ospfExtAsExtLsdbEntry 13 } + +ospfExtAsExtLsaForwardAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA forward address, used by as_external LSA." + ::= { ospfExtAsExtLsdbEntry 14 } + +ospfExtAsExtLsaExternalRouteTag OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF LSA external route tag, used by as_external LSA." + ::= { ospfExtAsExtLsdbEntry 15 } + +ospfExtGeneralGroup OBJECT IDENTIFIER ::= { ospfExt 30 } + +ospfRouterId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying the + router in the Autonomous System. + By convention, to ensure uniqueness, this + should default to the value of one of the + router's IP interface addresses." + ::= { ospfExtGeneralGroup 1 } + +ospfExtSysUpTime OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The OSPF process up time." + ::= { ospfExtGeneralGroup 2 } + +ospfExtVrfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VRF name which the OSPF process bind to." + ::= { ospfExtGeneralGroup 3 } + +ospfCompatibleRfc OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The RFC2328, and RFC1583 Compatibility state." + ::= { ospfExtGeneralGroup 4 } + +ospfOpaqueCapable OBJECT-TYPE + SYNTAX INTEGER + { + unsupport(0), + support(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The opaque support capability." + ::= { ospfExtGeneralGroup 5 } + +ospfAbrType OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The OSPF ABR type." + ::= { ospfExtGeneralGroup 6 } + +ospfAbsr OBJECT-TYPE + SYNTAX INTEGER + { + notABSR(0), + isABSR(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "To show if this router is an ASBR." + ::= { ospfExtGeneralGroup 7 } + +ospfDdCountIn OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of incomming current DD exchange neighbors." + ::= { ospfExtGeneralGroup 8 } + +ospfDdCountOut OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of outgoing current DD exchange neighbors." + ::= { ospfExtGeneralGroup 9 } + +ospfMaxDd OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of DD." + ::= { ospfExtGeneralGroup 10 } + +ospfExternalLsaCount OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of external LSA." + ::= { ospfExtGeneralGroup 11 } + +ospfExternalLsaChecksum OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "External LSA checksum." + ::= { ospfExtGeneralGroup 12 } + +ospfNoDefaultExternalLsaCount OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of non-default external LSA." + ::= { ospfExtGeneralGroup 13 } + +ospfExternalLsaDbLimit OBJECT-TYPE + SYNTAX INTEGER + { + unlimit(0), + limit(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "External LSA database limit state" + ::= { ospfExtGeneralGroup 14 } + +ospfLsDbLimit OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LSDB database overflow limit." + ::= { ospfExtGeneralGroup 15 } + +ospfLsaOrgCount OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of LSA originated." + ::= { ospfExtGeneralGroup 16 } + +ospfLsaRcvCount OBJECT-TYPE + SYNTAX Gauge32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of LSA received." + ::= { ospfExtGeneralGroup 17 } + +ospfExtLsdbLimitInterval OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "before set this node,please set the node ospfExtLsdbLimitNumber first. + + The number of seconds that, after entering + OverflowState, a router will attempt to leave + OverflowState. This allows the router to again + originate non-default AS-external-LSAs. When + set to 0, the router will not leave Overflow- + State until restarted." + DEFVAL { 0 } + ::= { ospfExtGeneralGroup 18 } + +ospfExtLsdbLimitNumber OBJECT-TYPE + SYNTAX Integer32 (-1..'7FFFFFFF'h) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of non-default AS- + external-LSAs entries that can be stored in the + link-state database. If the value is -1, then + there is no limit. + + When the number of non-default AS-external-LSAs + in a router's link-state database reaches + ospfExtLsdbLimit, the router enters Overflow- + State. The router never holds more than + ospfExtLsdbLimit non-default AS-external-LSAs + in its database. OspfExtLsdbLimit MUST be set + identically in all routers attached to the OSPF + backbone and/or any regular OSPF area. (i.e., + OSPF stub areas and NSSAs are excluded)." + DEFVAL { -1 } + ::= { ospfExtGeneralGroup 19 } + +-- Sub Module: USER + +-- +-- Textual conventions +-- +LoginType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specify severity level of message." + SYNTAX INTEGER + { + nologin(1), + login(2), + loginlocal(3) + } +-- +-- Node definitions +-- + +lineTable OBJECT-TYPE + SYNTAX SEQUENCE OF LineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "describe the login line property." + ::= { user 1 } + +lineEntry OBJECT-TYPE + SYNTAX LineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "describe the login property." + INDEX { lineType, lineIndex } + ::= { lineTable 1 } + +LineEntry ::= + SEQUENCE + { + lineType + INTEGER, + lineIndex + INTEGER, + lineLoginMode + LoginType, + linePassword + OCTET STRING , + linePriviledge + INTEGER, + lineExecTimeoutmin + INTEGER, + lineExecTimeoutsec + INTEGER, + lineAccessInName + OCTET STRING, + lineTransportType + INTEGER, + linePasswordType + INTEGER + } + +lineType OBJECT-TYPE + SYNTAX INTEGER + { + console(0), + vty(1) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The line type. + 0 console. + 1 vty." + ::= { lineEntry 1 } + +lineIndex OBJECT-TYPE + SYNTAX INTEGER(0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The line number.index range 0~7." + ::= { lineEntry 2 } + +lineLoginMode OBJECT-TYPE + SYNTAX LoginType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The line login mode. + 1 no login. + 2 login. + 3 login local." + ::= { lineEntry 3 } + +linePassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The line password." + ::= { lineEntry 4 } + +linePriviledge OBJECT-TYPE + SYNTAX INTEGER(1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The line priviledge. The valid range is [1, 4]." + ::= { lineEntry 5 } + +lineExecTimeoutmin OBJECT-TYPE + SYNTAX INTEGER(0..35791) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The exec mode timeout minute value." + ::= { lineEntry 6 } + +lineExecTimeoutsec OBJECT-TYPE + SYNTAX INTEGER(0..2147483) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The exec mode timeout second value." + ::= { lineEntry 7 } + +lineAccessInName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..40)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The access name applied for vty. The first character of the name must be in [a-zA-Z0-9]." + ::= { lineEntry 8 } + +lineTransportType OBJECT-TYPE + SYNTAX INTEGER + { + all(0), + ssh(1), + telnet(2), + none(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vty line Transport type. + 0 all. + 1 ssh. + 2 telnet. + 3 none." + ::= { lineEntry 9 } + +linePasswordType OBJECT-TYPE + SYNTAX INTEGER(0..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Password type. + 0 not set password. + 1 not encrypted password. + 2 encrypted password." + ::= { lineEntry 10 } + +usernameTable OBJECT-TYPE + SYNTAX SEQUENCE OF UsernameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of loghost." + ::= { user 2 } + +usernameEntry OBJECT-TYPE + SYNTAX UsernameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of user." + INDEX { usernameIndex } + ::= { usernameTable 1 } + +UsernameEntry ::= + SEQUENCE + { + usernameIndex + Integer32, + username + OCTET STRING, + password + OCTET STRING, + userPrivilege + Integer32, + userPwdType + INTEGER, + usernameRowStatus + RowStatus + } + +usernameIndex OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The username table index." + ::= { usernameEntry 1 } + +username OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The username. Can only include [0-9a-zA-Z.-_], and must starting with alphanumeric. Its length range is [1, 32)" + + ::= { usernameEntry 2 } + +password OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The password. + If type is secretForUser or normalPwd, the valid range of length is [1,64). + If type is hiddenPwd, the valid range of length is [1,128]." + ::= { usernameEntry 3 } + +userPrivilege OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user privilege <1-4>." + ::= { usernameEntry 4 } + + +userPwdType OBJECT-TYPE + SYNTAX INTEGER + { + secretForUser(1), + hiddenPwd(2), + normalPwd(3), + notsetPwd(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The user password type. + 1 secretForUser. + 2 hiddenPwd. + 3 normalPwd. + 4 notsetPwd." + ::= { usernameEntry 5 } + + +usernameRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { usernameEntry 6 } + + + +enablePasswordTable OBJECT-TYPE ---{{{1 + SYNTAX SEQUENCE OF EnablePasswordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of enable password." + ::= { user 3 } + +enablePasswordEntry OBJECT-TYPE + SYNTAX EnablePasswordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of enable password." + INDEX { privilegeIndex } + ::= { enablePasswordTable 1 } + +EnablePasswordEntry ::= + SEQUENCE { + privilegeIndex + Integer32, + passwordType + INTEGER, + enablePassword + OCTET STRING, + enableRowStatus +RowStatus + } + +privilegeIndex OBJECT-TYPE + SYNTAX Integer32 (1..4) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The enable password table index." + ::= { enablePasswordEntry 1 } + +passwordType OBJECT-TYPE + SYNTAX INTEGER + { + secretForUser(1), + hiddenPwd(2), + normalPwd(3), + notsetPwd(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The password type. + 1 secretForUser. + 2 hiddenPwd. + 3 normalPwd. + The value notsetPwd(4) is only for the return value and not support + configured." + ::= { enablePasswordEntry 2 } + +enablePassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The enable password. + If type is secretForUser or normalPwd, the valid range of length is [1,64). + If type is hiddenPwd, the valid range of length is [1,128]." + ::= { enablePasswordEntry 3 } + +enableRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { enablePasswordEntry 4 } + +serviceTerminalLength OBJECT-TYPE + SYNTAX INTEGER(-1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describe the terminal length. + 0 means system doesn't limit the line numbers displayed. + -1 means system doesn't control terminal length." + ::= { user 4 } + +serviceCipherDetect OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + normal(2), + strong(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Describe the cipher detect. + 1 Disable security check + 2 Cipher must contain digital and normal char + 3 Cipher must contain digital, normal char and special char" + ::= { user 5 } + + +-- +-- Users table +-- +usersTable OBJECT-TYPE + SYNTAX SEQUENCE OF UsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of users." + ::= { user 6 } + +usersEntry OBJECT-TYPE + SYNTAX UsersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of users." + INDEX { usersLineType, usersLineIndex } + ::= { usersTable 1 } + +UsersEntry ::= + SEQUENCE { + usersLineType + Integer32, + usersLineIndex + Integer32, + usersname + OCTET STRING, + usersIdleTime + OCTET STRING, + usersLocation + OCTET STRING + } + +usersLineType OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Users line Type. 0 means console,and 1 means vty." + ::= { usersEntry 1 } + +usersLineIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Users line index." + ::= { usersEntry 2 } + +usersname OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Users name." + ::= { usersEntry 3 } + +usersIdleTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The idle time." + ::= { usersEntry 4 } + +usersLocation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The user location." + ::= { usersEntry 5 } + +lineMaxVTY OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set max vty number and the default value is 8." + ::= { user 7 } + +-- Sub Module: SNMPEXT + + +snmpExtMibObject OBJECT IDENTIFIER ::= { snmpExt 1 } + +snmpVersion OBJECT-TYPE + SYNTAX INTEGER + { + v1(1), + v2c(2), + v3(3), + all(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp agent's snmp version.v1(1),v2c(2),v3(3),all(4). + Default value is all(4)." + -- DEFVAL INDEX { all } + ::= { snmpExtMibObject 1 } + +snmpEngineID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (10..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Engine ID in hexadecimal format.If the value is not set use the default value.Range 10~64. + Default value 30383038303830383038." + -- DEFVAL INDEX { all } + ::= { snmpExtMibObject 2 } + +snmpCommunityTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpCommunityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp community configure." + ::= { snmpExtMibObject 3 } + + +snmpCommunityEntry OBJECT-TYPE + SYNTAX SnmpCommunityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpcommunityTable." + INDEX { snmpcommIndex } + ::= { snmpCommunityTable 1 } + + SnmpCommunityEntry ::= + SEQUENCE + { + snmpcommIndex + Integer32, + snmpcommName + OCTET STRING, + snmpcommType + Integer32, + snmpcommView + OCTET STRING, + snmpcommRowStatus + RowStatus + } + +snmpcommIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp community's index.Range 0~31." + ::= { snmpCommunityEntry 1 } + +snmpcommName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp community's name. Starting with alphabetic and can only include [0-9a-zA-Z.-_]. Its length range is [1, 256)." + ::= { snmpCommunityEntry 2 } + + +snmpcommType OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp community type's index.read-only(1) read-write(2)." + ::= { snmpCommunityEntry 3 } + +snmpcommView OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp community's View. Starting with alphabetic and can only include [0-9a-zA-Z.-_]. Its length range is [1, 32)." + ::= { snmpCommunityEntry 4 } + +snmpcommRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpCommunityEntry 5 } + + +-- Snmp View Table +snmpViewTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpViewEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp view configure." + ::= { snmpExtMibObject 4 } + + +snmpViewEntry OBJECT-TYPE + SYNTAX SnmpViewEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpViewTable." + INDEX { snmpviewIndex} + ::= { snmpViewTable 1 } + +SnmpViewEntry ::= + SEQUENCE + { + snmpviewIndex + Integer32, + snmpviewName + OCTET STRING, + snmpviewType + Integer32, + snmpviewcldOID + OCTET STRING, + snmpviewMask + OCTET STRING, + snmpviewRowStatus + RowStatus + } + +snmpviewIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp View's index. Range is 0~31." + ::= { snmpViewEntry 1 } + +snmpviewName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp View's name. Range is 1~31." + ::= { snmpViewEntry 2 } + + +snmpviewType OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "View type 1: include a subtree.View type 2: exclude a subtree." + ::= { snmpViewEntry 3 } + +snmpviewcldOID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..60)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Subtree name. Format is '.A.B.C..' ." + ::= { snmpViewEntry 4 } + +snmpviewMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Define the subtree mask." + ::= { snmpViewEntry 5 } + +snmpviewRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpViewEntry 6 } + + +-- +-- Snmp Usm-user Table +-- +snmpUsmuserTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpUsmuserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp Usm-user configure." + ::= { snmpExtMibObject 5 } + + +snmpUsmuserEntry OBJECT-TYPE + SYNTAX SnmpUsmuserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpUsmuserTable." + INDEX { snmpUsmuserIndex } + ::= { snmpUsmuserTable 1 } + + SnmpUsmuserEntry ::= + SEQUENCE { + snmpUsmuserIndex + Integer32, + snmpUsmuserName + OCTET STRING, + snmpUsmuserRemote + OCTET STRING, + snmpUsmuserAuth + INTEGER, + snmpUsmuserAuthHid + INTEGER, + snmpUsmuserAuthPWD + OCTET STRING, + snmpUsmuserPrivacy + INTEGER, + snmpUsmuserPrivacyHid + INTEGER, + snmpUsmuserPrivacyPWD + OCTET STRING, + snmpUsmuserRowStatus + RowStatus + } + +snmpUsmuserIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp usm-user's index.Range 0~31." + ::= { snmpUsmuserEntry 1 } + +snmpUsmuserName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp usm-user's name.Range 1~31." + ::= { snmpUsmuserEntry 2 } + + +snmpUsmuserRemote OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (10..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp usm-user's Remote.Range 10~64." + ::= { snmpUsmuserEntry 3 } + +snmpUsmuserAuth OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + md5(2), + sha(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Authentication parameters for the user. none(1),md5(2),sha(3)." + -- DEFVAL { md5 } + ::= { snmpUsmuserEntry 4 } + +snmpUsmuserAuthHid OBJECT-TYPE + SYNTAX INTEGER + { + unhidden(1), + hidden(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "pecifies a HIDDEN password will follow. unhidden(1),hidden(2)." + -- DEFVAL { md5 } + ::= { snmpUsmuserEntry 5 } + +snmpUsmuserAuthPWD OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specify an authentication password.Password length depends on: + snmpUsmuserAuthHid(5) is unhidden(1), password Range is 8~64, otherwise 1~128." + ::= { snmpUsmuserEntry 6 } + +snmpUsmuserPrivacy OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + des(2), + aes(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Privacy parameters for the user. none(1),des(2),aes(3)." + -- DEFVAL { des } + ::= { snmpUsmuserEntry 7 } + +snmpUsmuserPrivacyHid OBJECT-TYPE + SYNTAX INTEGER + { + unhidden(1), + hidden(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies a HIDDEN password will follow. unhidden(1), hidden(2)." + -- DEFVAL { md5 } + ::= { snmpUsmuserEntry 8 } + +snmpUsmuserPrivacyPWD OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specify a privacy password.Password length depends on: + snmpUsmuserPrivacyHid(8)is unhidden(1), password Range is 8~64, otherwise 1~128." + ::= { snmpUsmuserEntry 9 } + +snmpUsmuserRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpUsmuserEntry 10 } + + +-- +-- Snmp server group Table +-- +snmpGrpTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp server group configure." + ::= { snmpExtMibObject 6 } + + +snmpGrpEntry OBJECT-TYPE + SYNTAX SnmpGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpGrpTable." + INDEX { snmpGrpIndex } + ::= { snmpGrpTable 1 } + + SnmpGrpEntry ::= + SEQUENCE + { + snmpGrpIndex + Integer32, + snmpGrpName + OCTET STRING, + snmpGrpUser + OCTET STRING, + snmpGrpSecMode + INTEGER, + snmpGrpRowStatus + RowStatus + } + +snmpGrpIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp group's index. Range is 0~31." + ::= { snmpGrpEntry 1 } + +snmpGrpName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the group. Starting with alphabetic and can only include [0-9a-zA-Z.-_]. Its length range is [1, 31)." + ::= { snmpGrpEntry 2 } + +snmpGrpUser OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Define a user security name belongs to the group. Range is 1~31." + ::= { snmpGrpEntry 3 } + +snmpGrpSecMode OBJECT-TYPE + SYNTAX INTEGER + { + any(0), + v1(1), + v2c(2), + usm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Define the group security model. + 0 any + 1 v1 + 2 v2c + 3 usm(default) + Only support set 3(usm) now." + ::= { snmpGrpEntry 4 } + +snmpGrpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpGrpEntry 10 } + + +-- +-- Snmp server access Table +-- +snmpAccessTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpAccessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the access for a exact group." + ::= { snmpExtMibObject 7 } + + +snmpAccessEntry OBJECT-TYPE + SYNTAX SnmpAccessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpAccessTable." + INDEX { snmpAccessIndex } + ::= { snmpAccessTable 1 } + + SnmpAccessEntry ::= + SEQUENCE { + snmpAccessIndex + Integer32, + snmpAccessName + OCTET STRING, + snmpAccessUsm + INTEGER, + snmpAccessRead + OCTET STRING, + snmpAccessWrite + OCTET STRING, + snmpAccessNotify + OCTET STRING, + snmpAccessContext + OCTET STRING, + snmpAccessContextType + INTEGER, + snmpAccessSecuMode + INTEGER, + snmpAccessRowStatus + RowStatus + } + +snmpAccessIndex OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp access's index.Range 1~31." + ::= { snmpAccessEntry 1 } + +snmpAccessName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp Access's name.Range 1~31." + ::= { snmpAccessEntry 2 } + +snmpAccessUsm OBJECT-TYPE + SYNTAX INTEGER + { + noauth(1), + auth(2), + priv(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp usm security model + noauth(1): Set security level to no authentication + auth(2): Set security level to authentication but with no privacy + priv(3): Set security level to authentication with privacy" + ::= { snmpAccessEntry 3 } + +snmpAccessRead OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Restrict this access read area to a named MIB view." + ::= { snmpAccessEntry 4 } + +snmpAccessWrite OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Restrict this access write area to a named MIB view." + ::= { snmpAccessEntry 5 } + +snmpAccessNotify OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Restrict this access notify area to a named MIB view." + ::= { snmpAccessEntry 6 } + +snmpAccessContext OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Set the access's context name. Range is 0~31. " + ::= { snmpAccessEntry 7 } + +snmpAccessContextType OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + exact(2), + prefix(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp usm security model + none(1): none + exact(2): Context match(default is exact) type specification: exact + prefix(3): Context match(default is exact) type specification: prefix." + ::= { snmpAccessEntry 8 } + +snmpAccessSecuMode OBJECT-TYPE + SYNTAX INTEGER + { + any(0), + v1(1), + v2c(2), + usm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Define the access security model. + 0 any + 1 v1 + 2 v2c + 3 usm(default) + Only support set 3(usm) now." + ::= { snmpAccessEntry 9 } + +snmpAccessRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpAccessEntry 10 } + + + +-- +-- Snmp server notify Table +-- +snmpNotifyTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpNotifyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Define a notify name which related to send SNMP notification." + ::= { snmpExtMibObject 8 } + + +snmpNotifyEntry OBJECT-TYPE + SYNTAX SnmpNotifyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpNotifyTable." + INDEX { snmpNotifyIndex } + ::= { snmpNotifyTable 1 } + +SnmpNotifyEntry ::= + SEQUENCE + { + snmpNotifyIndex + Integer32, + snmpNotifyName + OCTET STRING, + snmpNotifyTag + OCTET STRING, + snmpNotifyOption + INTEGER, + snmpNotifyRowStatus + RowStatus + } +snmpNotifyIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp notify's index. Range is 0~31." + ::= { snmpNotifyEntry 1 } + +snmpNotifyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the notify. Range is 1~31. " + ::= { snmpNotifyEntry 2 } + +snmpNotifyTag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The name of the tag." + ::= { snmpNotifyEntry 3 } + +snmpNotifyOption OBJECT-TYPE + SYNTAX INTEGER + { + trap(1), + inform(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "snmpNotifyOption + trap(1): Set notify type(default is trap) to TRAP + inform(2): Set notify type(default is trap) to INFORM." + ::= { snmpNotifyEntry 4 } + +snmpNotifyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpNotifyEntry 5 } + + + +-- +-- Snmp server target address Table +-- +snmpTargetAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpTargetAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define a target address name which related to send SNMP notifications." + ::= { snmpExtMibObject 9 } + + +snmpTargetAddrEntry OBJECT-TYPE + SYNTAX SnmpTargetAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpTargetAddrTable." + INDEX { snmpTargetAddrIndex } + ::= { snmpTargetAddrTable 1 } + + SnmpTargetAddrEntry ::= + SEQUENCE { + snmpTargetAddrIndex + Integer32, + snmpTargetAddrName + OCTET STRING, + snmpTargetAddrPara + OCTET STRING, + snmpTargetAddrMgmtIf + INTEGER, + snmpTargetAddrIpType + InetAddressType, + snmpTargetAddrIp + InetAddress, + snmpTargetAddrPort + Integer32, + snmpTargetAddrTimeout + Integer32, + snmpTargetAddrRetry + Integer32, + snmpTargetAddrTag + OCTET STRING, + snmpTargetAddrRowStatus + RowStatus + } + +snmpTargetAddrIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp target address's index. Range is 0~31." + ::= { snmpTargetAddrEntry 1 } + +snmpTargetAddrName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the target address. Range is 1~31. " + ::= { snmpTargetAddrEntry 2 } + +snmpTargetAddrPara OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..60)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The name of the param." + ::= { snmpTargetAddrEntry 3 } + +snmpTargetAddrMgmtIf OBJECT-TYPE + SYNTAX INTEGER + { + noUse(1), + setMgmtIf(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "configuraion mgmt if. + 1 noUse. + 2 setMgmtIf." + ::= { snmpTargetAddrEntry 4 } + +snmpTargetAddrIpType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP addresses type,IPv4(1) or IPv6(2)." + ::= { snmpTargetAddrEntry 5 } + +snmpTargetAddrIp OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address." + ::= { snmpTargetAddrEntry 6 } + +snmpTargetAddrPort OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address udp port 0-65535.Default value is 162." + ::= { snmpTargetAddrEntry 7 } + +snmpTargetAddrTimeout OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timeout which detemine when to resend the notification 0-65535. + Default value is 1500." + ::= { snmpTargetAddrEntry 8 } + +snmpTargetAddrRetry OBJECT-TYPE + SYNTAX Integer32(0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timeout which detemine when to resend the notification 0-255. + Default value is 3." + ::= { snmpTargetAddrEntry 9 } + +snmpTargetAddrTag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Define taglist which related to notify table.Range 1~128." + ::= { snmpTargetAddrEntry 10 } + +snmpTargetAddrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpTargetAddrEntry 11 } + + +-- +-- Snmp server target params Table +-- +snmpTargetParaTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpTargetParaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the target params name which related to send SNMP notifications." + ::= { snmpExtMibObject 10 } + + +snmpTargetParaEntry OBJECT-TYPE + SYNTAX SnmpTargetParaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpTargetParaTable." + INDEX { snmpTargetParaIndex } + ::= { snmpTargetParaTable 1 } + +SnmpTargetParaEntry ::= + SEQUENCE { + snmpTargetParaIndex + Integer32, + snmpTargetParaName + OCTET STRING, + snmpTargetParaUser + OCTET STRING, + snmpTargetParaSecLvl + INTEGER, + snmpTargetParaRowStatus + RowStatus + } + +snmpTargetParaIndex OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp target params's index. Range is 0~31." + ::= { snmpTargetParaEntry 1 } + +snmpTargetParaName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the target params. Range is 1~31. " + ::= { snmpTargetParaEntry 2 } + +snmpTargetParaUser OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..60)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the user." + ::= { snmpTargetParaEntry 3 } + +snmpTargetParaSecLvl OBJECT-TYPE + SYNTAX INTEGER + { + noauth(1), + auth(2), + priv(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp security model + noauth(1): Set security level to no authentication + auth(2): Set security level to authentication but with no privacy + priv(3): Set security level to authentication with privacy" + ::= { snmpTargetParaEntry 4 } + +snmpTargetParaRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpTargetParaEntry 5 } + + +-- +-- Snmp server trap target-address Table +-- +snmpTrapAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpTrapAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Define the trap remote receiver address." + ::= { snmpExtMibObject 11 } + + +snmpTrapAddrEntry OBJECT-TYPE + SYNTAX SnmpTrapAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of snmpTrapAddrTable." + INDEX { snmpTrapIndex} + ::= { snmpTrapAddrTable 1 } + + SnmpTrapAddrEntry ::= + SEQUENCE { + snmpTrapIndex + Integer32, + snmpTrapType + INTEGER, + snmpTrapMgmtIf + INTEGER, + snmpTrapAddrIptype + InetAddressType, + snmpTrapAddrIpAddr + InetAddress, + snmpTrapAddrCommunity + OCTET STRING, + snmpTrapAddrVersion + OCTET STRING, + snmpTrapAddrPort + INTEGER, + snmpTrapAddrRowStatus + RowStatus + } + +snmpTrapIndex OBJECT-TYPE + SYNTAX Integer32 (0..95) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp trap's index." + ::= { snmpTrapAddrEntry 1 } + +snmpTrapType OBJECT-TYPE + SYNTAX INTEGER(0..1) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "configuraion type (trap:0 inform:1)." + ::= { snmpTrapAddrEntry 2 } + + +snmpTrapMgmtIf OBJECT-TYPE + SYNTAX INTEGER + { + noUse(1), + setMgmtIf(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "configuraion mgmt if. + 1 noUse. + 2 setMgmtIf." + ::= { snmpTrapAddrEntry 3 } + + + + +snmpTrapAddrIptype OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP addresses type : IPv4(1) or IPv6(2)." + ::= { snmpTrapAddrEntry 4 } + +snmpTrapAddrIpAddr OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address." + ::= { snmpTrapAddrEntry 5 } + +snmpTrapAddrCommunity OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the community string.Range 1~255." + ::= { snmpTrapAddrEntry 6 } + +snmpTrapAddrVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..60)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the remote receiver." + ::= { snmpTrapAddrEntry 7 } + +snmpTrapAddrPort OBJECT-TYPE + SYNTAX INTEGER(0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The trap value which area is 0 to 65535, The default is 162." + ::= { snmpTrapAddrEntry 8 } + +snmpTrapAddrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { snmpTrapAddrEntry 9 } + + + +-- +-- Snmp server trap enable Table +-- + +snmpEnableTable OBJECT IDENTIFIER ::= { snmpExtMibObject 12 } + +snmpTrapColdstart OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enable cold start trap. Enable(1), disable(2)." + DEFVAL { disable } + ::= { snmpEnableTable 1 } + +snmpTrapWarmstart OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enable warm start trap. Enable(1), disable(2)." + DEFVAL { disable } + ::= { snmpEnableTable 2 } + +snmpTrapLinkdown OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enable linkdown trap. Enable(1), disable(2)." + DEFVAL { disable } + ::= { snmpEnableTable 3 } + +snmpTrapLinkup OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enable linkup trap. Enable(1), disable(2)." + DEFVAL { disable } + ::= { snmpEnableTable 4 } + +snmpTrapAll OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Enable all snmp trap. Enable(1), disable(2)." + DEFVAL { disable } + ::= { snmpEnableTable 5 } + +snmpTrapGeneralEvents OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Enable all general event traps. Enable(1), disable(2)." + DEFVAL { enable } + ::= { snmpEnableTable 6 } + + snmpLock OBJECT-TYPE + SYNTAX INTEGER + { + lock(1), + unlocked(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION " + Setting this to lock(1) will only succeed when the CLI is + NOT in configuration mode otherwise a badValue(3) in SNMPv1 and an inconsistentValue(12) in + SNMPv2 and SNMPv3 will be returned indicating that the CLI is in configuration mode. + If the CLI is NOT in configuration mode, the SNMP processing + will be performed and the value of this object will immediately return to unlocked(2) state as soon + as the SNMP processing takes place. + Retrieving this object through SNMP will always returned unlocked(2). + A typical usage will be to include this object as the first variable binding in all SET requests. + If the SET request will fail because the CLI is in configuration mode, the GET-RESPONSE + will contain an error with the first variable binding which indicates + that the CLI is in configuration mode." + ::= { snmpExtMibObject 13 } + +snmpAccessGroup OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The applied SNMP acl name." + ::= { snmpExtMibObject 14 } + +snmpSysContact OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specify SNMP system contact parameter. Range 0~255. + 0 is No command." + ::= { snmpExtMibObject 15 } + +snmpSysLocation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specity SNMP system location parameter. Range 0~255. + 0 is No command." + ::= { snmpExtMibObject 16 } + +snmpInformReties OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of times to retry an Inform request. <0~100>." + ::= { snmpExtMibObject 18 } + +snmpInformTimeout OBJECT-TYPE + SYNTAX INTEGER(1..1800) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Snmp inform Timeout value, in seconds. <1~1800>." + ::= { snmpExtMibObject 19 } +-- Sub Module: STM + + + stmMibObject OBJECT IDENTIFIER ::= { stm 1 } + + +-- +--current profile +-- +stmCurrentType OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + ipv4(1), + vlan(2), + ipv6(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STM type: + default(0) provide balance to all features. + ipv4(1) provide maximum system utilization for unicast routing. You would typically use this profile for a router or aggregator in the middle of a network. + vlan(2) provide maximum system utilization for VLANs. This proflie maximizes system memory for use as a Layer 2 switch. + ipv6(3) provide maximum system utilization for IPv6 unicast routing. + hardware(50) provide default hardware configure." + DEFVAL { default } + ::= { stmMibObject 1 } + +-- +--Next profile +-- + +stmNextType OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + ipv4(1), + vlan(2), + ipv6(3) + + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "STM type: + default(0) provide balance to all features. + ipv4(1) provide maximum system utilization for unicast routing. You would typically use this profile for a router or aggregator in the middle of a network. + vlan(2) provide maximum system utilization for VLANs. This proflie maximizes system memory for use as a Layer 2 switch. + ipv6(3) provide maximum system utilization for IPv6 unicast routing. + hardware(50) provide default hardware configure." + DEFVAL { default } + ::= { stmMibObject 2 } + +-- +-- Show STM profile Table +-- +stmShowTable OBJECT-TYPE + SYNTAX SEQUENCE OF StmShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show switch table Management profile." + ::= { stmMibObject 3 } + +stmShowEntry OBJECT-TYPE + SYNTAX StmShowEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of stmShowTable by kilo." + INDEX { stmShowProfileType } + ::= { stmShowTable 1 } + +StmShowEntry ::= + SEQUENCE { + stmShowProfileType + INTEGER, + stmShowVlanNumber + Integer32, + stmShowVlanForwardingInstances + Integer32, + stmShowUcastMacAddresses + Integer32, + stmShowMcastMacAddresses + Integer32, + stmShowBlackholeMacAddresses + Integer32, + stmShowMaxAppliedVlanMapping + Integer32, + stmShowCfmLocalAndRemoteMeps + Integer32, + stmShowG8031Groups + Integer32, + stmShowG8032Rings + Integer32, + stmShowMacBasedVlanClassification + Integer32, + stmShowIpv4BasedVlanClassification + Integer32, + stmShowIpv6BasedVlanClassification + Integer32, + stmShowIpv4HostRoutes + Integer32, + stmShowIndirectIpv4Routes + Integer32, + stmShowIpv4EcmpGroups + Integer32, + stmShowIpv6HostRoutes + Integer32, + stmShowIndirectIpv6Routes + Integer32, + stmShowIpv6EcmpGroups + Integer32, + stmShowIpTunnelPeers + Integer32, + stmShowNatForIviPeers + Integer32, + stmShowIpv4McastRoutes + Integer32, + stmShowIpv4McastTotalMembers + Integer32, + stmShowIpv6McastRoutes + Integer32, + stmShowIpv6McastTotalMembers + Integer32, + stmShowIpv4SourceGuardEntries + Integer32, + stmShowIpv6SourceGuardEntries + Integer32, + stmShowIpv4AclAndQosFlowEntries + Integer32, + stmShowIpv6AclAndQosFlowEntries + Integer32, + stmShowFtn + Integer32, + stmShowIncomingLabelMap + Integer32, + stmShowVpws + Integer32, + stmShowLspPe + Integer32, + stmShowLspP + Integer32, + stmShowVplsPeer + Integer32, + stmShowVplsAc + Integer32, + stmShowVplsInstance + Integer32, + stmShowLspOam + Integer32, + stmShowOamForPseudoWrie + Integer32, + stmShowMplsApsTunnel + Integer32, + stmShowVlanMappingEntryAppliedPort + Integer32, + stmShowVlanMemberPorts + Integer32, + stmShowVlanMappingDefaultEntry + Integer32, + stmShowL2mcMemberPorts + Integer32, + stmShowL2mcv6Entries + Integer32, + stmShowL2mcv6MemberPorts + Integer32, + stmShowPBREntries + Integer32, + stmShowPBRv6Entries + Integer32, + stmShowVoiceVlan + Integer32, + stmShowG8032MemberPortsPerRing + Integer32, + stmShowMPLSLables + Integer32, + stmShowBFDSessions + Integer32 + } + +stmShowProfileType OBJECT-TYPE + SYNTAX INTEGER + { + default(1), + access(2), + ipucv4(3), + vlan(4), + l2vpn(5), + route(6), + v4acl(7), + v6acl(8), + ipucv6(9) + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STM type: + default(1) provide balance to all features. + access(2) provide maximum system utilization for QoS classification ACEs, and security ACEs. You would typically use this profile for an access switch at the network edge. + ipvuc4(3) provide maximum system utilization for unicast routing. You would typically use this profile for a router or aggregator in the middle of a network. + vlan(4) provide maximum system utilization for VLANs. This proflie maximizes system memory for use as a Layer 2 switch. + l2vpn(5) provide maximum system utilization for Layer2 VPN. This profile is only existed on metro advanced image. + ipv6(6) provide maximum system utilization for IPv6 unicast routing. + route(7) provide maximum system utilization for Ucast Routes. + v4acl(8) provide maximum system utilization for IPv4 ACL. + v6acl(9) provide maximum system utilization for IPv6 ACL. + hardware(50) provide default hardware configure." + ::= { stmShowEntry 1 } + +stmShowVlanNumber OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN number" + DEFVAL { 0 } + ::= { stmShowEntry 2 } + +stmShowVlanForwardingInstances OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VLAN forwarding instances" + DEFVAL { 0 } + ::= { stmShowEntry 3 } + +stmShowUcastMacAddresses OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ucast MAC addresses" + DEFVAL { 0 } + ::= { stmShowEntry 4 } + +stmShowMcastMacAddresses OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mcast MAC addresses" + DEFVAL { 0 } + ::= { stmShowEntry 5 } + +stmShowBlackholeMacAddresses OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Blackhole MAC addresses" + DEFVAL { 0 } + ::= { stmShowEntry 6 } + +stmShowMaxAppliedVlanMapping OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Max applied VLAN mapping" + DEFVAL { 0 } + ::= { stmShowEntry 7 } + +stmShowCfmLocalAndRemoteMeps OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CFM local and remote MEPs" + DEFVAL { 0 } + ::= { stmShowEntry 8 } + +stmShowG8031Groups OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G.8031 groups" + DEFVAL { 0 } + ::= { stmShowEntry 9 } + +stmShowG8032Rings OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G.8032 rings" + DEFVAL { 0 } + ::= { stmShowEntry 10 } + +stmShowMacBasedVlanClassification OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC based VLAN classification" + DEFVAL { 0 } + ::= { stmShowEntry 11 } + +stmShowIpv4BasedVlanClassification OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 based VLAN classification" + DEFVAL { 0 } + ::= { stmShowEntry 12 } + +stmShowIpv6BasedVlanClassification OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 based VLAN classification" + DEFVAL { 0 } + ::= { stmShowEntry 13 } + +stmShowIpv4HostRoutes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 host routes" + DEFVAL { 0 } + ::= { stmShowEntry 14 } + +stmShowIndirectIpv4Routes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indirect IPv4 routes" + DEFVAL { 0 } + ::= { stmShowEntry 15 } + +stmShowIpv4EcmpGroups OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 ECMP groups" + DEFVAL { 0 } + ::= { stmShowEntry 16 } + +stmShowIpv6HostRoutes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 host routes" + DEFVAL { 0 } + ::= { stmShowEntry 17 } + +stmShowIndirectIpv6Routes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indirect IPv6 routes" + DEFVAL { 0 } + ::= { stmShowEntry 18 } + +stmShowIpv6EcmpGroups OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 ECMP groups" + DEFVAL { 0 } + ::= { stmShowEntry 19 } + +stmShowIpTunnelPeers OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP Tunnel Peers" + DEFVAL { 0 } + ::= { stmShowEntry 20 } + +stmShowNatForIviPeers OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NAT For IVI Peers" + DEFVAL { 0 } + ::= { stmShowEntry 21 } + +stmShowIpv4McastRoutes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 Mcast routes" + DEFVAL { 0 } + ::= { stmShowEntry 22 } + +stmShowIpv4McastTotalMembers OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 Mcast total members" + DEFVAL { 0 } + ::= { stmShowEntry 23 } + +stmShowIpv6McastRoutes OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 Mcast routes" + DEFVAL { 0 } + ::= { stmShowEntry 24 } + +stmShowIpv6McastTotalMembers OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 Mcast total members" + DEFVAL { 0 } + ::= { stmShowEntry 25 } + +stmShowIpv4SourceGuardEntries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 source guard entries" + DEFVAL { 0 } + ::= { stmShowEntry 26 } + +stmShowIpv6SourceGuardEntries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 source guard entries" + DEFVAL { 0 } + ::= { stmShowEntry 27 } + +stmShowIpv4AclAndQosFlowEntries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 ACL/QOS flow entries" + DEFVAL { 0 } + ::= { stmShowEntry 28 } + +stmShowIpv6AclAndQosFlowEntries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 ACL/QOS flow entries" + DEFVAL { 0 } + ::= { stmShowEntry 29 } + +stmShowFtn OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTN" + DEFVAL { 0 } + ::= { stmShowEntry 30 } + +stmShowIncomingLabelMap OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Incoming Label Map" + DEFVAL { 0 } + ::= { stmShowEntry 31 } + +stmShowVpws OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "vpws" + DEFVAL { 0 } + ::= { stmShowEntry 32 } + +stmShowLspPe OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LSP PE" + DEFVAL { 0 } + ::= { stmShowEntry 33 } + +stmShowLspP OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LSP P" + DEFVAL { 0 } + ::= { stmShowEntry 34 } + +stmShowVplsPeer OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPLS PEER" + DEFVAL { 0 } + ::= { stmShowEntry 35 } + +stmShowVplsAc OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPLS AC" + DEFVAL { 0 } + ::= { stmShowEntry 36 } + +stmShowVplsInstance OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPLS Instance" + DEFVAL { 0 } + ::= { stmShowEntry 37 } + +stmShowLspOam OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LSP OAM" + DEFVAL { 0 } + ::= { stmShowEntry 38 } + +stmShowOamForPseudoWrie OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OAM for Pseudo Wrie" + DEFVAL { 0 } + ::= { stmShowEntry 39 } + +stmShowMplsApsTunnel OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MPLS APS Tunnel" + DEFVAL { 0 } + ::= { stmShowEntry 40 } + +stmShowVlanMappingEntryAppliedPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan Mapping Entry Applied Port" + DEFVAL { 0 } + ::= { stmShowEntry 41 } + +stmShowVlanMemberPorts OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan Member Ports" + DEFVAL { 0 } + ::= { stmShowEntry 42 } + +stmShowVlanMappingDefaultEntry OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan Mapping Default Entry" + DEFVAL { 0 } + ::= { stmShowEntry 43 } + +stmShowL2mcMemberPorts OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "L2mc Member Ports" + DEFVAL { 0 } + ::= { stmShowEntry 44 } + +stmShowL2mcv6Entries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "L2mcv6 Entries" + DEFVAL { 0 } + ::= { stmShowEntry 45 } + +stmShowL2mcv6MemberPorts OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "L2mcv6 Member Ports" + DEFVAL { 0 } + ::= { stmShowEntry 46 } + +stmShowPBREntries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PBR Entries" + DEFVAL { 0 } + ::= { stmShowEntry 47 } + +stmShowPBRv6Entries OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PBRv6 Entries" + DEFVAL { 0 } + ::= { stmShowEntry 48 } + +stmShowVoiceVlan OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Voice Vlan" + DEFVAL { 0 } + ::= { stmShowEntry 49 } + +stmShowG8032MemberPortsPerRing OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8032 Member Ports Per Ring" + DEFVAL { 0 } + ::= { stmShowEntry 50 } + +stmShowMPLSLables OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MPLS Lables" + DEFVAL { 0 } + ::= { stmShowEntry 51 } + +stmShowBFDSessions OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "BFD Sessions" + DEFVAL { 0 } + ::= { stmShowEntry 52 } + + +-- Sub Module: DNSCLIENT + + +dnsClientMibObject OBJECT IDENTIFIER ::= { dnsClient 1 } + +-- +-- add/remove a static host +-- + +dnsClientHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnsClientHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table containing information of DNS host." + ::= { dnsClientMibObject 1 } + +dnsClientHostEntry OBJECT-TYPE + SYNTAX DnsClientHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information of DNS clients host." + INDEX { dnsClientHostIpHostIndex } + ::= { dnsClientHostTable 1 } + +DnsClientHostEntry ::= + SEQUENCE + { + dnsClientHostIpHostIndex + INTEGER, + dnsClientHostIpHostName + OCTET STRING , + dnsClientHostIpAddress + IpAddress, + dnsClientHostRowStatus + RowStatus + } + +dnsClientHostIpHostIndex OBJECT-TYPE + SYNTAX INTEGER (1..1024) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DNS host IP's index." + ::= { dnsClientHostEntry 1 } + +dnsClientHostIpHostName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DNS host IP host name." + ::= { dnsClientHostEntry 2 } + +dnsClientHostIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DNS host IP addresses." + ::= { dnsClientHostEntry 3 } + +dnsClientHostRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { dnsClientHostEntry 4 } + + + +-- +-- add/remove a static domain +-- + +dnsClientDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnsClientDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table containing information of DNS domain." + ::= { dnsClientMibObject 2 } + +dnsClientDomainEntry OBJECT-TYPE + SYNTAX DnsClientDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry containing information of DNS domain." + INDEX { dnsClientDomainIndex } + ::= { dnsClientDomainTable 1 } + +DnsClientDomainEntry ::= + SEQUENCE + { + dnsClientDomainIndex + INTEGER, + dnsClientDomainName + OCTET STRING, + dnsClientDomainRowStatus + RowStatus + } + + +dnsClientDomainIndex OBJECT-TYPE + SYNTAX INTEGER (1..6) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DNS domain's index." + ::= { dnsClientDomainEntry 1 } + +dnsClientDomainName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "DNS domain name." + -- DEFVAL { ipv4 } + ::= { dnsClientDomainEntry 2 } + +dnsClientDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { dnsClientDomainEntry 3 } + + +-- +-- add/remove a static DNS server +-- + +dnsClientServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnsClientServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information of DNS server." + ::= { dnsClientMibObject 3 } + +dnsClientServerEntry OBJECT-TYPE + SYNTAX DnsClientServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information of DNS clients server." + INDEX { dnsClientServerIpAddress } + ::= { dnsClientServerTable 1 } + + +DnsClientServerEntry ::= + SEQUENCE { +-- dnsClientServerIpAddressType +-- InetAddressType, + dnsClientServerIpAddress + IpAddress, + dnsClientServerRowStatus + RowStatus + } + +--dnsClientServerIpAddressType OBJECT-TYPE +-- SYNTAX InetAddressType +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "DNS host IP addresses type (IPv4 or IPv6)." +-- DEFVAL { ipv4 } +-- ::= { dnsClientServerEntry 1 } + +dnsClientServerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DNS host IP addresses." + ::= { dnsClientServerEntry 1 } + +dnsClientServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { dnsClientServerEntry 2 } + +-- Sub Module: SSH + + +-- ================================================================== +-- +-- =====================object definition begin====================== +-- +-- ================================================================== + sshServer OBJECT IDENTIFIER ::= { ssh 1 } + + +-- +--sshServerEnable +-- +sshServerEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH server status (enable(1) or disable(2)). + Default value is enable(1)." + DEFVAL{ 1 } + ::= { sshServer 1 } + + +-- +--sshServerVersion +-- +sshServerVersion OBJECT-TYPE + SYNTAX INTEGER + { + v1(1), + v2(2), + all(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH server version. + v1(1), SSH version v1 + v2(2), SSH version v2 + all(3), SSH version v1 and v2. + Default value is v2(2)." + DEFVAL{ 2 } + ::= { sshServer 2 } + + +-- +--sshServerAuthTimer +-- +sshServerAuthTimer OBJECT-TYPE + SYNTAX Integer32(1..120) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH server login grace time.Range 1~120. + Default value is 120." + DEFVAL{ 120 } + ::= { sshServer 3 } + +-- +--sshServerAuthRetries +-- +sshServerAuthRetries OBJECT-TYPE + SYNTAX Integer32(1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH server max authentication retry times.Range 1~6. + Default value is 6." + DEFVAL{ 6 } + ::= { sshServer 4 } + +-- +--sshServerAuthType +-- +sshServerAuthType OBJECT-TYPE + SYNTAX INTEGER + { + password(1), + rsa(2), + publicKey(3), + passwordRsa(4), + passwordPublicKey(5), + rsaPublicKey(6), + all(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH server authentication type. + password(1): Enable password authentication + rsa(2): Enable SSHv1 RSA authentication + publicKey(3): Enable SSHv2 public key authentication + passwordRsa(4): Enable password and sshv1 Rsa authentication + passwordPublicKey(5): Enable password and sshv2 public-key authentication. + rsaPublicKey(6): Enable sshv1 rsa and sshv2 public-key authentication. + all(7): Enable all authentication type. + Default value is 5." + DEFVAL{ 5 } + ::= { sshServer 5 } + +-- +--sshServerRekeyInterval +-- +sshServerRekeyInterval OBJECT-TYPE + SYNTAX Integer32(1..1440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rekey interval of ip ssh server.Range 1~1440. + Default value is 60." + DEFVAL{ 60 } + ::= { sshServer 6 } + + +sshRsaKey OBJECT IDENTIFIER ::= { ssh 2 } + +-- +--sshImportRsaKeyTable +-- +sshImportRsaKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF SshImportRsaKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp community configure." + ::= { sshRsaKey 8 } + +sshImportRsaKeyEntry OBJECT-TYPE + SYNTAX SshImportRsaKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of sshImportRsaKeyTable." + INDEX { sshImportRsaKeyIndex } + ::= { sshImportRsaKeyTable 1 } + + + SshImportRsaKeyEntry ::= + SEQUENCE + { + sshImportRsaKeyIndex + INTEGER, + sshImportRsaKeyName + OCTET STRING, + sshImportRsaMgmtIf + INTEGER, + sshImportRsaKeyGenType + INTEGER, + sshImportRsaKeyBits + Integer32, + sshImportRsaKeyFileName + OCTET STRING, + sshImportRsaKeyType + INTEGER, + sshImportRsaKeyFormatType + INTEGER, + sshImportRsaKeyPasswd + OCTET STRING, + sshImportRsaKeyRowStatus + RowStatus + } + +sshImportRsaKeyIndex OBJECT-TYPE + SYNTAX INTEGER (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "SSH rsa key's index.Range 0~31." + ::= { sshImportRsaKeyEntry 1 } + +sshImportRsaKeyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH rsa key's name.Range 1~31" + ::= { sshImportRsaKeyEntry 2 } + +sshImportRsaMgmtIf OBJECT-TYPE + SYNTAX INTEGER + { + getValue(0), + noUse(1), + setMgmtIf(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configuraion mgmt-if.getValue(0),no use(1),setMgmtIf(2)." + ::= { sshImportRsaKeyEntry 3 } + +sshImportRsaKeyGenType OBJECT-TYPE + SYNTAX INTEGER + { + autoGen(1), + localFile(2), + ftpFile(3), + tftpFile(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshImportRsaKeyGenType,Now only support auto-gen and local file. + if autoGen is selected the index is invalid, it will select the index itself. + 1 autoGen. + 2 localFile. + 3 ftpFile. + 4 tftpFile." + ::= { sshImportRsaKeyEntry 4 } + +sshImportRsaKeyBits OBJECT-TYPE + SYNTAX Integer32(768..4096) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshImportRsaKeyBits.Range 768~4096." + ::= { sshImportRsaKeyEntry 5 } + +sshImportRsaKeyFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshImportRsaKeyFileName.Range 0~63." + ::= { sshImportRsaKeyEntry 6 } + + +sshImportRsaKeyType OBJECT-TYPE + SYNTAX INTEGER + { + public(1), + private(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshImportRsaKeyGenType + public(1): Import public key + private(2): Import private key" + ::= { sshImportRsaKeyEntry 7 } + +sshImportRsaKeyFormatType OBJECT-TYPE + SYNTAX INTEGER + { + der(1), + derHex(2), + pem(3), + ssh1(4), + ssh2(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshImportRsaKeyGenType + der(1): DER format + derHex(2): DER HEX format + pem(3): PEM format + ssh1(4): SSHv1 format + ssh2(5): SSHv2 format" + ::= { sshImportRsaKeyEntry 8 } + +sshImportRsaKeyPasswd OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH rsa key's Password.Range 6~256." + ::= { sshImportRsaKeyEntry 9} + +sshImportRsaKeyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { sshImportRsaKeyEntry 10 } + + +-- +--sshExportRsaKeyTable +-- +sshExportRsaKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF SshExportRsaKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Snmp community configure." + ::= { sshRsaKey 9 } + +sshExportRsaKeyEntry OBJECT-TYPE + SYNTAX SshExportRsaKeyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of sshExportRsaKeyTable." + INDEX { sshExportRsaKeyIndex } + ::= { sshExportRsaKeyTable 1 } + +SshExportRsaKeyEntry ::= + SEQUENCE + { + sshExportRsaKeyIndex + INTEGER, + sshExportRsaKeyName + OCTET STRING, + sshExportRsaMgmtIf + INTEGER, + sshExportRsaKeyExType + INTEGER, + sshExportRsaKeyFileName + OCTET STRING, + sshExportRsaKeyType + INTEGER, + sshExportRsaKeyFormatType + INTEGER, + sshExportRsaKeyEncryptType + INTEGER, + sshExportRsaKeyPassword + OCTET STRING, + sshExportRsaKeyRowStatus + RowStatus + } +sshExportRsaKeyIndex OBJECT-TYPE + SYNTAX INTEGER (0) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "SSH rsa key's index." + ::= { sshExportRsaKeyEntry 1 } + +sshExportRsaKeyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..60)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH rsa key's name.Range 1~60." + ::= { sshExportRsaKeyEntry 2 } + +sshExportRsaMgmtIf OBJECT-TYPE + SYNTAX INTEGER + { + getValue(0), + noUse(1), + setMgmtIf(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configuraion mgmt-if.getValue(0),no use(1),setMgmtIf(2)." + ::= { sshExportRsaKeyEntry 3 } + +sshExportRsaKeyExType OBJECT-TYPE + SYNTAX INTEGER + { + localFile(1), + ftpFile(2), + tftpFile(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshExportRsaKeyGenType,Now only support local-file. + 1 localFile. + 2 ftpFile. + 3 tftpFile." + ::= { sshExportRsaKeyEntry 4 } + + +sshExportRsaKeyFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshExportRsaKeyFileName.Range 0~256." + ::= { sshExportRsaKeyEntry 5 } + + +sshExportRsaKeyType OBJECT-TYPE + SYNTAX INTEGER + { + public(1), + private(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshExportRsaKeyGenType + public(1): Export public key + private(2): Export private key" + ::= { sshExportRsaKeyEntry 6 } + +sshExportRsaKeyFormatType OBJECT-TYPE + SYNTAX INTEGER + { + der(1), + derHex(2), + pem(3), + ssh1(4), + ssh2(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshExportRsaKeyGenType + der(1): DER format + derHex(2): DER HEX format + pem(3): PEM format + ssh1(4): SSHv1 format + ssh2(5): SSHv2 format" + ::= { sshExportRsaKeyEntry 7 } + +sshExportRsaKeyEncryptType OBJECT-TYPE + SYNTAX INTEGER + { + des(1), + des3(2), + aes128(3), + aes192(4), + aes256(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "sshExportRsaKeyEncryptType + des(1): Encrypt the private key with DES + des3(2): Encrypt the private key with Triple DES + aes128(3): Encrypt the private key with AES 128 bits + aes192(4): Encrypt the private key with AES 192 bits + aes256(5): Encrypt the private key with AES 256 bits" + ::= { sshExportRsaKeyEntry 8 } + +sshExportRsaKeyPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH rsa key's Password.Range 6~256." + ::= { sshExportRsaKeyEntry 9 } + +sshExportRsaKeyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { sshExportRsaKeyEntry 10 } + + +sshHostKey OBJECT IDENTIFIER ::= { ssh 3 } + +-- +--sshHostKeyRsaTable +-- + +sshHostKeyRsaTable OBJECT-TYPE + SYNTAX SEQUENCE OF SshHostKeyRsaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ssh server rsa host key." + ::= { sshHostKey 7 } + + +sshHostKeyRsaEntry OBJECT-TYPE + SYNTAX SshHostKeyRsaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of sshHostKeyRsaTable." + INDEX { sshHostKeyRsaIndex } + ::= { sshHostKeyRsaTable 1 } + + +SshHostKeyRsaEntry ::= + SEQUENCE { + sshHostKeyRsaIndex + INTEGER, + sshHostKeyRsaName + OCTET STRING, + sshHostKeyRsaRowStatus + RowStatus + } +sshHostKeyRsaIndex OBJECT-TYPE + SYNTAX INTEGER (0) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "SSH rsa key's index." + ::= { sshHostKeyRsaEntry 1 } + +sshHostKeyRsaName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "SSH rsa key's name. The rsa key should be exist first by sshRsaKey node. Starting with alphabetic and can only include [0-9a-zA-Z.-_]. Its length range is [1, 32)" + ::= { sshHostKeyRsaEntry 2 } + +sshHostKeyRsaRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { sshHostKeyRsaEntry 3 } + + +-- Sub Module: DHCP + + +dhcpGlobal OBJECT IDENTIFIER ::= { dhcp 1 } + +dhcpEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPStatus (enable or disable)." + DEFVAL { disable } + ::= { dhcpGlobal 1 } + + +dhcpSnoop OBJECT IDENTIFIER ::= { dhcp 2 } + + +dhcpSnoopEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP SnoopingStatus (enable or disable)." + DEFVAL { disable } + ::= { dhcpSnoop 1 } + + +dhcpSnoopVerMac OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP Snooping verify mac-address (enable or disable)." + DEFVAL { enable } + ::= { dhcpSnoop 2 } + + +dhcpSnoopOption82 OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP Snooping option-82 data insertion (enable or disable)." + DEFVAL { disable } + ::= { dhcpSnoop 3 } + + +dhcpSnoopOption82AllowUntrusted OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "DHCP Snooping allow untrusted ports to accept incoming DHCP packets with relay agent information." + DEFVAL { disable } + ::= { dhcpSnoop 4 } + +dhcpSnoopAutoSaveInterval OBJECT-TYPE + SYNTAX INTEGER (15..1200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specify DHCP snooping database auto save parameter." + DEFVAL { 600 } + ::= { dhcpSnoop 5 } + +dhcpSnoopVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table is used to configure and monitor DHCP Snooping + STATUS of VLANs." + ::= { dhcpSnoop 6 } + +dhcpSnoopVlanEntry OBJECT-TYPE + SYNTAX DhcpSnoopVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry information about dhcpSnoopVlanTable." + INDEX + { + dhcpSnoopVlanIndex + } + ::= { dhcpSnoopVlanTable 1 } + + DhcpSnoopVlanEntry ::= + SEQUENCE + { + dhcpSnoopVlanIndex + Integer32, + dhcpSnoopVlanEnable + TruthValue + } + +dhcpSnoopVlanIndex OBJECT-TYPE + SYNTAX Integer32(0..4096) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "current VLAN index." + ::= { dhcpSnoopVlanEntry 1 } + +dhcpSnoopVlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP SnoopingStatus ofcurrent VLAN." +-- DEFVAL INDEX { false } + ::= { dhcpSnoopVlanEntry 2 } + + +dhcpSnoopBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information of DHCP clients listened by + DHCP snooping and it's enabled or disabled by setting + dhcpSnoopEnable node." + ::= { dhcpSnoop 7 } + +dhcpSnoopBindingEntry OBJECT-TYPE + SYNTAX DhcpSnoopBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information of DHCP clients." + INDEX { dhcpSnoopClientVlan, dhcpSnoopClientMacAddress } + ::= { dhcpSnoopBindingTable 1 } + +DhcpSnoopBindingEntry ::= + SEQUENCE + { + dhcpSnoopClientVlan + Integer32, + dhcpSnoopClientMacAddress + MacAddress, + dhcpSnoopClientIpAddressType + InetAddressType, + dhcpSnoopClientIpAddress + InetAddress, + dhcpSnoopClientIfindex + Integer32, + dhcpSnoopClientExpiry + Integer32, + dhcpSnoopClientRowStatus + RowStatus + } + +dhcpSnoopClientVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DHCP clients' vlan id collected by DHCP snooping." + ::= { dhcpSnoopBindingEntry 1 } + +dhcpSnoopClientMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DHCP clients' MAC addresses collected by DHCP snooping." + ::= { dhcpSnoopBindingEntry 2 } + +dhcpSnoopClientIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP clients' IP addresses type (IPv4 or IPv6). For DHCPv4 snooping, only support ipv4(1)." + -- DEFVAL { ipv4 } + ::= { dhcpSnoopBindingEntry 3 } + +dhcpSnoopClientIpAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP clients' IP addresses collected by DHCP snooping." + ::= { dhcpSnoopBindingEntry 4 } + +dhcpSnoopClientIfindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interface collected by DHCP snooping." + ::= { dhcpSnoopBindingEntry 5 } + +dhcpSnoopClientExpiry OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcp snooping Expiry" + ::= { dhcpSnoopBindingEntry 6 } + + +dhcpSnoopClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { dhcpSnoopBindingEntry 7 } + +-- +--dhcpSnoopTrustTable +-- +dhcpSnoopTrustTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table is used to configure and monitor port trustedStatus ." + ::= { dhcpSnoop 8 } + +dhcpSnoopTrustEntry OBJECT-TYPE + SYNTAX DhcpSnoopTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information about trustedStatus of ports." + INDEX { ifIndex } + ::= { dhcpSnoopTrustTable 1 } + +DhcpSnoopTrustEntry ::= + SEQUENCE + { + dhcpSnoopTrustStatus INTEGER + } + +dhcpSnoopTrustStatus OBJECT-TYPE + SYNTAX INTEGER + { + trusted(1), + untrusted(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TrustedStatus ofcurrent port which supports both get and + set operation." + DEFVAL { untrusted } + ::= { dhcpSnoopTrustEntry 1 } + + +-- +--dhcpSnoopStatisticsGroup +-- +dhcpSnoopStatisticsGroup OBJECT IDENTIFIER ::= { dhcpSnoop 9 } + +dhcpSnoopDHCPPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of DHCP packets received by DHCP Snooping." + ::= { dhcpSnoopStatisticsGroup 1 } + +dhcpSnoopBootpPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of BOOTP packets received by DHCP Snooping." + ::= { dhcpSnoopStatisticsGroup 2 } + +dhcpSnoopFwdPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets forwarded by DHCP Snooping." + ::= { dhcpSnoopStatisticsGroup 3 } + +dhcpSnoopInvalidPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of invalid packets received by DHCP Snooping." + ::= { dhcpSnoopStatisticsGroup 4 } + +dhcpSnoopMacVerifyFailedPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of MAC address verify failed packets received by DHCP Snooping." + ::= { dhcpSnoopStatisticsGroup 5 } + +dhcpSnoopDroppedPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of dropped packets received by DHCP Snooping." + ::= { dhcpSnoopStatisticsGroup 6 } +dhcpSnoopStatisticsReset OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the packet statistics." + ::= { dhcpSnoopStatisticsGroup 7 } + +-- +--dhcpSnoopClearAllBinding +-- +dhcpSnoopClearAllBinding OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the dhcp snoop binding." + ::= { dhcpSnoop 10 } + +dhcpSnoopRemoteIdFormatHostName OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The format type for the remote id ." + ::= { dhcpSnoop 11 } + +dhcpSnoopRemoteIdFormatString OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node is used to format remote id of option 82 for dhcpsnooping." + ::= { dhcpSnoop 12 } + +dhcpSnoopCircuitIdFormatTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpSnoopCircuitIdFormatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table is used to configure circuit id format on interface." + ::= { dhcpSnoop 13 } + +dhcpSnoopCircuitIdFormatEntry OBJECT-TYPE + SYNTAX DhcpSnoopCircuitIdFormatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of circuit id format on interface." + INDEX { ifIndex, dhcpSnoopCircuitIdFormatVlan } + ::= { dhcpSnoopCircuitIdFormatTable 1 } + +DhcpSnoopCircuitIdFormatEntry ::= + SEQUENCE + { + dhcpSnoopCircuitIdFormatVlan + Integer32, + dhcpSnoopCircuitIdFormatString + OCTET STRING, + dhcpSnoopCircuitIdFormatRowStatus + RowStatus + } + +dhcpSnoopCircuitIdFormatVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The vlan id for the Circuit Id format entry." + ::= { dhcpSnoopCircuitIdFormatEntry 1 } + +dhcpSnoopCircuitIdFormatString OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node to configure circuit id of option 82 for dhcpsnooping." + ::= { dhcpSnoopCircuitIdFormatEntry 2 } + +dhcpSnoopCircuitIdFormatRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { dhcpSnoopCircuitIdFormatEntry 3 } + +-- +-- +-- =====================Dhcp relay definition begin====================== +-- +-- +dhcpRelay OBJECT IDENTIFIER ::= { dhcp 3 } + +-- +-- dhcpRGlobal +-- + +dhcpRGlobal OBJECT IDENTIFIER ::= { dhcpRelay 1 } + +-- +--dhcpREnable +-- +dhcpREnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP relayStatus (enable or disable)." + DEFVAL { disable } + ::= { dhcpRGlobal 1 } + +dhcpROption82TrustAll OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Trust all interfaces for dhcp relay information." + ::= { dhcpRGlobal 2 } + +-- +--dhcpRIntf +-- +dhcpRIntf OBJECT IDENTIFIER ::= { dhcpRelay 3 } + +-- +--dhcpRIfOption82TrustTable +-- +dhcpRIfOption82TrustTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRIfOption82TrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for configuring the interface that trust dhcp relay information." + ::= { dhcpRIntf 1 } + +dhcpRIfOption82TrustEntry OBJECT-TYPE + SYNTAX DhcpRIfOption82TrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry for configuring the interface that trust dhcp relay information." + INDEX { ifIndex } + ::= { dhcpRIfOption82TrustTable 1 } + +DhcpRIfOption82TrustEntry ::= + SEQUENCE { + dhcpRIfOption82Trust + TruthValue + } + +dhcpRIfOption82Trust OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Trust dhcp relay information." + ::= { dhcpRIfOption82TrustEntry 1 } + + +-- +--dhcpRIfSelectTable +-- +dhcpRIfSelectTable OBJECT-TYPE + SYNTAX SEQUENCE OF DhcpRIfSelectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for configuring relay select server for interfaces." + ::= { dhcpRIntf 2 } + +dhcpRIfSelectEntry OBJECT-TYPE + SYNTAX DhcpRIfSelectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry for configuring relay select server for interfaces." + INDEX { ifIndex } + ::= { dhcpRIfSelectTable 1 } + +DhcpRIfSelectEntry ::= + SEQUENCE { + dhcpRIfSelectserver + INTEGER + } + +dhcpRIfSelectserver OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify DHCP server group number." + ::= { dhcpRIfSelectEntry 1 } + +-- +-- dhcpRServer +-- + +dhcpRServer OBJECT IDENTIFIER ::= { dhcpRelay 2 } + +dhcpROption82Switch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If the value is enabled, DHCP relay supporting option 82 function would + be enabled." + DEFVAL { disable } + ::= { dhcpRServer 1 } + +dhcpROption82Check OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCP relay option-82 data check.If the value is enabled, + DHCP relay will validate relay information in BOOTREPLY." + DEFVAL { enable } + ::= { dhcpRServer 2 } + +dhcpROption82HandleStrategy OBJECT-TYPE + SYNTAX INTEGER + { + replace(1), + keep(2), + drop(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The strategies of DHCP relay handling option 82. + 'drop' indicates DHCP relay discarding the request + packet including option 82. + 'keep' indicates DHCP relay accepting the request + packet without any change of the option 82. + 'replace' indicates DHCP relay accepting the + request packet on condition that it generates a new + option 82 to replace the original one." + DEFVAL { keep } + ::= { dhcpRServer 3 } + + +-- +--dhcpRIpToGroupTable +-- +dhcpRIpToGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF DHCPRIpToGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for configuring ip addresses for DHCP server groups." + ::= { dhcpRServer 4 } + +dhcpRIpToGroupEntry OBJECT-TYPE + SYNTAX DHCPRIpToGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry for configuring ip addresses for a DHCP server group. " + INDEX + { + dhcpRIpToGroupGroupId + } + ::= { dhcpRIpToGroupTable 1 } + + DHCPRIpToGroupEntry ::= + SEQUENCE + { + dhcpRIpToGroupGroupId + Integer32, + dhcpRIpToGroupServerIp + OCTET STRING, + dhcpRIpToGroupRowStatus + RowStatus + } + +dhcpRIpToGroupGroupId OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Group identifier of DHCP server group." + ::= { dhcpRIpToGroupEntry 1 } + +dhcpRIpToGroupServerIp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Ip address of DHCP server.For example: 1.1.1.1,2.2.2.2 " + ::= { dhcpRIpToGroupEntry 2 } + +dhcpRIpToGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { dhcpRIpToGroupEntry 3 } + + +-- +--dhcpRStatisticsGroup +-- + dhcpRStatisticsGroup OBJECT IDENTIFIER ::= { dhcpRServer 5 } + +dhcpRRxClientPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the packets received from DHCP + clients by DHCP relay. + " + ::= { dhcpRStatisticsGroup 1 } + +dhcpRRxServerPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the packets received from + DHCP Servers by DHCP relay. + " + ::= { dhcpRStatisticsGroup 2 } + +dhcpRRxClientErrPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the error packets received from + DHCP clients by DHCP relay. + " + ::= { dhcpRStatisticsGroup 3 } + +dhcpRRxServerErrPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the error packets received from + DHCP Servers by DHCP relay. + " + ::= { dhcpRStatisticsGroup 4 } + +dhcpRBogusAddrDropsPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the DHCP Bogus GIADDR drops packets handled + by DHCP relay. + " + ::= { dhcpRStatisticsGroup 5 } + +dhcpRBadCircuitIDPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the DHCP Bad circuit ID packets handled + by DHCP relay. + " + ::= { dhcpRStatisticsGroup 6 } + +dhcpRCorruptedAgentOpPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the DHCP corrupted agent options packets handled + by DHCP relay. + " + ::= { dhcpRStatisticsGroup 7 } + +dhcpRMissAgentOpPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the DHCP Missing agent options packets handled + by DHCP relay. + " + ::= { dhcpRStatisticsGroup 8 } + +dhcpRMissCircuitIDPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the DHCP Missing circuit IDs packets handled + by DHCP relay. + " + ::= { dhcpRStatisticsGroup 9 } + +dhcpRStatisticsReset OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the packet + statistics. + " + ::= { dhcpRStatisticsGroup 10 } + +-- dhcpv6 + +dhcpv6Global OBJECT IDENTIFIER ::= { dhcp 6 } + +dhcpv6Enable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 Status (enable or disable)." + DEFVAL { disable } + ::= { dhcpv6Global 1 } + + +dhcpv6Snoop OBJECT IDENTIFIER ::= { dhcp 7 } + +dhcpv6SnoopGlobal OBJECT IDENTIFIER ::= { dhcpv6Snoop 1 } + +dhcpv6SnoopEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 Snooping Status (enable or disable)." + DEFVAL { disable } + ::= { dhcpv6SnoopGlobal 1 } + +dhcpv6SnoopAutoSaveInterval OBJECT-TYPE + SYNTAX INTEGER (15..1200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specify DHCPv6 snooping database auto save parameter." + DEFVAL { 600 } + ::= { dhcpv6SnoopGlobal 2 } + +dhcpv6SnoopClearAllBinding OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the dhcpv6 snoop binding." + DEFVAL { false } + ::= { dhcpv6SnoopGlobal 3 } + +dhcpv6SnoopVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcpv6SnoopVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table is used to configure and monitor DHCPv6 Snooping + status of VLANs." + ::= { dhcpv6Snoop 2 } + +dhcpv6SnoopVlanEntry OBJECT-TYPE + SYNTAX Dhcpv6SnoopVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry information about dhcpv6SnoopVlanTable." + INDEX + { + dhcpv6SnoopVlanIndex + } + ::= { dhcpv6SnoopVlanTable 1 } + + Dhcpv6SnoopVlanEntry ::= + SEQUENCE + { + dhcpv6SnoopVlanIndex + Integer32, + dhcpv6SnoopVlanEnable + TruthValue + } + +dhcpv6SnoopVlanIndex OBJECT-TYPE + SYNTAX Integer32(0..4096) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "current VLAN index." + ::= { dhcpv6SnoopVlanEntry 1 } + +dhcpv6SnoopVlanEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 Snooping Status of current VLAN." + DEFVAL { false } + ::= { dhcpv6SnoopVlanEntry 2 } + +dhcpv6SnoopBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcpv6SnoopBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information of DHCPv6 clients listened by + DHCPv6 snooping and it's enabled or disabled by setting + dhcpv6SnoopEnable node." + ::= { dhcpv6Snoop 3 } + +dhcpv6SnoopBindingEntry OBJECT-TYPE + SYNTAX Dhcpv6SnoopBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information of DHCPv6 clients." + INDEX { dhcpv6SnoopClientVlan, dhcpv6SnoopClientMacAddress } + ::= { dhcpv6SnoopBindingTable 1 } + +Dhcpv6SnoopBindingEntry ::= + SEQUENCE + { + dhcpv6SnoopClientVlan + Integer32, + dhcpv6SnoopClientMacAddress + MacAddress, + dhcpv6SnoopClientIpAddressType + InetAddressType, + dhcpv6SnoopClientIpAddress + InetAddress, + dhcpv6SnoopClientIfindex + Integer32, + dhcpv6SnoopClientExpiry + Integer32, + dhcpv6SnoopClientRowStatus + RowStatus + } + +dhcpv6SnoopClientVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DHCPv6 clients' vlan id collected by DHCPv6 snooping." + ::= { dhcpv6SnoopBindingEntry 1 } + +dhcpv6SnoopClientMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DHCPv6 clients' MAC addresses collected by DHCPv6 snooping." + ::= { dhcpv6SnoopBindingEntry 2 } + +dhcpv6SnoopClientIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 clients' IP addresses type (IPv4 or IPv6). For DHCPv6 snooping, only support ipv6(2)." + -- DEFVAL { ipv6 } + ::= { dhcpv6SnoopBindingEntry 3 } + +dhcpv6SnoopClientIpAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 clients' IP addresses collected by DHCPv6 snooping." + ::= { dhcpv6SnoopBindingEntry 4 } + +dhcpv6SnoopClientIfindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interface collected by DHCPv6 snooping." + ::= { dhcpv6SnoopBindingEntry 5 } + +dhcpv6SnoopClientExpiry OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "dhcpv6 snooping Expiry" + ::= { dhcpv6SnoopBindingEntry 6 } + +dhcpv6SnoopClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo + and Destroy and Active." + ::= { dhcpv6SnoopBindingEntry 7 } + +-- +--dhcpv6SnoopTrustTable +-- +dhcpv6SnoopTrustTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcpv6SnoopTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table is used to configure and monitor port trustedStatus ." + ::= { dhcpv6Snoop 4 } + +dhcpv6SnoopTrustEntry OBJECT-TYPE + SYNTAX Dhcpv6SnoopTrustEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information about trusted status of ports." + INDEX { ifIndex } + ::= { dhcpv6SnoopTrustTable 1 } + +Dhcpv6SnoopTrustEntry ::= + SEQUENCE + { + dhcpv6SnoopTrust INTEGER + } + +dhcpv6SnoopTrust OBJECT-TYPE + SYNTAX INTEGER + { + trusted(1), + untrusted(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Trusted status of current port which enable dhcpv6 snooping." + DEFVAL { untrusted } + ::= { dhcpv6SnoopTrustEntry 1 } + +-- +--dhcpv6SnoopStatisticsGroup +-- +dhcpv6SnoopStatisticsGroup OBJECT IDENTIFIER ::= { dhcpv6Snoop 5 } + +dhcpv6SnoopDHCPv6PktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of DHCPv6 packets received by DHCPv6 Snooping." + ::= { dhcpv6SnoopStatisticsGroup 1 } + +dhcpv6SnoopFwdPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets forwarded by DHCPv6 Snooping." + ::= { dhcpv6SnoopStatisticsGroup 2 } + +dhcpv6SnoopInvalidPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of invalid packets received by DHCPv6 Snooping." + ::= { dhcpv6SnoopStatisticsGroup 3 } + +dhcpv6SnoopDroppedPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of dropped packets received by DHCPv6 Snooping." + ::= { dhcpv6SnoopStatisticsGroup 4 } + +dhcpv6SnoopStatisticsReset OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the packet statistics." + ::= { dhcpv6SnoopStatisticsGroup 64 } + +-- +-- =====================Dhcpv6 relay definition begin====================== +-- +dhcpv6Relay OBJECT IDENTIFIER ::= { dhcp 8 } + +-- +-- dhcpv6RGlobal +-- + +dhcpv6RGlobal OBJECT IDENTIFIER ::= { dhcpv6Relay 1 } + +-- +--dhcpv6REnable +-- +dhcpv6REnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 relay status (enable or disable)." + DEFVAL { disable } + ::= { dhcpv6RGlobal 1 } + +-- +-- dhcpv6RServer +-- + +dhcpv6RServer OBJECT IDENTIFIER ::= { dhcpv6Relay 2 } + +-- +--dhcpv6RIpToGroupTable +-- +dhcpv6RIpToGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF DHCPv6RIpToGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for configuring ip addresses for DHCPv6 server groups." + ::= { dhcpv6RServer 1 } + +dhcpv6RIpToGroupEntry OBJECT-TYPE + SYNTAX DHCPv6RIpToGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry for configuring ip addresses for a DHCPv6 server group. " + INDEX + { + dhcpv6RIpToGroupGroupId + } + ::= { dhcpv6RIpToGroupTable 1 } + + DHCPv6RIpToGroupEntry ::= + SEQUENCE + { + dhcpv6RIpToGroupGroupId + Integer32, + dhcpv6RIpToGroupServerIpIf + OCTET STRING, + dhcpv6RIpToGroupRowStatus + RowStatus + } + +dhcpv6RIpToGroupGroupId OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Group identifier of DHCPv6 server group." + ::= { dhcpv6RIpToGroupEntry 1 } + +dhcpv6RIpToGroupServerIpIf OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..512)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Ipv6 address of DHCPv6 server.For example: 2001:1::1" + ::= { dhcpv6RIpToGroupEntry 2 } + +dhcpv6RIpToGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { dhcpv6RIpToGroupEntry 3 } + +-- +--dhcpv6RIfSelectTable +-- +dhcpv6RIfSelectTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcpv6RIfSelectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for configuring relay select server for interfaces." + ::= { dhcpv6RServer 2 } + +dhcpv6RIfSelectEntry OBJECT-TYPE + SYNTAX Dhcpv6RIfSelectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry for configuring relay select server for interfaces." + INDEX { ifIndex } + ::= { dhcpv6RIfSelectTable 1 } + +Dhcpv6RIfSelectEntry ::= + SEQUENCE { + dhcpv6RIfSelectserver + INTEGER + } + +dhcpv6RIfSelectserver OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify DHCPv6 server group number." + ::= { dhcpv6RIfSelectEntry 1 } + +-- +dhcpv6ROption OBJECT IDENTIFIER ::= { dhcpv6Relay 3 } +-- + + +dhcpv6RRemoteid OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 remote-id option." + DEFVAL { disable } + ::= { dhcpv6ROption 1 } + +dhcpv6RRemoteidFormatDuid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use DUID in DHCPv6 remote-id format." + DEFVAL { true } + ::= { dhcpv6ROption 2 } + +dhcpv6RRemoteidFormatIfname OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use name of interface in DHCPv6 remote-id format." + DEFVAL { true } + ::= { dhcpv6ROption 3 } + +dhcpv6RRemoteidFormatVlan OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use vlan in DHCPv6 remote-id format." + DEFVAL { false } + ::= { dhcpv6ROption 4 } + +dhcpv6RPDrouteEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "DHCPv6 prefix-delegation route learning (enable or disable)." + DEFVAL { disable } + ::= { dhcpv6ROption 5 } + +dhcpv6RPDrouteDistance OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the default distance for prefix-delegation route learned by DHCPv6 relay." + DEFVAL { 254 } + ::= { dhcpv6ROption 6 } + +dhcpv6RPDrouteAllClear OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the prefix-delegation route." + ::= { dhcpv6ROption 7 } + +dhcpv6RPDrouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dhcpv6RPDrouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An table for prefix-delegation route." + ::= { dhcpv6ROption 8 } + +dhcpv6RPDrouteEntry OBJECT-TYPE + SYNTAX Dhcpv6RPDrouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry for prefix-delegation route." + INDEX { dhcpv6RPDrouteId } + ::= { dhcpv6RPDrouteTable 1 } + +Dhcpv6RPDrouteEntry ::= + SEQUENCE + { + dhcpv6RPDrouteId + Unsigned32, + dhcpv6RPDrouteIf + Integer32, + dhcpv6RPDrouteClientIp + OCTET STRING, + dhcpv6RPDroutePrefix + OCTET STRING, + dhcpv6RPDrouteExpiry + Unsigned32, + dhcpv6RPDrouteRowStatus + RowStatus + } + +dhcpv6RPDrouteId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ID of DHCPv6 prefix-delegation route item." + ::= { dhcpv6RPDrouteEntry 1 } + +dhcpv6RPDrouteIf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of interface to DHCPv6 client." + ::= { dhcpv6RPDrouteEntry 2 } + +dhcpv6RPDrouteClientIp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DHCPv6 PD clients' Ipv6 address." + ::= { dhcpv6RPDrouteEntry 3 } + +dhcpv6RPDroutePrefix OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..42)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DHCPv6 prefix-delegation prefix." + ::= { dhcpv6RPDrouteEntry 4 } + +dhcpv6RPDrouteExpiry OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lease of DHCPv6 prefix-delegation prefix." + ::= { dhcpv6RPDrouteEntry 5 } + +dhcpv6RPDrouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { dhcpv6RPDrouteEntry 6 } + +-- +dhcpv6RStatisticsGroup OBJECT IDENTIFIER ::= { dhcpv6Relay 4 } +-- + +dhcpv6RRxClientPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the packets received from DHCPv6 + clients by DHCPv6 relay. + " + ::= { dhcpv6RStatisticsGroup 1 } + +dhcpv6RRxServerPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the packets received from + DHCPv6 Servers by DHCPv6 relay. + " + ::= { dhcpv6RStatisticsGroup 2 } + +dhcpv6RRxClientErrPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the error packets received from + DHCPv6 clients by DHCPv6 relay. + " + ::= { dhcpv6RStatisticsGroup 3 } + +dhcpv6RRxServerErrPktNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of the error packets received from + DHCPv6 Servers by DHCPv6 relay. + " + ::= { dhcpv6RStatisticsGroup 4 } + +dhcpv6RStatisticsReset OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true,it will clear all of the packet + statistics. + " + ::= { dhcpv6RStatisticsGroup 64 } + +-- Sub Module: LSWDEVMMIB + +-- ================================================================== + +lswdevMMibObject OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Description." + ::= { lswdevMMib 1 } + + +devMFanMibObject OBJECT IDENTIFIER ::= { lswdevMMibObject 1 } + +devMFanStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF DevMFanStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Fan status description table" + ::= { devMFanMibObject 1 } + + +devMFanStatusEntry OBJECT-TYPE + SYNTAX DevMFanStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Fan status description table entry" + INDEX {devMFanPosition, devMFanModuleId, devMFanIndex } + ::= { devMFanStatusTable 1 } + + +DevMFanStatusEntry ::= + SEQUENCE + { + devMFanPosition + INTEGER, + devMFanModuleId + INTEGER, + devMFanIndex + INTEGER, + devMFanStatus + INTEGER, + devMFanSpeed + OCTET STRING, + devMFanLowSpeed + INTEGER, + devMFanHighSpeed + INTEGER, + devMFanSpeedAdjust + INTEGER, + devMFanSetSpeed + INTEGER + } + +devMFanPosition OBJECT-TYPE + SYNTAX INTEGER + { + default (1), + left (2), + right (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fan position type: 1-default, 2-left, 3-right. " + ::= { devMFanStatusEntry 1 } + +devMFanModuleId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fan Module id." + ::= { devMFanStatusEntry 2 } + +devMFanIndex OBJECT-TYPE + SYNTAX INTEGER (1..18) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fan number" + ::= { devMFanStatusEntry 3 } + +devMFanStatus OBJECT-TYPE + SYNTAX INTEGER + { + active (1), + deactive (2), + notInstall (3), + unsupport (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FanStatus : active (1), deactive (2) not installed (3) and unsupported (4)." + ::= { devMFanStatusEntry 4 } + +devMFanSpeed OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fan speed(RPM)" + ::= { devMFanStatusEntry 5 } + +devMFanLowSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Fan speed low threshold(RPM)." + ::= { devMFanStatusEntry 6 } + +devMFanHighSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Fan speed high threshold(RPM)." + ::= { devMFanStatusEntry 7 } + +devMFanSpeedAdjust OBJECT-TYPE + SYNTAX INTEGER + { + unsupport (0), + support (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether fan support speed adjust, 0 mean unsupport, 1 mean support." + ::= { devMFanStatusEntry 8 } + +devMFanSetSpeed OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Config speed value." + ::= { devMFanStatusEntry 9 } + +--devMFanTemperatureTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF DevMFanTemperatureEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "Fan temperature description table" +-- ::= { devMFanMibObject 2 } +-- +-- +--devMFanTemperatureEntry OBJECT-TYPE +-- SYNTAX DevMFanTemperatureEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "Fan temperature description entry" +-- INDEX { devMFanTemperatureLocation, devMFanTemperatureIndex} +-- ::= { devMFanTemperatureTable 1 } +-- +-- +--DevMFanTemperatureEntry ::= +-- SEQUENCE +-- { +-- devMFanTemperatureLocation INTEGER, +-- devMFanTemperatureIndex Integer32, +-- devMFanTemperatureValue Integer32, +-- devMFanTemperatureLow Integer32, +-- devMFanTemperatureHigh INTEGER +-- } +-- +-- +--devMFanTemperatureLocation OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- default(1), +-- left(2), +-- right(3) +-- } +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Fan sensor position type: 1-default, 2-left, 3-right" +-- ::= { devMFanTemperatureEntry 1 } +-- +--devMFanTemperatureIndex OBJECT-TYPE +-- SYNTAX Integer32 (1..16) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "Fan sensor number" +-- ::= { devMFanTemperatureEntry 2 } +-- +--devMFanTemperatureValue OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "Fan sensor temperature" +-- ::= { devMFanTemperatureEntry 3 } +-- +--devMFanTemperatureLow OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "Fan sensor temperature low" +-- ::= { devMFanTemperatureEntry 4 } +-- +--devMFanTemperatureHigh OBJECT-TYPE +-- SYNTAX INTEGER (50..90) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "Fan sensor temperature high" +-- ::= { devMFanTemperatureEntry 5 } + + +devMPowerStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF DevMPowerStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Power status description table." + ::= { lswdevMMibObject 2 } + + +devMPowerStatusEntry OBJECT-TYPE + SYNTAX DevMPowerStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Power status description table entry." + INDEX { devMPowerIndex } + ::= { devMPowerStatusTable 1 } + +DevMPowerStatusEntry ::= + SEQUENCE + { + devMPowerIndex + INTEGER, + devMPowerStatus + INTEGER, + devMPowerWorkStatus + INTEGER, + devMPowerType + INTEGER, + devMPowerFanStatus + INTEGER, + devMPowerControlStatus + INTEGER, + devMPowerAlertStatus + INTEGER + } + + +devMPowerIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Power number." + ::= { devMPowerStatusEntry 1 } + + devMPowerStatus OBJECT-TYPE + SYNTAX INTEGER + { + present (1), + absent (2), + unsupport (3) + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION " Power whole device status: present (1), absent (2), unsupport (3)." + ::= { devMPowerStatusEntry 2 } + + devMPowerWorkStatus OBJECT-TYPE + SYNTAX INTEGER + { + active (1), + deactive (2), + notInstall (3), + unsupport (4) + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Power status: active (1), deactive (2) not installed (3) and unsupported (4). " + ::= { devMPowerStatusEntry 3 } + + devMPowerType OBJECT-TYPE + SYNTAX INTEGER + { + ac (1), + dc (2), + unknow (3), + notInstall (4), + unsupport (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION " Power status: AC (1), DC (2), UNKNOW (3), notInstall (4) and unsupported (5)." + ::= { devMPowerStatusEntry 4 } + + devMPowerFanStatus OBJECT-TYPE + SYNTAX INTEGER + { + active (1), + deactive (2), + notInstall (3), + unsupport (4) + + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION " Power status: work (1), failed (2) not installed (3) and unsupported (4). " + ::= { devMPowerStatusEntry 5 } + + devMPowerControlStatus OBJECT-TYPE + SYNTAX INTEGER + { + on (1), + down (2), + uninstall (3), + unsupported (4) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION " Power status: on (1), down (2), uninstall(3), unsupported(4)." + ::= { devMPowerStatusEntry 6 } + + devMPowerAlertStatus OBJECT-TYPE + SYNTAX INTEGER + { + noAlert (1), + alert (2), + unsupported (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION " Power status: noAlert (1), alert (2), unsupported(3)." + ::= { devMPowerStatusEntry 7 } + + +devMSlotEnvironmentTable OBJECT-TYPE + SYNTAX SEQUENCE OF DevMSlotEnvironmentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION " Environment description table " + ::= { lswdevMMibObject 3 } + + +devMSlotEnvironmentEntry OBJECT-TYPE + SYNTAX DevMSlotEnvironmentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION " Environment DESCRIPTION table entry." + INDEX { devMSlotEnvironmentType, devMSlotEnvironmentSlot, devMSlotEnvironmentIndex} + ::= { devMSlotEnvironmentTable 1 } + + + DevMSlotEnvironmentEntry ::= + SEQUENCE + { + devMSlotEnvironmentType INTEGER, + devMSlotEnvironmentSlot Integer32, + devMSlotEnvironmentIndex Integer32, + devMSlotEnvironmentValue Integer32, + devMSlotEnvironmentCriticalLimit INTEGER, + devMSlotEnvironmentUpperLimit INTEGER, + devMSlotEnvironmentLowerLimit INTEGER + } + + +devMSlotEnvironmentType OBJECT-TYPE + SYNTAX INTEGER + { + temperature(1), + humidity(2), + fog(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Environment type. 1-temperature, 2-humidity, 3-fog. + only support temperature(1) now, Not support humidity(2) and flog(3)." + ::= { devMSlotEnvironmentEntry 1 } + +devMSlotEnvironmentSlot OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Environment slot number." + ::= { devMSlotEnvironmentEntry 2 } + +devMSlotEnvironmentIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Environment index. + For temperature,max temperature sensor num is 6." + ::= { devMSlotEnvironmentEntry 3 } + +devMSlotEnvironmentValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION " Environment value." + ::= { devMSlotEnvironmentEntry 4 } + +devMSlotEnvironmentCriticalLimit OBJECT-TYPE + SYNTAX INTEGER (55..90) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Environment critical temperature threshold, unit is Celsius." + ::= { devMSlotEnvironmentEntry 5 } + +devMSlotEnvironmentUpperLimit OBJECT-TYPE + SYNTAX INTEGER (50..85) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Environment high temperature threshold, unit is Celsius." + ::= { devMSlotEnvironmentEntry 6 } + + +devMSlotEnvironmentLowerLimit OBJECT-TYPE + SYNTAX INTEGER (-15..50) + MAX-ACCESS read-write + STATUS current + DESCRIPTION " Environment Low temperature threshold, unit is Celsius." + ::= { devMSlotEnvironmentEntry 7 } + + +--linkUpDownTrapEnable OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- enableBoth(1) , +-- disableBoth(2) , +-- enableLinkUpTrapOnly(3) , +-- enableLinkDownTrapOnly(4) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/Disable linkUp/linkDown traps of the device, determining whether +-- to enable linkUp/linkDown traps with that of the interface. +-- When the value is enableBoth(1), the linkUp/linkDown traps are both +-- enabled. +-- When the value is disableBoth(2), the linkUp/linkDown traps are both +-- disabled. +-- When the value is enableLinkUpTrapOnly(3), the linkUp traps is enabled +-- and the linkDown traps is disabled. +-- When the value is enableLinkDownTrapOnly(4), the linkUp traps is +-- disabled and the linkDown traps is enabled." +-- ::= { lswdevMMibObject 9 } +-- +--dot1qTpFdbLearnStatus OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- enabled(1), +-- disabled(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION " Enable/Disable the address learning." +-- ::= { lswdevMMibObject 10 } +-- +-- +-- +--cfmWriteFlash OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- write(1) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION " Write thecurrent effective configuration into the Flash memory. +-- This object does not support read operation." +-- ::= { lswdevMMibObject 11 } +-- +-- +--cfmEraseFlash OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- erase(1) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION " Delete the configuration from the Flash memory. +-- This object does not support read operation." +-- ::= { lswdevMMibObject 12 } +-- +-- + + + + +-- ================================================================== +-- +-- Frame information table +-- +-- ================================================================== +--lswFrameTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF LswFrameEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Frame information table." +-- ::= {lswdevMMibObject 4} +-- +--lswFrameEntry OBJECT-TYPE +-- SYNTAX LswFrameEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Frame description table entry." +-- INDEX { lswFrameIndex } +-- ::= {lswFrameTable 1} +-- +--LswFrameEntry ::= +-- SEQUENCE +-- { +-- lswFrameIndex Integer32, +-- lswFrameType Integer32, +-- lswFrameDesc OCTET STRING , +-- lswSlotNumber Integer32, +-- lswFrameAdminStatus INTEGER, +-- lswFrameOperStatus INTEGER +-- } +-- +--lswFrameIndex OBJECT-TYPE +-- SYNTAX Integer32 (0..65535) +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "The unique index of frame." +-- ::= {lswFrameEntry 1} +-- +--lswFrameType OBJECT-TYPE +-- SYNTAX Integer32 (0..65535) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Frame type." +-- ::= {lswFrameEntry 2} +-- +--lswFrameDesc OBJECT-TYPE +-- SYNTAX OCTET STRING (SIZE(0..64)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Frame description." +-- ::= {lswFrameEntry 3} +-- +--lswSlotNumber OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Number of slots of thecurrent frame." +-- ::= {lswFrameEntry 4} +-- +--lswFrameAdminStatus OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- normal (1), +-- fault (2), +-- other (3) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "The status of frame." +-- ::= {lswFrameEntry 5} +-- +--lswFrameOperStatus OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- disable (1), +-- enable (2), +-- haReload (3), +-- haSwitchover (4), +-- syncStartupConfig (5) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The operationStatus of frame." +-- ::= {lswFrameEntry 6} +-- ================================================================== +-- +-- slot information table +-- +-- ================================================================== + +lswSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF LswSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Slot description table." + ::= {lswdevMMibObject 5} + +lswSlotEntry OBJECT-TYPE + SYNTAX LswSlotEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Slot description table entry." + INDEX { lswSlotFrameIndex, lswSlotIndex } + ::= {lswSlotTable 1} + +LswSlotEntry ::= + SEQUENCE + { + lswSlotFrameIndex Integer32, + lswSlotIndex Integer32, + lswSlotConfigType OCTET STRING, + lswSlotCurrentType OCTET STRING, + lswSlotStatus OCTET STRING, + lswSlotSupStatus OCTET STRING, + lswSlotPortNumber Integer32, + lswSlotHwVer OCTET STRING, + lswSlotRom OCTET STRING, + lswSlotSerialNo OCTET STRING + } + +lswSlotFrameIndex OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Frame index. Now we only support 1." + ::= {lswSlotEntry 1} + +lswSlotIndex OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Slot index." + ::= {lswSlotEntry 2} + +lswSlotConfigType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The configed Slot type. Include SUP-1, LC-24S, LC-24T, LC-2X8S, LC-2X8ST." + ::= {lswSlotEntry 3} + +lswSlotCurrentType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current Slot type. Include SUP-1, LC-24S, LC-24T, LC-2X8S, LC-2X8ST." + ::= {lswSlotEntry 4} + +lswSlotStatus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Slot status. Include absent, creating, initing, syncing, fail, ready, uninit, conflict." + ::= {lswSlotEntry 5} + +lswSlotSupStatus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The supervisor card status. This node is just for supervisor card. Include Active and Standby." + ::= {lswSlotEntry 6} + +lswSlotPortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of the ports on the card in this slot. On supervisor the number is 0." + ::= {lswSlotEntry 7} + +lswSlotHwVer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hardware version of the card in this slot. If the line card is absent, none info will be printed." + ::= {lswSlotEntry 8} + +lswSlotRom OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The bootrom version of the card in this slot. If the line card is absent, none info will be printed." + ::= {lswSlotEntry 9} + +lswSlotSerialNo OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number of the card in this Slot. If the line card is absent, none info will be printed." + ::= {lswSlotEntry 10} + +-- ================================================================== +-- +-- sub slot information table +-- +-- ================================================================== + +--lswSubslotTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF LswSubslotEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Subslot DESCRIPTION table." +-- ::= {lswdevMMibObject 6} +-- +--lswSubslotEntry OBJECT-TYPE +-- SYNTAX LswSubslotEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Subslot DESCRIPTION table entry." +-- INDEX +-- { +-- lswFrameIndex, +-- lswSlotIndex, +-- lswSubslotIndex +-- } +-- ::= {lswSubslotTable 1} +-- +--LswSubslotEntry ::= +-- SEQUENCE +-- { +-- lswSubslotFrameIndex +-- Integer32, +-- lswSubslotSlotIndex +-- Integer32, +-- lswSubslotIndex +-- Integer32, +-- lswSubslotType +-- INTEGER, +-- lswSubslotPortNum +-- Integer32, +-- lswSubslotAdminStatus +-- INTEGER, +-- lswSubslotOperStatus +-- INTEGER +-- } +--lswSubslotFrameIndex OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Fram index." +-- ::= {lswSubslotEntry 1} +-- +--lswSubslotSlotIndex OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "slot index." +-- ::= {lswSubslotEntry 2} +-- +--lswSubslotIndex OBJECT-TYPE +-- SYNTAX Integer32 (0..65535) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Subslot index." +-- ::= {lswSubslotEntry 3} +-- +-- value list of lswSubslotType are identical with the value list of lswSlotType. +--lswSubslotType OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- subcard4GE(1), +-- subcard1XG(2) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Type of the pinch board in the subslot." +-- ::= {lswSubslotEntry 4} +-- +--lswSubslotPortNum OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Number of physical ports in the pinch board." +-- ::= {lswSubslotEntry 5} +-- +-- +--lswSubslotAdminStatus OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- normal (1), +-- fault (2), +-- forbidden (3) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Status of the pinch board in the subslot." +-- ::= {lswSubslotEntry 6} +-- +--lswSubslotOperStatus OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- firstattach(0), +-- present(1), +-- absent(2), +-- available(3), +-- unavailable(4), +-- clearConfig (5) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Slot operationStatus ." +-- ::= {lswSubslotEntry 7} + +lswDiagnosticBootupLevel OBJECT-TYPE + SYNTAX INTEGER + { + noDiagnostic (1), + minimal (2), + complete (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Diagnostic Bootup Level. + noDiagnostic (1), + minimal (2), + complete (3). + + The configured value will be valid after next reload. + The return value is the current bootup diag level." + ::= { lswdevMMibObject 7 } + +--transceiverSfpMonitorResult OBJECT-TYPE +-- SYNTAX OCTET STRING (SIZE (0..255)) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "This string only for transceiver Sfp Monitor warning and alarm message traps +-- can not read and write." +-- ::= { lswdevMMibObject 9 } + +transinformation OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Transceiver information description." + ::= { lswdevMMibObject 10 } + +transbasicinformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF TransbasicinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the basic information for transceiver." + ::= {transinformation 1} + +transbasicinformationEntry OBJECT-TYPE + SYNTAX TransbasicinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the basic information for transceiver." + INDEX {ifIndex} + ::= {transbasicinformationTable 1} + +TransbasicinformationEntry ::= + SEQUENCE{ + transceiveType + OCTET STRING, + transceiveVender + OCTET STRING, + transceivePartNumber + OCTET STRING, + transceiveSerialNumber + OCTET STRING, + transceiveWaveLength + Integer32, + link9SinglemodeLengthKm + Integer32, + link9SinglemodeLengthM + Integer32, + link50MultimodeLength + Integer32, + link62MultimodeLength + Integer32, + linkCopperLength + Integer32, + transceiveStatus + OCTET STRING, + transceiveMointorStatus + OCTET STRING + } +transceiveType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver type. For example: 1000BASE-LX, 1000BASE-SX, 10GBASE-SR and so on." + ::= {transbasicinformationEntry 1} + +transceiveVender OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver vender name." + ::= {transbasicinformationEntry 2} + +transceivePartNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver PN information" + ::= {transbasicinformationEntry 3} + + +transceiveSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver serial number information." + ::= {transbasicinformationEntry 4} + +transceiveWaveLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver Wavelength ,unit is nm(nanometer)." + ::= {transbasicinformationEntry 5} + +link9SinglemodeLengthKm OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Length for 9/125um single mode fiber,unit is km(kilometer)." + ::= {transbasicinformationEntry 6} + +link9SinglemodeLengthM OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Length for 9/125um single mode fiber,unit is m(meter)." + ::= {transbasicinformationEntry 7} + +link50MultimodeLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Length for 50/125um multi-mode fiber,unit is m(meter)." + ::= {transbasicinformationEntry 8} + +link62MultimodeLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Length for 62.5/125um multi-mode fiber,unit is m(meter)." + ::= {transbasicinformationEntry 9} + +linkCopperLength OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Length for copper,unit is m(meter)." + ::= {transbasicinformationEntry 10} + +transceiveStatus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver current status." + ::= {transbasicinformationEntry 11} + +transceiveMointorStatus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver current mointor status." + ::= {transbasicinformationEntry 12} + + +-- End +-- transTemperinformationTable +transTemperinformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF TransTemperinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the temperature information for transceiver." + ::= {transinformation 2} + +transTemperinformationEntry OBJECT-TYPE + SYNTAX TransTemperinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the temperature information for transceiver." + INDEX {ifIndex} + ::= {transTemperinformationTable 1} + +TransTemperinformationEntry ::= + SEQUENCE{ + temperHighAlarmThreshold + OCTET STRING, + temperLowAlarmThreshold + OCTET STRING, + temperHighWarnThreshold + OCTET STRING, + temperLowWarnThreshold + OCTET STRING, + temperCurrent + OCTET STRING + } +temperHighAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver temperature high-alarm threshold value,unit is Celsius." + ::= {transTemperinformationEntry 1} + +temperLowAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver temperature Low-alarm threshold value, unit is Celsius." + ::= {transTemperinformationEntry 2} + +temperHighWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver temperature high-warn threshold value,unit is Celsius." + ::= {transTemperinformationEntry 3} + +temperLowWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver temperature low-warn threshold value,unit is Celsius." + ::= {transTemperinformationEntry 4} + +temperCurrent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver currently temperature value,unit is Celsius . Display 4 vlaue in the case of 40G/100G fiber." + ::= {transTemperinformationEntry 5} + --End + --3 transVoltageinformationTable +transVoltageinformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF TransVoltageinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the voltag information for transceiver." + ::= {transinformation 3} + +transVoltageinformationEntry OBJECT-TYPE + SYNTAX TransVoltageinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the voltag information for transceiver." + INDEX {ifIndex} + ::= {transVoltageinformationTable 1} + +TransVoltageinformationEntry ::= + SEQUENCE{ + voltageHighAlarmThreshold + OCTET STRING, + voltageLowAlarmThreshold + OCTET STRING, + voltageHighWarnThreshold + OCTET STRING, + voltageLowWarnThreshold + OCTET STRING, + voltageCurrent + OCTET STRING + } +voltageHighAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver voltage high-alarm threshold value,unit is Voltage ." + ::= {transVoltageinformationEntry 1} + +voltageLowAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver voltage Low-alarm threshold value,unit is Voltage." + ::= {transVoltageinformationEntry 2} + +voltageHighWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver voltage high-warn threshold value,unit is Voltage." + ::= {transVoltageinformationEntry 3} + +voltageLowWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver voltage low-warn threshold value,unit is Voltage." + ::= {transVoltageinformationEntry 4} + +voltageCurrent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver currently voltage value, unit is Voltage. Display 4 vlaue in the case of 40G/100G fiber." + ::= {transVoltageinformationEntry 5} + +--End +-- transBiasinformationTable +transBiasinformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF TransBiasinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the Current information for transceiver." + ::= {transinformation 4} + +transBiasinformationEntry OBJECT-TYPE + SYNTAX TransBiasinformationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the current value information for transceiver." + INDEX {ifIndex} + ::= {transBiasinformationTable 1} + +TransBiasinformationEntry ::= + SEQUENCE{ + biasHighAlarmThreshold + OCTET STRING, + biasLowAlarmThreshold + OCTET STRING, + biasHighWarnThreshold + OCTET STRING, + biasLowWarnThreshold + OCTET STRING, + biasCurrent + OCTET STRING + } +biasHighAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver bias high-alarm threshold value ,unit is mA(milliamperes)." + ::= {transBiasinformationEntry 1} + +biasLowAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver bias Low-alarm threshold value ,unit is mA(milliamperes)." + ::= {transBiasinformationEntry 2} + +biasHighWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver current high-warn threshold value ,unit is mA(milliamperes) ." + ::= {transBiasinformationEntry 3} + +biasLowWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver bias low-warn threshold value ,unit is mA(milliamperes)." + ::= {transBiasinformationEntry 4} + +biasCurrent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver currently bias value, unit is mA(milliamperes). Display 4 vlaue in the case of 40G/100G fiber." + ::= {transBiasinformationEntry 5} + --End + -- 5 transTransmitPowerTables + +transTransmitPowerTable OBJECT-TYPE + SYNTAX SEQUENCE OF TransTransmitPowerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the Transmit Power information for transceiver." + ::= {transinformation 5} + +transTransmitPowerEntry OBJECT-TYPE + SYNTAX TransTransmitPowerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the Transmit Power value information for transceiver." + INDEX {ifIndex} + ::= {transTransmitPowerTable 1} + +TransTransmitPowerEntry ::= + SEQUENCE{ + transpowerHighAlarmThreshold + OCTET STRING, + transpowerLowAlarmThreshold + OCTET STRING, + transpowerHighWarnThreshold + OCTET STRING, + transpowerLowWarnThreshold + OCTET STRING, + transpowerCurrent + OCTET STRING + } +transpowerHighAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver transmit power high-alarm threshold value,unit is dBm." + ::= {transTransmitPowerEntry 1} + +transpowerLowAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver transmit power Low-alarm threshold value,unit is dBm." + ::= {transTransmitPowerEntry 2} + +transpowerHighWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver transmit power high-warn threshold value,unit is dBm." + ::= {transTransmitPowerEntry 3} + +transpowerLowWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver transmit power low-warn threshold value,unit is dBm." + ::= {transTransmitPowerEntry 4} + +transpowerCurrent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver currently transmit power value, unit is dBm. Display 4 vlaue in the case of 40G/100G fiber." + ::= {transTransmitPowerEntry 5} + + -- 6 transReceivePowerTable + +transReceivePowerTable OBJECT-TYPE + SYNTAX SEQUENCE OF TransReceivePowerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the receive Power information for transceiver." + ::= {transinformation 6} + +transReceivePowerEntry OBJECT-TYPE + SYNTAX TransReceivePowerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Show the Transmit Power information for transceiver." + INDEX {ifIndex} + ::= {transReceivePowerTable 1} + +TransReceivePowerEntry ::= + SEQUENCE{ + receivepowerHighAlarmThreshold + OCTET STRING, + receivepowerLowAlarmThreshold + OCTET STRING, + receivepowerHighWarnThreshold + OCTET STRING, + receivepowerLowWarnThreshold + OCTET STRING, + receivepowerCurrent + OCTET STRING + } + +receivepowerHighAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver receive power high-alarm threshold value,unit is dBm." + ::= {transReceivePowerEntry 1} + +receivepowerLowAlarmThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver receive power Low-alarm threshold value,unit is dBm." + ::= {transReceivePowerEntry 2} + +receivepowerHighWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver receive power high-warn threshold value,unit is dBm." + ::= {transReceivePowerEntry 3} + +receivepowerLowWarnThreshold OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver receive power low-warn threshold value,unit is dBm." + ::= {transReceivePowerEntry 4} + +receivepowerCurrent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transceiver currently receive power value, unit is dBm. Display 4 vlaue in the case of 40G/100G fiber." + ::= {transReceivePowerEntry 5} + +poeInformation OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Transceiver information description." + ::= { lswdevMMibObject 13 } + +poeSysConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoeSysConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of PoE system configuration." + ::= { poeInformation 1 } + +poeSysConfigEntry OBJECT-TYPE + SYNTAX PoeSysConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of PoE system configuration." + INDEX { interfaceIndex } + ::= { poeSysConfigTable 1 } + +PoeSysConfigEntry ::= + SEQUENCE + { + poeSysConfigMaxPower + INTEGER, + poeSysConfigUtiliThresholdPower + INTEGER, + poeSysConfigReservePower + INTEGER, + poeSysConfigLegacy + INTEGER, + poeSysConfigPM + INTEGER + } + +poeSysConfigMaxPower OBJECT-TYPE + SYNTAX INTEGER(15400..739200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PoE system max consumption (milli-watt)." + DEFVAL { 739200 } + ::= { poeSysConfigEntry 1 } + +poeSysConfigUtiliThresholdPower OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PSE alarm threshold of current consumption (percentage)." + DEFVAL { 90 } + ::= { poeSysConfigEntry 2 } + +poeSysConfigReservePower OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PSE reserved consumption (percentage)." + DEFVAL { 20 } + ::= { poeSysConfigEntry 3 } + +poeSysConfigLegacy OBJECT-TYPE + SYNTAX INTEGER {disable(1),enable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PoE system legacy capability.The meanings of the values are: + disable(1) - Enable legacy PD detection capability; + enable(2) - Disable legacy PD detection capability;" + DEFVAL { disable } + ::= { poeSysConfigEntry 4 } + +poeSysConfigPM OBJECT-TYPE + SYNTAX INTEGER {manual(1),auto(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PoE system power management.The meanings of the values are: + manual(1) - Manual mode; + auto(2) - Auto mode;" + DEFVAL { manual } + ::= { poeSysConfigEntry 5 } + +poeSysStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoeSysStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of PoE system status." + ::= { poeInformation 2 } + +poeSysStatusEntry OBJECT-TYPE + SYNTAX PoeSysStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of PoE system status information." + INDEX { interfaceIndex } + ::= { poeSysStatusTable 1 } + +PoeSysStatusEntry ::= + SEQUENCE + { + poeSysStatusCurPower + INTEGER, + poeSysStatusAverPower + INTEGER, + poeSysStatusPeakPower + INTEGER, + poeSysStatusMaxPower + INTEGER, + poeSysStatusRemainPower + INTEGER, + poeSysStatusUtiliThresholdPower + INTEGER, + poeSysStatusReservePower + INTEGER, + poeSysStatusCurVoltage + INTEGER, + poeSysStatusAverVoltage + INTEGER, + poeSysStatusPeakVoltage + INTEGER, + poeSysStatusLegacy + OCTET STRING, + poeSysStatusPM + OCTET STRING + } + +poeSysStatusCurPower OBJECT-TYPE + SYNTAX INTEGER(0..739200) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE total current consumption (milli-watt)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 1 } + +poeSysStatusAverPower OBJECT-TYPE + SYNTAX INTEGER(0..739200) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE history average consumption of certain period of time recently (milli-watt)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 2 } + +poeSysStatusPeakPower OBJECT-TYPE + SYNTAX INTEGER(0..739200) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE history peak consumption of certain period of time recently (milli-watt)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 3 } + +poeSysStatusMaxPower OBJECT-TYPE + SYNTAX INTEGER(15400..739200) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE system max consumption (milli-watt)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 4 } + +poeSysStatusRemainPower OBJECT-TYPE + SYNTAX INTEGER(0..739200) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE remaining power including PSE reserved power (milli-watt)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 5 } + +poeSysStatusUtiliThresholdPower OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE alarm threshold of current consumption (percentage)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 6 } + +poeSysStatusReservePower OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE reserved consumption (percentage)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 7 } + +poeSysStatusCurVoltage OBJECT-TYPE + SYNTAX INTEGER(0..60000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE current voltage of supply power (milli-voltage)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 8 } + +poeSysStatusAverVoltage OBJECT-TYPE + SYNTAX INTEGER(0..60000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE average voltage of supply power of certain period of time recently (milli-voltage)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 9 } + +poeSysStatusPeakVoltage OBJECT-TYPE + SYNTAX INTEGER(0..60000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PSE peak voltage of supply power of certain period of time recently (milli-voltage)." + DEFVAL { 0 } + ::= { poeSysStatusEntry 10 } + +poeSysStatusLegacy OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE system legacy capability." + DEFVAL { "disable" } + ::= { poeSysStatusEntry 11 } + +poeSysStatusPM OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE system power management." + DEFVAL { "manual" } + ::= { poeSysStatusEntry 12 } + +poePortStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF PoePortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of PoE port status." + ::= { poeInformation 3 } + +poePortStatusEntry OBJECT-TYPE + SYNTAX PoePortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of PoE port status information." + INDEX { interfaceIndex } + ::= { poePortStatusTable 1 } + +PoePortStatusEntry ::= + SEQUENCE + { + poePortAdmin + OCTET STRING, + poePortPriority + OCTET STRING, + poePortOper + OCTET STRING, + poePortClass + OCTET STRING, + poePortCurPower + INTEGER, + poePortAverPower + INTEGER, + poePortPeakPower + INTEGER, + poePortMaxPower + INTEGER + } + +poePortAdmin OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port admin." + DEFVAL { "enable" } + ::= { poePortStatusEntry 1 } + +poePortPriority OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port priority level." + DEFVAL { "low" } + ::= { poePortStatusEntry 2 } + +poePortOper OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port operating result status." + ::= { poePortStatusEntry 3 } + +poePortClass OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port PD IEEE class level." + ::= { poePortStatusEntry 4 } + +poePortCurPower OBJECT-TYPE + SYNTAX INTEGER(0..30000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port current consumption (milli-watt)." + ::= { poePortStatusEntry 5 } + +poePortAverPower OBJECT-TYPE + SYNTAX INTEGER(0..30000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port history average consumption of certain period of time recently (milli-watt)." + ::= { poePortStatusEntry 6 } + +poePortPeakPower OBJECT-TYPE + SYNTAX INTEGER(0..30000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port history peak consumption of certain period of time recently (milli-watt)." + ::= { poePortStatusEntry 7 } + +poePortMaxPower OBJECT-TYPE + SYNTAX INTEGER(0..30000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get PoE port max consumption limit (milli-watt)." + ::= { poePortStatusEntry 8 } + +dyingGaspEvent OBJECT-TYPE + SYNTAX INTEGER + { + occur(1), + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Get Dying Gasp State." + ::= { lswdevMMibObject 14 } + +extCardType OBJECT-TYPE + SYNTAX INTEGER(0..3) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of external card. The meanings of the values are: + 0 external card is absent; + 1 NM-2SFP+; + 2 NM-4SFP+; + 3 NM-4SFP." + DEFVAL { 0 } + ::= { lswdevMMibObject 15 } + +-- Sub Module: LSWTRAPMIB + + + + lswTRAPMibObject OBJECT IDENTIFIER ::= { lswTrapMib 1 } + + + + +powerabsent NOTIFICATION-TYPE + OBJECTS { devMPowerIndex } + STATUS current + DESCRIPTION + "Power supply absent." + ::= { lswTRAPMibObject 1 } + +powerfailure NOTIFICATION-TYPE + OBJECTS { devMPowerIndex } + STATUS current + DESCRIPTION + "Power supply failure." + ::= { lswTRAPMibObject 2 } + +powerNormal NOTIFICATION-TYPE + OBJECTS { devMPowerIndex } + STATUS current + DESCRIPTION + "Power supply normal." + ::= { lswTRAPMibObject 3 } + +powerfanfailure NOTIFICATION-TYPE + OBJECTS { devMPowerIndex } + STATUS current + DESCRIPTION + "The fan of power supply failure." + ::= { lswTRAPMibObject 4 } + +fanfailure NOTIFICATION-TYPE + OBJECTS { devMFanPosition, devMFanModuleId, devMFanIndex } + STATUS current + DESCRIPTION + "Fan failure." + ::= { lswTRAPMibObject 5 } + + +fanNormal NOTIFICATION-TYPE + OBJECTS { devMFanPosition, devMFanModuleId, devMFanIndex } + STATUS current + DESCRIPTION + "Fan normal." + ::= { lswTRAPMibObject 6 } + + +--linecardRemoved NOTIFICATION-TYPE +-- OBJECTS {lswSlotFrameIndex, lswSlotIndex } +-- STATUS current +-- DESCRIPTION +-- "Linecard removed." +-- ::= { lswTRAPMibObject 7 } +-- +--linecardInserted NOTIFICATION-TYPE +-- OBJECTS { lswSlotFrameIndex,lswSlotIndex } +-- STATUS current +-- DESCRIPTION +-- "Linecard inserted." +-- ::= { lswTRAPMibObject 8 } +-- +--subcardRemove NOTIFICATION-TYPE +-- OBJECTS { lswSubslotFrameIndex, lswSubslotSlotIndex, lswSubslotIndex } +-- STATUS current +-- DESCRIPTION +-- "Sub card removed." +-- ::= { lswTRAPMibObject 9 } +-- +--subcardInsert NOTIFICATION-TYPE +-- OBJECTS { lswSubslotFrameIndex, lswSubslotSlotIndex, lswSubslotIndex } +-- STATUS current +-- DESCRIPTION +-- "Sub card inserted." +-- ::= { lswTRAPMibObject 10 } + +supervisorRemove NOTIFICATION-TYPE + OBJECTS { lswSlotFrameIndex,lswSlotIndex } + STATUS current + DESCRIPTION + "Supervisor card removed." + ::= { lswTRAPMibObject 11 } + +supervisorInsert NOTIFICATION-TYPE + OBJECTS { lswSlotFrameIndex,lswSlotIndex } + STATUS current + DESCRIPTION + "Supervisor card inserted." + ::= { lswTRAPMibObject 12 } + +boardTemperatureAlarm NOTIFICATION-TYPE + OBJECTS { lswSlotFrameIndex,lswSlotIndex,devMSlotEnvironmentValue } + STATUS current + DESCRIPTION + "Board temperature high." + ::= { lswTRAPMibObject 13 } + +boardTemperatureReturnNormal NOTIFICATION-TYPE + OBJECTS { lswSlotFrameIndex,lswSlotIndex,devMSlotEnvironmentValue } + STATUS current + DESCRIPTION + "Board temperature from higher to normal." + ::= { lswTRAPMibObject 14 } + +loadFailure NOTIFICATION-TYPE + OBJECTS { lswSlotFrameIndex,lswSlotIndex } + STATUS current + DESCRIPTION + "Board load failure." + ::= { lswTRAPMibObject 15 } + +loadFinished NOTIFICATION-TYPE + OBJECTS { lswSlotFrameIndex,lswSlotIndex } + STATUS current + DESCRIPTION + "Board load finished." + ::= { lswTRAPMibObject 16 } + +--fatalInterrupt NOTIFICATION-TYPE +-- OBJECTS { lswFatalInterruptAddr,lswFatalInterruptMask } +-- STATUS current +-- DESCRIPTION +-- "Get fatal interrupt message." +-- ::= { lswTRAPMibObject 17 } + +transceiverInsert NOTIFICATION-TYPE + OBJECTS { transceiveStatus } + STATUS current + DESCRIPTION + "Transceiver inserted." + ::= { lswTRAPMibObject 18 } + +transceiverRemove NOTIFICATION-TYPE + OBJECTS { transceiveStatus } + STATUS current + DESCRIPTION + "Transceiver removed." + ::= { lswTRAPMibObject 19 } + +transceiverSfpMonitor NOTIFICATION-TYPE + OBJECTS { transceiveMointorStatus } + STATUS current + DESCRIPTION + "Transceiver Sfp Monitor has detected warning or alarm." + ::= { lswTRAPMibObject 20} + +chsmBootupDiagTrap NOTIFICATION-TYPE + OBJECTS { devMFanPosition } + STATUS current + DESCRIPTION + "Chsm bootup diag trap." + ::= { lswTRAPMibObject 21} + +chsmPoePortStatTrap NOTIFICATION-TYPE + OBJECTS { poeInformation } + STATUS current + DESCRIPTION + "Chsm PoE port status change trap." + ::= { lswTRAPMibObject 22} + +chsmPoeSysConsumpThresholdTrap NOTIFICATION-TYPE + OBJECTS { poeInformation } + STATUS current + DESCRIPTION + "Chsm PoE system consumption warn threshold trap." + ::= { lswTRAPMibObject 23} + +chsmPoePseVoltageTrap NOTIFICATION-TYPE + OBJECTS { poeInformation } + STATUS current + DESCRIPTION + "Chsm bootup diag trap." + ::= { lswTRAPMibObject 24} + +fanAbsent NOTIFICATION-TYPE + OBJECTS { devMFanIndex } + STATUS current + DESCRIPTION + "Fan absent." + ::= { lswTRAPMibObject 25 } + + +fanPresent NOTIFICATION-TYPE + OBJECTS { devMFanIndex } + STATUS current + DESCRIPTION + "Fan present." + ::= { lswTRAPMibObject 26 } + +powerAlert NOTIFICATION-TYPE + OBJECTS { devMPowerIndex } + STATUS current + DESCRIPTION + "Power alert." + ::= { lswTRAPMibObject 27 } + +powerNoAlert NOTIFICATION-TYPE + OBJECTS { devMPowerIndex } + STATUS current + DESCRIPTION + "Power no alert." + ::= { lswTRAPMibObject 28 } + +dyingGasp NOTIFICATION-TYPE + OBJECTS { dyingGaspEvent } + STATUS current + DESCRIPTION + "Local Dying Gasp Event" + ::= { lswTRAPMibObject 29 } + +-- Sub Module: IPSOURCEGUARD + + + +-- ip source guard binding type + IpSourceGuardType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "p source guard's binding type, ip, ip-mac, ip-vlan, ip-mac-vlan." + SYNTAX INTEGER + { + disable(0), + ip(1), + ipMac(2), + ip-vlan(3), + ipMacVlan(4) + } + +-- +-- Node of ipSourceGuard max number of binding entry perport +-- +ipSourceGuardPerportMaximalnumber OBJECT-TYPE + SYNTAX Integer32 (0..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "config ip source guard max number of entry perport." + ::= { ipSourceGuard 1 } + + +-- +-- Nodes of ipSourceGuard entry table +-- +ipSourceGuardBindingTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpSourceGuardBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of ip source guard binding entry. + " + ::= { ipSourceGuard 2 } + +ipSourceGuardBindingEntry OBJECT-TYPE + SYNTAX IpSourceGuardBindingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ip source guard binding entry." + INDEX { ipSourceGuardIpAddress} + ::= { ipSourceGuardBindingTable 1 } + + IpSourceGuardBindingEntry ::= + SEQUENCE + { + ipSourceGuardIpAddress + IpAddress, + ipSourceGuardMacAddress + OCTET STRING, + ipSourceGuardVlan + Integer32, + iSGIfIndex + Integer32, + ipSourceGuardRowStatus + RowStatus + } + +ipSourceGuardIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the ip address of a packet." + ::= { ipSourceGuardBindingEntry 1 } + +ipSourceGuardMacAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The MAC address of a packet." + ::= { ipSourceGuardBindingEntry 2 } + +ipSourceGuardVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN ID of a packet." + ::= { ipSourceGuardBindingEntry 3 } + +iSGIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The interface from which the packet comes." + ::= { ipSourceGuardBindingEntry 4 } + +ipSourceGuardRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ipSourceGuardBindingEntry 5 } + +-- +-- Nodes of ipSourceGuard enable on the interface +-- +ipSourceGuardEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpSourceGuardEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table for ip source guard enable . + " + ::= { ipSourceGuard 3 } + +ipSourceGuardEnableEntry OBJECT-TYPE + SYNTAX IpSourceGuardEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A entry for ip source guard enable." + INDEX { iSGEnableIfIndex } + ::= { ipSourceGuardEnableTable 1 } + +IpSourceGuardEnableEntry ::= + SEQUENCE + { + iSGEnableIfIndex + Integer32, + ipSourceGuardEnableType + IpSourceGuardType + } + +iSGEnableIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "the interface index of isg enabled." + ::= { ipSourceGuardEnableEntry 1 } + +ipSourceGuardEnableType OBJECT-TYPE + SYNTAX IpSourceGuardType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the enable type of ip source guard, support ip, ip-mac, ip-vlan, ip-mac-vlan." + ::= { ipSourceGuardEnableEntry 2} + +-- Sub Module: VRRPEXT + + +-- =================================================================== +-- Start of MIB objects +-- =================================================================== + + +-- =================================================================== +-- VRRP EXT Table +-- =================================================================== +vrrpVrfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VrrpVrfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of vrrp vrf." + ::= { vrrpExt 1 } + +vrrpVrfEntry OBJECT-TYPE + SYNTAX VrrpVrfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "rip vrf entry " + INDEX{ ifIndex, vrrpvrfVrId } + ::= { vrrpVrfTable 1 } + +VrrpVrfEntry ::= + SEQUENCE + { + vrrpvrfVrId + VrId, + vrrpvrfName + OCTET STRING, + vrrpvrfRowStatus + RowStatus + } + +vrrpvrfVrId OBJECT-TYPE + SYNTAX VrId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object contains the Virtual Router Identifier (VRID)." + ::= { vrrpVrfEntry 1 } + +vrrpvrfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VRF name." + ::= { vrrpVrfEntry 2 } + +vrrpvrfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { vrrpVrfEntry 3 } + +vrrpLearnMasterTable OBJECT-TYPE + SYNTAX SEQUENCE OF VrrpLearnMasterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Set learnmaster mode for the session." + ::= { vrrpExt 2 } + +vrrpLearnMasterEntry OBJECT-TYPE + SYNTAX VrrpLearnMasterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Set learnmaster mode for the session." + INDEX { ifIndex, vrrpLearnVrId } + ::= { vrrpLearnMasterTable 1 } + + VrrpLearnMasterEntry ::= + SEQUENCE { + vrrpLearnVrId + VrId, + vrrpLearnMode + TruthValue + } + +vrrpLearnVrId OBJECT-TYPE + SYNTAX VrId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object contains the Virtual Router Identifier (VRID)." + ::= { vrrpLearnMasterEntry 1 } + +vrrpLearnMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Learnmaster mode." + ::= { vrrpLearnMasterEntry 2 } + +-- Sub Module: INTERFACE + +interfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF InterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of interface entry." + ::= { interface 1 } + +interfaceEntry OBJECT-TYPE + SYNTAX InterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "interface entry " + INDEX { interfaceIndex} + ::= { interfaceTable 1 } + +InterfaceEntry ::= + SEQUENCE + { + interfaceIndex + Integer32, + interfaceName + OCTET STRING, + interfaceType + INTEGER, + interfaceIPv4Addr + OCTET STRING, + interfaceDesc + OCTET STRING, + interfaceMediaType + INTEGER, + interfaceSpeed + INTEGER, + interfaceDuplex + INTEGER, + interfaceResetCnt + INTEGER, + interfaceArpRetryInterval + INTEGER, + interfaceArpTimeout + INTEGER, + interfaceArpClear + INTEGER, + interfacejumboFrameEnable + INTEGER, + interfaceClearIPv4Addr + INTEGER, + interfaceBandwidth + INTEGER, + interfacePortIsolateGroupID + INTEGER, + interfaceArpProxy + INTEGER, + interfaceLocalArpProxy + INTEGER, + interfacePoeAdmin + INTEGER, + interfacePoeBudget + INTEGER, + interfacePoePriority + INTEGER, + interfaceLoadInterval + INTEGER, + interfaceMtu + INTEGER, + interfaceIpUrpf + INTEGER, + interfaceIpv6Urpf + INTEGER, + interfaceIpv6DadAttempt + INTEGER, + interfaceNDClear + INTEGER + } + +interfaceIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index. physical interface:0x1~0x3FF, + agg interface: 0x400~0x7FF, vlan interface:0x1000~0x1FFF, + lookback interface:0x3000~0x3FFF" + ::= { interfaceEntry 1 } + +interfaceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Interface name." + ::= { interfaceEntry 2 } + +interfaceType OBJECT-TYPE + SYNTAX INTEGER + { + switch(1), + route(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interface type.1:switch 2:route." + ::= { interfaceEntry 3 } + + interfaceIPv4Addr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(9..18)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "IP addresses with mask , such as 123.123.123.123/24 ." + ::= { interfaceEntry 4 } + + +interfaceDesc OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..240)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Interface specific description." + ::= { interfaceEntry 5 } + +interfaceMediaType OBJECT-TYPE + SYNTAX INTEGER + { + autoSelect(0), + rj45(1), + sfp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the port media type.0:auto-select 1:rj45 2:sfp." + ::= { interfaceEntry 6 } + +interfaceSpeed OBJECT-TYPE + SYNTAX INTEGER + { + auto(0), + speed10M(1), + speed100M(2), + speed1000M(3), + speed10G(4), + speed40G(5), + speed100G(6), + speed2halfG(7), + speed5G(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the port speed.0:auto 1:10 2:100 3:1000 4:10000 5:40000 6:100000 7:2500 8:5000." + ::= { interfaceEntry 7 } + +interfaceDuplex OBJECT-TYPE + SYNTAX INTEGER + { + auto(0), + half(1), + full(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the port duplexStatus .0:auto 1:half 2:full." + ::= { interfaceEntry 8 } + +interfaceResetCnt OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset interface counters; 0: noUse, 1: resetCount." + ::= { interfaceEntry 9 } + +interfaceArpRetryInterval OBJECT-TYPE + SYNTAX INTEGER(0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION " Set arp request retry delay value to interface. Interval range 0~3." + ::= { interfaceEntry 10 } + +interfaceArpTimeout OBJECT-TYPE + SYNTAX INTEGER(1..2147483) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Set arp age timeout value to interface. Timeout range 1~2147483. " + ::= { interfaceEntry 11 } + +interfaceArpClear OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + clearArp(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Clear arp cache.0:no use, 1:clear arp. " + ::= { interfaceEntry 12 } + +interfacejumboFrameEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Jumbo frame. 1:enabel, 2:disable" + ::= { interfaceEntry 13 } + +interfaceClearIPv4Addr OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + clearIPv4Addr(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear the IPv4 address of the interface including secondary IPv4 address.0:no use, 1:clear IPv4 address. " + ::= { interfaceEntry 14 } + +interfaceBandwidth OBJECT-TYPE + SYNTAX INTEGER(0..10000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set bandwidth informational parameter(bandwidth in kilobits). Use 0 to set default value. + The default value of 10M port is 10000. + The default value of 100M port is 100000. + The default value of 1000M port is 1000000." + ::= { interfaceEntry 15 } + +interfacePortIsolateGroupID OBJECT-TYPE + SYNTAX INTEGER(1..31255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the isolate group of a interface. isolate group id range is 1 ~ 31. and 255(0xFF) mean delete group. " + ::= { interfaceEntry 16 } + +interfaceArpProxy OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable or disable arp proxy feature." + DEFVAL { disable } + ::= { interfaceEntry 17 } + +interfaceLocalArpProxy OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable or disable local arp proxy feature." + DEFVAL { disable } + ::= { interfaceEntry 18 } + +interfacePoeAdmin OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2),force-power(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PoE port admin.The meanings of the values are: + enable(1) - Enable port PoE; + disable(2) - Disable port PoE; + force-power(3) - Force to power on port PoE;" + DEFVAL { enable } + ::= { interfaceEntry 19 } + +interfacePoeBudget OBJECT-TYPE + SYNTAX INTEGER(0..30000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PoE port max consumption limitation (milli-watt)." + DEFVAL { 30000 } + ::= { interfaceEntry 20 } + +interfacePoePriority OBJECT-TYPE + SYNTAX INTEGER{low(1),high(2),critical(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set PoE port priority level. The meanings of the value are: + low(1) - Low priority; + high(2) - High priority; + critical(3) - critical priority;" + DEFVAL { low } + ::= { interfaceEntry 21 } + +interfaceLoadInterval OBJECT-TYPE + SYNTAX INTEGER(30..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify interval for interface speed calculation. + Load-interval must be in increments of 30 seconds. + The load-interval ranges from 30 to 600 and default + value is 300." + DEFVAL { 300 } + ::= { interfaceEntry 22 } + +interfaceMtu OBJECT-TYPE + SYNTAX INTEGER(68..9000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set MTU of the interface." + DEFVAL { 1500 } + ::= { interfaceEntry 23 } + + interfaceIpUrpf OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IP Unicast reverse-path of the interface." + DEFVAL {disable } + ::= { interfaceEntry 24 } + +interfaceIpv6Urpf OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IPv6 Unicast reverse-path of the interface." + DEFVAL {disable } + ::= { interfaceEntry 25 } + + interfaceIpv6DadAttempt OBJECT-TYPE + SYNTAX INTEGER(0..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set IPv6 Duplicate address detection attempts number." + DEFVAL {1} + ::= { interfaceEntry 26 } + +interfaceNDClear OBJECT-TYPE + SYNTAX INTEGER{noUse(0),clearND(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear arp cache.0:no use, 1:clear ND." + ::= { interfaceEntry 27 } + +-- +-- config interface secondary ip address +-- +interfaceSecondaryIpAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF InterfaceSecondaryIpAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of interface secondary ip address." + ::= { interface 2 } + +interfaceSecondaryIpAddrEntry OBJECT-TYPE + SYNTAX InterfaceSecondaryIpAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "interface entry." + INDEX {interfaceIndex,ifSecondaryIpAddr} + ::= { interfaceSecondaryIpAddrTable 1 } + + InterfaceSecondaryIpAddrEntry ::= + SEQUENCE + { + ifSecondaryIpAddr + IpAddress, + ifSecondaryIpAddrMask + Integer32, + interfaceSecondaryIpAddrStatus + RowStatus + } + + +ifSecondaryIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Set secondary ip address on interface." + ::= { interfaceSecondaryIpAddrEntry 1 } + + + +ifSecondaryIpAddrMask OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Set secondary ip address mask on interface." + ::= { interfaceSecondaryIpAddrEntry 2 } + + + +interfaceSecondaryIpAddrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { interfaceSecondaryIpAddrEntry 3 } + + + + + + + + + + +loopbackInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF LoopbackInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of loopback interface." + ::= { interface 3 } + +loopbackInterfaceEntry OBJECT-TYPE + SYNTAX LoopbackInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "loopback interface entry." + INDEX {loopbackInterfaceNum} + ::= { loopbackInterfaceTable 1 } + +LoopbackInterfaceEntry ::= + SEQUENCE + { + loopbackInterfaceNum + Integer32, + loopbackInterfaceIndex + Integer32, + loopbackInterfaceStatus + RowStatus + } + +loopbackInterfaceNum OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of loopback interface." + ::= { loopbackInterfaceEntry 1 } + +loopbackInterfaceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The index of loopback interface." + ::= { loopbackInterfaceEntry 2 } + +loopbackInterfaceStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { loopbackInterfaceEntry 3 } + +-- +-- config interface ipv6 address +-- +interfaceIpv6AddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF InterfaceIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of interface ipv6 address." + ::= { interface 4 } + +interfaceIpv6AddrEntry OBJECT-TYPE + SYNTAX InterfaceIpv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "interface ipv6 address entry." + INDEX {interfaceIndex,ifIpv6Addr} + ::= { interfaceIpv6AddrTable 1 } + + InterfaceIpv6AddrEntry ::= + SEQUENCE + { + ifIpv6Addr + OCTET STRING, + ifIpv6AddrLength + Integer32, + ifIpv6AddrEui64 + INTEGER, + ifIpv6AddrLinkLocal + INTEGER, + ifIpv6AddrStatus + RowStatus + } + +ifIpv6Addr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Set ipv6 address on interface." + ::= { interfaceIpv6AddrEntry 1 } + +ifIpv6AddrLength OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " Set ipv6 address prefix length." + ::= { interfaceIpv6AddrEntry 2 } + +ifIpv6AddrEui64 OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " Set ipv6 address use eui-64 interface identifier." + DEFVAL {disable} + ::= { interfaceIpv6AddrEntry 3 } + +ifIpv6AddrLinkLocal OBJECT-TYPE + SYNTAX INTEGER{enable(1),disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " Set ipv6 link-local address." + DEFVAL {disable} + ::= { interfaceIpv6AddrEntry 4 } + +ifIpv6AddrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active." + ::= { interfaceIpv6AddrEntry 5 } + +interfaceTrapObject OBJECT IDENTIFIER ::= { interface 10 } + +ifpReceiveManyErrorPacket NOTIFICATION-TYPE + OBJECTS { interfaceIndex } + STATUS current + DESCRIPTION + "Receive many CRC error packets on the interface." + ::= { interfaceTrapObject 1 } + + + + -- Sub Module: MANAGEMENTIP +managementIp OBJECT IDENTIFIER ::= { management 1 } + +managementIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF ManagementIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of management ip entry." + ::= { managementIp 1 } + +managementIpEntry OBJECT-TYPE + SYNTAX ManagementIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "interface entry " + INDEX { managementIpSlot} + ::= { managementIpTable 1 } + +ManagementIpEntry ::= + SEQUENCE + { + managementIpSlot + Integer32, + managementIPv4Addr + OCTET STRING, + managementRowStatus + RowStatus + } + +managementIpSlot OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Management ip slot." + ::= { managementIpEntry 1 } + + +managementIPv4Addr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP addresses with masklen. The format is like 'xxx.xxx.xxx.xxx/xx'." + ::= { managementIpEntry 2 } + +managementRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of management IP row.Now only realize Create, Destroy and Active." + ::= { managementIpEntry 3 } + + +managementGateway OBJECT IDENTIFIER ::= { management 3 } +managementIpGatewayTable OBJECT-TYPE + SYNTAX SEQUENCE OF ManagementIpGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of management ip gateway entry." + ::= { managementGateway 1 } + +managementIpGatewayEntry OBJECT-TYPE + SYNTAX ManagementIpGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "management ip Gateway entry." + INDEX { managementIpGatewaySlot, managementIpGateway } + ::= { managementIpGatewayTable 1 } + +ManagementIpGatewayEntry ::= + SEQUENCE + { + managementIpGatewaySlot + Integer32, + managementIpGateway + IpAddress, + managementIpGatewayStatus + RowStatus + } + +managementIpGatewaySlot OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Management ip gateway slot." + ::= { managementIpGatewayEntry 1 } + +managementIpGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Management ip gateway." + ::= { managementIpGatewayEntry 2 } + +managementIpGatewayStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { managementIpGatewayEntry 3 } + + + +-- Sub Module: MVR + + +mvrGlobalStatus OBJECT-TYPE + SYNTAX INTEGER + { + enable (1), + disable (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable/Disable MVR on the switch." + ::= { mvr 1 } + +mvrGlobalGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvrGlobalGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of MVR multicast group." + ::= { mvr 2 } + +mvrGlobalGroupEntry OBJECT-TYPE + SYNTAX MvrGlobalGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR multicast group entry." + INDEX { mvrGlobalGroup} + ::= { mvrGlobalGroupTable 1 } + +MvrGlobalGroupEntry ::= + SEQUENCE + { + mvrGlobalGroup + IpAddress, + mvrGlobalGroupRowStatus + RowStatus + } + +mvrGlobalGroup OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR multicast group." + ::= { mvrGlobalGroupEntry 1 } + +mvrGlobalGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mvrGlobalGroupEntry 2 } + +mvrSourceVlan OBJECT-TYPE + SYNTAX INTEGER(0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Configure a source VLAN for MVR; 0 unset source vlan." + ::= { mvr 3 } + +mvrSourceIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Mvr Source IP address. Use 0.0.0.0 to restore the default value." + ::= { mvr 4 } + +mvrSourcePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvrSourcePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of MVR source port." + ::= { mvr 5 } + +mvrSourcePortEntry OBJECT-TYPE + SYNTAX MvrSourcePortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR source port entry." + INDEX { mvrSourcePortIfindex} + ::= { mvrSourcePortTable 1 } + + MvrSourcePortEntry ::= + SEQUENCE + { + mvrSourcePortIfindex + Integer32, + mvrSourcePortRowStatus + RowStatus + } + +mvrSourcePortIfindex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR source port ifindex." + ::= { mvrSourcePortEntry 1 } + +mvrSourcePortRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mvrSourcePortEntry 2 } + +mvrRcvPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MvrRcvPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of MVR receive port." + ::= { mvr 6 } + +mvrRcvPortEntry OBJECT-TYPE + SYNTAX MvrRcvPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR receive port entry." + INDEX { mvrRcvPortIfindex,mvrRcvVlanId} + ::= { mvrRcvPortTable 1 } + +MvrRcvPortEntry ::= + SEQUENCE + { + mvrRcvPortIfindex + Integer32, + mvrRcvVlanId + Integer32, + mvrRcvPortRowStatus + RowStatus + } + +mvrRcvPortIfindex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR receive port ifindex." + ::= { mvrRcvPortEntry 1 } + +mvrRcvVlanId OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MVR receive vlan id." + ::= { mvrRcvPortEntry 2 } + +mvrRcvPortRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mvrRcvPortEntry 3 } + +mvrIPMcastRouting OBJECT-TYPE + SYNTAX INTEGER + { + enable (1), + disable (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable/Disable IP Multicast-routing on the switch." + ::= { mvr 7 } + +-- Sub Module: ERPS + + +-- ================================================================== +-- +-- =====================object definition begin====================== +-- +-- ================================================================== + + +erpsDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF ErpsDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of domain entry." + ::= { erps 2 } + +erpsDomainEntry OBJECT-TYPE + SYNTAX ErpsDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "domain entry." + INDEX { domainIndex} + ::= { erpsDomainTable 1 } + +ErpsDomainEntry ::= + SEQUENCE + { + domainIndex + Integer32, + domainName + OCTET STRING, + domainHellotime + Integer32, + domainFailtime + Integer32, + domainPrimaryControlVlan + Integer32, + domainSubControlVlan + Integer32, + domainEnable + INTEGER, + domainInstance + Integer32, + domainRowStatus + RowStatus + } + +domainIndex OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Domain index.Range 1~255." + ::= { erpsDomainEntry 1 } + +domainName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..15)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Domain name.Range 1~16.0 means default domain name" + ::= { erpsDomainEntry 2 } + +domainHellotime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Domain hello timer interval,the range is 1~~15.The default value is 1." + ::= { erpsDomainEntry 3 } + +domainFailtime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Domain fail timer interval,the range is 3~~45.The default value is 3." + ::= { erpsDomainEntry 4 } + +domainPrimaryControlVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Domain primary control vlan ,the range is 2~~4094." + ::= { erpsDomainEntry 5 } + +domainSubControlVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Domain sub control vlan ,the range is 2~~4094." + ::= { erpsDomainEntry 6 } + +domainEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the domain. Enable(1),Disable(2). + Only support set operation." + ::= { erpsDomainEntry 7 } + +domainInstance OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set or unset the instance which the domain bound. + the range is 0~~4094. 0 is the default value" + ::= { erpsDomainEntry 8 } + +domainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize Destroy and Active." + ::= { erpsDomainEntry 9 } + +--erpsDomainStatsTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF ErpsDomainStatsEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "table of domain statistics entry." +-- ::= { erps 3 } +-- +--erpsDomainStatsEntry OBJECT-TYPE +-- SYNTAX ErpsDomainStatsEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Domain statistics entry." +-- INDEX { domainStatsIndex} +-- ::= { erpsDomainStatsTable 1 } +-- +--ErpsDomainStatsEntry ::= +-- SEQUENCE +-- { +-- domainStatsIndex +-- Integer32, +-- domainStatsTotalSendPackets +-- Unsigned32, +-- domainStatsHelloSendPackets +-- Unsigned32, +-- domainStatsRingUpFlushFdbSendPackets +-- Unsigned32, +-- domainStatsRingDownFlushFdbSendPackets +-- Unsigned32, +-- domainStatsLinkDownSendPackets +-- Unsigned32, +-- domainStatsAskStateSendPackets +-- Unsigned32, +-- domainStatsTotalRecPackets +-- Unsigned32, +-- domainStatsHelloRecPackets +-- Unsigned32, +-- domainStatsRingUpFlushFdbRecPackets +-- Unsigned32, +-- domainStatsRingDownFlushFdbRecPackets +-- Unsigned32, +-- domainStatsLinkDownRecPackets +-- Unsigned32, +-- domainStatsAskStateRecPackets +-- Unsigned32, +-- domainStatsClearPackets +-- Integer32 +-- } +-- +--domainStatsIndex OBJECT-TYPE +-- SYNTAX Integer32 (0..65535) +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 1 } +-- +--domainStatsTotalSendPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 2 } +-- +--domainStatsHelloSendPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 3 } +-- +--domainStatsRingUpFlushFdbSendPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 4 } +-- +--domainStatsRingDownFlushFdbSendPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 5 } +-- +--domainStatsLinkDownSendPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 6 } +-- +--domainStatsAskStateSendPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 7 } +-- +--domainStatsTotalRecPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 8 } +-- +--domainStatsHelloRecPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 9 } +-- +--domainStatsRingUpFlushFdbRecPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 10 } +-- +--domainStatsRingDownFlushFdbRecPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 11 } +-- +--domainStatsLinkDownRecPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "Domain statistics." +-- ::= { erpsDomainStatsEntry 12 } +-- +--domainStatsAskStateRecPackets OBJECT-TYPE +-- SYNTAX Unsigned32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Domain statistics." +-- ::= { erpsDomainStatsEntry 13 } +-- +--domainStatsClearPackets OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Clear domain statistics and the set number is 1." +-- ::= { erpsDomainStatsEntry 14 } + +erpsRingTable OBJECT-TYPE + SYNTAX SEQUENCE OF ErpsRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of ring entry." + ::= { erps 4 } + +erpsRingEntry OBJECT-TYPE + SYNTAX ErpsRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "domain entry " + INDEX { ringIndex} + ::= { erpsRingTable 1 } + +ErpsRingEntry ::= + SEQUENCE + { + ringIndex + Integer32, + ringLevel + INTEGER, + ringmode + INTEGER, + ringEdgemode + INTEGER, + ringPrimaryIf + OCTET STRING, + ringSecondaryIf + OCTET STRING, + ringEdgeIf + OCTET STRING, + ringCommonIf + OCTET STRING, + ringSrpt + INTEGER, + ringEnable + INTEGER, + ringRowStatus + RowStatus, + ringStatus + INTEGER + } + +ringIndex OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ring index.Range 1~255." + ::= { erpsRingEntry 1 } + +ringLevel OBJECT-TYPE + SYNTAX INTEGER + { + primary(0), + sub(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Create ring with level.primary:0 sub:1." + ::= { erpsRingEntry 2 } + +ringmode OBJECT-TYPE + SYNTAX INTEGER + { + unknow(0), + master(1), + transit(2), + vpls(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring mode.unknow:0 master:1 transit:2 vpls:3." + ::= { erpsRingEntry 3 } + +ringEdgemode OBJECT-TYPE + SYNTAX INTEGER + { + unknow(0), + edge(1), + assistantedge(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring mode.unknow:0 edge:1 assistantedge:2." + ::= { erpsRingEntry 4 } + +ringPrimaryIf OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring primary port." + ::= { erpsRingEntry 5 } + +ringSecondaryIf OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring primary port." + ::= { erpsRingEntry 6 } + +ringEdgeIf OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring edge port." + ::= { erpsRingEntry 7 } + +ringCommonIf OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring common port." + ::= { erpsRingEntry 8 } + +ringSrpt OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set ring srpt. enable:1 disable:2" + ::= { erpsRingEntry 9 } + +ringEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable ring. enable:1 disable:2" + ::= { erpsRingEntry 10 } + +ringRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize Destroy and Active." + ::= { erpsRingEntry 11 } + +ringStatus OBJECT-TYPE + SYNTAX INTEGER + { + idel(0), + complete(1), + failed(2), + linkup(3), + linkdown(4), + preforwording(5), + init(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this ring. idel(0), complete(1), + failed(2), linkup(3), linkdown(4), + preforwording(5), init(6)." + ::= { erpsRingEntry 12 } + +erpsRingStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF ErpsRingStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of ring statistics entry." + ::= { erps 5 } + +erpsRingStatsEntry OBJECT-TYPE + SYNTAX ErpsRingStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ring statistics entry." + INDEX { ringStatsIndex} + ::= { erpsRingStatsTable 1 } + +ErpsRingStatsEntry ::= + SEQUENCE + { + ringStatsIndex + Integer32, + ringStatsTotalSendPackets + Unsigned32, + ringStatsHelloSendPackets + Unsigned32, + ringStatsRingUpFlushFdbSendPackets + Unsigned32, + ringStatsRingDownFlushFdbSendPackets + Unsigned32, + ringStatsLinkDownSendPackets + Unsigned32, + ringStatsEdgeHelloSendPackets + Unsigned32, + ringStatsMajorFaultSendPackets + Unsigned32, + ringStatsTotalRecPackets + Unsigned32, + ringStatsHelloRecPackets + Unsigned32, + ringStatsRingUpFlushFdbRecPackets + Unsigned32, + ringStatsRingDownFlushFdbRecPackets + Unsigned32, + ringStatsLinkDownRecPackets + Unsigned32, + ringStatsEdgeHelloRecPackets + Unsigned32, + ringStatsMajorFaultRecPackets + Unsigned32, + ringStatsClearPackets + Integer32 + } + +ringStatsIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 1 } + +ringStatsTotalSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 2 } + +ringStatsHelloSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 3 } + +ringStatsRingUpFlushFdbSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 4 } + +ringStatsRingDownFlushFdbSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 5 } + +ringStatsLinkDownSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 6 } + +ringStatsEdgeHelloSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ring statistics." + ::= { erpsRingStatsEntry 7 } + +ringStatsMajorFaultSendPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 8 } + +ringStatsTotalRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 9 } + +ringStatsHelloRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 10 } + +ringStatsRingUpFlushFdbRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ring statistics." + ::= { erpsRingStatsEntry 11 } + +ringStatsRingDownFlushFdbRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 12 } + +ringStatsLinkDownRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 13 } + +ringStatsEdgeHelloRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 14 } + +ringStatsMajorFaultRecPackets OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ring statistics." + ::= { erpsRingStatsEntry 15 } + +ringStatsClearPackets OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear ring statistics and the set number is 1." + ::= { erpsRingStatsEntry 16 } + +erpsTrapObject OBJECT IDENTIFIER ::= { erps 10 } + +erpsLinkSwitch NOTIFICATION-TYPE + OBJECTS { ringStatus } + STATUS current + DESCRIPTION + "Erps link change notification." + ::= { erpsTrapObject 1 } + +-- Sub Module: PREFIXLIST + + + +-- prefix list type - permit or deny +PrefixListType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "prefix list type, permit or deny." + SYNTAX INTEGER + { + deny(1), + permit(2) + } + +-- prefix list clear value +PrefixListClearValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "prefix list value: 1." + SYNTAX INTEGER + { + clear(1) + } + +-- prefix list sequence-use type +-- PrefixListSeqUseType ::= TEXTUAL-CONVENTION +-- STATUS current +-- DESCRIPTION +-- "prefix list SEQUENCE-number use type " +-- SYNTAX INTEGER +-- { +-- useSeq(1), +-- noUseSeq(2) +-- } + +-- +-- Node of prefixListSeqNumUse +-- +--prefixListSeqNumUse OBJECT-TYPE +-- SYNTAX PrefixListSeqUseType +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "config prefix list SEQUENCE number use " +-- ::= { prefixList 100 } +-- +-- +-- +-- Nodes of prefixList entry table +-- +prefixListTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrefixListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of prefix list entry." + ::= { prefixList 1 } + +prefixListEntry OBJECT-TYPE + SYNTAX PrefixListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ip prefix list entry." + INDEX { prefixListIpAddressType, prefixListIndex} + ::= { prefixListTable 1 } + +PrefixListEntry ::= + SEQUENCE + { + prefixListIpAddressType + InetAddressType, + prefixListIndex + Unsigned32, + prefixListName + OCTET STRING, + prefixListDescription + OCTET STRING, + prefixListRowStatus + RowStatus + } +prefixListIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ip type:ip or ipv6." + ::= { prefixListEntry 1 } + +prefixListIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "prefix list index." + ::= { prefixListEntry 2 } + +prefixListName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "prefix list name, siez (1-20)." + ::= { prefixListEntry 3 } + + prefixListDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..80)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The description of the prefix list, size (0-80)" + ::= { prefixListEntry 4 } + +prefixListRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { prefixListEntry 5 } + +-- +-- Nodes of prefixListRule entry table +-- +prefixListRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrefixListRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of prefix list entry." + ::= { prefixList 2 } + +prefixListRuleEntry OBJECT-TYPE + SYNTAX PrefixListRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ip prefix list entry." + INDEX { prefixListRuleIpAddressType, prefixListRuleIndex, prefixListRuleSeq} + ::= { prefixListRuleTable 1 } + +PrefixListRuleEntry ::= + SEQUENCE + { + prefixListRuleIpAddressType + InetAddressType, + prefixListRuleIndex + Unsigned32, + prefixListRuleSeq + Unsigned32, + prefixListRuleIpAddress + InetAddress, + prefixListRuleMaskLen + Integer32, + prefixListRuleType + PrefixListType, + prefixListRuleGe + Integer32, + prefixListRuleLe + Integer32, + prefixListRuleRowStatus + RowStatus + } +prefixListRuleIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ip type:ip or ipv6." + ::= { prefixListRuleEntry 1 } + +prefixListRuleIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "prefix list index." + ::= { prefixListRuleEntry 2 } + +prefixListRuleSeq OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The sequence number of prefix list entry." + ::= { prefixListRuleEntry 3 } + +prefixListRuleIpAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "ip or ipv6 address." + ::= { prefixListRuleEntry 4 } + +prefixListRuleMaskLen OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ip address mask length." + ::= { prefixListRuleEntry 5 } + +prefixListRuleType OBJECT-TYPE + SYNTAX PrefixListType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of prefix list: permit or deny." + ::= { prefixListRuleEntry 6 } + +prefixListRuleGe OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Minimum prefix length." + ::= { prefixListRuleEntry 7 } + +prefixListRuleLe OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum prefix length." + ::= { prefixListRuleEntry 8 } + +prefixListRuleRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { prefixListRuleEntry 9 } + + +-- +-- Nodes of prefixListClear +-- +prefixListClearTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrefixListClearEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of prefix list entry." + ::= { prefixList 3 } + +prefixListClearEntry OBJECT-TYPE + SYNTAX PrefixListClearEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ip prefix list clear entry." + INDEX { prefixListClearIpAddressType , prefixListClearIndex } + ::= { prefixListClearTable 1 } + +PrefixListClearEntry ::= + SEQUENCE + { + prefixListClearIpAddressType + InetAddressType, + prefixListClearIndex + Integer32, + prefixListClear + PrefixListClearValue + } +prefixListClearIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Clear type, ip or ipv6." + ::= { prefixListClearEntry 1 } + +prefixListClearIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "prefix list index." + ::= { prefixListClearEntry 2 } + +prefixListClear OBJECT-TYPE + SYNTAX PrefixListClearValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The prefix list clear value : the only valid value is 1." + ::= { prefixListClearEntry 3 } + + +-- +-- Nodes of prefixListDetail entry table +-- +prefixListDetailTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrefixListDetailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of prefix list entry." + ::= { prefixList 4 } + +prefixListDetailEntry OBJECT-TYPE + SYNTAX PrefixListDetailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ip prefix list detail entry." + INDEX { prefixListDetailIpAddressType, prefixListDetailIndex, prefixListDetailSeq} + ::= { prefixListDetailTable 1 } + +PrefixListDetailEntry ::= + SEQUENCE + { + prefixListDetailIpAddressType + InetAddressType, + prefixListDetailIndex + Unsigned32, + prefixListDetailSeq + Unsigned32, + prefixListDetailLastOperEntry + OCTET STRING, + prefixLisDetailCount + Integer32, + prefixListDetailRangeEntries + PrefixListType, + prefixListDetailSequences + OCTET STRING, + prefixListDetailHitCount + Integer32, + prefixListDetailRefcount + RowStatus + } +prefixListDetailIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ip type:ip or ipv6." + ::= { prefixListDetailEntry 1 } + +prefixListDetailIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "prefix list index." + ::= { prefixListDetailEntry 2 } + +prefixListDetailSeq OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The sequence number of prefix list entry." + ::= { prefixListDetailEntry 3 } + +prefixListDetailLastOperEntry OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Prefix-list with the last deletion/insertion." + ::= { prefixListDetailEntry 4 } + +prefixLisDetailCount OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Prefix-list total Count." + ::= { prefixListDetailEntry 5 } + +prefixListDetailRangeEntries OBJECT-TYPE + SYNTAX PrefixListType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Prefix-list range entries." + ::= { prefixListDetailEntry 6 } + +prefixListDetailSequences OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Prefix-list Sequences." + ::= { prefixListDetailEntry 7 } + +prefixListDetailHitCount OBJECT-TYPE + SYNTAX Integer32 (0..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "some seq of prefix-list hit count." + ::= { prefixListDetailEntry 8 } + +prefixListDetailRefcount OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "some seq of prefix-list refcount." + ::= { prefixListDetailEntry 9 } + +-- Sub Module: IPUNICAST + + +ipUnicastStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpUnicastStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of ip source guard binding entry." + ::= { ipUnicast 1 } + +ipUnicastStaticRouteEntry OBJECT-TYPE + SYNTAX IpUnicastStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ip source guard binding entry." + INDEX + { + ipUnicastStaticRouteVrfId, + ipUnicastStaticRouteDestIpAddressType, + ipUnicastStaticRouteDestIpAddress, + ipUnicastStaticRouteDestMask, + ipUnicastStaticRouteGWIpAddressType, + ipUnicastStaticRouteGWIpAddress + } + ::= { ipUnicastStaticRouteTable 1 } + +IpUnicastStaticRouteEntry ::= + SEQUENCE + { + ipUnicastStaticRouteVrfId + Integer32, + ipUnicastStaticRouteDestIpAddressType + InetAddressType, + ipUnicastStaticRouteDestIpAddress + InetAddress, + ipUnicastStaticRouteDestMask + Integer32, + ipUnicastStaticRouteGWIpAddressType + InetAddressType, + ipUnicastStaticRouteGWIpAddress + InetAddress, + ipUnicastStaticRouteDistance + Integer32, + ipUnicastStaticRouteRowStatus + RowStatus + } +ipUnicastStaticRouteVrfId OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vrf id the default value is 0." +-- DEFVAL { ipv4 } + ::= { ipUnicastStaticRouteEntry 1 } + +ipUnicastStaticRouteDestIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP addresses type (IPv4 or IPv6)." +-- DEFVAL { ipv4 } + ::= { ipUnicastStaticRouteEntry 2 } + +ipUnicastStaticRouteDestIpAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP destination prefix." + ::= { ipUnicastStaticRouteEntry 3 } + +ipUnicastStaticRouteDestMask OBJECT-TYPE + SYNTAX Integer32(0..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "DIP destination prefix mask." + ::= { ipUnicastStaticRouteEntry 4 } + +ipUnicastStaticRouteGWIpAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP addresses type (IPv4 or IPv6)." +-- DEFVAL { ipv4 } + ::= { ipUnicastStaticRouteEntry 5 } + +ipUnicastStaticRouteGWIpAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP gateway address." + ::= { ipUnicastStaticRouteEntry 6 } + +ipUnicastStaticRouteDistance OBJECT-TYPE + SYNTAX Integer32(1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance value for this route." + ::= { ipUnicastStaticRouteEntry 7 } + +ipUnicastStaticRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ipUnicastStaticRouteEntry 8 } + + +-- +-- clear all the static route +-- +ipUnicastClrStaticRoute OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear all the static route." + ::= { ipUnicast 2 } + + +-- +-- clear the static route on vrf +-- +ipUnicastClrVrfStaticRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpUnicastClrVrfStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { ipUnicast 3 } + +ipUnicastClrVrfStaticRouteEntry OBJECT-TYPE + SYNTAX IpUnicastClrVrfStaticRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + INDEX { ipUnicastClrVrfStaticRouteIndex } + ::= { ipUnicastClrVrfStaticRouteTable 1 } + +IpUnicastClrVrfStaticRouteEntry ::= + SEQUENCE + { + ipUnicastClrVrfStaticRouteIndex + Integer32, + ipUnicastClrVrfStaticRoute + Integer32 + } + +ipUnicastClrVrfStaticRouteIndex OBJECT-TYPE + SYNTAX Integer32(0..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { ipUnicastClrVrfStaticRouteEntry 1 } + + +ipUnicastClrVrfStaticRoute OBJECT-TYPE + SYNTAX Integer32(0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "" + ::= { ipUnicastClrVrfStaticRouteEntry 2 } + +ipUnicastMaxStaticRoute OBJECT-TYPE + SYNTAX Integer32(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allowed number of static routes." + ::= { ipUnicast 4 } + +ipUnicastMaxStaticV6Route OBJECT-TYPE + SYNTAX Integer32(1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allowed number of IPv6 static routes." + ::= { ipUnicast 5 } + +ipUnicastIcmpErrorInterval OBJECT-TYPE + SYNTAX Integer32(0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Error message interval(ms) of ICMP." + ::= { ipUnicast 6 } + +ipUnicastIcmpv6ErrorInterval OBJECT-TYPE + SYNTAX Integer32(0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Error message interval(ms) of ICMP." + ::= { ipUnicast 7 } + + +-- Sub Module: AAA + + +-- ================================================================== +-- +-- =====================object definition begin====================== +-- +-- ================================================================== +authenticationEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable authentication function. enable:1 disable:2." + ::= { aaa 1 } + +authenticationLoginTable OBJECT-TYPE + SYNTAX SEQUENCE OF AuthenticationLoginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of login entry." + ::= { aaa 2 } + +authenticationLoginEntry OBJECT-TYPE + SYNTAX AuthenticationLoginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login entry " + INDEX { authenticationLoginIndex} + ::= { authenticationLoginTable 1 } + +AuthenticationLoginEntry ::= + SEQUENCE + { + authenticationLoginIndex + Integer32, + authenticationLoginName + OCTET STRING, + authenticationLoginOne + INTEGER, + authenticationLoginTwo + INTEGER, + authenticationLoginThree + INTEGER, + authenticationLoginFour + INTEGER, + authenticationLoginFive + INTEGER, + authenticationLoginSix + INTEGER, + authenticationLoginRowStatus + RowStatus + } + +authenticationLoginIndex OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login index." + ::= { authenticationLoginEntry 1 } + +authenticationLoginName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Login name. The default method list name is 'default'." + ::= { authenticationLoginEntry 2 } + +authenticationLoginOne OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + line(2), + none(3), + radius(4), + local(5), + tacacs-plus(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first login type, enable(1),line(2),none(3),radius(4),local(5),tacacs-plus(6)." + ::= { authenticationLoginEntry 3 } + +authenticationLoginTwo OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1), + line(2), + none(3), + radius(4), + local(5), + tacacs-plus(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second login type, disable(0),enable(1),line(2),none(3),radius(4),local(5),tacacs-plus(6)." + ::= { authenticationLoginEntry 4 } + +authenticationLoginThree OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1), + line(2), + none(3), + radius(4), + local(5), + tacacs-plus(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The third login type, disable(0),enable(1),line(2),none(3),radius(4),local(5),tacacs-plus(6)." + ::= { authenticationLoginEntry 5 } + +authenticationLoginFour OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1), + line(2), + none(3), + radius(4), + local(5), + tacacs-plus(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth login type,disable(0),enable(1),line(2),none(3),radius(4),local(5),tacacs-plus(6)." + ::= { authenticationLoginEntry 6 } + +authenticationLoginFive OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1), + line(2), + none(3), + radius(4), + local(5), + tacacs-plus(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fifth login type, disable(0),enable(1),line(2),none(3),radius(4),local(5),tacacs-plus(6)." + ::= { authenticationLoginEntry 7 } + +authenticationLoginSix OBJECT-TYPE + SYNTAX INTEGER + { + disable(0), + enable(1), + line(2), + none(3), + radius(4), + local(5), + tacacs-plus(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fifth login type, disable(0),enable(1),line(2),none(3),radius(4),local(5),tacacs-plus(6)." + ::= { authenticationLoginEntry 8 } + +authenticationLoginRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { authenticationLoginEntry 9 } + +authenticationLineTable OBJECT-TYPE + SYNTAX SEQUENCE OF AuthenticationLineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of login entry." + ::= { aaa 3 } + +authenticationLineEntry OBJECT-TYPE + SYNTAX AuthenticationLineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login entry." + INDEX { authenticationLineIndex} + ::= { authenticationLineTable 1 } + +AuthenticationLineEntry ::= + SEQUENCE + { + authenticationLineIndex + Integer32, + authenticationLineLoginName + OCTET STRING + } + +authenticationLineIndex OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Login index." + ::= { authenticationLineEntry 1 } + +authenticationLineLoginName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set an authentication list for login name. The default login name is 'default'. Starting with alphabetic and can only include [0-9a-zA-Z.-_]. Its length range is [1, 32)" + ::= { authenticationLineEntry 2 } + +-- Sub Module: EVC +evcTable OBJECT-TYPE + SYNTAX SEQUENCE OF EvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table of EVC entry. An Ethernet virtual connection (EVC) is a + logical relationship between Ethernet user-to-network interfaces (UNI) in a + provider-based Ethernet service." + ::= { evc 1 } + +evcEntry OBJECT-TYPE + SYNTAX EvcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The entry of EVC." + INDEX { evcIndex} + ::= { evcTable 1 } + +EvcEntry ::= + SEQUENCE { + evcIndex Integer32, + evcName OCTET STRING, + evcRowstatus RowStatus + } + +evcIndex OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The index of EVC table." + ::= { evcEntry 1 } + +evcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The name of EVC entry." + ::= { evcEntry 2 } + +evcRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { evcEntry 3 } + +evcInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF EvcInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table of EVC information." + ::= { evc 2 } + +evcInfoEntry OBJECT-TYPE + SYNTAX EvcInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "One entry of EVC information." + INDEX { evcInfoIndex} + ::= { evcInfoTable 1 } + +EvcInfoEntry ::= + SEQUENCE { + evcInfoIndex Integer32, + evcInfoMappedVlan Integer32, + evcInfoMappedDoubleVlan OCTET STRING, + evcInfoUsingNumber Integer32 + } + +evcInfoIndex OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The index of EVC information table." + ::= { evcInfoEntry 1 } + +evcInfoMappedVlan OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The vlan id of EVC mapped-vlan. The unset value is 0." + ::= { evcInfoEntry 2 } + +evcInfoMappedDoubleVlan OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..9)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The vlan id of EVC mapped-double-vlan. + The input value is like 2,3. + The first vlan id is EVC mapped-inner-vlan ID. + The second vlan id is EVC mapped-outer-vlan ID. + The unset value is NULL." + ::= { evcInfoEntry 3 } + +evcInfoUsingNumber OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of raw-vlan using this EVC." + ::= { evcInfoEntry 4 } + +-- Sub Module: QINQ + +qinqVlanMappingTableObject OBJECT IDENTIFIER ::= { qinq 1 } + +-- +-- add/remove a vlan mapping table +-- + + qinqVlanMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqVlanMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table containing information of vlan mapping table." + ::= { qinqVlanMappingTableObject 1 } + + qinqVlanMappingEntry OBJECT-TYPE + SYNTAX QinqVlanMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry containing information of vlan mapping table." + INDEX { qinqVlanMappingTableIndex} + ::= { qinqVlanMappingTable 1 } + + QinqVlanMappingEntry ::= + SEQUENCE { + qinqVlanMappingTableIndex Integer32, + qinqVlanMappingTableName OCTET STRING, + qinqVlanMappingTableRowstatus RowStatus + } + + qinqVlanMappingTableIndex OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "vlan mapping table index." + ::= { qinqVlanMappingEntry 1 } + + qinqVlanMappingTableName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "vlan mapping table name." + ::= { qinqVlanMappingEntry 2 } + + qinqVlanMappingTableRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqVlanMappingEntry 3 } + + +-- +-- Nodes of QinqVlanMappingTableRawVlanObject +-- + +qinqVlanMappingItemTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqVlanMappingItemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table is used to describe the relation between raw-vlan and mapped-vlan." + ::= { qinqVlanMappingTableObject 2 } + +qinqVlanMappingItemEntry OBJECT-TYPE + SYNTAX QinqVlanMappingItemEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry is used to describe one item of the relation between raw-vlan and mapped-vlan." + INDEX { qinqMappingEntryMappingTableIndex, qinqMappingEntryEvcIndex, qinqMappingEntryRawVid} + ::= { qinqVlanMappingItemTable 1 } + +QinqVlanMappingItemEntry ::= +SEQUENCE { + qinqMappingEntryMappingTableIndex Integer32, + qinqMappingEntryEvcIndex Integer32, + qinqMappingEntryRawVid Integer32, + qinqMappingEntryRowstatus RowStatus + } + +qinqMappingEntryMappingTableIndex OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The vlan mapping table index." + ::= { qinqVlanMappingItemEntry 1 } + +qinqMappingEntryEvcIndex OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The EVC table index." + ::= { qinqVlanMappingItemEntry 2 } + +qinqMappingEntryRawVid OBJECT-TYPE + SYNTAX Integer32 (0..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Raw vlan tag for this entry. + Set to 0 to use for untagged mapped vlan tag. + Set to 4095 for out-of-range raw vlan." + ::= { qinqVlanMappingItemEntry 3 } + +qinqMappingEntryRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqVlanMappingItemEntry 4 } + + +-- below is for double tag qinq +-- +-- add/remove an untagged vlan mapping entry with evc to vlan mapping table +-- + +-- qinqVlanUntaggedMappingWithEvcTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF QinqVlanUntaggedMappingWithEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "The table containing information of vlan mapping table." +-- ::= { qinqVlanMappingTableRawVlanObject 1 } +-- +-- qinqVlanUntaggedMappingWithEvcEntry OBJECT-TYPE +-- SYNTAX QinqVlanUntaggedMappingWithEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "An entry containing information of vlan mapping table." +-- INDEX { qinqUntaggedWithEvcMappingTableIndex } +-- ::= { qinqVlanUntaggedMappingWithEvcTable 1 } +-- +-- QinqVlanUntaggedMappingWithEvcEntry ::= +-- SEQUENCE { +-- qinqUntaggedWithEvcMappingTableIndex Integer32, +-- qinqUntaggedWithEvcName OCTET STRING, +-- qinqUntaggedWithEvcFirstVlantag Integer32, +-- qinqUntaggedWithEvcSecondVlantag Integer32, +-- qinqUntaggedWithEvcRowstatus RowStatus +-- } +-- +-- qinqUntaggedWithEvcMappingTableIndex OBJECT-TYPE +-- SYNTAX Integer32 (1..64) +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "vlan mapping table index." +-- ::= { qinqVlanUntaggedMappingWithEvcEntry 1 } +-- +-- qinqUntaggedWithEvcName OBJECT-TYPE +-- SYNTAX OCTET STRING (SIZE (0..16)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "evc name related to this entry." +-- ::= { qinqVlanUntaggedMappingWithEvcEntry 2 } +-- +-- qinqUntaggedWithEvcFirstVlantag OBJECT-TYPE +-- SYNTAX Integer32 (1..4094) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "first vlan tag for this entry if it need map double vlan. +-- default is 0xFFFF to not use double vlan." +-- ::= { qinqVlanUntaggedMappingWithEvcEntry 3 } +-- +-- qinqUntaggedWithEvcSecondVlantag OBJECT-TYPE +-- SYNTAX Integer32 (1..4094) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "mapped vlan tag." +-- ::= { qinqVlanUntaggedMappingWithEvcEntry 4 } +-- +-- qinqUntaggedWithEvcRowstatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. +-- 1 means Active +-- 4 means CreateAndGo +-- 6 means Destroy" +-- ::= { qinqVlanUntaggedMappingWithEvcEntry 5 } + + +-- +-- add/remove an tagged vlan mapping entry with evc to vlan mapping table +-- + +-- qinqVlanTaggedMappingWithEvcTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF QinqVlanTaggedMappingWithEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "The infomation of vlan mapping table entry." +-- ::= { qinqVlanMappingTableRawVlanObject 2 } +-- +-- qinqVlanTaggedMappingWithEvcEntry OBJECT-TYPE +-- SYNTAX QinqVlanTaggedMappingWithEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "An entry containing information of vlan mapping table." +-- INDEX { qinqTaggedWithEvcMappingTableIndex, qinqTaggedWithEvcMappingRawVlantag } +-- ::= { qinqVlanTaggedMappingWithEvcTable 1 } +-- +-- QinqVlanTaggedMappingWithEvcEntry ::= +-- SEQUENCE { +-- qinqTaggedWithEvcMappingTableIndex Integer32, +-- qinqTaggedWithEvcMappingRawVlantag Integer32, +-- qinqTaggedWithEvcName OCTET STRING, +-- qinqTaggedWithEvcMappingVlantag Integer32, +-- qinqTaggedWithEvcRowstatus RowStatus +-- } +-- +-- qinqTaggedWithEvcMappingTableIndex OBJECT-TYPE +-- SYNTAX Integer32 (1..64) +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "vlan mapping table index." +-- ::= { qinqVlanTaggedMappingWithEvcEntry 1 } +-- +-- qinqTaggedWithEvcMappingRawVlantag OBJECT-TYPE +-- SYNTAX Integer32 (1..4095) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "raw vlan tag for this entry. +-- set to 4095 to use for out of range mapped vlan tag." +-- ::= { qinqVlanTaggedMappingWithEvcEntry 2 } +-- +-- qinqTaggedWithEvcName OBJECT-TYPE +-- SYNTAX OCTET STRING (SIZE (0..16)) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "evc name related to this entry." +-- ::= { qinqVlanTaggedMappingWithEvcEntry 3 } +-- +-- qinqTaggedWithEvcMappingVlantag OBJECT-TYPE +-- SYNTAX Integer32 (1..4094) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "mapping vlan tag for this entry." +-- ::= { qinqVlanTaggedMappingWithEvcEntry 4 } +-- +-- qinqTaggedWithEvcRowstatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. +-- 1 means Active +-- 4 means CreateAndGo +-- 6 means Destroy" +-- ::= { qinqVlanTaggedMappingWithEvcEntry 5 } + + +-- +-- add/remove an untagged or tagged vlan mapping entry without evc to vlan mapping table +-- + +-- qinqVlanMappingWithoutEvcTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF QinqVlanMappingWithoutEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "The infomation of vlan mapping table entry." +-- ::= { qinqVlanMappingTableRawVlanObject 3 } +-- +-- qinqVlanMappingWithoutEvcEntry OBJECT-TYPE +-- SYNTAX QinqVlanMappingWithoutEvcEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "The infomation of vlan mapping table entry." +-- INDEX { qinqWithoutEvcMappingTableIndex } +-- ::= { qinqVlanMappingWithoutEvcTable 1 } +-- +-- QinqVlanMappingWithoutEvcEntry ::= +-- SEQUENCE { +-- qinqWithoutEvcMappingTableIndex Integer32, +-- qinqWithoutEvcMappingRawVlantag Integer32, +-- qinqWithoutEvcMappingVlantag Integer32, +-- qinqWithoutEvcRowstatus RowStatus +-- } +-- +-- qinqWithoutEvcMappingTableIndex OBJECT-TYPE +-- SYNTAX Integer32 (1..64) +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "vlan mapping table index." +-- ::= { qinqVlanMappingWithoutEvcEntry 1 } +-- +-- qinqWithoutEvcMappingRawVlantag OBJECT-TYPE +-- SYNTAX Integer32 (0..4094) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "raw vlan tag for this entry. +-- set to 0 to use for untagged mapped vlan tag." +-- ::= { qinqVlanMappingWithoutEvcEntry 2 } +-- +-- qinqWithoutEvcMappingVlantag OBJECT-TYPE +-- SYNTAX Integer32 (1..4094) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION "mapping vlan tag for this entry." +-- ::= { qinqVlanMappingWithoutEvcEntry 3 } +-- +-- qinqWithoutEvcRowstatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. +-- 1 means Active +-- 4 means CreateAndGo +-- 6 means Destroy" +-- ::= { qinqVlanMappingWithoutEvcEntry 4 } + + +-- +-- Qinq Interface Object +-- + qinqIfObject OBJECT IDENTIFIER ::= { qinq 2 } + +-- +-- set/unset an interface switch mode to dot1q tunnel +-- + + qinqIfModeDot1qTunnelTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfModeDot1qTunnelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport mode." + ::= { qinqIfObject 1 } + + qinqIfModeDot1qTunnelEntry OBJECT-TYPE + SYNTAX QinqIfModeDot1qTunnelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport mode." + INDEX { qinqIfModeDot1qTunnelIfIndex } + ::= { qinqIfModeDot1qTunnelTable 1 } + + QinqIfModeDot1qTunnelEntry ::= + SEQUENCE { + qinqIfModeDot1qTunnelIfIndex Integer32, + qinqIfModeDot1qTunnelRowstatus RowStatus + } + + qinqIfModeDot1qTunnelIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to set to dot1q-tunnel mode." + ::= { qinqIfModeDot1qTunnelEntry 1 } + + qinqIfModeDot1qTunnelRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqIfModeDot1qTunnelEntry 2 } + +-- +-- set an interface switch dot1q tunnel type +-- + + qinqIfDot1qTunnelTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfDot1qTunnelTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel type." + ::= { qinqIfObject 2 } + + qinqIfDot1qTunnelTypeEntry OBJECT-TYPE + SYNTAX QinqIfDot1qTunnelTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel type." + INDEX { qinqIfDot1qTunnelTypeIfIndex } + ::= { qinqIfDot1qTunnelTypeTable 1 } + + QinqIfDot1qTunnelTypeEntry ::= + SEQUENCE { + qinqIfDot1qTunnelTypeIfIndex Integer32, + qinqIfDot1qTunnelType INTEGER + } + + qinqIfDot1qTunnelTypeIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to set dot1q-tunnel type." + ::= { qinqIfDot1qTunnelTypeEntry 1 } + + qinqIfDot1qTunnelType OBJECT-TYPE + SYNTAX INTEGER + { + selective(1), + basic(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The do1q-tunnel type want to set. + 1 selective. + 2 basic." + ::= { qinqIfDot1qTunnelTypeEntry 2 } + + +-- +-- set an interface switch dot1q tunnel native vlan +-- + + qinqIfDot1qTunnelNativeVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfDot1qTunnelNativeVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel native vlan." + ::= { qinqIfObject 3 } + + qinqIfDot1qTunnelNativeVlanEntry OBJECT-TYPE + SYNTAX QinqIfDot1qTunnelNativeVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel native vlan." + INDEX { qinqIfDot1qTunnelNativeVlanIfIndex } + ::= { qinqIfDot1qTunnelNativeVlanTable 1 } + + QinqIfDot1qTunnelNativeVlanEntry ::= + SEQUENCE { + qinqIfDot1qTunnelNativeVlanIfIndex Integer32, + qinqIfDot1qTunnelNativeVlanId Integer32, + qinqIfDot1qTunnelNativeIsInnerVlan INTEGER, + qinqIfDot1qTunnelNativeRowStatus RowStatus + } + + qinqIfDot1qTunnelNativeVlanIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to set dot1q-tunnel native vlan." + ::= { qinqIfDot1qTunnelNativeVlanEntry 1 } + + qinqIfDot1qTunnelNativeVlanId OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The do1q-tunnel native vlan id to set. + 1 means set to default native vlan" + ::= { qinqIfDot1qTunnelNativeVlanEntry 2 } + + qinqIfDot1qTunnelNativeIsInnerVlan OBJECT-TYPE + SYNTAX INTEGER + { + yes(1), + no(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Whether the do1q-tunnel native vlan is inner vlan. + 1:the vlan id is inner vlan id. + 2:default, the vlan id is not inner vlan id. + " + ::= { qinqIfDot1qTunnelNativeVlanEntry 3 } + + qinqIfDot1qTunnelNativeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqIfDot1qTunnelNativeVlanEntry 10 } + +-- +-- set an interface switch dot1q tunnel allow vlan +-- + + qinqIfDot1qTunnelAllowVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfDot1qTunnelAllowVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel allow vlan." + ::= { qinqIfObject 4 } + + qinqIfDot1qTunnelAllowVlanEntry OBJECT-TYPE + SYNTAX QinqIfDot1qTunnelAllowVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel allow vlan." + INDEX { qinqIfDot1qTunnelAllowVlanIfIndex } + ::= { qinqIfDot1qTunnelAllowVlanTable 1 } + + QinqIfDot1qTunnelAllowVlanEntry ::= + SEQUENCE { + qinqIfDot1qTunnelAllowVlanIfIndex Integer32, + qinqIfDot1qTunnelAllowVlanIdList OCTET STRING, + qinqIfDot1qTunnelAllowType INTEGER, + qinqIfDot1qTunnelAllowVlanId Integer32, + qinqIfDot1qTunnelAllowRowstatus RowStatus + } + + qinqIfDot1qTunnelAllowVlanIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to set dot1q-tunnel allow vlan." + ::= { qinqIfDot1qTunnelAllowVlanEntry 1 } + + qinqIfDot1qTunnelAllowVlanIdList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The allowed vlan list belong to this dot1q tunnel port." + ::= { qinqIfDot1qTunnelAllowVlanEntry 2 } + + qinqIfDot1qTunnelAllowType OBJECT-TYPE + SYNTAX INTEGER + { + allowAll(1), + allowNone(2), + allowAdd(3), + allowRemove(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The do1q-tunnel type want to set. + 1 allowAll. + 2 allowNone. + 3 allowAdd. + 4 allowRemove. + This node is only use for set. The get value is always 0." + ::= { qinqIfDot1qTunnelAllowVlanEntry 3 } + + qinqIfDot1qTunnelAllowVlanId OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The do1q-tunnel allow vlan id to set.vlan id range 1~4094. + This node is only use for set. The get value is always 0. + Use 'qinqIfDot1qTunnelAllowVlanIdList' to get the dot1q vlan state of the interface." + ::= { qinqIfDot1qTunnelAllowVlanEntry 4 } + + qinqIfDot1qTunnelAllowRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. For this table, only realize CreateAndGo and Active. + If want to remove allowed vlan, use do1q-tunnel type 4(allowRemove). + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqIfDot1qTunnelAllowVlanEntry 5 } + + +-- +-- apply vlan mapping table on selective dot1q tunnel port +-- + + qinqIfDot1qTunnelApplyVlanMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfDot1qTunnelApplyVlanMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel applied vlan mapping table." + ::= { qinqIfObject 5 } + + qinqIfDot1qTunnelApplyVlanMappingEntry OBJECT-TYPE + SYNTAX QinqIfDot1qTunnelApplyVlanMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport dot1q tunnel applied vlan mapping table." + INDEX { qinqIfDot1qTunnelApplyIfIndex } + ::= { qinqIfDot1qTunnelApplyVlanMappingTable 1 } + + QinqIfDot1qTunnelApplyVlanMappingEntry ::= + SEQUENCE { + qinqIfDot1qTunnelApplyIfIndex Integer32, + qinqIfDot1qTunnelApplyVlanMappingTableName OCTET STRING, + qinqIfDot1qTunnelApplyRowstatus RowStatus + } + + qinqIfDot1qTunnelApplyIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to apply vlan mapping table." + ::= { qinqIfDot1qTunnelApplyVlanMappingEntry 1 } + + qinqIfDot1qTunnelApplyVlanMappingTableName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The vlan mapping table name want to apply to this interface." + ::= { qinqIfDot1qTunnelApplyVlanMappingEntry 2 } + + qinqIfDot1qTunnelApplyRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqIfDot1qTunnelApplyVlanMappingEntry 3 } + + +-- +-- enable vlan translation on trunk port +-- + + qinqIfVlanTranslationEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfVlanTranslationEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Enable/disable vlan translation of trunk port ." + ::= { qinqIfObject 6 } + + qinqIfVlanTranslationEnableEntry OBJECT-TYPE + SYNTAX QinqIfVlanTranslationEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Enable/disable vlan translation of trunk port" + INDEX { qinqIfVlanTransIfIndex } + ::= { qinqIfVlanTranslationEnableTable 1 } + + QinqIfVlanTranslationEnableEntry ::= + SEQUENCE { + qinqIfVlanTransIfIndex Integer32, + qinqIfVlanTransEnable INTEGER + } + + qinqIfVlanTransIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to enable or disable vlan translation." + ::= { qinqIfVlanTranslationEnableEntry 1 } + + qinqIfVlanTransEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable vlan translation of trunk port." + ::= { qinqIfVlanTranslationEnableEntry 2 } + + +-- +-- apply vlan mapping table on vlan translation port +-- + + qinqIfVlanTransApplyVlanMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfVlanTransApplyVlanMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport trunk vlan translation applied vlan mapping table." + ::= { qinqIfObject 7 } + + qinqIfVlanTransApplyVlanMappingEntry OBJECT-TYPE + SYNTAX QinqIfVlanTransApplyVlanMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface switchport trunk vlan translation applied vlan mapping table." + INDEX { qinqIfVlanTransApplyIfIndex } + ::= { qinqIfVlanTransApplyVlanMappingTable 1 } + + QinqIfVlanTransApplyVlanMappingEntry ::= + SEQUENCE { + qinqIfVlanTransApplyIfIndex Integer32, + qinqIfVlanTransApplyVlanMappingTableName OCTET STRING, + qinqIfVlanTransApplyRowstatus RowStatus + } + + qinqIfVlanTransApplyIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to apply vlan mapping table." + ::= { qinqIfVlanTransApplyVlanMappingEntry 1 } + + qinqIfVlanTransApplyVlanMappingTableName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The vlan mapping table name want to apply to this interface." + ::= { qinqIfVlanTransApplyVlanMappingEntry 2 } + + qinqIfVlanTransApplyRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { qinqIfVlanTransApplyVlanMappingEntry 3 } + + +-- +-- set dot1q ethertype +-- + + qinqIfDot1qEthertypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqIfDot1qEthertypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface dot1q type." + ::= { qinqIfObject 8 } + + qinqIfDot1qEthertypeEntry OBJECT-TYPE + SYNTAX QinqIfDot1qEthertypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of interface dot1q type." + INDEX { qinqIfDot1qEthertypeIfIndex } + ::= { qinqIfDot1qEthertypeTable 1 } + + QinqIfDot1qEthertypeEntry ::= + SEQUENCE { + qinqIfDot1qEthertypeIfIndex Integer32, + qinqIfDot1qEthertype OCTET STRING + } + + qinqIfDot1qEthertypeIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the interface which want to set ether type." + ::= { qinqIfDot1qEthertypeEntry 1 } + + qinqIfDot1qEthertype OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ethertype want to set to this interface. + the ethertype value, could be 0x0000 ~~ 0xFFFF" + ::= { qinqIfDot1qEthertypeEntry 2 } + +-- +-- Qinq Vlan Dot1q Object +-- + qinqVlanDot1qObject OBJECT IDENTIFIER ::= { qinq 3 } + +-- +-- Qinq Vlan Dot1q tag native Enable +-- + + qinqVlanDot1qTagNativeEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF QinqVlanDot1qTagNativeEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of tag native enable or not." + ::= { qinqVlanDot1qObject 1 } + + qinqVlanDot1qTagNativeEnableEntry OBJECT-TYPE + SYNTAX QinqVlanDot1qTagNativeEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of tag native enable or not." + INDEX { interfaceIndex } + ::= { qinqVlanDot1qTagNativeEnableTable 1 } + + QinqVlanDot1qTagNativeEnableEntry ::= + SEQUENCE { + qinqVlanDot1qTagNativeEnable INTEGER + } + + qinqVlanDot1qTagNativeEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable Tag Native. enable(1), disable(2)." + ::= { qinqVlanDot1qTagNativeEnableEntry 2 } + + +-- Sub Module: RMONEXTENSION +-- Sub Module: RMONEXTENSION + + +rmonExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF RmonExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "rmon extension table." + ::= { rmonExt 1 } + +rmonExtEntry OBJECT-TYPE + SYNTAX RmonExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Rmon extension table entry." + INDEX { rmonExtIfIndex } + ::= { rmonExtTable 1 } + +RmonExtEntry ::= + SEQUENCE + { + rmonExtIfIndex Integer32, + rmonExtClrCounter INTEGER + } + +rmonExtIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index." + ::= { rmonExtEntry 1 } + +rmonExtClrCounter OBJECT-TYPE + SYNTAX INTEGER + { + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset rmon counters on interface; 1: resetCount and return value is always 0." + ::= { rmonExtEntry 2 } + + + +-- Sub Module: LDPEXT +ldpExtRouterLdp OBJECT-TYPE + SYNTAX INTEGER + { + destroy(1), + create(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "destroy or create ldp instance. destroy:1 create:2." + ::= { ldpExt 1 } + + ldpExtGlobalConfig OBJECT IDENTIFIER ::= { ldpExt 2 } + + +ldpExtGlobalConfigCtlMode OBJECT-TYPE + SYNTAX INTEGER + { + independent(1), + ordered(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the control mode for label processing. + 1 independent. + 2 ordered." + ::= { ldpExtGlobalConfig 1 } + + +ldpExtGlobalConfigExplicitNull OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "configure the router to send explicit-null labels for directly + connected FECs instead of implicit-null labels. disable:1 enable:2." + ::= { ldpExtGlobalConfig 2 } + + +ldpExtGlobalConfigHelloInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the interval after which hello packets are sent out.Range 1~21845." + ::= { ldpExtGlobalConfig 3 } + + +ldpExtGlobalConfigHoldTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the global value for the hold-time after which the LSR + rejects adjacencies." + ::= { ldpExtGlobalConfig 4 } + + +ldpExtGlobalConfigKeepAliveInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the global value for the interval after which keep-alive + packets are sent out." + ::= { ldpExtGlobalConfig 5 } + + +ldpExtGlobalConfigKeepAliveTimeout OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the global value for the time-out after which sessions are + rejected." + ::= { ldpExtGlobalConfig 6 } + + +ldpExtGlobalConfigMulticastHellos OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "disable/enable the transmission of LDP Hello messages. + disable:1 enable:2." + ::= { ldpExtGlobalConfig 7 } + + +ldpExtGlobalConfigRouterId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the router-id to the supplied IP address." + ::= { ldpExtGlobalConfig 8 } + + +ldpExtGlobalConfigTargetedPeerHelloInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the interval for sending unicast hello packets to targeted peers." + ::= { ldpExtGlobalConfig 9 } + + +ldpExtGlobalConfigTargetedPeerHelloReceipt OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "toggle the receipt of targeted hello packets.disable:1 enable:2." + ::= { ldpExtGlobalConfig 10 } + + +ldpExtGlobalConfigTargetedPeerHoldTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the time-out value that is the time that the router waits + before rejecting an adjacency with targeted peers." + ::= { ldpExtGlobalConfig 11 } + + + +ldpExtGlobalConfigClrLdpAdjacencyAll OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear all adjacencies for the current LSR." + ::= { ldpExtGlobalConfig 12 } + + + +ldpExtGlobalConfigClrLdpSessionAll OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear all sessions for the current LSR." + ::= { ldpExtGlobalConfig 13 } + + + + +ldpExtGlobalConfigClrLdpStatic OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear LDP packet statistics." + ::= { ldpExtGlobalConfig 14 } + + +ldpExtGlobalConfigClrLdpStaticAdvLbls OBJECT-TYPE + SYNTAX INTEGER + { + noUse(0), + resetCount(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "clear LDP advertise-labels statistics." + ::= { ldpExtGlobalConfig 15 } + + + +-- =============================== +-- ldpExtIfConfigTable +-- =============================== + + ldpExtIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF LdpExtIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ldp extention interface config table." + ::= { ldpExt 3 } + + ldpExtIfConfigEntry OBJECT-TYPE + SYNTAX LdpExtIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ldp extension interface config table entry." + INDEX {ldpExtIfConfigIfIndex } + ::= { ldpExtIfConfigTable 1 } + +LdpExtIfConfigEntry ::= + SEQUENCE + { + ldpExtIfConfigIfIndex + Integer32, + ldpExtIfConfigHelloInterval + Integer32, + ldpExtIfConfigHoldTime + Integer32, + ldpExtIfConfigKeepAliveInterval + Integer32, + ldpExtIfConfigKeepAliveTimeout + Integer32, + ldpExtIfConfigMulticastHellos + INTEGER, + ldpExtIfConfigTargetedPeerHelloInterval + Integer32, + ldpExtIfConfigTargetedPeerHoldTime + Integer32, + ldpExtIfConfigEnableLdp + INTEGER + } + +ldpExtIfConfigIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index." + ::= { ldpExtIfConfigEntry 1 } + +ldpExtIfConfigHelloInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the interval for sending multicast Hello packets + via an interface." + ::= { ldpExtIfConfigEntry 2 } + + +ldpExtIfConfigHoldTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the hold-time value after which the LSR rejects + adjacencies via an interface." + ::= { ldpExtIfConfigEntry 3 } + + +ldpExtIfConfigKeepAliveInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the interval for sending keep-alive messages to + the peer in order to maintain a session." + ::= { ldpExtIfConfigEntry 4 } + + +ldpExtIfConfigKeepAliveTimeout OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the keep-alive time-out value for rejecting + a session with a peer." + ::= { ldpExtIfConfigEntry 5 } + +ldpExtIfConfigMulticastHellos OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "disable/enable multicast hello exchange on a specified interface. + disable:1 enable:2." + DEFVAL{ 2 } + ::= { ldpExtIfConfigEntry 6 } + + +ldpExtIfConfigTargetedPeerHelloInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the interval for sending unicast hello packets to targeted + peers via this interface." + ::= { ldpExtIfConfigEntry 7 } + + +ldpExtIfConfigTargetedPeerHoldTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the time-out value that is the time that the router waits + before rejecting an adjacency with a targeted peer." + ::= { ldpExtIfConfigEntry 8 } + + +ldpExtIfConfigEnableLdp OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "disable/enable ldp function on a specified interface. + disable:1 enable:2." + ::= { ldpExtIfConfigEntry 9 } + +-- =========================== +-- ldpExtConfigTargetPeerTable +-- =========================== + + ldpExtConfigTargetPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF LdpExtConfigTargetPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "config target peer table." + ::= { ldpExt 4 } + + +ldpExtConfigTargetPeerEntry OBJECT-TYPE + SYNTAX LdpExtConfigTargetPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ldp extension target peer table entry." + INDEX { ldpExtConfigTargetPeerAddr } + ::= { ldpExtConfigTargetPeerTable 1 } + +LdpExtConfigTargetPeerEntry ::= + SEQUENCE + { + ldpExtConfigTargetPeerAddr + IpAddress, + ldpExtConfigTargetPeerStatus + RowStatus + } + +ldpExtConfigTargetPeerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "specify a targeted LDP peer." + ::= { ldpExtConfigTargetPeerEntry 1 } + + +ldpExtConfigTargetPeerStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ldpExtConfigTargetPeerEntry 2 } + + +-- =================================================== +-- transport address table +-- =================================================== + ldpExtConfigTransAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF LdpExtConfigTransAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "config transport address table." + ::= { ldpExt 5 } + +ldpExtConfigTransAddrEntry OBJECT-TYPE + SYNTAX LdpExtConfigTransAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ldp extension transport address table entry." + INDEX { ldpExtGlobalConfigTransportAddress } + ::= { ldpExtConfigTransAddrTable 1 } + +LdpExtConfigTransAddrEntry ::= + SEQUENCE + { + ldpExtGlobalConfigTransportAddress + IpAddress, + ldpExtGlobalConfigTransportAddressStatus + RowStatus + } + +ldpExtGlobalConfigTransportAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "configure the transport address for a label space." + ::= { ldpExtConfigTransAddrEntry 1 } + + +ldpExtGlobalConfigTransportAddressStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ldpExtConfigTransAddrEntry 2 } + + +-- ================================================== +-- Advertise-Labels Table +-- ================================================== + + ldpExtConfigAdvLblsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LdpExtConfigAdvLblsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "config advertise label table." + ::= { ldpExt 6 } + + + +ldpExtConfigAdvLblsEntry OBJECT-TYPE + SYNTAX LdpExtConfigAdvLblsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ldp advertise label table entry." + INDEX + { + ldpExtAdvLblsPrefixIndex, + ldpExtAdvLblsPeerIndex + } + ::= { ldpExtConfigAdvLblsTable 1 } + +LdpExtConfigAdvLblsEntry ::= + SEQUENCE + { + ldpExtAdvLblsPrefixIndex + Integer32, + ldpExtAdvLblsPeerIndex + Integer32, + ldpExtAdvLblsPrefixName + OCTET STRING, + ldpExtAdvLblsPeerName + OCTET STRING, + ldpExtAdvLblsStatus + RowStatus + } + +ldpExtAdvLblsPrefixIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Advertise-Labels Table prefix index." + ::= { ldpExtConfigAdvLblsEntry 1 } + + +ldpExtAdvLblsPeerIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Advertise-Labels Table peer index." + ::= { ldpExtConfigAdvLblsEntry 2 } + + +ldpExtAdvLblsPrefixName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "specify Advertise-Labels Table prefix name." + ::= { ldpExtConfigAdvLblsEntry 3 } + + +ldpExtAdvLblsPeerName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "specify Advertise-Labels Table peer name." + ::= { ldpExtConfigAdvLblsEntry 4 } + + +ldpExtAdvLblsStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ldpExtConfigAdvLblsEntry 5 } + + + +-- ================================================== +-- Advertise-label to any table +-- ================================================== + +ldpExtConfigAdvLblsToAnyTable OBJECT-TYPE + SYNTAX SEQUENCE OF LdpExtConfigAdvLblsToAnyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "config advertise label to any table." + ::= { ldpExt 7 } + +ldpExtConfigAdvLblsToAnyEntry OBJECT-TYPE + SYNTAX LdpExtConfigAdvLblsToAnyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ldp advertise label to any table entry." + INDEX { ldpExtAdvLblsPrefixIndex } + ::= { ldpExtConfigAdvLblsToAnyTable 1 } + +LdpExtConfigAdvLblsToAnyEntry ::= + SEQUENCE + { + ldpExtAdvLblsToAnyPrefixIndex + Integer32, + ldpExtAdvLblsToAnyPrefixName + OCTET STRING, + ldpExtAdvLblsToAnyStatus + RowStatus + } + +ldpExtAdvLblsToAnyPrefixIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Advertise-Labels to any Table prefix index." + ::= { ldpExtConfigAdvLblsToAnyEntry 1 } + + +ldpExtAdvLblsToAnyPrefixName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "specify which destinations have their labels advertised to + all LDP neighbors." + ::= { ldpExtConfigAdvLblsToAnyEntry 2 } + + +ldpExtAdvLblsToAnyStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ldpExtConfigAdvLblsToAnyEntry 3 } + +-- Sub Module: BGP4EXT + +-- +-- bgpLocalAs +-- + +bgpLocalAs OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The local autonomous system number." + ::= { bgp 1 } + + +-- +-- bgpMibBindingVrf +-- +bgpMibBinding OBJECT IDENTIFIER ::= { bgp 2 } + +bgpMibBindingVrf OBJECT-TYPE + SYNTAX Integer32 (0..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP mib binding vrf." + ::= { bgpMibBinding 1 } + +bgpMibBindingVpnv4 OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP mib binding vpnv4." + ::= { bgpMibBinding 2 } + +-- +--BGP Global config +-- +bgpGlobalConfig OBJECT IDENTIFIER ::= { bgp 3 } + +bgpAlwaysCompareMed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allow comparing MED from different neighbors." + ::= { bgpGlobalConfig 1 } + +bgpDeterministicMed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Pick the best-MED path among paths advertised from the + neighboring AS." + ::= { bgpGlobalConfig 2 } + +bgpFastExternalFailover OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Immediately reset session if a link to a directly + connected external peer goes down." + ::= { bgpGlobalConfig 3 } + +bgpEnforceFirstAS OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enforce the first AS for EBGP routes." + ::= { bgpGlobalConfig 4 } + +bgpBestpathCompareRouterid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Compare router-id for identical EBGP paths." + ::= { bgpGlobalConfig 5 } + +bgpBestpathCompareConfedASpath OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allow comparing confederation AS path length." + ::= { bgpGlobalConfig 6 } + +bgpBestpathASPathIgnore OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ignore as-path length in selecting a route." + ::= { bgpGlobalConfig 7 } + +bgpBestpathMed OBJECT-TYPE + SYNTAX INTEGER + { + confed(1), + missing(2), + confedAndMissing(3), + none(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Change the default bestpath selection MED attribute." + ::= { bgpGlobalConfig 8 } + +bgpDefaultIpv4Unicast OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Activate ipv4-unicast for a peer by default." + ::= { bgpGlobalConfig 9 } + +bgpDefaultLocalPreference OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure default local preference value." + ::= { bgpGlobalConfig 10 } + +bgpLogNeighborChanges OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Log neighbor up/down and reset reason." + ::= { bgpGlobalConfig 11 } + +bgpConfederationIdentifier OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set routing domain confederation AS." + ::= { bgpGlobalConfig 12 } + +bgpDistanceExternalRoutes OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance for routes external to the AS. Default: 20." + ::= { bgpGlobalConfig 13 } + +bgpDistanceInternalRoutes OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance for routes internal to the AS. Default: 200." + ::= { bgpGlobalConfig 14 } + + bgpDistancelocalRoutes OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Distance for routes local to the AS. Default: 200." + ::= { bgpGlobalConfig 15 } + + bgpClientToClientReflection OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure client to client route reflection." + ::= { bgpGlobalConfig 16 } + + bgpScanTime OBJECT-TYPE + SYNTAX Integer32 (0..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure background scan interval(sec) [Default:60; Disable:0]." + ::= { bgpGlobalConfig 17 } + +bgpClusterIDDigit OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure Route-Reflector Cluster-id as 32 bit quantity. + set to 0 to unset this node." + ::= { bgpGlobalConfig 18 } + +bgpClusterIDIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure Route-Reflector Cluster-id in IP address format. + set to 0 to unset this node." + ::= { bgpGlobalConfig 19 } + +-- +-- BGP4 Received Peers +-- + +bgpPeerExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF BgpPeerExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information about routes to + destination networks from all BGP4 peers. Since + BGP4 can carry routes for multiple Network Layer + protocols, this table has the Address Family + Identifier(AFI) of the Network Layer protocol as the + first index. Further for a given AFI, routes carried + by BGP4 are distinguished based on Subsequent Address + Family Identifiers(SAFI). Hence that is used as the + second index. Conceptually there is a separate Loc-RIB + maintained by the BGP speaker for each combination of + AFI and SAFI supported by it." + REFERENCE + "RFC-1771: A Border Gateway Protocol 4 (BGP-4), + RFC-2858: Multiprotocol Extensions for BGP-4, + RFC-2547: BGP/MPLS VPNs." + ::= { bgp 4 } + +bgpPeerExtEntry OBJECT-TYPE + SYNTAX BgpPeerExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a path to a network received from a peer." + INDEX { bgpPeerExtPeer } + ::= { bgpPeerExtTable 1 } + +BgpPeerExtEntry ::= + SEQUENCE { + bgpPeerExtPeer + InetAddress, + bgpPeerExtRemoteAS + INTEGER, + bgpPeerExtRowStats + RowStatus, + bgpPeerExtActivate + TruthValue, + bgpPeerExtPassive + TruthValue, + bgpPeerExtDescription + OCTET STRING, + bgpPeerExtCapabilityRouteRefresh + TruthValue, + bgpPeerExtCapabilityDynamic + TruthValue, + bgpPeerExtDontCapabilityNegotiate + TruthValue, + bgpPeerExtCapabilityOrf + INTEGER, + bgpPeerExtNextHopSelf + TruthValue, + bgpPeerExtRemovePrivateAS + TruthValue, + bgpPeerExtSendCommunity + INTEGER, + bgpPeerExtSoftReconfig + TruthValue, + bgpPeerExtRouteReflectorClient + TruthValue, + bgpPeerExtRouteServerClient + TruthValue, + bgpPeerExtAttrUnchangedASPath + TruthValue, + bgpPeerExtAttrUnchangedNexthop + TruthValue, + bgpPeerExtAttrUnchangedMed + TruthValue, + bgpPeerExtUpdateSource + Integer32, + bgpPeerExtDefaultOriginate + TruthValue, + bgpPeerExtPort + Integer32, + bgpPeerExtWeight + Integer32, + bgpPeerExtCollideEstablished + TruthValue, + bgpPeerExtOverrideCapability + TruthValue, + bgpPeerExtStrictCapabilityMatch + TruthValue, + bgpPeerExtAllowasIn + Integer32, + bgpPeerExtAsOverride + TruthValue, + bgpPeerExtMemberOfPeerGroupIndex + Integer32 + } + +bgpPeerExtPeer OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Network Layer address of the peer where the route + information was learned. An implementation is only + required to support an IPv4 peer." + ::= { bgpPeerExtEntry 1 } + +bgpPeerExtRemoteAS OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify AS number of BGP peer." + ::= { bgpPeerExtEntry 2 } + +bgpPeerExtRowStats OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { bgpPeerExtEntry 3 } + +bgpPeerExtActivate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable the Address Family for this Neighbor." + ::= { bgpPeerExtEntry 4 } + +bgpPeerExtPassive OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Don't send open messages to this peer." + ::= { bgpPeerExtEntry 5 } + +bgpPeerExtDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Up to 80 characters describing this peer." + ::= { bgpPeerExtEntry 6 } + +bgpPeerExtCapabilityRouteRefresh OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Advertise route-refresh capability to this peer." + ::= { bgpPeerExtEntry 7 } + +bgpPeerExtCapabilityDynamic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Advertise dynamic capability to this peer." + ::= { bgpPeerExtEntry 8 } + +bgpPeerExtDontCapabilityNegotiate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Do not perform capability negotiation." + ::= { bgpPeerExtEntry 9 } + +bgpPeerExtCapabilityOrf OBJECT-TYPE + SYNTAX INTEGER + { + send(1), + receive(2), + both(3), + none(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Advertise prefixlist ORF capability to this peer." + ::= { bgpPeerExtEntry 10 } + +bgpPeerExtNextHopSelf OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Disable the next hop calculation for this neighbor." + ::= { bgpPeerExtEntry 11 } + +bgpPeerExtRemovePrivateAS OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remove private AS number from outbound updates." + ::= { bgpPeerExtEntry 12 } + +bgpPeerExtSendCommunity OBJECT-TYPE + SYNTAX INTEGER + { + standard(1), + extended(2), + both(3), + none(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Send Community attribute to this neighbor." + ::= { bgpPeerExtEntry 13 } + +bgpPeerExtSoftReconfig OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allow inbound soft reconfiguration for this peer." + ::= { bgpPeerExtEntry 14 } + +bgpPeerExtRouteReflectorClient OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a neighbor as Route Reflector client." + ::= { bgpPeerExtEntry 15 } + +bgpPeerExtRouteServerClient OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a neighbor as Route Server client." + ::= { bgpPeerExtEntry 16 } + +bgpPeerExtAttrUnchangedASPath OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP As-path attribute is propagated unchanged to this neighbor." + ::= { bgpPeerExtEntry 17 } + +bgpPeerExtAttrUnchangedNexthop OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP Next-hop attribute is propagated unchanged to this neighbor." + ::= { bgpPeerExtEntry 18 } + +bgpPeerExtAttrUnchangedMed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP Med attribute is propagated unchanged to this neighbor." + ::= { bgpPeerExtEntry 19 } + +bgpPeerExtUpdateSource OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interface ifindex." + ::= { bgpPeerExtEntry 20 } + +bgpPeerExtDefaultOriginate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Originate default route to this peer." + ::= { bgpPeerExtEntry 21 } + +bgpPeerExtPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Neighbor's BGP TCP port number." + ::= { bgpPeerExtEntry 22 } + +bgpPeerExtWeight OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set default weight for routes from this peer. Default: 0." + ::= { bgpPeerExtEntry 23 } + +bgpPeerExtCollideEstablished OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Include Neighbor in Established State for Collision Detection." + ::= { bgpPeerExtEntry 24 } + +bgpPeerExtOverrideCapability OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Override capability negotiation result." + ::= { bgpPeerExtEntry 25 } + +bgpPeerExtStrictCapabilityMatch OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Strict capability negotiation match." + ::= { bgpPeerExtEntry 26 } + +bgpPeerExtAllowasIn OBJECT-TYPE + SYNTAX Integer32 (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Strict capability negotiation match." + ::= { bgpPeerExtEntry 27 } + +bgpPeerExtAsOverride OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "override AS path." + ::= { bgpPeerExtEntry 28 } + +bgpPeerExtMemberOfPeerGroupIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "override AS path." + ::= { bgpPeerExtEntry 29 } + +-- +-- BGP4 Peer group +-- + +bgpPeerGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF BgpPeerGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure peer-group." + ::= { bgp 5 } + +bgpPeerGroupEntry OBJECT-TYPE + SYNTAX BgpPeerGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a path to a network received from a peer." + INDEX { bgpPeerGroupIndex } + ::= { bgpPeerGroupTable 1 } + +BgpPeerGroupEntry ::= + SEQUENCE { + bgpPeerGroupIndex + Integer32, + bgpPeerGroupName + OCTET STRING, + bgpPeerGroupRowStats + RowStatus, + bgpPeerGroupRemoteAS + INTEGER, + bgpPeerGroupActivate + TruthValue, + bgpPeerGroupPassive + TruthValue, + bgpPeerGroupDescription + OCTET STRING, + bgpPeerGroupCapabilityRouteRefresh + TruthValue, + bgpPeerGroupCapabilityDynamic + TruthValue, + bgpPeerGroupDontCapabilityNegotiate + TruthValue, + bgpPeerGroupCapabilityOrf + INTEGER, + bgpPeerGroupNextHopSelf + TruthValue, + bgpPeerGroupRemovePrivateAS + TruthValue, + bgpPeerGroupSendCommunity + INTEGER, + bgpPeerGroupSoftReconfig + TruthValue, + bgpPeerGroupRouteReflectorClient + TruthValue, + bgpPeerGroupRouteServerClient + TruthValue, + bgpPeerGroupAttrUnchangedASPath + TruthValue, + bgpPeerGroupAttrUnchangedNexthop + TruthValue, + bgpPeerGroupAttrUnchangedMed + TruthValue, + bgpPeerGroupUpdateSource + Integer32, + bgpPeerGroupDefaultOriginate + TruthValue, + bgpPeerGroupPort + Integer32, + bgpPeerGroupWeight + Integer32, + bgpPeerGroupCollideEstablished + TruthValue, + bgpPeerGroupOverrideCapability + TruthValue, + bgpPeerGroupStrictCapabilityMatch + TruthValue, + bgpPeerGroupAllowasIn + Integer32, + bgpPeerGroupAsOverride + TruthValue + } + +bgpPeerGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Peer group index." + ::= { bgpPeerGroupEntry 1 } + +bgpPeerGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Peer group name." + ::= { bgpPeerGroupEntry 2 } + +bgpPeerGroupRowStats OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { bgpPeerGroupEntry 3 } + +bgpPeerGroupRemoteAS OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify AS number of BGP peer." + ::= { bgpPeerGroupEntry 4 } + +bgpPeerGroupActivate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable the Address Family for this Neighbor." + ::= { bgpPeerGroupEntry 5 } + +bgpPeerGroupPassive OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Don't send open messages to this peer." + ::= { bgpPeerGroupEntry 6 } + +bgpPeerGroupDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Up to 80 characters describing this peer." + ::= { bgpPeerGroupEntry 7 } + +bgpPeerGroupCapabilityRouteRefresh OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Advertise route-refresh capability to this peer." + ::= { bgpPeerGroupEntry 8 } + +bgpPeerGroupCapabilityDynamic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Advertise dynamic capability to this peer." + ::= { bgpPeerGroupEntry 9 } + +bgpPeerGroupDontCapabilityNegotiate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Do not perform capability negotiation." + ::= { bgpPeerGroupEntry 10 } + +bgpPeerGroupCapabilityOrf OBJECT-TYPE + SYNTAX INTEGER + { + send(1), + receive(2), + both(3), + none(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Advertise prefixlist ORF capability to this peer." + ::= { bgpPeerGroupEntry 11 } + +bgpPeerGroupNextHopSelf OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Disable the next hop calculation for this neighbor." + ::= { bgpPeerGroupEntry 12 } + +bgpPeerGroupRemovePrivateAS OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remove private AS number from outbound updates." + ::= { bgpPeerGroupEntry 13 } + +bgpPeerGroupSendCommunity OBJECT-TYPE + SYNTAX INTEGER + { + standard(1), + extended(2), + both(3), + none(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Send Community attribute to this neighbor." + ::= { bgpPeerGroupEntry 14 } + +bgpPeerGroupSoftReconfig OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allow inbound soft reconfiguration for this peer." + ::= { bgpPeerGroupEntry 15 } + +bgpPeerGroupRouteReflectorClient OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a neighbor as Route Reflector client." + ::= { bgpPeerGroupEntry 16 } + +bgpPeerGroupRouteServerClient OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a neighbor as Route Server client." + ::= { bgpPeerGroupEntry 17 } + +bgpPeerGroupAttrUnchangedASPath OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP As-path attribute is propagated unchanged to this neighbor." + ::= { bgpPeerGroupEntry 18 } + +bgpPeerGroupAttrUnchangedNexthop OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP Next-hop attribute is propagated unchanged to this neighbor." + ::= { bgpPeerGroupEntry 19 } + +bgpPeerGroupAttrUnchangedMed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "BGP Med attribute is propagated unchanged to this neighbor." + ::= { bgpPeerGroupEntry 20 } + +bgpPeerGroupUpdateSource OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interface ifindex." + ::= { bgpPeerGroupEntry 21 } + +bgpPeerGroupDefaultOriginate OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Originate default route to this peer." + ::= { bgpPeerGroupEntry 22 } + +bgpPeerGroupPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Neighbor's BGP TCP port number." + ::= { bgpPeerGroupEntry 23 } + +bgpPeerGroupWeight OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set default weight for routes from this peer." + ::= { bgpPeerGroupEntry 24 } + +bgpPeerGroupCollideEstablished OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Include Neighbor in Established State for Collision Detection." + ::= { bgpPeerGroupEntry 25 } + +bgpPeerGroupOverrideCapability OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Override capability negotiation result." + ::= { bgpPeerGroupEntry 26 } + +bgpPeerGroupStrictCapabilityMatch OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Strict capability negotiation match." + ::= { bgpPeerGroupEntry 27 } + +bgpPeerGroupAllowasIn OBJECT-TYPE + SYNTAX Integer32 (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Strict capability negotiation match." + ::= { bgpPeerGroupEntry 28 } + +bgpPeerGroupAsOverride OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "override AS path." + ::= { bgpPeerGroupEntry 29 } + + +-- +--BGP address family +-- +bgpAddressFamily OBJECT IDENTIFIER ::= { bgp 6 } + +bgpAddressFamilyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "address family name." + ::= { bgpAddressFamily 1 } + +bgpAddressFamilyRouterId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Manually configured router identifier." + ::= { bgpAddressFamily 2 } + +bgpAddressFamilyRedistConnect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute connect information from another routing protocol." + ::= { bgpAddressFamily 3 } + +bgpAddressFamilyRedistStatic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute static information from another routing protocol." + ::= { bgpAddressFamily 4 } + +bgpAddressFamilyRedistRip OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute RIP information from another routing protocol." + ::= { bgpAddressFamily 5 } + +bgpAddressFamilyRedistOspf OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Redistribute OSPF information from another routing protocol." + ::= { bgpAddressFamily 6 } + +bgpAddressFamilySynchronization OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Perform IGP synchronization." + ::= { bgpAddressFamily 7 } + +bgpAddressFamilyDefaultInfoOrig OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Control distribution of default information." + ::= { bgpAddressFamily 8 } + +bgpAddressFamilyNetworkSynch OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Perform IGP synchronization on network routes." + ::= { bgpAddressFamily 9 } + + +-- +--BGP clear table +-- +bgpClearTable OBJECT IDENTIFIER ::= { bgp 7 } + +bgpClearAll OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 1 } + +bgpClearExternalPeers OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 2 } + +bgpClearUnicastSoftOut OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 3 } + +bgpClearMulticastSoftOut OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 4 } + +bgpClearVpnv4UnicastSoftOut OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 5 } + +bgpClearExternalSoftOut OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 6 } + +bgpClearExternalUnicastSoftOut OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 7 } + +bgpClearExternalMulticastSoftOut OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 8 } + +bgpClearSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 9 } + +bgpClearInPrefixFilter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 10 } + +bgpClearUnicastSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 11 } + +bgpClearMulticastSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 12 } + +bgpClearUnicastInPrefixFilter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 13 } + +bgpClearMulticastInPrefixFilter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 14 } + +bgpClearVpnv4UnicastSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 15 } + +bgpClearExternalSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 16 } + +bgpClearExternalInPrefixFilter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 17 } + +bgpClearExternalUnicastSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 18 } + +bgpClearExternalMulticastSoftIn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 19 } + +bgpClearExternalUnicastInPrefixFilter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 20 } + +bgpClearExternalMulticastInPrefixFilter OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 21 } + +bgpClearUnicastSoft OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 22 } + +bgpClearMulticastSoft OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 23 } + +bgpClearVpnv4UnicastSoft OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 24 } + +bgpClearExternalUnicastSoft OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 25 } + +bgpClearExternalMulticastSoft OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 26 } + +bgpClearDampening OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node only supports set operation. + If the value is true, it will clear all of statistics." + ::= { bgpClearTable 27 } + +-- Sub Module: MPLS +mplsLspTunnelingTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspTunnelingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Tunnel a transit LSP." + ::= { mpls 1 } + +mplsLspTunnelingEntry OBJECT-TYPE + SYNTAX MplsLspTunnelingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspTunnelingTable." + INDEX { mplsLspTunnelingInLabel} + ::= { mplsLspTunnelingTable 1 } + +MplsLspTunnelingEntry ::= + SEQUENCE { + mplsLspTunnelingInLabel Integer32, + mplsLspTunnelingOutLabel Integer32, + mplsLspTunnelingDestAddr IpAddress, + mplsLspTunnelingMaskLen Integer32, + mplsLspTunnelingRowStatus RowStatus, + mplsLspTunnelingState INTEGER + } + +mplsLspTunnelingInLabel OBJECT-TYPE + SYNTAX Integer32 (16..1048575) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Incoming Label Value between 16 and 1048575." + ::= { mplsLspTunnelingEntry 1 } + + +mplsLspTunnelingOutLabel OBJECT-TYPE + SYNTAX Integer32 (16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Outgoing label of the transit lsp,0,3,16-1048575." + ::= { mplsLspTunnelingEntry 2 } + +mplsLspTunnelingDestAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IPv4 network FEC for identifying tunnel LSP." + ::= { mplsLspTunnelingEntry 3 } + +mplsLspTunnelingMaskLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Length of iPv4 network FEC mask for identifying tunnel LSP, + between 0 and 32." + ::= { mplsLspTunnelingEntry 4 } + +mplsLspTunnelingRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspTunnelingEntry 10 } + +mplsLspTunnelingState OBJECT-TYPE + SYNTAX INTEGER {selected(1),non-selected(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the LSP tunneling entry.The meanings of the values are: + selected(1) - the LSP tunneling entry is selected; + non-selected(2) - the LSP tunneling entry is not selected;" + ::= { mplsLspTunnelingEntry 11 } + +mplsMapRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsMapRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "mpls map-route A.B.C.D N F.G.H.I N." + ::= { mpls 2 } + +mplsMapRouteEntry OBJECT-TYPE + SYNTAX MplsMapRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsMapRouteTable." + INDEX { mplsMapRouteSrcAddr, mplsMapRouteSrcMaskLen} + ::= { mplsMapRouteTable 1 } + +MplsMapRouteEntry ::= + SEQUENCE + { + mplsMapRouteSrcAddr IpAddress, + mplsMapRouteSrcMaskLen Integer32, + mplsMapRouteDestAddr IpAddress, + mplsMapRouteDestMaskLen Integer32, + mplsMapRouteTunnelName OCTET STRING, + mplsMapRouteRowStatus RowStatus + } + +mplsMapRouteSrcAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IpAddress of IPv4 prefix to be mapped." + ::= { mplsMapRouteEntry 1 } + +mplsMapRouteSrcMaskLen OBJECT-TYPE + SYNTAX Integer32(0..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mask length of IPv4 prefix to be mapped.Must be between 0 and 32." + ::= { mplsMapRouteEntry 2 } + +mplsMapRouteDestAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IPv4 Forwarding Equivalence Class for route to be mapped to." + ::= { mplsMapRouteEntry 3 } + +mplsMapRouteDestMaskLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mask length for IPv4 Forwarding Equivalence Class." + ::= { mplsMapRouteEntry 4 } + +mplsMapRouteTunnelName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MPLS tunnel for route to be mapped to. If this node is set, + mplsMapRouteDestAddr and mplsMapRouteDestMaskLen are invalid." + ::= { mplsMapRouteEntry 5 } + +mplsMapRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsMapRouteEntry 10 } + +mplsEnableAllInterfaces OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable/disable all interfaces for MPLS. + 1 is enable, 2 is disable." + ::= { mpls 3 } + +-- mplsPropagateTtl OBJECT-TYPE +-- SYNTAX INTEGER +-- { +-- enable(1), +-- disable(2) +-- } +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable/disable mpls PropagateTtl. +-- 1 is enable, 2 is disable." +-- ::= { mpls 4} + + +mplsVpwsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVpwsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Specify an MPLS Layer-2 Virtual Circuit." + ::= { mpls 5 } + +mplsVpwsEntry OBJECT-TYPE + SYNTAX MplsVpwsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVpwsTable." + INDEX { mplsVpwsVcId} + ::= { mplsVpwsTable 1 } + +MplsVpwsEntry ::= + SEQUENCE { + mplsVpwsVcId Unsigned32, + mplsVpwsVcName OCTET STRING, + mplsVpwsPeerAddr IpAddress, + mplsVpwsIsManual Integer32, + mplsVpwsMtu Integer32, + mplsVpwsPwMode Integer32, + mplsVpwsControlWord INTEGER, + mplsVpwsStats INTEGER, + mplsVpwsRowStatus RowStatus, + mplsVpwsState INTEGER + } + +mplsVpwsVcId OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Layer-2 Virtual Circuit." + ::= { mplsVpwsEntry 1 } + +mplsVpwsVcName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Identifying string for MPLS Layer-2 Virtual Circuit. + Only 20 octets is accepted.." + ::= { mplsVpwsEntry 2 } + +mplsVpwsPeerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IPv4 Address for end-point for MPLS Layer-2 Virtual Circuit." + ::= { mplsVpwsEntry 3 } + +mplsVpwsIsManual OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If this value is set , vc will be configured by manual. + 1 means manual is set,2 means not." + ::= { mplsVpwsEntry 4 } + +mplsVpwsMtu OBJECT-TYPE + SYNTAX Integer32(576..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specify l2-circuit mtu,l2-circuit mtu value <576-65535>" + ::= { mplsVpwsEntry 5 } + +mplsVpwsPwMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "PW raw/tagged mode.0 means default mode, 1 means raw,2 means tagged mode." + DEFVAL { 0 } + ::= { mplsVpwsEntry 6 } + +mplsVpwsControlWord OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set control word for mpls layer2 circuit. The meanings of the values are: + enable(1) - enable control word; + disable(2) - disable control word;" + DEFVAL { 2 } + ::= { mplsVpwsEntry 7 } + +mplsVpwsStats OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set statstics status for mpls layer2 circuit. The meanings of the values are: + enable(1) - enable statistics; + disable(2) - disable statistics;" + DEFVAL { 2 } + ::= { mplsVpwsEntry 8 } + +mplsVpwsRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsVpwsEntry 15 } + +mplsVpwsState OBJECT-TYPE + SYNTAX INTEGER {active(1),inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls layer2 circuit. The meanings of the values are: + active(1) - the l2 circuit is active; + inactive(2) - the l2 circuit is inactive;" + ::= { mplsVpwsEntry 16 } + +-- mplsVpwsIngressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress packets number of mpls vpws." +-- ::= { mplsVpwsEntry 17 } +-- +-- mplsVpwsIngressbytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress bytes number of mpls vpws." +-- ::= { mplsVpwsEntry 18 } +-- +-- mplsVpwsEgressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress packets number of mpls vpws." +-- ::= { mplsVpwsEntry 19 } +-- +-- mplsVpwsEgressBytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress bytes number of mpls vpws." +-- ::= { mplsVpwsEntry 20 } + +mplsVpwsFibTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVpwsFibEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of Layer-2 MPLS Virtual Circuit FIB entry." + ::= { mpls 6 } + +mplsVpwsFibEntry OBJECT-TYPE + SYNTAX MplsVpwsFibEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Layer-2 MPLS Virtual Circuit FIB entry." + INDEX { mplsVpwsFibVcId} + ::= { mplsVpwsFibTable 1 } + +MplsVpwsFibEntry ::= + SEQUENCE { + mplsVpwsFibVcId Unsigned32, + mplsVpwsFibInLabel Integer32, + mplsVpwsFibOutLabel Integer32, + mplsVpwsFibRowStatus RowStatus + } + +mplsVpwsFibVcId OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Virtual Circuit Identifier." + ::= { mplsVpwsFibEntry 1 } + + +mplsVpwsFibInLabel OBJECT-TYPE + SYNTAX Integer32 (16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "In-coming Label <16-1048575>." + ::= { mplsVpwsFibEntry 2 } + +mplsVpwsFibOutLabel OBJECT-TYPE + SYNTAX Integer32 (16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going Label <16-1048575>." + ::= { mplsVpwsFibEntry 3 } + +mplsVpwsFibRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsVpwsFibEntry 4 } + +--mplsVplsVlanTable OBJECT-TYPE +-- SYNTAX OCTET STRING +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "This defines the minnum and maxnum of vlan id.The string must be 'min,max', +-- and '0,0' means set vpls vlan id range to default(0,0). +-- Minnum,maxnum must be between 2 and 4096." +-- ::= { mpls 7 } + +mplsVplsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Instance of MPLS based Virtual Private Lan Service (VPLS)." + ::= { mpls 8 } + +mplsVplsEntry OBJECT-TYPE + SYNTAX MplsVplsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of mplsVplsTable." + INDEX { mplsVplsId } + ::= { mplsVplsTable 1 } + +MplsVplsEntry ::= + SEQUENCE { + mplsVplsId Unsigned32, + mplsVplsName OCTET STRING, + mplsVplsWhiteList INTEGER, +-- mplsVplsEtreeType INTEGER, + mplsVplsRowStatus RowStatus, + mplsVplsDescription OCTET STRING, + mplsVplsMtu Integer32, + mplsVplsMacLearning INTEGER, + mplsVplsMacLimitNum Unsigned32, + mplsVplsMacLimitAction INTEGER, + mplsVplsAllowFlooding INTEGER, +-- mplsVplsAllowUnknownUnicast INTEGER, +-- mplsVplsAllowMulticast INTEGER, + mplsVplsState INTEGER +-- mplsVplsMPeerR Integer32, +-- mplsVplsMPeerT Integer32, +-- mplsVplsSPeer Integer32 + } + +mplsVplsId OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsEntry 1 } + +mplsVplsName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Identifying string for VPLS." + ::= { mplsVplsEntry 2 } + +-- mplsVplsEtreeType OBJECT-TYPE +-- SYNTAX INTEGER {root(1),leaf(2)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Specify the E-tree type the VSI is emulating. The meanings of the values are: +-- root(1) - All AC in the VSI on this node will be root-ACs; +-- leaf(2) - All AC in the VSI on this node will be leaf-ACs;" +-- DEFVAL { 1 } +-- ::= { mplsVplsEntry 3 } + +mplsVplsWhiteList OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set whitelist for the MPLS VPLS. The meanings of the values are: + enable(1) - Enable whitelist mode; + disable(2) - Disable whitelist mode;;" + DEFVAL { 2 } + ::= { mplsVplsEntry 5 } + +mplsVplsRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsVplsEntry 10 } + +mplsVplsDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing this VPLS instance.Only less than 20 octets is accepted." + ::= { mplsVplsEntry 11 } + +mplsVplsMtu OBJECT-TYPE + SYNTAX Integer32 (576..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mtu value of a vpls instance ." + ::= { mplsVplsEntry 12 } + +mplsVplsMacLearning OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set mac learning for the MPLS VPLS. The meanings of the values are: + enable(1) - Enable mac learning; + disable(2) - Disable mac learning;" + DEFVAL { 1 } + ::= { mplsVplsEntry 13 } + +mplsVplsMacLimitNum OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum fdb number of the MPLS VPLS." + ::= { mplsVplsEntry 14 } + +mplsVplsMacLimitAction OBJECT-TYPE + SYNTAX INTEGER {default(1),warn(2), discard(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set warning log when learning is disabled. The meanings of the values are: + default(1) - farward packets with mac learning disable; + warn(2) - warning log and discard packets; + discard(3) - discard packets." + DEFVAL { 1 } + ::= { mplsVplsEntry 15 } + +mplsVplsAllowFlooding OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set flooding broadcast, multicast and unicast packets. The meanings of the values are: + enable(1) - Enable flooding unknown unicast; + disable(2) - Disable flooding unknown unicast;" + DEFVAL { 1 } + ::= { mplsVplsEntry 16 } + +--mplsVplsAllowUnknownUnicast OBJECT-TYPE +-- SYNTAX INTEGER {enable(1),disable(2)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set flooding unknown unicast packets. The meanings of the values are: +-- enable(1) - Enable flooding unknown unicast; +-- disable(2) - Disable flooding unknown unicast;" +-- DEFVAL { 1 } +-- ::= { mplsVplsEntry 17 } +-- +--mplsVplsAllowMulticast OBJECT-TYPE +-- SYNTAX INTEGER {enable(1),disable(2)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set flooding multicast packets. The meanings of the values are: +-- enable(1) - Enable flooding multicast; +-- disable(2) - Disable flooding multicast;" +-- DEFVAL { 1 } +-- ::= { mplsVplsEntry 18 } + +mplsVplsState OBJECT-TYPE + SYNTAX INTEGER {active(1),inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPLS instance state. The meanings of the values are: + active(1) - VPLS instance is active; + inactive(2) - VPLS instance is inactive;" + ::= { mplsVplsEntry 20 } + +-- mplsVplsRawMeshPeerNum OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Indicates the number the vpls raw mesh peers." +-- ::= { mplsVplsEntry 21 } +-- +-- mplsVplsTaggedMeshPeerNum OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Indicates the number the vpls tagged mesh peer." +-- ::= { mplsVplsEntry 22 } +-- +-- mplsVplsSpokePeerNum OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Indicates the number the vpls spoke peers." +-- ::= { mplsVplsEntry 23 } + +mplsVplsPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Peers to VPLS domains." + ::= { mpls 9 } + +mplsVplsPeerEntry OBJECT-TYPE + SYNTAX MplsVplsPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsPeerTable." + INDEX { mplsVplsPeerVplsId, mplsVplsPeerPeerAddr} + ::= { mplsVplsPeerTable 1 } + +MplsVplsPeerEntry ::= + SEQUENCE { + mplsVplsPeerVplsId Unsigned32, + mplsVplsPeerPeerAddr IpAddress, + mplsVplsPeerType Integer32, + mplsVplsPeerIsManul Integer32, + mplsVplsPeerControlWord INTEGER, + mplsVplsPeerStats INTEGER, + mplsVplsPeerPEType INTEGER, + mplsVplsPeerRowStatus RowStatus, + mplsVplsPeerState INTEGER + } + +mplsVplsPeerVplsId OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsPeerEntry 1 } + +mplsVplsPeerPeerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IP address of the peer node to be added." + ::= { mplsVplsPeerEntry 2 } + +mplsVplsPeerType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set 1, if Peer Virtual Circuits type is Raw mode; + Set 2, if Peer Virtual Circuits type is Tagged mode." + ::= { mplsVplsPeerEntry 3 } + +mplsVplsPeerIsManul OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "No signaling is used to set-up the Virtual Circuit. + 1 means manual is set, 2 means not." + ::= { mplsVplsPeerEntry 4 } + +mplsVplsPeerControlWord OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set control word for mpls vpls peer. The meanings of the values are: + enable(1) - enable control word; + disable(2) - disable control word;" + DEFVAL { 2 } + ::= { mplsVplsPeerEntry 5 } + +mplsVplsPeerStats OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set statistics for mpls vpls peer. The meanings of the values are: + enable(1) - enable statistics; + disable(2) - disable statistics;" + DEFVAL { 2 } + ::= { mplsVplsPeerEntry 6 } + +mplsVplsPeerPEType OBJECT-TYPE + SYNTAX INTEGER {spe(1),upe(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set PW type for mpls vpls peer. The meanings of the values are: + spe(1) - Superstarum PE; + upe(2) - Underlayer PE;" + DEFVAL { 1 } + ::= { mplsVplsPeerEntry 7 } + +mplsVplsPeerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsVplsPeerEntry 15 } + +mplsVplsPeerState OBJECT-TYPE + SYNTAX INTEGER {up(1),down(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of mpls vpls peer. The meanings of the values are: + up(1) - the vpls peer is up; + down(2) - the vpls peer is down;" + DEFVAL { 2 } + ::= { mplsVplsPeerEntry 16 } + +-- mplsVplsPeerIngressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress packets number of mpls vpls peer." +-- ::= { mplsVplsPeerEntry 17 } +-- +-- mplsVplsPeerIngressbytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress bytes number of mpls vpls peer." +-- ::= { mplsVplsPeerEntry 18 } +-- +-- mplsVplsPeerEgressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress packets number of mpls vpls peer." +-- ::= { mplsVplsPeerEntry 19 } +-- +-- mplsVplsPeerEgressBytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress bytes number of mpls vpls peer." +-- ::= { mplsVplsPeerEntry 20 } + +mplsVplsFibAddTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsFibAddEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vpls fib table." + ::= { mpls 10 } + +mplsVplsFibAddEntry OBJECT-TYPE + SYNTAX MplsVplsFibAddEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VPLS Fib entrys." + INDEX { mplsVplsFibAddVplsId, mplsVplsFibAddPeerAddr} + ::= { mplsVplsFibAddTable 1 } + +MplsVplsFibAddEntry ::= + SEQUENCE { + mplsVplsFibAddVplsId Integer32, + mplsVplsFibAddPeerAddr IpAddress, + mplsVplsFibAddInLabel Integer32, + mplsVplsFibAddOutLabel Integer32, + mplsVplsFibAddRowStatus RowStatus + } + +mplsVplsFibAddVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsFibAddEntry 1 } + +mplsVplsFibAddPeerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mesh Peer IPv4 Address." + ::= { mplsVplsFibAddEntry 2 } + +mplsVplsFibAddInLabel OBJECT-TYPE + SYNTAX Integer32(16..2063) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "In-coming Label <16-2063>." + ::= { mplsVplsFibAddEntry 3 } + +mplsVplsFibAddOutLabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going Label <16-1048575>." + ::= { mplsVplsFibAddEntry 4 } + +mplsVplsFibAddRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsVplsFibAddEntry 5 } + + mplsInterfaceMplsVpwsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsInterfaceMplsVpwsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "One MPLS layer-2 virtual circuit can only band to one interface, + but one interface may be banded to many VCs." + ::= { mpls 11 } + + mplsInterfaceMplsVpwsEntry OBJECT-TYPE + SYNTAX MplsInterfaceMplsVpwsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsInterfaceMplsVpwsTable." + INDEX { mplsInterfaceMplsVpwsIfIndex, mplsInterfaceMplsVpwsVcName, mplsInterfaceMplsVpwsVlanId} + ::= { mplsInterfaceMplsVpwsTable 1 } + +MplsInterfaceMplsVpwsEntry ::= + SEQUENCE { + mplsInterfaceMplsVpwsIfIndex Integer32, + mplsInterfaceMplsVpwsVcName OCTET STRING, + mplsInterfaceMplsVpwsVlanId Integer32, + mplsInterfaceMplsVpwsBundling INTEGER, + mplsInterfaceMplsVpwsStatisticEn INTEGER, + mplsInterfaceMplsVpwsReplaceDscp INTEGER, + mplsInterfaceMplsVpwsReplaceCos INTEGER, + mplsInterfaceMplsVpwsVlanOperation OCTET STRING, + mplsInterfaceMplsVpwsRowStatus RowStatus + } + +mplsInterfaceMplsVpwsIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..48) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index." + ::= { mplsInterfaceMplsVpwsEntry 1 } + +mplsInterfaceMplsVpwsVcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for MPLS layer-2 virtual circuit." + ::= { mplsInterfaceMplsVpwsEntry 2 } + +mplsInterfaceMplsVpwsVlanId OBJECT-TYPE + SYNTAX Integer32(0..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vlan identifier." + ::= { mplsInterfaceMplsVpwsEntry 3 } + +mplsInterfaceMplsVpwsBundling OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of bundling." + DEFVAL { disable } + ::= { mplsInterfaceMplsVpwsEntry 4 } + +mplsInterfaceMplsVpwsStatisticEn OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of statistic enable." + DEFVAL { disable } + ::= { mplsInterfaceMplsVpwsEntry 5 } + +mplsInterfaceMplsVpwsReplaceDscp OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of replace dscp enable." + DEFVAL { disable } + ::= { mplsInterfaceMplsVpwsEntry 6 } + +mplsInterfaceMplsVpwsReplaceCos OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of replace cos enable." + DEFVAL { disable } + ::= { mplsInterfaceMplsVpwsEntry 7 } + +mplsInterfaceMplsVpwsVlanOperation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Identifying vlan operation table name for MPLS layer-2 virtual circuit." + ::= { mplsInterfaceMplsVpwsEntry 8 } + +mplsInterfaceMplsVpwsRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsInterfaceMplsVpwsEntry 10 } + +mplsInterfacePropertyTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsInterfacePropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface property table.Including label-switching and configuration of MPLS-TP P2P MAC." + ::= { mpls 12 } + +mplsInterfacePropertyEntry OBJECT-TYPE + SYNTAX MplsInterfacePropertyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration of interface label-switching and MPLS-TP P2P MAC." + INDEX { mplsInterfacePropertyIfIndex} + ::= { mplsInterfacePropertyTable 1 } + +MplsInterfacePropertyEntry ::= + SEQUENCE { + mplsInterfacePropertyIfIndex Integer32, + mplsInterfaceLabelSwitching INTEGER, + mplsInterfaceTPP2PTxMac MacAddress, + mplsInterfaceCRCNumberThresholdRising OCTET STRING, + mplsInterfaceCRCNumberThresholdFalling OCTET STRING, + mplsInterfaceCRCRateThresholdRising Integer32, + mplsInterfaceCRCRateThresholdFalling Integer32, + mplsInterfaceCRCAlarmStatus INTEGER + } + +mplsInterfacePropertyIfIndex OBJECT-TYPE + SYNTAX Integer32(2..48) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index." + ::= { mplsInterfacePropertyEntry 1 } + +mplsInterfaceLabelSwitching OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set label-switching of the interface. This node is + valid when the interface is a routed interface. + The meanings of the values are: + enable(1) - Enable label-switching; + disable(2) - Disable label-switching;" + DEFVAL { 2 } + ::= { mplsInterfacePropertyEntry 4 } + +mplsInterfaceTPP2PTxMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transmit mac address for mpls-tp non-ip system." + ::= { mplsInterfacePropertyEntry 5 } + +mplsInterfaceCRCNumberThresholdRising OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rising threshold for CRC error number." + ::= { mplsInterfacePropertyEntry 6 } + +mplsInterfaceCRCNumberThresholdFalling OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Falling threshold for CRC error number." + ::= { mplsInterfacePropertyEntry 7 } + +mplsInterfaceCRCRateThresholdRising OBJECT-TYPE + SYNTAX Integer32(1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rising threshold for CRC error rate." + ::= { mplsInterfacePropertyEntry 8 } + +mplsInterfaceCRCRateThresholdFalling OBJECT-TYPE + SYNTAX Integer32(0..99) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Falling threshold for CRC error rate." + ::= { mplsInterfacePropertyEntry 9 } + +mplsInterfaceCRCAlarmStatus OBJECT-TYPE + SYNTAX INTEGER {active(1),inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface CRC alarm status." + ::= { mplsInterfacePropertyEntry 10 } + +mplsInterfaceMplsVplsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsInterfaceMplsVplsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of relationship of Vpls instance and interface." + ::= { mpls 13 } + +mplsInterfaceMplsVplsEntry OBJECT-TYPE + SYNTAX MplsInterfaceMplsVplsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsInterfaceMplsVplsTable." + INDEX { mplsInterfaceMplsVplsIfIndex, mplsInterfaceMplsVplsVplsName, mplsInterfaceMplsVplsVlanId} + ::= { mplsInterfaceMplsVplsTable 1 } + +MplsInterfaceMplsVplsEntry ::= + SEQUENCE { + mplsInterfaceMplsVplsIfIndex Integer32, + mplsInterfaceMplsVplsVplsName OCTET STRING, + mplsInterfaceMplsVplsVlanId Integer32, + mplsInterfaceMplsVplsBundling INTEGER, + mplsInterfaceMplsVplsStatisticEn INTEGER, + mplsInterfaceMplsVplsETreeACType INTEGER, + mplsInterfaceMplsVplsReplaceDscp INTEGER, + mplsInterfaceMplsVplsReplaceCos INTEGER, + mplsInterfaceMplsVplsVlanOperation OCTET STRING, + mplsInterfaceMplsVplsRowStatus RowStatus + } + +mplsInterfaceMplsVplsIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..48) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index." + ::= { mplsInterfaceMplsVplsEntry 1 } + +mplsInterfaceMplsVplsVplsName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for vlan." + ::= { mplsInterfaceMplsVplsEntry 2 } + +mplsInterfaceMplsVplsVlanId OBJECT-TYPE + SYNTAX Integer32(0..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for vlan.." + ::= { mplsInterfaceMplsVplsEntry 3 } + +mplsInterfaceMplsVplsBundling OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of bundling." + DEFVAL { disable } + ::= { mplsInterfaceMplsVplsEntry 4 } + +mplsInterfaceMplsVplsStatisticEn OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of statistics enable." + DEFVAL { disable } + ::= { mplsInterfaceMplsVplsEntry 5 } + +mplsInterfaceMplsVplsETreeACType OBJECT-TYPE + SYNTAX INTEGER {leaf(1), root(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Etree AC type." + DEFVAL { root } + ::= { mplsInterfaceMplsVplsEntry 6 } + +mplsInterfaceMplsVplsReplaceDscp OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of replace dscp." + DEFVAL { disable } + ::= { mplsInterfaceMplsVplsEntry 7 } + +mplsInterfaceMplsVplsReplaceCos OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of replace cos enable." + DEFVAL { disable } + ::= { mplsInterfaceMplsVplsEntry 8 } + +mplsInterfaceMplsVplsVlanOperation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Identifying vlan operation table name." + ::= { mplsInterfaceMplsVplsEntry 9 } + +mplsInterfaceMplsVplsRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsInterfaceMplsVplsEntry 10 } + +mplsLspPeTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all mpls lsp-pe instances." + ::= { mpls 14 } + +mplsLspPeEntry OBJECT-TYPE + SYNTAX MplsLspPeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPeTable." + INDEX { mplsLspPeName} + ::= { mplsLspPeTable 1 } + +MplsLspPeEntry ::= + SEQUENCE { + mplsLspPeName OCTET STRING, + mplsLspPeRowStatus RowStatus, + mplsLspPeState INTEGER, + mplsLspPeDescription OCTET STRING, + mplsLspPeOAMMegLevel Integer32, + mplsLspPeOAMMegId OCTET STRING, + mplsLspPeOAMMegIdIcc Integer32, + mplsLspPeOAMMepId Integer32, + mplsLspPeOAMMepInterval INTEGER, + mplsLspPeOAMMepExp Integer32, + mplsLspPeOAMRMepId Integer32, + mplsLspPeOAMCCState INTEGER, + mplsLspPeOAMEventCacheSize Integer32, + mplsLspPeOAM1dmCacheSize Integer32, + mplsLspPeOAMAisInterval Integer32, + mplsLspPeOAMAisClientSupress INTEGER, + mplsLspPeOAMLckInterval Integer32, + mplsLspPeOAMLck INTEGER, + mplsLspPeOAMEvtLOC INTEGER, + mplsLspPeOAMEvtUMP INTEGER, + mplsLspPeOAMEvtUIN INTEGER, + mplsLspPeOAMEvtUMG INTEGER, + mplsLspPeOAMEvtULV INTEGER, + mplsLspPeOAMEvtW1ST INTEGER, + mplsLspPeOAMEvtRDIR INTEGER, + mplsLspPeOAMEvtRDIT INTEGER, + mplsLspPeOAMEvtAISR INTEGER, + mplsLspPeOAMEvtAIST INTEGER, + mplsLspPeOAMEvtAISD INTEGER, + mplsLspPeOAMEvtLCKR INTEGER, + mplsLspPeOAMEvtLCKT INTEGER, + mplsLspPeOAMEvtLCKD INTEGER, + mplsLspPeOAMLckTxEnable INTEGER, + mplsLspPeOAMEvtCRC INTEGER, + mplsLspPeOAMState INTEGER, + mplsLspPeIngressPkts Counter64, + mplsLspPeIngressBytes Counter64, + mplsLspPeEgressPkts Counter64, + mplsLspPeEgressBytes Counter64, + mplsLspPeStats INTEGER, + mplsLspPeBandwidth Integer32, + mplsLspPeOAMLmDualExp Integer32, + mplsLspPeOAMLmDualStatInterval Integer32, + mplsLspPeOAMLmDualCacheSize Integer32, + mplsLspPeOAMLmSingleExp Integer32, + mplsLspPeOAMLmSingleInterval INTEGER, + mplsLspPeOAMLmSingleCacheSize Integer32, + mplsLspPeOAMLmEnableState INTEGER, + mplsLspPeOAMLmLocalLossThreshold Integer32, + mplsLspPeOAMLmRemoteLossThreshold Integer32, + mplsLspPeOAMLmSingleRxCount Integer32, + mplsLspPeOAMLmSingleTxCount Integer32, + mplsLspPeOAMLmSingleSuccessRate Integer32, + mplsLspPeOAMLmSingleStartTime OCTET STRING, + mplsLspPeOAMLmSingleEndTime OCTET STRING + } + +mplsLspPeName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-pe." + ::= { mplsLspPeEntry 1 } + +mplsLspPeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspPeEntry 10 } + +mplsLspPeState OBJECT-TYPE + SYNTAX INTEGER {active(1),inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the lsp-pe. The meanings of the values are: + active(1) - the lsp-pe is active; + inactive(2) - the lsp-pe is inactive;" + ::= { mplsLspPeEntry 11 } + +mplsLspPeDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this pe type LSP. + Only less than 20 octets is accepted." + ::= { mplsLspPeEntry 12 } + +mplsLspPeOAMMegLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OAM level." + DEFVAL { 7 } + ::= { mplsLspPeEntry 20 } + +mplsLspPeOAMMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEG ID of the lsp-pe." + ::= { mplsLspPeEntry 21 } + +mplsLspPeOAMMegIdIcc OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ICC length of MEG ID." + DEFVAL { 6 } + ::= { mplsLspPeEntry 22 } + +mplsLspPeOAMMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsLspPeEntry 23 } + +mplsLspPeOAMMepInterval OBJECT-TYPE + SYNTAX INTEGER + { + three-point-three-ms(1), + ten-ms(2), + one-hundred-ms(3), + one-sec(4), + ten-sec(5), + one-min(6), + ten-min(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEP Interval." + ::= { mplsLspPeEntry 24 } + +mplsLspPeOAMMepExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "EXP value, default is 7." + DEFVAL { 7 } + ::= { mplsLspPeEntry 25 } + +mplsLspPeOAMRMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP ID." + ::= { mplsLspPeEntry 26 } + +mplsLspPeOAMCCState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CC state." + DEFVAL { disable } + ::= { mplsLspPeEntry 27 } + +mplsLspPeOAMEventCacheSize OBJECT-TYPE + SYNTAX Integer32 (8..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Event entry cache size." + DEFVAL { 8 } + ::= { mplsLspPeEntry 28 } + +mplsLspPeOAM1dmCacheSize OBJECT-TYPE + SYNTAX Integer32 (8..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1dm entry cache size." + DEFVAL { 8 } + ::= { mplsLspPeEntry 29 } + +mplsLspPeOAMAisInterval OBJECT-TYPE + SYNTAX Integer32 (0|1|60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interval of AIS PDU. + 0:no oam-y1731 ais server enable." + ::= { mplsLspPeEntry 30 } + +mplsLspPeOAMAisClientSupress OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "AIS client supress state." + DEFVAL { disable } + ::= { mplsLspPeEntry 31 } + +mplsLspPeOAMLckInterval OBJECT-TYPE + SYNTAX Integer32 (0|1|60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Lsp-pe lock interval. + 0:no oam-y1731 lck server enable." + DEFVAL { 0 } + ::= { mplsLspPeEntry 32 } + +mplsLspPeOAMLck OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Lck state." + DEFVAL { disable } + ::= { mplsLspPeEntry 33 } + +mplsLspPeOAMEvtLOC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loc state." + DEFVAL { disable } + ::= { mplsLspPeEntry 34 } + +mplsLspPeOAMEvtUMP OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp RMEPID state." + DEFVAL { disable } + ::= { mplsLspPeEntry 35 } + +mplsLspPeOAMEvtUIN OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp interval state." + DEFVAL { disable } + ::= { mplsLspPeEntry 36 } + +mplsLspPeOAMEvtUMG OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp MEGID state." + DEFVAL { disable } + ::= { mplsLspPeEntry 37 } + +mplsLspPeOAMEvtULV OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp Level state." + DEFVAL { disable } + ::= { mplsLspPeEntry 38 } + +mplsLspPeOAMEvtW1ST OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Wait 1st CCM state." + DEFVAL { disable } + ::= { mplsLspPeEntry 39 } + +mplsLspPeOAMEvtRDIR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RDI RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 40 } + +mplsLspPeOAMEvtRDIT OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RDI TX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 41 } + +mplsLspPeOAMEvtAISR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 42 } + +mplsLspPeOAMEvtAIST OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 43 } + +mplsLspPeOAMEvtAISD OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 44 } + +mplsLspPeOAMEvtLCKR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 45 } + +mplsLspPeOAMEvtLCKT OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 46 } + +mplsLspPeOAMEvtLCKD OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 47 } + +mplsLspPeOAMLckTxEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "oam-y1731 lck server enable." + DEFVAL { 2 } + ::= { mplsLspPeEntry 48 } + +mplsLspPeOAMEvtCRC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CRC RX state." + DEFVAL { disable } + ::= { mplsLspPeEntry 49 } + +mplsLspPeOAMState OBJECT-TYPE + SYNTAX INTEGER {init(0), fail(1), ok(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "oam-y1731 Rmep state." + ::= { mplsLspPeEntry 50 } + +mplsLspPeIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packtes number of lsp-pe." + ::= { mplsLspPeEntry 51 } + +mplsLspPeIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of lsp-pe." + ::= { mplsLspPeEntry 52 } + +mplsLspPeEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packtes number of lsp-pe." + ::= { mplsLspPeEntry 53 } + +mplsLspPeEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of lsp-pe." + ::= { mplsLspPeEntry 54 } + +mplsLspPeStats OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "statistics enable." + DEFVAL { disable } + ::= { mplsLspPeEntry 55 } + +mplsLspPeBandwidth OBJECT-TYPE + SYNTAX Integer32 (-1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "lsp-pe bandwidth in kbps. -1 means no limitation" + ::= { mplsLspPeEntry 56 } + +mplsLspPeOAMLmDualExp OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment packets with specified exp will be counted. + <0-7> specified exp; 8 means Packets with different exp will be counted separately; + 9 means All packets with different exp will be counted together." + ::= { mplsLspPeEntry 61 } + +mplsLspPeOAMLmDualStatInterval OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment interval value." + DEFVAL { 1 } + ::= { mplsLspPeEntry 62 } + +mplsLspPeOAMLmDualCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment cache size." + DEFVAL { 128 } + ::= { mplsLspPeEntry 63 } + +mplsLspPeOAMLmSingleExp OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure single-ended loss measurment packets with specified exp will be counted. + <0-7> specified exp; 8 means Packets with different exp will be counted separately; + 9 means All packets with different exp will be counted together." + ::= { mplsLspPeEntry 66 } + +mplsLspPeOAMLmSingleInterval OBJECT-TYPE + SYNTAX INTEGER + { + one-hundred-ms(1), + one-sec(2), + ten-sec(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Interval." + ::= { mplsLspPeEntry 67 } + +mplsLspPeOAMLmSingleCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure single-ended loss measurment cache size." + DEFVAL { 128 } + ::= { mplsLspPeEntry 68 } + +mplsLspPeOAMLmEnableState OBJECT-TYPE + SYNTAX INTEGER {enable-dual(1), enable-single(2), disable(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable oam-y1731 loss measurment." + DEFVAL { disable } + ::= { mplsLspPeEntry 70 } + +mplsLspPeOAMLmLocalLossThreshold OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Local packet loss percentage, 0 means threshold not enabled." + DEFVAL { 0 } + ::= { mplsLspPeEntry 71 } + +mplsLspPeOAMLmRemoteLossThreshold OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Local packet loss percentage, 0 means threshold not enabled." + DEFVAL { 0 } + ::= { mplsLspPeEntry 72 } + +mplsLspPeOAMLmSingleRxCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended packet Rx count." + ::= { mplsLspPeEntry 73 } + +mplsLspPeOAMLmSingleTxCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended packet Tx count." + ::= { mplsLspPeEntry 74 } + +mplsLspPeOAMLmSingleSuccessRate OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended success rate." + ::= { mplsLspPeEntry 75 } + +mplsLspPeOAMLmSingleStartTime OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM proactive single-ended start time." + ::= { mplsLspPeEntry 76 } + +mplsLspPeOAMLmSingleEndTime OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM proactive single-ended end time." + ::= { mplsLspPeEntry 77 } + +mplsLspPeIngressTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPeIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls lsp-pe ingress configure." + ::= { mpls 15 } + +mplsLspPeIngressEntry OBJECT-TYPE + SYNTAX MplsLspPeIngressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPeIngressTable." + INDEX { mplsLspPeIngressLspName } + ::= { mplsLspPeIngressTable 1 } + +MplsLspPeIngressEntry ::= + SEQUENCE { + mplsLspPeIngressLspName OCTET STRING, + mplsLspPeIngressInlabel Integer32, + mplsLspPeIngressRowStatus RowStatus + } + +mplsLspPeIngressLspName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-pe." + ::= { mplsLspPeIngressEntry 1 } + +mplsLspPeIngressInlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Incoming label of the Lsp-pe." + ::= { mplsLspPeIngressEntry 2 } + +mplsLspPeIngressRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspPeIngressEntry 10 } + +mplsLspPeEgressTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPeEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls lsp-pe egress configure." + ::= { mpls 16 } + +mplsLspPeEgressEntry OBJECT-TYPE + SYNTAX MplsLspPeEgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of mplsLspPeEgressTable." + INDEX { mplsLspPeEgressLspName } + ::= { mplsLspPeEgressTable 1 } + +MplsLspPeEgressEntry ::= + SEQUENCE { + mplsLspPeEgressLspName OCTET STRING, + mplsLspPeEgressOutlabel Integer32, + mplsLspPeEgressNextHop IpAddress, + mplsLspPeEgressOutIfindex Integer32, + mplsLspPeEgressOutMemIfindex Integer32, + mplsLspPeEgressRowStatus RowStatus + } + +mplsLspPeEgressLspName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-pe." + ::= { mplsLspPeEgressEntry 1 } + +mplsLspPeEgressOutlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Outgoing label of the Lsp-pe." + ::= { mplsLspPeEgressEntry 2 } + +mplsLspPeEgressNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Nexthop Address(IPV4) for the Lsp-pe. Out-going + interface and nexthop ip address can not be configured + at the same time." + ::= { mplsLspPeEgressEntry 3 } + +mplsLspPeEgressOutIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Outgoing interface for the Lsp-pe. Out-going + interface and nexthop ip address can not be configured + at the same time." + ::= { mplsLspPeEgressEntry 4 } + +mplsLspPeEgressOutMemIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Member port index, this field is required only when + out-going interface is vlan interface." + ::= { mplsLspPeEgressEntry 5 } + +mplsLspPeEgressRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspPeEgressEntry 10 } + +mplsLspPTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all mpls lsp-p instances." + ::= { mpls 17 } + +mplsLspPEntry OBJECT-TYPE + SYNTAX MplsLspPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPTable." + INDEX { mplsLspPName} + ::= { mplsLspPTable 1 } + +MplsLspPEntry ::= + SEQUENCE { + mplsLspPName OCTET STRING, + mplsLspPRowStatus RowStatus, + mplsLspPOAMMegId OCTET STRING, + mplsLspPOAMMegIdIcc Integer32, + mplsLspPOAMMipState INTEGER, + mplsLspPOAMMegLevel Integer32, + mplsLspPDescription OCTET STRING, + mplsLspPStats INTEGER + } + +mplsLspPName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-p." + ::= { mplsLspPEntry 1 } + +mplsLspPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspPEntry 10 } + +mplsLspPOAMMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEG ID of the lsp-p." + ::= { mplsLspPEntry 11 } + +mplsLspPOAMMegIdIcc OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ICC length of MEG ID." + DEFVAL { 6 } + ::= { mplsLspPEntry 12 } + +mplsLspPOAMMipState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MIP state of the lsp." + DEFVAL { disable } + ::= { mplsLspPEntry 13 } + +mplsLspPOAMMegLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OAM level." + DEFVAL { 7 } + ::= { mplsLspPEntry 14 } + +mplsLspPDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this p type LSP. + Only less than 20 octets is accepted." + ::= { mplsLspPEntry 15 } + +mplsLspPStats OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set statistics for mpls lsp-p. The meanings of the values are: + enable(1) - enable statistics; + disable(2) - disable statistics;" + DEFVAL { 2 } + ::= { mplsLspPEntry 16 } + +mplsLspPEastTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPEastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of east configuration of all mpls lsp-p instances." + ::= { mpls 18 } + +mplsLspPEastEntry OBJECT-TYPE + SYNTAX MplsLspPEastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPfEastTable." + INDEX { mplsLspPEastLspName} + ::= { mplsLspPEastTable 1 } + +MplsLspPEastEntry ::= + SEQUENCE { + mplsLspPEastLspName OCTET STRING, + mplsLspPEastInlabel Integer32, + mplsLspPEastOutlabel Integer32, + mplsLspPEastNextHop IpAddress, + mplsLspPEastTunnel OCTET STRING, + mplsLspPEastOutIfindex Integer32, + mplsLspPEastOutMemIfindex Integer32, + mplsLspPEastReplaceExp INTEGER, + mplsLspPEastRowStatus RowStatus, + mplsLspPEastState INTEGER, + mplsLspPEastIngressPkts Counter64, + mplsLspPEastIngressbytes Counter64, + mplsLspPEastEgressPkts Counter64, + mplsLspPEastEgressBytes Counter64 + } + +mplsLspPEastLspName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-p." + ::= { mplsLspPEastEntry 1 } + +mplsLspPEastInlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "East incoming label of the Lsp-p." + ::= { mplsLspPEastEntry 2 } + +mplsLspPEastOutlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "East outgoing label of the Lsp-p." + ::= { mplsLspPEastEntry 3 } + +mplsLspPEastNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "East nexthop Address(IPV4) for the Lsp-p." + ::= { mplsLspPEastEntry 4 } + +mplsLspPEastTunnel OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "East tunnel name." + ::= { mplsLspPEastEntry 5 } + +mplsLspPEastOutIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Outgoing interface for the Lsp-p. Out-going + interface , tunnel, and nexthop ip address + can not be configured at the same time." + ::= { mplsLspPEastEntry 6 } + +mplsLspPEastOutMemIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Member port index, this field is required only when + out-going interface is vlan interface." + ::= { mplsLspPEastEntry 7 } + +mplsLspPEastReplaceExp OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Replace exp." + ::= { mplsLspPEastEntry 8 } + +mplsLspPEastRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspPEastEntry 10 } + +mplsLspPEastState OBJECT-TYPE + SYNTAX INTEGER {active(1), inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls lsp-p east. The meanings of the values are: + active(1) - active; + inactive(2) - inactive;" + ::= { mplsLspPEastEntry 11 } + +mplsLspPEastIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packets number of lsp-p east." + ::= { mplsLspPEastEntry 20 } + +mplsLspPEastIngressbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of lsp-p east." + ::= { mplsLspPEastEntry 21 } + +mplsLspPEastEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packets number of lsp-p east." + ::= { mplsLspPEastEntry 22 } + +mplsLspPEastEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of lsp-p east." + ::= { mplsLspPEastEntry 23 } + +mplsLspPWestTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPWestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of west configuration of all mpls lsp-p instances." + ::= { mpls 19 } + +mplsLspPWestEntry OBJECT-TYPE + SYNTAX MplsLspPWestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPWestTable." + INDEX { mplsLspPWestLspName} + ::= { mplsLspPWestTable 1 } + +MplsLspPWestEntry ::= + SEQUENCE { + mplsLspPWestLspName OCTET STRING, + mplsLspPWestInlabel Integer32, + mplsLspPWestOutlabel Integer32, + mplsLspPWestNextHop IpAddress, + mplsLspPWestTunnel OCTET STRING, + mplsLspPWestOutIfindex Integer32, + mplsLspPWestOutMemIfindex Integer32, + mplsLspPWestReplaceExp INTEGER, + mplsLspPWestRowStatus RowStatus, + mplsLspPWestState INTEGER, + mplsLspPWestIngressPkts Counter64, + mplsLspPWestIngressbytes Counter64, + mplsLspPWestEgressPkts Counter64, + mplsLspPWestEgressBytes Counter64 + } + +mplsLspPWestLspName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-p." + ::= { mplsLspPWestEntry 1 } + +mplsLspPWestInlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "West incoming label of the Lsp-p." + ::= { mplsLspPWestEntry 2 } + +mplsLspPWestOutlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "West outgoing label of the Lsp-p." + ::= { mplsLspPWestEntry 3 } + +mplsLspPWestNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "West nexthop Address(IPV4) for the Lsp-p." + ::= { mplsLspPWestEntry 4 } + +mplsLspPWestTunnel OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "West tunnel name." + ::= { mplsLspPWestEntry 5 } + +mplsLspPWestOutIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Outgoing interface for the Lsp-p. Out-going + interface , tunnel, and nexthop ip address + can not be configured at the same time." + ::= { mplsLspPWestEntry 6 } + +mplsLspPWestOutMemIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Member port index, this field is required only when + out-going interface is vlan interface." + ::= { mplsLspPWestEntry 7 } + +mplsLspPWestReplaceExp OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Replace exp." + ::= { mplsLspPWestEntry 8 } + +mplsLspPWestRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsLspPWestEntry 10 } + +mplsLspPWestState OBJECT-TYPE + SYNTAX INTEGER {active(1), inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls lsp-p west. The meanings of the values are: + active(1) - active; + inactive(2) - inactive;" + ::= { mplsLspPWestEntry 11 } + +mplsLspPWestIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packets number of lsp-p west." + ::= { mplsLspPWestEntry 20 } + +mplsLspPWestIngressbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of lsp-p west." + ::= { mplsLspPWestEntry 21 } + +mplsLspPWestEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packets number of lsp-p west." + ::= { mplsLspPWestEntry 22 } + +mplsLspPWestEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of lsp-p west." + ::= { mplsLspPWestEntry 23 } + +mplsTunnelTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTunnelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all mpls tunnel instances." + ::= { mpls 20 } + +mplsTunnelEntry OBJECT-TYPE + SYNTAX MplsTunnelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTunnelTable." + INDEX { mplsTunnelName} + ::= { mplsTunnelTable 1 } + +MplsTunnelEntry ::= + SEQUENCE { + mplsTunnelName OCTET STRING, + mplsTunnelApsType INTEGER, + mplsTunnelRowStatus RowStatus, + mplsTunnelPrimaryLspPe OCTET STRING, + mplsTunnelSecondaryLspPe OCTET STRING, + mplsTunnelDescription OCTET STRING, + mplsTunnelSelectedLspPe OCTET STRING, + mplsTunnelG8131Mode INTEGER, + mplsTunnelG8131WTRTimer Integer32, + mplsTunnelG8131HoldOffTimer Integer32, + mplsTunnelG8131Action INTEGER, + mplsTunnelG8131WorkingLSP OCTET STRING, + mplsTunnelG8131ProtectionLSP OCTET STRING, + mplsTunnelG8131ActivePath INTEGER, + mplsTunnelG8131WTRTimeLeft Integer32, + mplsTunnelG8131HoldOffTimeLeft Integer32, + mplsTunnelG8131DFOPState INTEGER, + mplsTunnelG8131CurrentState INTEGER, + mplsTunnelG8131LastState INTEGER, + mplsTunnelG8131CurrentEvent INTEGER, + mplsTunnelG8131FarEndLastEvent INTEGER, + mplsTunnelG8131RequestSignal INTEGER + } + +mplsTunnelName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for mpls tunnel." + ::= { mplsTunnelEntry 1 } + +mplsTunnelApsType OBJECT-TYPE + SYNTAX INTEGER { aps(1), non-aps(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "APS type for the tunnel." + ::= { mplsTunnelEntry 2 } + +mplsTunnelRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsTunnelEntry 10 } + +mplsTunnelPrimaryLspPe OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Primary lsp-pe name of the mpls tunnel." + ::= { mplsTunnelEntry 11 } + +mplsTunnelSecondaryLspPe OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Secondary lsp-pe name of the mpls tunnel." + ::= { mplsTunnelEntry 12 } + +mplsTunnelDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this MPLS tunnel. + Only less than 20 octets is accepted." + ::= { mplsTunnelEntry 13 } + +mplsTunnelSelectedLspPe OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Selected lsp-pe name of the mpls tunnel." + ::= { mplsTunnelEntry 25 } + +mplsTunnelG8131Mode OBJECT-TYPE + SYNTAX INTEGER { revertive(1), non-revertive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 mode for the mpls tunnel." + ::= { mplsTunnelEntry 30 } + +mplsTunnelG8131WTRTimer OBJECT-TYPE + SYNTAX Integer32 (0..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 wait-to-restore timer value for the mpls tunnel, in minutes." + DEFVAL {5} + ::= { mplsTunnelEntry 31 } + +mplsTunnelG8131HoldOffTimer OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 hold-off timer value for the mpls tunnel, steps of 100ms." + DEFVAL {0} + ::= { mplsTunnelEntry 32 } + +mplsTunnelG8131Action OBJECT-TYPE + SYNTAX INTEGER { force-switch(1), manual-swtich-to-working(2), + manual-switch-to-protection(3), lockout(4), + exercise(5), clear(6) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 actions for the mpls tunnel." + ::= { mplsTunnelEntry 33 } + +mplsTunnelG8131WorkingLSP OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 working lsp for the mpls tunnel." + ::= { mplsTunnelEntry 40 } + +mplsTunnelG8131ProtectionLSP OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 protection lsp for the mpls tunnel." + ::= { mplsTunnelEntry 41 } + +mplsTunnelG8131ActivePath OBJECT-TYPE + SYNTAX INTEGER { none(0), working-lsp(1), protection-lsp(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 active path for the mpls tunnel." + ::= { mplsTunnelEntry 42 } + +mplsTunnelG8131WTRTimeLeft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Left time of G8131 wait-to-restore timer of the mpls tunnel." + ::= { mplsTunnelEntry 43 } + +mplsTunnelG8131HoldOffTimeLeft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Left time of G8131 hold-off timer of the mpls tunnel." + ::= { mplsTunnelEntry 44 } + +mplsTunnelG8131DFOPState OBJECT-TYPE + SYNTAX INTEGER + { + not-in-defect-mode(1), + b-bit-mismatch-defect(2), + r-bit-mismatch-defect(3), + invalid-request-state(4), + aps-recv-on-working-entity(5), + aps-pdu-not-recv-after-state-change(6), + a-bit-mismatch-defect(7), + d-bit-mismatch-defect(8), + t-bit-mismatch-defect(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 DFOP state of the mpls tunnel." + ::= { mplsTunnelEntry 45 } + +mplsTunnelG8131CurrentState OBJECT-TYPE + SYNTAX INTEGER + { + no-request-working-active(0), + no-request-protection-avtive(1), + lockout-of-protection(2), + forced-switch(3), + signal-fail-on-working(4), + signal-fail-on-protection(5), + signal-degrade-on-working(6), + signal-degrade-on-protection(7), + manual-switch-to-protection(8), + manual-switch-to-working(9), + wait-to-restore(10), + do-not-revert(11), + exercise-on-working(12), + exercise-on-protection(13), + reverse-request-on-working(14), + reverse-request-on-protection(15), + none(16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 current state of the mpls tunnel." + ::= { mplsTunnelEntry 46 } + +mplsTunnelG8131LastState OBJECT-TYPE + SYNTAX INTEGER + { + no-request-working-active(0), + no-request-protection-avtive(1), + lockout-of-protection(2), + forced-switch(3), + signal-fail-on-working(4), + signal-fail-on-protection(5), + signal-degrade-on-working(6), + signal-degrade-on-protection(7), + manual-switch-to-protection(8), + manual-switch-to-working(9), + wait-to-restore(10), + do-not-revert(11), + exercise-on-working(12), + exercise-on-protection(13), + reverse-request-on-working(14), + reverse-request-on-protection(15), + none(16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 last state of the mpls tunnel." + ::= { mplsTunnelEntry 47 } + +mplsTunnelG8131CurrentEvent OBJECT-TYPE + SYNTAX INTEGER + { + local-lockout(0), + local-force-switch(1), + local-signal-fail-on-working(2), + local-working-recover-from-signal-fail(3), + local-signal-fail-on-protection(4), + local-protection-recover-from-signal-fail(5), + local-signal-degrade-on-working(6), + local-working-recover-from-signal-degrade(7), + local-signal-degrade-on-protection(8), + local-protection-recover-from-signal-degrade(9), + local-manual-switch-to-protection(10), + local-manual-switch-to-working(11), + local-clear(12), + local-exercise(13), + local-wtr-timer-expire(14), + remote-lockout(15), + remote-signal-fail-on-protection(16), + remote-force-switch(17), + remote-signal-fail-on-working(18), + remote-signal-degrade-on-working(19), + remote-signal-degrade-on-protection(20), + remote-manual-switch-to-protection(21), + remote-manual-switch-to-working(22), + remote-wait-to-restore(23), + remote-exercise-on-working(24), + remote-exercise-on-protection(25), + remote-reverse-request-on-working(26), + remote-reverse-request-on-protection(27), + remote-no-request-null(28), + remote-no-request-normal(29), + remote-do-not-revert(30), + none(31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 current event of the mpls tunnel." + ::= { mplsTunnelEntry 48 } + +mplsTunnelG8131FarEndLastEvent OBJECT-TYPE + SYNTAX INTEGER + { + local-lockout(0), + local-force-switch(1), + local-signal-fail-on-working(2), + local-working-recover-from-signal-fail(3), + local-signal-fail-on-protection(4), + local-protection-recover-from-signal-fail(5), + local-signal-degrade-on-working(6), + local-working-recover-from-signal-degrade(7), + local-signal-degrade-on-protection(8), + local-protection-recover-from-signal-degrade(9), + local-manual-switch-to-protection(10), + local-manual-switch-to-working(11), + local-clear(12), + local-exercise(13), + local-wtr-timer-expire(14), + remote-lockout(15), + remote-signal-fail-on-protection(16), + remote-force-switch(17), + remote-signal-fail-on-working(18), + remote-signal-degrade-on-working(19), + remote-signal-degrade-on-protection(20), + remote-manual-switch-to-protection(21), + remote-manual-switch-to-working(22), + remote-wait-to-restore(23), + remote-exercise-on-working(24), + remote-exercise-on-protection(25), + remote-reverse-request-on-working(26), + remote-reverse-request-on-protection(27), + remote-no-request-null(28), + remote-no-request-normal(29), + remote-do-not-revert(30), + none(31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 far end last event of the mpls tunnel." + ::= { mplsTunnelEntry 49 } + +mplsTunnelG8131RequestSignal OBJECT-TYPE + SYNTAX INTEGER { normal(1), null(2), none(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 request signal of the mpls tunnel." + ::= { mplsTunnelEntry 50 } + +mplsPwSPeTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsPwSPeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all mpls pw s-pe instances." + ::= { mpls 23 } + +mplsPwSPeEntry OBJECT-TYPE + SYNTAX MplsPwSPeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsPwSPeTable." + INDEX { mplsPwSPeName } + ::= { mplsPwSPeTable 1 } + +MplsPwSPeEntry ::= + SEQUENCE { + mplsPwSPeName OCTET STRING, + mplsPwSPeRowStatus RowStatus, + mplsPwSPeOAMMegId OCTET STRING, + mplsPwSPeOAMMegIdIcc Integer32, + mplsPwSPeOAMMipState INTEGER, + mplsPwSPeOAMMegLevel Integer32, + mplsPwSPeDescription OCTET STRING, + mplsPwSpeStats INTEGER +} + +mplsPwSPeName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS pw s-pe." + ::= { mplsPwSPeEntry 1 } + +mplsPwSPeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsPwSPeEntry 10 } + +mplsPwSPeOAMMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEG ID of the pw spe." + ::= { mplsPwSPeEntry 11 } + +mplsPwSPeOAMMegIdIcc OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ICC length of MEG ID." + DEFVAL { 6 } + ::= { mplsPwSPeEntry 12 } + +mplsPwSPeOAMMipState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MIP state of the pw spe." + DEFVAL { disable } + ::= { mplsPwSPeEntry 13 } + +mplsPwSPeOAMMegLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OAM level." + DEFVAL { 7 } + ::= { mplsPwSPeEntry 14 } + +mplsPwSPeDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this S-PE type PW. + Only less than 20 octets is accepted." + ::= { mplsPwSPeEntry 15 } + +mplsPwSpeStats OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set statistics for mpls pw s-pe. The meanings of the values are: + enable(1) - enable statistics; + disable(2) - disable statistics;" + DEFVAL { 2 } + ::= { mplsPwSPeEntry 16 } + +mplsPwSPeEastTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsPwSPeEastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of east configuration of all mpls pw s-pe instances." + ::= { mpls 24 } + +mplsPwSPeEastEntry OBJECT-TYPE + SYNTAX MplsPwSPeEastEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsPwSPeEastTable." + INDEX { mplsPwSPeEastPwName} + ::= { mplsPwSPeEastTable 1 } + +MplsPwSPeEastEntry ::= + SEQUENCE { + mplsPwSPeEastPwName OCTET STRING, + mplsPwSPeEastInlabel Integer32, + mplsPwSPeEastOutlabel Integer32, + mplsPwSPeEastTunnelName OCTET STRING, + mplsPwSPeEastCtrlWord INTEGER, + mplsPwSPeEastRowStatus RowStatus, + mplsPwSPeEastState INTEGER, + mplsPwSPeEastIngressPkts Counter64, + mplsPwSPeEastIngressbytes Counter64, + mplsPwSPeEastEgressPkts Counter64, + mplsPwSPeEastEgressBytes Counter64 + } + +mplsPwSPeEastPwName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS pw s-pe." + ::= { mplsPwSPeEastEntry 1 } + +mplsPwSPeEastInlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "East incoming label of the MPLS pw s-pe." + ::= { mplsPwSPeEastEntry 2 } + +mplsPwSPeEastOutlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "East outgoing label of the MPLS pw s-pe." + ::= { mplsPwSPeEastEntry 3 } + +mplsPwSPeEastTunnelName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MPLS tunnel name for the MPLS pw s-pe." + ::= { mplsPwSPeEastEntry 4 } + +mplsPwSPeEastCtrlWord OBJECT-TYPE + SYNTAX INTEGER {control-word(1), no-control-word(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls pw spe east control-word." + ::= { mplsPwSPeEastEntry 5 } + +mplsPwSPeEastRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsPwSPeEastEntry 10 } + +mplsPwSPeEastState OBJECT-TYPE + SYNTAX INTEGER {up(1), down(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls pw spe east. The meanings of the values are: + up(1) - the state is up; + down(2) - the state is down;" + ::= { mplsPwSPeEastEntry 11 } + +mplsPwSPeEastIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packets number of pw s-pe east." + ::= { mplsPwSPeEastEntry 20 } + +mplsPwSPeEastIngressbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of pw s-pe east." + ::= { mplsPwSPeEastEntry 21 } + +mplsPwSPeEastEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packets number of pw s-pe east." + ::= { mplsPwSPeEastEntry 22 } + +mplsPwSPeEastEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of pw s-pe east." + ::= { mplsPwSPeEastEntry 23 } + +mplsPwSPeWestTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsPwSPeWestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of west configuration of all mpls pw s-pe instances." + ::= { mpls 25 } + +mplsPwSPeWestEntry OBJECT-TYPE + SYNTAX MplsPwSPeWestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsPwSPeWestTable." + INDEX { mplsPwSPeWestPwName} + ::= { mplsPwSPeWestTable 1 } + +MplsPwSPeWestEntry ::= + SEQUENCE { + mplsPwSPeWestPwName OCTET STRING, + mplsPwSPeWestInlabel Integer32, + mplsPwSPeWestOutlabel Integer32, + mplsPwSPeWestTunnelName OCTET STRING, + mplsPwSPeWestCtrlWord INTEGER, + mplsPwSPeWestRowStatus RowStatus, + mplsPwSPeWestState INTEGER, + mplsPwSPeWestIngressPkts Counter64, + mplsPwSPeWestIngressbytes Counter64, + mplsPwSPeWestEgressPkts Counter64, + mplsPwSPeWestEgressBytes Counter64 + } + +mplsPwSPeWestPwName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS pw s-pe." + ::= { mplsPwSPeWestEntry 1 } + +mplsPwSPeWestInlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "West incoming label of the MPLS pw s-pe." + ::= { mplsPwSPeWestEntry 2 } + +mplsPwSPeWestOutlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "West outgoing label of the MPLS pw s-pe." + ::= { mplsPwSPeWestEntry 3 } + +mplsPwSPeWestTunnelName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MPLS tunnel name for the MPLS pw s-pe." + ::= { mplsPwSPeWestEntry 4 } + +mplsPwSPeWestCtrlWord OBJECT-TYPE + SYNTAX INTEGER {control-word(1), no-control-word(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls pw spe west control-word." + ::= { mplsPwSPeWestEntry 5 } + +mplsPwSPeWestRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsPwSPeWestEntry 10 } + +mplsPwSPeWestState OBJECT-TYPE + SYNTAX INTEGER {up(1), down(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the mpls pw spe west. The meanings of the values are: + up(1) - the state is up; + down(2) - the state is down;" + ::= { mplsPwSPeWestEntry 11 } + +mplsPwSPeWestIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packets number of pw s-pe west." + ::= { mplsPwSPeWestEntry 20 } + +mplsPwSPeWestIngressbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of pw s-pe west." + ::= { mplsPwSPeWestEntry 21 } + +mplsPwSPeWestEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packets number of pw s-pe west." + ::= { mplsPwSPeWestEntry 22 } + +mplsPwSPeWestEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of pw s-pe west." + ::= { mplsPwSPeWestEntry 23 } + +mplsVplsStaticFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsStaticFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vpls static fdb table." + ::= { mpls 26 } + +mplsVplsStaticFdbEntry OBJECT-TYPE + SYNTAX MplsVplsStaticFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VPLS static fdb entries." + INDEX { mplsVplsStaticFdbVplsId, mplsVplsStaticFdbMacAddr} + ::= { mplsVplsStaticFdbTable 1 } + +MplsVplsStaticFdbEntry ::= + SEQUENCE { + mplsVplsStaticFdbVplsId Integer32, + mplsVplsStaticFdbMacAddr MacAddress, + mplsVplsStaticFdbType INTEGER, + mplsVplsStaticFdbIfName OCTET STRING, + mplsVplsStaticFdbPeerIp IpAddress, + mplsVplsStaticFdbTPPeerName OCTET STRING, + mplsVplsStaticFdbRowStatus RowStatus + } + +mplsVplsStaticFdbVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsStaticFdbEntry 1 } + +mplsVplsStaticFdbMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mac address of the fdb entry." + ::= { mplsVplsStaticFdbEntry 2 } + +mplsVplsStaticFdbType OBJECT-TYPE + SYNTAX INTEGER {forward(1),discard(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set static fdb type. When mplsVplsStaticFdbType is set to discard, + mplsVplsStaticFdbIfName and mplsVplsStaticFdbPeerIp are invalid. + The meanings of the values are: + forward(1) - Forwarding entry; + discard(2) - Discard entry;" + DEFVAL { discard } + ::= { mplsVplsStaticFdbEntry 3 } + +mplsVplsStaticFdbIfName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going interface of the VPLS fdb entry." + ::= { mplsVplsStaticFdbEntry 4 } + +mplsVplsStaticFdbPeerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going peer IPV4 address of the VPLS fdb entry." + ::= { mplsVplsStaticFdbEntry 5 } + +mplsVplsStaticFdbTPPeerName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going tp-peer of the VPLS fdb entry." + ::= { mplsVplsStaticFdbEntry 6 } + +mplsVplsStaticFdbRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsVplsStaticFdbEntry 10 } + +mplsStaticFtnTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsStaticFtnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS static ftn table." + ::= { mpls 27 } + +mplsStaticFtnEntry OBJECT-TYPE + SYNTAX MplsStaticFtnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS static ftn entries." + INDEX { mplsStaticFtnFecPrefix, mplsStaticFtnFecPrefixLen, mplsStaticFtnNexthop } + ::= { mplsStaticFtnTable 1 } + +MplsStaticFtnEntry ::= + SEQUENCE { + mplsStaticFtnFecPrefix IpAddress, + mplsStaticFtnFecPrefixLen Integer32, + mplsStaticFtnNexthop IpAddress, + mplsStaticFtnOutlabel Integer32, + mplsStaticFtnRowStatus RowStatus + } + +mplsStaticFtnFecPrefix OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "FEC prefix." + ::= { mplsStaticFtnEntry 1 } + +mplsStaticFtnFecPrefixLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "FEC prefix length." + ::= { mplsStaticFtnEntry 2 } + +mplsStaticFtnNexthop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Nexthop IPV4 address of the FEC." + ::= { mplsStaticFtnEntry 3 } + +mplsStaticFtnOutlabel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going label for the FEC" + ::= { mplsStaticFtnEntry 4 } + +mplsStaticFtnRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsStaticFtnEntry 10 } + +mplsFtnDatabaseTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsFtnDatabaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS ftn database table." + ::= { mpls 28 } + +mplsFtnDatabaseEntry OBJECT-TYPE + SYNTAX MplsFtnDatabaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS ftn database entries." + INDEX { mplsFtnDatabaseIndex } + ::= { mplsFtnDatabaseTable 1 } + +MplsFtnDatabaseEntry ::= + SEQUENCE { + mplsFtnDatabaseIndex Integer32, + mplsFtnDatabaseFecPrefix IpAddress, + mplsFtnDatabaseFecPrefixLen Integer32, + mplsFtnDatabaseOutlabel Integer32, + mplsFtnDatabaseNexthop IpAddress, + mplsFtnDatabaseOutInterface OCTET STRING, + mplsFtnDatabaseState INTEGER + } + +mplsFtnDatabaseIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "FEC prefix." + ::= { mplsFtnDatabaseEntry 1 } + +mplsFtnDatabaseFecPrefix OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FEC prefix." + ::= { mplsFtnDatabaseEntry 2 } + +mplsFtnDatabaseFecPrefixLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FEC prefix length." + ::= { mplsFtnDatabaseEntry 3 } + +mplsFtnDatabaseOutlabel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going label for the FEC" + ::= { mplsFtnDatabaseEntry 4 } + +mplsFtnDatabaseNexthop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Nexthop IPV4 address of the FEC." + ::= { mplsFtnDatabaseEntry 5 } + +mplsFtnDatabaseOutInterface OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going interface for the FEC." + ::= { mplsFtnDatabaseEntry 6 } + +mplsFtnDatabaseState OBJECT-TYPE + SYNTAX INTEGER {active(1),inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the FTN entry.The meanings of the values are: + active(1) - the entry is active; + inactive(2) - the entry is inactive;" + ::= { mplsFtnDatabaseEntry 7 } + +mplsStaticIlmTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsStaticIlmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS static ilm table." + ::= { mpls 29 } + +mplsStaticIlmEntry OBJECT-TYPE + SYNTAX MplsStaticIlmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS static ilm entries." + INDEX { mplsStaticIlmInlabel } + ::= { mplsStaticIlmTable 1 } + +MplsStaticIlmEntry ::= + SEQUENCE { + mplsStaticIlmInlabel Integer32, + mplsStaticIlmOpcode INTEGER, + mplsStaticIlmNexthop IpAddress, + mplsStaticIlmOutlabel Integer32, + mplsStaticIlmRowStatus RowStatus + } + +mplsStaticIlmInlabel OBJECT-TYPE + SYNTAX Integer32 (16..1048575) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Incoming label." + ::= { mplsStaticIlmEntry 1 } + +mplsStaticIlmOpcode OBJECT-TYPE + SYNTAX INTEGER {swap(1), pop(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The opcode of the ilm entry.The meanings of the values are: + swap(1) - swap incoming label; + pop(2) - pop incoming label." + ::= { mplsStaticIlmEntry 2 } + +mplsStaticIlmNexthop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Nexthop IPV4 address of the ILM." + ::= { mplsStaticIlmEntry 3 } + +mplsStaticIlmOutlabel OBJECT-TYPE + SYNTAX Integer32 (0|3|16..1048575) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Out-going label for the ILM." + ::= { mplsStaticIlmEntry 4 } + +mplsStaticIlmRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { mplsStaticIlmEntry 10 } + +mplsIlmDatabaseTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsIlmDatabaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS ilm database table." + ::= { mpls 30 } + +mplsIlmDatabaseEntry OBJECT-TYPE + SYNTAX MplsIlmDatabaseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS ilm database entries." + INDEX { mplsIlmDatabaseIndex } + ::= { mplsIlmDatabaseTable 1 } + +MplsIlmDatabaseEntry ::= + SEQUENCE { + mplsIlmDatabaseIndex Integer32, + mplsIlmDatabaseFecPrefix IpAddress, + mplsIlmDatabaseFecPrefixLen Integer32, + mplsIlmDatabaseInlabel Integer32, + mplsIlmDatabaseOutlabel Integer32, + mplsIlmDatabaseNexthop IpAddress, + mplsIlmDatabaseOutInterface OCTET STRING, + mplsIlmDatabaseState INTEGER, + mplsIlmDatabaseNexthopMac MacAddress + } + +mplsIlmDatabaseIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the ILM entry." + ::= { mplsIlmDatabaseEntry 1 } + +mplsIlmDatabaseFecPrefix OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FEC prefix." + ::= { mplsIlmDatabaseEntry 2 } + +mplsIlmDatabaseFecPrefixLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FEC prefix length." + ::= { mplsIlmDatabaseEntry 3 } + +mplsIlmDatabaseInlabel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Incoming label for the FEC." + ::= { mplsIlmDatabaseEntry 4 } + +mplsIlmDatabaseOutlabel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going label for the FEC." + ::= { mplsIlmDatabaseEntry 5 } + +mplsIlmDatabaseNexthop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Nexthop IPV4 address of the FEC." + ::= { mplsIlmDatabaseEntry 6 } + +mplsIlmDatabaseOutInterface OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going interface for the ilm entry." + ::= { mplsIlmDatabaseEntry 7 } + +mplsIlmDatabaseState OBJECT-TYPE + SYNTAX INTEGER {active(1),inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the ILM entry.The meanings of the values are: + active(1) - the entry is active; + inactive(2) - the entry is inactive;" + ::= { mplsIlmDatabaseEntry 8 } + +mplsIlmDatabaseNexthopMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Nexthop mac address of the FEC." + ::= { mplsIlmDatabaseEntry 11 } + +mplsPwTpeTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsPwTpeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all mpls pw-tpe instances." + ::= { mpls 31 } + +mplsPwTpeEntry OBJECT-TYPE + SYNTAX MplsPwTpeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsPwTpeTable." + INDEX { mplsPwTpeName} + ::= { mplsPwTpeTable 1 } + +MplsPwTpeEntry ::= + SEQUENCE { + mplsPwTpeName OCTET STRING, + mplsPwTpeRowStatus RowStatus, + mplsPwTpeDescription OCTET STRING, + mplsPwTpeOAMMegLevel Integer32, + mplsPwTpeOAMMegId OCTET STRING, + mplsPwTpeOAMMegIdIcc Integer32, + mplsPwTpeOAMMepId Integer32, + mplsPwTpeOAMMepInterval INTEGER, + mplsPwTpeOAMMepExp Integer32, + mplsPwTpeOAMRMepId Integer32, + mplsPwTpeOAMCCState INTEGER, + mplsPwTpeOAMEventCacheSize Integer32, + mplsPwTpeOAM1dmCacheSize Integer32, + mplsPwTpeOAMAisClientSupress INTEGER, + mplsPwTpeOAMLck INTEGER, + mplsPwTpeOAMEvtLOC INTEGER, + mplsPwTpeOAMEvtUMP INTEGER, + mplsPwTpeOAMEvtUIN INTEGER, + mplsPwTpeOAMEvtUMG INTEGER, + mplsPwTpeOAMEvtULV INTEGER, + mplsPwTpeOAMEvtW1ST INTEGER, + mplsPwTpeOAMEvtRDIR INTEGER, + mplsPwTpeOAMEvtRDIT INTEGER, + mplsPwTpeOAMEvtAISR INTEGER, + mplsPwTpeOAMEvtAIST INTEGER, + mplsPwTpeOAMEvtAISD INTEGER, + mplsPwTpeOAMEvtLCKR INTEGER, + mplsPwTpeOAMEvtLCKT INTEGER, + mplsPwTpeOAMEvtLCKD INTEGER, + mplsPwTpeOAMEvtCRC INTEGER, + mplsPwTpeOAMState INTEGER, + mplsPwTpeIngressPkts Counter64, + mplsPwTpeIngressBytes Counter64, + mplsPwTpeEgressPkts Counter64, + mplsPwTpeEgressBytes Counter64, + mplsPwTpeStats INTEGER, + mplsPwTpeBandwidth Integer32, + mplsPwTpeOAMLmDualExp Integer32, + mplsPwTpeOAMLmDualStatInterval Integer32, + mplsPwTpeOAMLmDualCacheSize Integer32, + mplsPwTpeOAMLmSingleExp Integer32, + mplsPwTpeOAMLmSingleInterval INTEGER, + mplsPwTpeOAMLmSingleCacheSize Integer32, + mplsPwTpeOAMLmEnableState INTEGER, + mplsPwTpeOAMLmLocalLossThreshold Integer32, + mplsPwTpeOAMLmRemoteLossThreshold Integer32, + mplsPwTpeOAMLmSingleRxCount Integer32, + mplsPwTpeOAMLmSingleTxCount Integer32, + mplsPwTpeOAMLmSingleSuccessRate Integer32, + mplsPwTpeOAMLmSingleStartTime OCTET STRING, + mplsPwTpeOAMLmSingleEndTime OCTET STRING + } + +mplsPwTpeName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Lsp-pe." + ::= { mplsPwTpeEntry 1 } + +mplsPwTpeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsPwTpeEntry 10 } + +mplsPwTpeDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this T-PE type PW. + Only less than 20 octets is accepted." + ::= { mplsPwTpeEntry 11 } + +mplsPwTpeOAMMegLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OAM level." + DEFVAL { 7 } + ::= { mplsPwTpeEntry 20 } + +mplsPwTpeOAMMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEG ID of the lsp-pe." + ::= { mplsPwTpeEntry 21 } + +mplsPwTpeOAMMegIdIcc OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ICC length of MEG ID." + DEFVAL { 6 } + ::= { mplsPwTpeEntry 22 } + +mplsPwTpeOAMMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsPwTpeEntry 23 } + +mplsPwTpeOAMMepInterval OBJECT-TYPE + SYNTAX INTEGER + { + three-point-three-ms(1), + ten-ms(2), + one-hundred-ms(3), + one-sec(4), + ten-sec(5), + one-min(6), + ten-min(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEP Interval." + ::= { mplsPwTpeEntry 24 } + +mplsPwTpeOAMMepExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "EXP value, default is 7." + DEFVAL { 7 } + ::= { mplsPwTpeEntry 25 } + +mplsPwTpeOAMRMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP ID." + ::= { mplsPwTpeEntry 26 } + +mplsPwTpeOAMCCState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CC state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 27 } + +mplsPwTpeOAMEventCacheSize OBJECT-TYPE + SYNTAX Integer32 (8..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Event entry cache size." + DEFVAL { 8 } + ::= { mplsPwTpeEntry 28 } + +mplsPwTpeOAM1dmCacheSize OBJECT-TYPE + SYNTAX Integer32 (8..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1dm entry cache size." + DEFVAL { 8 } + ::= { mplsPwTpeEntry 29 } + +mplsPwTpeOAMAisClientSupress OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "AIS client supress state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 30 } + +mplsPwTpeOAMLck OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable pw-tpe lock." + DEFVAL { disable } + ::= { mplsPwTpeEntry 31 } + +mplsPwTpeOAMEvtLOC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loc state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 32 } + +mplsPwTpeOAMEvtUMP OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp RMEPID state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 33 } + +mplsPwTpeOAMEvtUIN OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp interval state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 34 } + +mplsPwTpeOAMEvtUMG OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp MEGID state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 35 } + +mplsPwTpeOAMEvtULV OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp Level state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 36 } + +mplsPwTpeOAMEvtW1ST OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Wait 1st CCM state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 37 } + +mplsPwTpeOAMEvtRDIR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RDI RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 38 } + +mplsPwTpeOAMEvtRDIT OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RDI TX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 39 } + +mplsPwTpeOAMEvtAISR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 40 } + +mplsPwTpeOAMEvtAIST OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 41 } + +mplsPwTpeOAMEvtAISD OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 42 } + +mplsPwTpeOAMEvtLCKR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 43 } + +mplsPwTpeOAMEvtLCKT OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 44 } + +mplsPwTpeOAMEvtLCKD OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 45 } + +mplsPwTpeOAMEvtCRC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CRC RX state." + DEFVAL { disable } + ::= { mplsPwTpeEntry 46 } + +mplsPwTpeOAMState OBJECT-TYPE + SYNTAX INTEGER {init(0), fail(1), ok(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "oam-y1731 Rmep state." + ::= { mplsPwTpeEntry 50 } + +mplsPwTpeIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packtes number of mpls pw-tpe." + ::= { mplsPwTpeEntry 51 } + +mplsPwTpeIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of mpls pw-tpe." + ::= { mplsPwTpeEntry 52 } + +mplsPwTpeEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packtes number of mpls pw-tpe." + ::= { mplsPwTpeEntry 53 } + +mplsPwTpeEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of mpls pw-tpe." + ::= { mplsPwTpeEntry 54 } + +mplsPwTpeStats OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Pw-tpe statistics." + DEFVAL { disable } + ::= { mplsPwTpeEntry 55 } + +mplsPwTpeBandwidth OBJECT-TYPE + SYNTAX Integer32 (-1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "pw-tpe bandwidth in kbps. -1 means no limitation" + ::= { mplsPwTpeEntry 56 } + +mplsPwTpeOAMLmDualExp OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment packets with specified exp will be counted. + <0-7> specified exp; 8 means Packets with different exp will be counted separately; + 9 means All packets with different exp will be counted together." + ::= { mplsPwTpeEntry 61 } + +mplsPwTpeOAMLmDualStatInterval OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment interval value." + DEFVAL { 1 } + ::= { mplsPwTpeEntry 62 } + +mplsPwTpeOAMLmDualCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment cache size." + DEFVAL { 128 } + ::= { mplsPwTpeEntry 63 } + +mplsPwTpeOAMLmSingleExp OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure single-ended loss measurment packets with specified exp will be counted. + <0-7> specified exp; 8 means Packets with different exp will be counted separately; + 9 means All packets with different exp will be counted together." + ::= { mplsPwTpeEntry 66 } + +mplsPwTpeOAMLmSingleInterval OBJECT-TYPE + SYNTAX INTEGER + { + one-hundred-ms(1), + one-sec(2), + ten-sec(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Interval." + ::= { mplsPwTpeEntry 67 } + +mplsPwTpeOAMLmSingleCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure single-ended loss measurment cache size." + DEFVAL { 128 } + ::= { mplsPwTpeEntry 68 } + +mplsPwTpeOAMLmEnableState OBJECT-TYPE + SYNTAX INTEGER {enable-dual(1), enable-single(2), disable(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable oam-y1731 loss measurment." + DEFVAL { disable } + ::= { mplsPwTpeEntry 70 } + +mplsPwTpeOAMLmLocalLossThreshold OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Local packet loss percentage, 0 means threshold not enabled." + DEFVAL { 0 } + ::= { mplsPwTpeEntry 71 } + +mplsPwTpeOAMLmRemoteLossThreshold OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Local packet loss percentage, 0 means threshold not enabled." + DEFVAL { 0 } + ::= { mplsPwTpeEntry 72 } + +mplsPwTpeOAMLmSingleRxCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended packet Rx count." + ::= { mplsPwTpeEntry 73 } + +mplsPwTpeOAMLmSingleTxCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended packet Tx count." + ::= { mplsPwTpeEntry 74 } + +mplsPwTpeOAMLmSingleSuccessRate OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended success rate." + ::= { mplsPwTpeEntry 75 } + +mplsPwTpeOAMLmSingleStartTime OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM proactive single-ended start time." + ::= { mplsPwTpeEntry 76 } + +mplsPwTpeOAMLmSingleEndTime OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM proactive single-ended end time." + ::= { mplsPwTpeEntry 77 } + +mplsPwTpeConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsPwTpeConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of configuration of all mpls pw-tpe instances." + ::= { mpls 32 } + +mplsPwTpeConfEntry OBJECT-TYPE + SYNTAX MplsPwTpeConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsPwTpeConfTable." + INDEX { mplsPwTpeName} + ::= { mplsPwTpeConfTable 1 } + +MplsPwTpeConfEntry ::= + SEQUENCE { + mplsPwTpeConfInlabel Integer32, + mplsPwTpeConfOutlabel Integer32, + mplsPwTpeConfPwMode INTEGER, + mplsPwTpeConfTunnel OCTET STRING, + mplsPwTpeConfRowStatus RowStatus + } + +mplsPwTpeConfInlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Incoming label of the t-pe." + ::= { mplsPwTpeConfEntry 1 } + +mplsPwTpeConfOutlabel OBJECT-TYPE + SYNTAX Integer32(16..1048575) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Outgoing label of the t-pe." + ::= { mplsPwTpeConfEntry 2 } + +mplsPwTpeConfPwMode OBJECT-TYPE + SYNTAX INTEGER { raw(1), tagged(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Pw mode of the t-pe." + DEFVAL { raw } + ::= { mplsPwTpeConfEntry 3 } + +mplsPwTpeConfTunnel OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Tunnel name." + ::= { mplsPwTpeConfEntry 4 } + +mplsPwTpeConfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsPwTpeConfEntry 10 } + +mplsTPVpwsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTPVpwsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Specify an MPLS Layer-2 Virtual Circuit." + ::= { mpls 33 } + +mplsTPVpwsEntry OBJECT-TYPE + SYNTAX MplsTPVpwsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTPVpwsTable." + INDEX { mplsTPVpwsVcId} + ::= { mplsTPVpwsTable 1 } + +MplsTPVpwsEntry ::= + SEQUENCE { + mplsTPVpwsVcId Integer32, + mplsTPVpwsVcName OCTET STRING, + mplsTPVpwsApsType INTEGER, + mplsTPVpwsVlanOperation INTEGER, + mplsTPVpwsRowStatus RowStatus, + mplsTPVpwsPrimaryPw OCTET STRING, + mplsTPVpwsSecondaryPw OCTET STRING, + mplsTPVpwsSelectedPw OCTET STRING, + mplsTPVpwsDescription OCTET STRING, + mplsTPAcVpwsIngressPkts Counter64, + mplsTPAcVpwsIngressbytes Counter64, + mplsTPAcVpwsEgressPkts Counter64, + mplsTPAcVpwsEgressBytes Counter64, + mplsTPVpwsG8131Mode INTEGER, + mplsTPVpwsG8131WTRTimer Integer32, + mplsTPVpwsG8131HoldOffTimer Integer32, + mplsTPVpwsG8131Action INTEGER, + mplsTPVpwsG8131WorkingPw OCTET STRING, + mplsTPVpwsG8131ProtectionPw OCTET STRING, + mplsTPVpwsG8131ActivePath INTEGER, + mplsTPVpwsG8131WTRTimeLeft Integer32, + mplsTPVpwsG8131HoldOffTimeLeft Integer32, + mplsTPVpwsG8131DFOPState INTEGER, + mplsTPVpwsG8131CurrentState INTEGER, + mplsTPVpwsG8131LastState INTEGER, + mplsTPVpwsG8131CurrentEvent INTEGER, + mplsTPVpwsG8131FarEndLastEvent INTEGER, + mplsTPVpwsG8131RequestSignal INTEGER, + mplsTPVpwsOAMCsfInterval Integer32, + mplsTPVpwsOAMCSFRxDown INTEGER, + mplsTPVpwsOAMCSFRxRelay INTEGER, + mplsTPVpwsOAMCSFRxRelayMdName OCTET STRING, + mplsTPVpwsOAMCSFRxRelayMaVid Integer32, + mplsTPVpwsOAMCSFRxRelayMepId Integer32 + } + +mplsTPVpwsVcId OBJECT-TYPE + SYNTAX Integer32(1..424967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Layer-2 Virtual Circuit." + ::= { mplsTPVpwsEntry 1 } + +mplsTPVpwsVcName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Identifying string for mpls-tp vpws. + Only 20 octets is accepted.." + ::= { mplsTPVpwsEntry 2 } + +mplsTPVpwsApsType OBJECT-TYPE + SYNTAX INTEGER { aps(1), non-aps(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set aps type for mpls-tp vpws." + DEFVAL { 2 } + ::= { mplsTPVpwsEntry 3 } + +mplsTPVpwsVlanOperation OBJECT-TYPE + SYNTAX INTEGER { ac-vlan-operation(1), no-ac-vlan-operation(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set enable ac vlan operation for mpls-tp vpws." + DEFVAL { 2 } + ::= { mplsTPVpwsEntry 4 } + +mplsTPVpwsRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTPVpwsEntry 10 } + +mplsTPVpwsPrimaryPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Primary pw tpe name of the mpls-tp vpws." + ::= { mplsTPVpwsEntry 11 } + +mplsTPVpwsSecondaryPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Secondary pw tpe name of the mpls-tp vpws. + Can not set secondary pw for non-aps type." + ::= { mplsTPVpwsEntry 12 } + +mplsTPVpwsSelectedPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Secondary pw tpe name of the mpls-tp vpws. + Can not set secondary pw for non-aps type." + ::= { mplsTPVpwsEntry 13 } + +-- mplsTPVpwsIngressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress packets number of mpls vpws." +-- ::= { mplsTPVpwsEntry 14 } +-- +-- mplsTPVpwsIngressbytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress bytes number of mpls vpws." +-- ::= { mplsTPVpwsEntry 15 } +-- +-- mplsTPVpwsEgressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress packets number of mpls vpws." +-- ::= { mplsTPVpwsEntry 16 } +-- +-- mplsTPVpwsEgressBytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress bytes number of mpls vpws." +-- ::= { mplsTPVpwsEntry 17 } + +mplsTPVpwsDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this instance of MPLS based VPWS. + Only less than 20 octets is accepted." + ::= { mplsTPVpwsEntry 18 } + +-- mplsTPVpwsStats OBJECT-TYPE +-- SYNTAX INTEGER {enable(1),disable(2)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set statistics for mpls-tp vpws. The meanings of the values are: +-- enable(1) - enable statistics; +-- disable(2) - disable statistics;" +-- DEFVAL { 2 } +-- ::= { mplsTPVpwsEntry 19 } + +mplsTPAcVpwsIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress packets number of mpls ac vpws." + ::= { mplsTPVpwsEntry 21 } + +mplsTPAcVpwsIngressbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ingress bytes number of mpls ac vpws." + ::= { mplsTPVpwsEntry 22 } + +mplsTPAcVpwsEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress packets number of mpls ac vpws." + ::= { mplsTPVpwsEntry 23 } + +mplsTPAcVpwsEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Egress bytes number of mpls ac vpws." + ::= { mplsTPVpwsEntry 24 } + +mplsTPVpwsG8131Mode OBJECT-TYPE + SYNTAX INTEGER { revertive(1), non-revertive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 mode for the mpls tp vpws." + ::= { mplsTPVpwsEntry 30 } + +mplsTPVpwsG8131WTRTimer OBJECT-TYPE + SYNTAX Integer32(0..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 wait-to-restore timer value for the mpls tp vpws, in minutes." + DEFVAL {5} + ::= { mplsTPVpwsEntry 31 } + +mplsTPVpwsG8131HoldOffTimer OBJECT-TYPE + SYNTAX Integer32(0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 hold-off timer value for the mpls tp vpws, steps of 100ms." + DEFVAL {0} + ::= { mplsTPVpwsEntry 32 } + +mplsTPVpwsG8131Action OBJECT-TYPE + SYNTAX INTEGER { force-switch(1), manual-swtich-to-working(2), + manual-switch-to-protection(3), lockout(4), + exercise(5), clear(6) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 actions for the mpls tp vpws." + ::= { mplsTPVpwsEntry 33 } + +mplsTPVpwsG8131WorkingPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 working pw for the mpls tp vpws." + ::= { mplsTPVpwsEntry 40 } + +mplsTPVpwsG8131ProtectionPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 protection pw for the mpls tp vpws." + ::= { mplsTPVpwsEntry 41 } + +mplsTPVpwsG8131ActivePath OBJECT-TYPE + SYNTAX INTEGER { none(0), working-lsp(1), protection-lsp(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 active path for the mpls tp vpws." + ::= { mplsTPVpwsEntry 42 } + +mplsTPVpwsG8131WTRTimeLeft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Left time of G8131 wait-to-restore timer of the mpls tp vpws." + ::= { mplsTPVpwsEntry 43 } + +mplsTPVpwsG8131HoldOffTimeLeft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Left time of G8131 hold-off timer of the mpls tp vpws." + ::= { mplsTPVpwsEntry 44 } + +mplsTPVpwsG8131DFOPState OBJECT-TYPE + SYNTAX INTEGER + { + not-in-defect-mode(1), + b-bit-mismatch-defect(2), + r-bit-mismatch-defect(3), + invalid-request-state(4), + aps-recv-on-working-entity(5), + aps-pdu-not-recv-after-state-change(6), + a-bit-mismatch-defect(7), + d-bit-mismatch-defect(8), + t-bit-mismatch-defect(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 DFOP state of the mpls tp vpws." + ::= { mplsTPVpwsEntry 45 } + +mplsTPVpwsG8131CurrentState OBJECT-TYPE + SYNTAX INTEGER + { + no-request-working-active(0), + no-request-protection-avtive(1), + lockout-of-protection(2), + forced-switch(3), + signal-fail-on-working(4), + signal-fail-on-protection(5), + signal-degrade-on-working(6), + signal-degrade-on-protection(7), + manual-switch-to-protection(8), + manual-switch-to-working(9), + wait-to-restore(10), + do-not-revert(11), + exercise-on-working(12), + exercise-on-protection(13), + reverse-request-on-working(14), + reverse-request-on-protection(15), + none(16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 current state of the mpls tp vpws." + ::= { mplsTPVpwsEntry 46 } + +mplsTPVpwsG8131LastState OBJECT-TYPE + SYNTAX INTEGER + { + no-request-working-active(0), + no-request-protection-avtive(1), + lockout-of-protection(2), + forced-switch(3), + signal-fail-on-working(4), + signal-fail-on-protection(5), + signal-degrade-on-working(6), + signal-degrade-on-protection(7), + manual-switch-to-protection(8), + manual-switch-to-working(9), + wait-to-restore(10), + do-not-revert(11), + exercise-on-working(12), + exercise-on-protection(13), + reverse-request-on-working(14), + reverse-request-on-protection(15), + none(16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 last state of the mpls tp vpws." + ::= { mplsTPVpwsEntry 47 } + +mplsTPVpwsG8131CurrentEvent OBJECT-TYPE + SYNTAX INTEGER + { + local-lockout(0), + local-force-switch(1), + local-signal-fail-on-working(2), + local-working-recover-from-signal-fail(3), + local-signal-fail-on-protection(4), + local-protection-recover-from-signal-fail(5), + local-signal-degrade-on-working(6), + local-working-recover-from-signal-degrade(7), + local-signal-degrade-on-protection(8), + local-protection-recover-from-signal-degrade(9), + local-manual-switch-to-protection(10), + local-manual-switch-to-working(11), + local-clear(12), + local-exercise(13), + local-wtr-timer-expire(14), + remote-lockout(15), + remote-signal-fail-on-protection(16), + remote-force-switch(17), + remote-signal-fail-on-working(18), + remote-signal-degrade-on-working(19), + remote-signal-degrade-on-protection(20), + remote-manual-switch-to-protection(21), + remote-manual-switch-to-working(22), + remote-wait-to-restore(23), + remote-exercise-on-working(24), + remote-exercise-on-protection(25), + remote-reverse-request-on-working(26), + remote-reverse-request-on-protection(27), + remote-no-request-null(28), + remote-no-request-normal(29), + remote-do-not-revert(30), + none(31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 current event of the mpls tp vpws." + ::= { mplsTPVpwsEntry 48 } + +mplsTPVpwsG8131FarEndLastEvent OBJECT-TYPE + SYNTAX INTEGER + { + local-lockout(0), + local-force-switch(1), + local-signal-fail-on-working(2), + local-working-recover-from-signal-fail(3), + local-signal-fail-on-protection(4), + local-protection-recover-from-signal-fail(5), + local-signal-degrade-on-working(6), + local-working-recover-from-signal-degrade(7), + local-signal-degrade-on-protection(8), + local-protection-recover-from-signal-degrade(9), + local-manual-switch-to-protection(10), + local-manual-switch-to-working(11), + local-clear(12), + local-exercise(13), + local-wtr-timer-expire(14), + remote-lockout(15), + remote-signal-fail-on-protection(16), + remote-force-switch(17), + remote-signal-fail-on-working(18), + remote-signal-degrade-on-working(19), + remote-signal-degrade-on-protection(20), + remote-manual-switch-to-protection(21), + remote-manual-switch-to-working(22), + remote-wait-to-restore(23), + remote-exercise-on-working(24), + remote-exercise-on-protection(25), + remote-reverse-request-on-working(26), + remote-reverse-request-on-protection(27), + remote-no-request-null(28), + remote-no-request-normal(29), + remote-do-not-revert(30), + none(31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 far end last event of the mpls tp vpws." + ::= { mplsTPVpwsEntry 49 } + +mplsTPVpwsG8131RequestSignal OBJECT-TYPE + SYNTAX INTEGER { normal(1), null(2), none(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 request signal of the mpls tp vpws." + ::= { mplsTPVpwsEntry 50 } + +mplsTPVpwsOAMCsfInterval OBJECT-TYPE + SYNTAX Integer32 (0|1|60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interval of CSF PDU. + 0:no oam-y1731 csf server enable." + ::= { mplsTPVpwsEntry 60 } + +mplsTPVpwsOAMCSFRxDown OBJECT-TYPE + SYNTAX INTEGER (0|1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Action of Receiving CSF PDU AC Down. + 0:no oam-y1731 csf rx-aciton down. + 1:oam-y1731 csf rx-action down enable." + ::= { mplsTPVpwsEntry 61 } + +mplsTPVpwsOAMCSFRxRelay OBJECT-TYPE + SYNTAX INTEGER (0|1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Action of Receiving CSF PDU AC relay to Eth-csf. + 0:no oam-y1731 csf rx-aciton relay. + 1:oam-y1731 csf rx-action relay enable." + ::= { mplsTPVpwsEntry 62 } + +mplsTPVpwsOAMCSFRxRelayMdName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..44)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MD Name for rx-action relay." + ::= { mplsTPVpwsEntry 63 } + +mplsTPVpwsOAMCSFRxRelayMaVid OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MA Vlan Id for rx-action relay." + ::= { mplsTPVpwsEntry 64 } + +mplsTPVpwsOAMCSFRxRelayMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mep Id for rx-action relay." + ::= { mplsTPVpwsEntry 65 } + +mplsVplsTPPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsTPPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Peers to VPLS domains." + ::= { mpls 34 } + +mplsVplsTPPeerEntry OBJECT-TYPE + SYNTAX MplsVplsTPPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsTPPeerTable." + INDEX { mplsVplsTPPeerVplsId, mplsVplsTPPeerName} + ::= { mplsVplsTPPeerTable 1 } + +MplsVplsTPPeerEntry ::= + SEQUENCE { + mplsVplsTPPeerVplsId Unsigned32, + mplsVplsTPPeerName OCTET STRING, + mplsVplsTPPeerApsType INTEGER, + mplsVplsTPPeerPEType INTEGER, + mplsVplsTPPeerRowStatus RowStatus, + mplsVplsTPPeerPrimaryPw OCTET STRING, + mplsVplsTPPeerSecondaryPw OCTET STRING, + mplsVplsTPPeerSelectedPw OCTET STRING, + mplsVplsTPPeerDescription OCTET STRING, + mplsVplsTPPeerG8131Mode INTEGER, + mplsVplsTPPeerG8131WTRTimer Integer32, + mplsVplsTPPeerG8131HoldOffTimer Integer32, + mplsVplsTPPeerG8131Action INTEGER, + mplsVplsTPPeerG8131WorkingPw OCTET STRING, + mplsVplsTPPeerG8131ProtectionPw OCTET STRING, + mplsVplsTPPeerG8131ActivePath INTEGER, + mplsVplsTPPeerG8131WTRTimeLeft Integer32, + mplsVplsTPPeerG8131HoldOffTimeLeft Integer32, + mplsVplsTPPeerG8131DFOPState INTEGER, + mplsVplsTPPeerG8131CurrentState INTEGER, + mplsVplsTPPeerG8131LastState INTEGER, + mplsVplsTPPeerG8131CurrentEvent INTEGER, + mplsVplsTPPeerG8131FarEndLastEvent INTEGER, + mplsVplsTPPeerG8131RequestSignal INTEGER + } + +mplsVplsTPPeerVplsId OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsTPPeerEntry 1 } + +mplsVplsTPPeerName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Name of the peer node to be added." + ::= { mplsVplsTPPeerEntry 2 } + +mplsVplsTPPeerApsType OBJECT-TYPE + SYNTAX INTEGER { aps(1), non-aps(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "APS type of the vpls tp-peer." + DEFVAL { non-aps } + ::= { mplsVplsTPPeerEntry 3 } + +mplsVplsTPPeerPEType OBJECT-TYPE + SYNTAX INTEGER {spe(1),upe(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Set PW type for mpls vpls tp-peer. The meanings of the values are: + spe(1) - Superstarum PE; + upe(2) - Underlayer PE;" + DEFVAL { 1 } + ::= { mplsVplsTPPeerEntry 4 } + +mplsVplsTPPeerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active." + ::= { mplsVplsTPPeerEntry 10 } + +mplsVplsTPPeerPrimaryPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Primary pw of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 11 } + +mplsVplsTPPeerSecondaryPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Secondary pw of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 12 } + +mplsVplsTPPeerSelectedPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Secondary pw tpe name of the vpls tp-peer. + Can not set secondary pw for non-aps type." + ::= { mplsVplsTPPeerEntry 13 } + +-- mplsVplsTPPeerIngressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress packets number of mpls vpls peer." +-- ::= { mplsVplsTPPeerEntry 14 } +-- +-- mplsVplsTPPeerIngressbytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Ingress bytes number of mpls vpls peer." +-- ::= { mplsVplsTPPeerEntry 15 } +-- +-- mplsVplsTPPeerEgressPkts OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress packets number of mpls vpls peer." +-- ::= { mplsVplsTPPeerEntry 16 } +-- +-- mplsVplsTPPeerEgressBytes OBJECT-TYPE +-- SYNTAX Counter64 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Egress bytes number of mpls vpls peer." +-- ::= { mplsVplsTPPeerEntry 17 } + +mplsVplsTPPeerDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this VPLS peer. + Only less than 20 octets is accepted." + ::= { mplsVplsTPPeerEntry 18 } + +-- mplsVplsTPPeerStats OBJECT-TYPE +-- SYNTAX INTEGER {enable(1),disable(2)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Set statistics for mpls vpls tp-peer. The meanings of the values are: +-- enable(1) - enable statistics; +-- disable(2) - disable statistics;" +-- DEFVAL { 2 } +-- ::= { mplsVplsTPPeerEntry 19 } + +mplsVplsTPPeerG8131Mode OBJECT-TYPE + SYNTAX INTEGER { revertive(1), non-revertive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 mode for the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 30 } + +mplsVplsTPPeerG8131WTRTimer OBJECT-TYPE + SYNTAX Integer32(0..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 wait-to-restore timer value for the vpls tp-peer, in minutes." + DEFVAL {5} + ::= { mplsVplsTPPeerEntry 31 } + +mplsVplsTPPeerG8131HoldOffTimer OBJECT-TYPE + SYNTAX Integer32(0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 hold-off timer value for the vpls tp-peer, steps of 100ms." + DEFVAL {0} + ::= { mplsVplsTPPeerEntry 32 } + +mplsVplsTPPeerG8131Action OBJECT-TYPE + SYNTAX INTEGER { force-switch(1), manual-swtich-to-working(2), + manual-switch-to-protection(3), lockout(4), + exercise(5), clear(6) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "G8131 actions for the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 33 } + +mplsVplsTPPeerG8131WorkingPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 working pw for the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 40 } + +mplsVplsTPPeerG8131ProtectionPw OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 protection pw for the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 41 } + +mplsVplsTPPeerG8131ActivePath OBJECT-TYPE + SYNTAX INTEGER { none(0), working-lsp(1), protection-lsp(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 active path for the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 42 } + +mplsVplsTPPeerG8131WTRTimeLeft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Left time of G8131 wait-to-restore timer of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 43 } + +mplsVplsTPPeerG8131HoldOffTimeLeft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Left time of G8131 hold-off timer of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 44 } + +mplsVplsTPPeerG8131DFOPState OBJECT-TYPE + SYNTAX INTEGER + { + not-in-defect-mode(1), + b-bit-mismatch-defect(2), + r-bit-mismatch-defect(3), + invalid-request-state(4), + aps-recv-on-working-entity(5), + aps-pdu-not-recv-after-state-change(6), + a-bit-mismatch-defect(7), + d-bit-mismatch-defect(8), + t-bit-mismatch-defect(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 DFOP state of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 45 } + +mplsVplsTPPeerG8131CurrentState OBJECT-TYPE + SYNTAX INTEGER + { + no-request-working-active(0), + no-request-protection-avtive(1), + lockout-of-protection(2), + forced-switch(3), + signal-fail-on-working(4), + signal-fail-on-protection(5), + signal-degrade-on-working(6), + signal-degrade-on-protection(7), + manual-switch-to-protection(8), + manual-switch-to-working(9), + wait-to-restore(10), + do-not-revert(11), + exercise-on-working(12), + exercise-on-protection(13), + reverse-request-on-working(14), + reverse-request-on-protection(15), + none(16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 current state of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 46 } + +mplsVplsTPPeerG8131LastState OBJECT-TYPE + SYNTAX INTEGER + { + no-request-working-active(0), + no-request-protection-avtive(1), + lockout-of-protection(2), + forced-switch(3), + signal-fail-on-working(4), + signal-fail-on-protection(5), + signal-degrade-on-working(6), + signal-degrade-on-protection(7), + manual-switch-to-protection(8), + manual-switch-to-working(9), + wait-to-restore(10), + do-not-revert(11), + exercise-on-working(12), + exercise-on-protection(13), + reverse-request-on-working(14), + reverse-request-on-protection(15), + none(16) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 last state of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 47 } + +mplsVplsTPPeerG8131CurrentEvent OBJECT-TYPE + SYNTAX INTEGER + { + local-lockout(0), + local-force-switch(1), + local-signal-fail-on-working(2), + local-working-recover-from-signal-fail(3), + local-signal-fail-on-protection(4), + local-protection-recover-from-signal-fail(5), + local-signal-degrade-on-working(6), + local-working-recover-from-signal-degrade(7), + local-signal-degrade-on-protection(8), + local-protection-recover-from-signal-degrade(9), + local-manual-switch-to-protection(10), + local-manual-switch-to-working(11), + local-clear(12), + local-exercise(13), + local-wtr-timer-expire(14), + remote-lockout(15), + remote-signal-fail-on-protection(16), + remote-force-switch(17), + remote-signal-fail-on-working(18), + remote-signal-degrade-on-working(19), + remote-signal-degrade-on-protection(20), + remote-manual-switch-to-protection(21), + remote-manual-switch-to-working(22), + remote-wait-to-restore(23), + remote-exercise-on-working(24), + remote-exercise-on-protection(25), + remote-reverse-request-on-working(26), + remote-reverse-request-on-protection(27), + remote-no-request-null(28), + remote-no-request-normal(29), + remote-do-not-revert(30), + none(31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 current event of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 48 } + +mplsVplsTPPeerG8131FarEndLastEvent OBJECT-TYPE + SYNTAX INTEGER + { + local-lockout(0), + local-force-switch(1), + local-signal-fail-on-working(2), + local-working-recover-from-signal-fail(3), + local-signal-fail-on-protection(4), + local-protection-recover-from-signal-fail(5), + local-signal-degrade-on-working(6), + local-working-recover-from-signal-degrade(7), + local-signal-degrade-on-protection(8), + local-protection-recover-from-signal-degrade(9), + local-manual-switch-to-protection(10), + local-manual-switch-to-working(11), + local-clear(12), + local-exercise(13), + local-wtr-timer-expire(14), + remote-lockout(15), + remote-signal-fail-on-protection(16), + remote-force-switch(17), + remote-signal-fail-on-working(18), + remote-signal-degrade-on-working(19), + remote-signal-degrade-on-protection(20), + remote-manual-switch-to-protection(21), + remote-manual-switch-to-working(22), + remote-wait-to-restore(23), + remote-exercise-on-working(24), + remote-exercise-on-protection(25), + remote-reverse-request-on-working(26), + remote-reverse-request-on-protection(27), + remote-no-request-null(28), + remote-no-request-normal(29), + remote-do-not-revert(30), + none(31) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 far end last event of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 49 } + +mplsVplsTPPeerG8131RequestSignal OBJECT-TYPE + SYNTAX INTEGER { normal(1), null(2), none(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "G8131 request signal of the vpls tp-peer." + ::= { mplsVplsTPPeerEntry 50 } + +-- mplsVplsTPPeerMacWithdrawRxPks OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Rx Mac-withdraw packets number of mpls peer." +-- ::= { mplsVplsTPPeerEntry 51 } +-- +-- mplsVplsTPPeerMacWithdrawTxPks OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Tx Mac-withdraw packets number of mpls peer." +-- ::= { mplsVplsTPPeerEntry 52 } +-- +-- mplsVplsTPPeerMacWithdrawAckRxPks OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Rx Mac-withdraw ACK packets number of mpls peer." +-- ::= { mplsVplsTPPeerEntry 53 } +-- +-- mplsVplsTPPeerMacWithdrawAckTxPks OBJECT-TYPE +-- SYNTAX Integer32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "Tx Mac-withdraw ACK packets number of mpls peer." +-- ::= { mplsVplsTPPeerEntry 54 } + +mplsLspPeAisClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPeAisClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all clients bound to ais server(lsp-pe)." + ::= { mpls 35 } + +mplsLspPeAisClientEntry OBJECT-TYPE + SYNTAX MplsLspPeAisClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPeAisClientTable." + INDEX { mplsLspPeName, lspPeAisClientBindType, lspPeAisClientBindName } + ::= { mplsLspPeAisClientTable 1 } + +MplsLspPeAisClientEntry ::= + SEQUENCE { + lspPeAisClientBindType INTEGER, + lspPeAisClientBindName OCTET STRING, + lspPeAisClientRowStatus RowStatus + } + +lspPeAisClientBindType OBJECT-TYPE + SYNTAX INTEGER { lsp-p(1), pw-spe(2), pw-tpe(3) } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client lsp name for ais server(lsp-pe)." + ::= { mplsLspPeAisClientEntry 1 } + +lspPeAisClientBindName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client lsp name for ais server(lsp-pe)." + ::= { mplsLspPeAisClientEntry 2 } + +lspPeAisClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsLspPeAisClientEntry 10 } + +mplsLspPeLckClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsLspPeLckClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all clients bound to ais server(lsp-pe)." + ::= { mpls 36 } + +mplsLspPeLckClientEntry OBJECT-TYPE + SYNTAX MplsLspPeLckClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsLspPeLckClientTable." + INDEX { mplsLspPeName, mplsLspPeLckClientBindType, mplsLspPeLckClientBindName } + ::= { mplsLspPeLckClientTable 1 } + +MplsLspPeLckClientEntry ::= + SEQUENCE { + mplsLspPeLckClientBindType INTEGER, + mplsLspPeLckClientBindName OCTET STRING, + mplsLspPeLckClientRowStatus RowStatus + } + +mplsLspPeLckClientBindType OBJECT-TYPE + SYNTAX INTEGER { lsp-p(1), pw-spe(2), pw-tpe(3) } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client lsp name for ais server(lsp-pe)." + ::= { mplsLspPeLckClientEntry 1 } + +mplsLspPeLckClientBindName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client lsp name for ais server(lsp-pe)." + ::= { mplsLspPeLckClientEntry 2 } + +mplsLspPeLckClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsLspPeLckClientEntry 10 } + +mplsTpOAMSdReason OBJECT IDENTIFIER ::= { mpls 44 } + +sdReasonAisRx OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ais rx." + DEFVAL { disable } + ::= { mplsTpOAMSdReason 1 } + +sdReasonAisDefect OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ais defect." + DEFVAL { enable } + ::= { mplsTpOAMSdReason 2 } + +sdReasonCRC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CRC defect." + DEFVAL { enable } + ::= { mplsTpOAMSdReason 3 } + +mplsDCNManagementIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Managemenet ip address for MPLS DCN." + ::= { mpls 45 } + +mplsTrustTopMostExp OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of mpls trust topmost-exp." + ::= { mpls 46 } + +mplsTpChannelType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The channel type of mpls-tp oam-y1731." + ::= { mpls 47 } + +mplsTpNodeId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The node id of the switch." + ::= { mpls 48 } + +mplsTpOAMSfReason OBJECT IDENTIFIER ::= { mpls 49 } + +sfReasonAisDefect OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ais defect." + DEFVAL { disable } + ::= { mplsTpOAMSfReason 1 } + +sfReasonLoc OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Loc." + DEFVAL { enable } + ::= { mplsTpOAMSfReason 2 } + +sfReasonRdiRx OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Recv Rdi." + DEFVAL { disable } + ::= { mplsTpOAMSfReason 3 } + +sfReasonAisRx OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Recv Ais." + DEFVAL { disable } + ::= { mplsTpOAMSfReason 4 } + +sfReasonCsfDefect OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfs Defect." + DEFVAL { disable } + ::= { mplsTpOAMSfReason 5 } + + +mplsTpOAMRdiReason OBJECT IDENTIFIER ::= { mpls 50 } + +rdiReasonLoc OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LOC defect." + DEFVAL { enable } + ::= { mplsTpOAMRdiReason 1 } + +rdiReasonCCError OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CC error defects: include RMEP not found, CC Interval mismatch." + DEFVAL { enable } + ::= { mplsTpOAMRdiReason 2 } + +rdiReasonCCMisMerge OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CC mismerge defects: include MEGID mismatch, Low CC level." + DEFVAL { enable } + ::= { mplsTpOAMRdiReason 3 } + +mplsTpOAMAisReason OBJECT IDENTIFIER ::= { mpls 51 } + +aisReasonLoc OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LOC defect." + DEFVAL { enable } + ::= { mplsTpOAMAisReason 1 } + +aisReasonUnExpRMepID OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unexpected RMEPID." + DEFVAL { disable } + ::= { mplsTpOAMAisReason 2 } + +aisReasonUnExpInterval OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unexpected CC Interval." + DEFVAL { disable } + ::= { mplsTpOAMAisReason 3 } + +aisReasonUnExpMegId OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unexpected MEGID." + DEFVAL { disable } + ::= { mplsTpOAMAisReason 4 } + +aisReasonUnExpMegLevel OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unexpected CC Level." + DEFVAL { disable } + ::= { mplsTpOAMAisReason 5 } + +aisReasonAisDefect OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "AIS defect." + DEFVAL { enable } + ::= { mplsTpOAMAisReason 6 } + +aisReasonLockRx OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Lock Rx." + DEFVAL { enable } + ::= { mplsTpOAMAisReason 7 } + +mplsTpOAMEventRuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMEventRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM event rule table." + ::= { mpls 52 } + +mplsTpOAMEventRuleEntry OBJECT-TYPE + SYNTAX MplsTpOAMEventRuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-Tp event rule entries." + INDEX { mplsTpOAMEventId } + ::= { mplsTpOAMEventRuleTable 1 } + +MplsTpOAMEventRuleEntry ::= + SEQUENCE { + mplsTpOAMEventRuleId INTEGER, + mplsTpOAMEventLog INTEGER, + mplsTpOAMEventTrap INTEGER, + mplsTpOAMEventCache INTEGER + } + +mplsTpOAMEventRuleId OBJECT-TYPE + SYNTAX INTEGER + { + loc(1), + unExpRMepID(2), + unExpInterval(3), + unExpMegId(4), + unExpMegLevel(5), + rdiRx(6), + rdiTx(7), + waitFirstCC(8), + aisRx(9), + aisTx(10), + aisDefect(11), + eventCacheFull(12), + oneDmCacheFull(13), + lockRx(14), + lockTx(15), + lockDefect(16), + crcDefect(17) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-tp OAM event id." + ::= { mplsTpOAMEventRuleEntry 1 } + +mplsTpOAMEventLog OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "State of MPLS-tp event log." + ::= { mplsTpOAMEventRuleEntry 2 } + +mplsTpOAMEventTrap OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "State of MPLS-tp event trap." + ::= { mplsTpOAMEventRuleEntry 3 } + +mplsTpOAMEventCache OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "State of MPLS-tp event cache." + ::= { mplsTpOAMEventRuleEntry 4 } + +mplsTpSectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpSectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all mpls-tp section instances." + ::= { mpls 53 } + +mplsTpSectionEntry OBJECT-TYPE + SYNTAX MplsTpSectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpSectionTable." + INDEX { sectionName } + ::= { mplsTpSectionTable 1 } + +MplsTpSectionEntry ::= + SEQUENCE { + sectionName OCTET STRING, + sectionRowStatus RowStatus, + sectionPeer IpAddress, + sectionOutIfindex Integer32, + sectionOutMemIfindex Integer32, + sectionDescription OCTET STRING, + sectionMegLevel Integer32, + sectionMegId OCTET STRING, + sectionMegIdIcc Integer32, + sectionMepId Integer32, + sectionMepInterval INTEGER, + sectionMepExp Integer32, + sectionRMepId Integer32, + sectionCCState INTEGER, + sectionEventCacheSize Integer32, + section1dmCacheSize Integer32, + sectionAisInterval Integer32, + sectionLck INTEGER, + sectionLckInterval Integer32, + sectionState INTEGER, + sectionEvtLOC INTEGER, + sectionEvtUMP INTEGER, + sectionEvtUIN INTEGER, + sectionEvtUMG INTEGER, + sectionEvtULV INTEGER, + sectionEvtW1ST INTEGER, + sectionEvtRDIR INTEGER, + sectionEvtRDIT INTEGER, + sectionEvtAISR INTEGER, + sectionEvtAIST INTEGER, + sectionEvtAISD INTEGER, + sectionEvtLCKR INTEGER, + sectionEvtLCKT INTEGER, + sectionEvtLCKD INTEGER, + sectionEvtCRC INTEGER, + sectionLckTxEnable INTEGER, + sectionOAMState INTEGER, + sectionLmDualExp Integer32, + sectionLmDualStatInterval Integer32, + sectionLmDualCacheSize Integer32, + sectionLmSingleExp Integer32, + sectionLmSingleInterval INTEGER, + sectionLmSingleCacheSize Integer32, + sectionLmEnableState INTEGER, + sectionLmLocalLossThreshold Integer32, + sectionLmRemoteLossThreshold Integer32, + sectionLmSingleRxCount Integer32, + sectionLmSingleTxCount Integer32, + sectionLmSingleSuccessRate Integer32, + sectionLmSingleStartTime OCTET STRING, + sectionLmSingleEndTime OCTET STRING + } + +sectionName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP section name." + ::= { mplsTpSectionEntry 1 } + +sectionRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpSectionEntry 10 } + +sectionPeer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The peer IP address of the section." + ::= { mplsTpSectionEntry 11 } + +sectionOutIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The out-going interface of the section in non-ip env." + ::= { mplsTpSectionEntry 12 } + +sectionOutMemIfindex OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The member out-going interface of the section in non-ip env." + ::= { mplsTpSectionEntry 13 } + +sectionDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Characters describing of this mpls-tp section. + Only less than 20 octets is accepted." + ::= { mplsTpSectionEntry 14 } + +sectionMegLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "OAM level." + DEFVAL { 7 } + ::= { mplsTpSectionEntry 19 } + +sectionMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEG ID of the service." + ::= { mplsTpSectionEntry 20 } + +sectionMegIdIcc OBJECT-TYPE + SYNTAX Integer32 (1..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "ICC length of MEG ID." + DEFVAL { 6 } + ::= { mplsTpSectionEntry 21 } + +sectionMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsTpSectionEntry 22 } + +sectionMepInterval OBJECT-TYPE + SYNTAX INTEGER + { + three-point-three-ms(1), + ten-ms(2), + one-hundred-ms(3), + one-sec(4), + ten-sec(5), + one-min(6), + ten-min(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MEP Interval." + ::= { mplsTpSectionEntry 23 } + +sectionMepExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "EXP value, default is 7." + DEFVAL { 7 } + ::= { mplsTpSectionEntry 24 } + +sectionRMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP ID." + ::= { mplsTpSectionEntry 25 } + +sectionCCState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CC state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 26 } + +sectionEventCacheSize OBJECT-TYPE + SYNTAX Integer32 (8..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Event entry cache size." + DEFVAL { 8 } + ::= { mplsTpSectionEntry 27 } + +section1dmCacheSize OBJECT-TYPE + SYNTAX Integer32 (8..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "1dm entry cache size." + DEFVAL { 8 } + ::= { mplsTpSectionEntry 28 } + +sectionAisInterval OBJECT-TYPE + SYNTAX Integer32 (0|1|60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interval of AIS PDU. + 0:no oam-y1731 ais server enable." + ::= { mplsTpSectionEntry 29 } + +sectionLck OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Lck state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 31 } + +sectionLckInterval OBJECT-TYPE + SYNTAX Integer32 (0|1|60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mpls-tp section lock interval. + 0:no oam-y1731 lck server enable." + DEFVAL { 0 } + ::= { mplsTpSectionEntry 32 } + +sectionState OBJECT-TYPE + SYNTAX INTEGER {init(0), fail(1), ok(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MPLS-TP section status" + ::= { mplsTpSectionEntry 33 } + +sectionEvtLOC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Loc state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 34 } + +sectionEvtUMP OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp RMEPID state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 35 } + +sectionEvtUIN OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp interval state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 36 } + +sectionEvtUMG OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp MEGID state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 37 } + +sectionEvtULV OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unexp Level state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 38 } + +sectionEvtW1ST OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Wait 1st CCM state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 39 } + +sectionEvtRDIR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RDI RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 40 } + +sectionEvtRDIT OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RDI TX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 41 } + +sectionEvtAISR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 42 } + +sectionEvtAIST OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 43 } + +sectionEvtAISD OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AIS RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 44 } + +sectionEvtLCKR OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 45 } + +sectionEvtLCKT OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 46 } + +sectionEvtLCKD OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LCK RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 47 } + +sectionLckTxEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "oam-y1731 lck server enable." + DEFVAL { 2 } + ::= { mplsTpSectionEntry 48 } + +sectionEvtCRC OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CRC RX state." + DEFVAL { disable } + ::= { mplsTpSectionEntry 49 } + +sectionOAMState OBJECT-TYPE + SYNTAX INTEGER {init(0), fail(1), ok(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "oam-y1731 Rmep state." + ::= { mplsTpSectionEntry 50 } + +sectionLmDualExp OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment packets with specified exp will be counted. + <0-7> specified exp; 8 means Packets with different exp will be counted separately; + 9 means All packets with different exp will be counted together." + ::= { mplsTpSectionEntry 61 } + +sectionLmDualStatInterval OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment interval value." + DEFVAL { 1 } + ::= { mplsTpSectionEntry 62 } + +sectionLmDualCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure dual-ended loss measurment cache size." + DEFVAL { 128 } + ::= { mplsTpSectionEntry 63 } + +sectionLmSingleExp OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure single-ended loss measurment packets with specified exp will be counted. + <0-7> specified exp; 8 means Packets with different exp will be counted separately; + 9 means All packets with different exp will be counted together." + ::= { mplsTpSectionEntry 66 } + +sectionLmSingleInterval OBJECT-TYPE + SYNTAX INTEGER + { + one-hundred-ms(1), + one-sec(2), + ten-sec(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Interval." + ::= { mplsTpSectionEntry 67 } + +sectionLmSingleCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure single-ended loss measurment cache size." + DEFVAL { 128 } + ::= { mplsTpSectionEntry 68 } + +sectionLmEnableState OBJECT-TYPE + SYNTAX INTEGER {enable-dual(1), enable-single(2), disable(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable oam-y1731 loss measurment." + DEFVAL { disable } + ::= { mplsTpSectionEntry 70 } + +sectionLmLocalLossThreshold OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Local packet loss percentage, 0 means threshold not enabled." + DEFVAL { 0 } + ::= { mplsTpSectionEntry 71 } + +sectionLmRemoteLossThreshold OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Local packet loss percentage, 0 means threshold not enabled." + DEFVAL { 0 } + ::= { mplsTpSectionEntry 72 } + +sectionLmSingleRxCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended packet Rx count." + ::= { mplsTpSectionEntry 73 } + +sectionLmSingleTxCount OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended packet Tx count." + ::= { mplsTpSectionEntry 74 } + +sectionLmSingleSuccessRate OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM single-ended success rate." + ::= { mplsTpSectionEntry 75 } + +sectionLmSingleStartTime OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM proactive single-ended start time." + ::= { mplsTpSectionEntry 76 } + +sectionLmSingleEndTime OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LMM proactive single-ended end time." + ::= { mplsTpSectionEntry 77 } + +mplsTpSectionAisClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpSectionAisClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all clients bound to mpls-tp section ais server." + ::= { mpls 54 } + +mplsTpSectionAisClientEntry OBJECT-TYPE + SYNTAX MplsTpSectionAisClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpSectionAisClientTable." + INDEX { sectionName, sectionAisClientBindType, sectionAisClientBindName } + ::= { mplsTpSectionAisClientTable 1 } + +MplsTpSectionAisClientEntry ::= + SEQUENCE { + sectionAisClientBindType INTEGER, + sectionAisClientBindName OCTET STRING, + sectionAisClientRowStatus RowStatus + } + +sectionAisClientBindType OBJECT-TYPE + SYNTAX INTEGER {lsp-p(1),lsp-pe(2)} + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client type for ais server(lsp-pe)." + ::= { mplsTpSectionAisClientEntry 1 } + +sectionAisClientBindName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client lsp name for MPLS-TP section ais server." + ::= { mplsTpSectionAisClientEntry 2 } + +sectionAisClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpSectionAisClientEntry 10 } + +mplsTpSectionLckClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpSectionLckClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all clients bound to mpls-tp section lck server." + ::= { mpls 55 } + +mplsTpSectionLckClientEntry OBJECT-TYPE + SYNTAX MplsTpSectionLckClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpSectionLckClientTable." + INDEX { sectionName, sectionLckClientBindType, sectionLckClientBindName } + ::= { mplsTpSectionLckClientTable 1 } + +MplsTpSectionLckClientEntry ::= + SEQUENCE { + sectionLckClientBindType INTEGER, + sectionLckClientBindName OCTET STRING, + sectionLckClientRowStatus RowStatus + } + +sectionLckClientBindType OBJECT-TYPE + SYNTAX INTEGER {lsp-p(1),lsp-pe(2)} + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client type for lck server(section)." + ::= { mplsTpSectionLckClientEntry 1 } + +sectionLckClientBindName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Client lsp name for MPLS-TP section lck server." + ::= { mplsTpSectionLckClientEntry 2 } + +sectionLckClientRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpSectionLckClientEntry 10 } + +mplsTpOAMClearCache OBJECT-TYPE + SYNTAX INTEGER { event-cache(1), onedm-cache(2), statistics-cache(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear MPLS-TP OAM cache ." + ::= { mpls 56 } + +mplsTpOAMLoopbackDiscoveryTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLoopbackDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp discovery loopback." + ::= { mpls 60 } + +mplsTpOAMLoopbackDiscoveryEntry OBJECT-TYPE + SYNTAX MplsTpOAMLoopbackDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAMLoopbackDiscoveryTable." + INDEX { oamDiscoveryIndex } + ::= { mplsTpOAMLoopbackDiscoveryTable 1 } + +MplsTpOAMLoopbackDiscoveryEntry ::= + SEQUENCE { + oamDiscoveryIndex Integer32, + oamDiscoveryServiceType INTEGER, + oamDiscoveryServiceName OCTET STRING, + oamDiscoveryStartTTL Integer32, + oamDiscoveryEndTTL Integer32, + oamDiscoveryMepIdTlv INTEGER, + oamDiscoveryDataTlv Integer32, + oamDiscoveryTimeout Integer32, + oamDiscoveryExp Integer32, + oamDiscoveryTstTlv Integer32, + oamDiscoveryTstPattern Integer32, + oamDiscoveryRowstatus RowStatus, + oamDiscoveryOperState INTEGER, + oamDiscoveryTimeSpent Integer32, + oamDiscoverySuccessRate Integer32 + } + +oamDiscoveryIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam discovery loopback request.Must be 1." + ::= { mplsTpOAMLoopbackDiscoveryEntry 1 } + +oamDiscoveryServiceType OBJECT-TYPE + SYNTAX INTEGER { section(1), lsp-pe(2), pw-tpe(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service type of the request." + ::= { mplsTpOAMLoopbackDiscoveryEntry 2 } + +oamDiscoveryServiceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service name of the request." + ::= { mplsTpOAMLoopbackDiscoveryEntry 3 } + +oamDiscoveryStartTTL OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to start." + ::= { mplsTpOAMLoopbackDiscoveryEntry 5 } + +oamDiscoveryEndTTL OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + ::= { mplsTpOAMLoopbackDiscoveryEntry 6 } + +oamDiscoveryMepIdTlv OBJECT-TYPE + SYNTAX INTEGER {request(1), no-request(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether to request the mepid tlv for the request." + DEFVAL { no-request } + ::= { mplsTpOAMLoopbackDiscoveryEntry 7 } + +oamDiscoveryDataTlv OBJECT-TYPE + SYNTAX Integer32 (0..1500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + DEFVAL { 0 } + ::= { mplsTpOAMLoopbackDiscoveryEntry 8 } + +oamDiscoveryTimeout OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + DEFVAL { 5 } + ::= { mplsTpOAMLoopbackDiscoveryEntry 9 } + +oamDiscoveryExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MPLS exp." + DEFVAL { 7 } + ::= { mplsTpOAMLoopbackDiscoveryEntry 10 } + +oamDiscoveryTstTlv OBJECT-TYPE + SYNTAX Integer32 (2..1500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Send with test TLV." + ::= { mplsTpOAMLoopbackDiscoveryEntry 11 } + +oamDiscoveryTstPattern OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure test pattern. + 0 Null signal without CRC-32. + 1 Null signal with CRC-32. + 2 PRBS without CRC-32. + 3 PRBS with CRC-32." + ::= { mplsTpOAMLoopbackDiscoveryEntry 12 } + + +oamDiscoveryRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpOAMLoopbackDiscoveryEntry 15 } + +oamDiscoveryOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { mplsTpOAMLoopbackDiscoveryEntry 16 } + +oamDiscoveryTimeSpent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time spent of the request, in ms." + ::= { mplsTpOAMLoopbackDiscoveryEntry 17 } + +oamDiscoverySuccessRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The success rate of the request." + ::= { mplsTpOAMLoopbackDiscoveryEntry 18 } + +mplsTpOAMDiscoveryResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMDiscoveryResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp discovery result." + ::= { mpls 61 } + +mplsTpOAMDiscoveryResultEntry OBJECT-TYPE + SYNTAX MplsTpOAMDiscoveryResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAMDiscoveryResultTable." + INDEX { oamDiscoveryResultTTL } + ::= { mplsTpOAMDiscoveryResultTable 1 } + +MplsTpOAMDiscoveryResultEntry ::= + SEQUENCE { + oamDiscoveryResultTTL Integer32, + oamDiscoveryResultReplyType INTEGER, + oamDiscoveryResultMepId Integer32, + oamDiscoveryResultICC OCTET STRING, + oamDiscoveryResultNodeId IpAddress, + oamDiscoveryResultIfNum Integer32 + } + +oamDiscoveryResultTTL OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam discovery loopback state. TTL number" + ::= { mplsTpOAMDiscoveryResultEntry 1 } + +oamDiscoveryResultReplyType OBJECT-TYPE + SYNTAX INTEGER { mip(1), mep(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service type of the request." + ::= { mplsTpOAMDiscoveryResultEntry 2 } + +oamDiscoveryResultMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service name of the request." + ::= { mplsTpOAMDiscoveryResultEntry 3 } + +oamDiscoveryResultICC OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ICC." + ::= { mplsTpOAMDiscoveryResultEntry 4 } + +oamDiscoveryResultNodeId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MIP node id" + ::= { mplsTpOAMDiscoveryResultEntry 5 } + +oamDiscoveryResultIfNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface number." + ::= { mplsTpOAMDiscoveryResultEntry 6 } + +mplsTpOAMLoopbackRmepTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLoopbackRmepEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp discovery rmep." + ::= { mpls 62 } + +mplsTpOAMLoopbackRmepEntry OBJECT-TYPE + SYNTAX MplsTpOAMLoopbackRmepEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAMLoopbackRmepTable." + INDEX { oamRmepIndex } + ::= { mplsTpOAMLoopbackRmepTable 1 } + +MplsTpOAMLoopbackRmepEntry ::= + SEQUENCE { + oamRmepIndex Integer32, + oamRmepServiceType INTEGER, + oamRmepServiceName OCTET STRING, + oamRmepId Integer32, + oamRmepMepIdTlv INTEGER, + oamRmepDataTlv Integer32, + oamRmepTimeout Integer32, + oamRmepRepeat Integer32, + oamRmepExp Integer32, + oamRmepRowstatus RowStatus, + oamRmepOperState INTEGER, + oamRmepTimeSpent Integer32, + oamRmepSuccessRate Integer32 + } + +oamRmepIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam rmep loopback request.Must be 1." + ::= { mplsTpOAMLoopbackRmepEntry 1 } + +oamRmepServiceType OBJECT-TYPE + SYNTAX INTEGER { section(1), lsp-pe(2), pw-tpe(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service type of the request." + ::= { mplsTpOAMLoopbackRmepEntry 2 } + +oamRmepServiceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service name of the request." + ::= { mplsTpOAMLoopbackRmepEntry 3 } + +oamRmepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rmep id of the request." + ::= { mplsTpOAMLoopbackRmepEntry 5 } + +oamRmepMepIdTlv OBJECT-TYPE + SYNTAX INTEGER {request(1), no-request(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether to request the mepid tlv for the request." + DEFVAL { no-request } + ::= { mplsTpOAMLoopbackRmepEntry 6 } + +oamRmepDataTlv OBJECT-TYPE + SYNTAX Integer32 (0..9000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + DEFVAL { 0 } + ::= { mplsTpOAMLoopbackRmepEntry 7 } + +oamRmepTimeout OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + DEFVAL { 5 } + ::= { mplsTpOAMLoopbackRmepEntry 8 } + +oamRmepRepeat OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Repeat count." + DEFVAL { 1 } + ::= { mplsTpOAMLoopbackRmepEntry 9 } + +oamRmepExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MPLS exp." + DEFVAL { 7 } + ::= { mplsTpOAMLoopbackRmepEntry 10 } + +oamRmepRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpOAMLoopbackRmepEntry 15 } + +oamRmepOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { mplsTpOAMLoopbackRmepEntry 16 } + +oamRmepTimeSpent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time spent of the request, in ms." + ::= { mplsTpOAMLoopbackRmepEntry 17 } + +oamRmepSuccessRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The success rate of the request." + ::= { mplsTpOAMLoopbackRmepEntry 18 } + +mplsTpOAMLoopbackMipTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLoopbackMipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp discovery mip." + ::= { mpls 64 } + +mplsTpOAMLoopbackMipEntry OBJECT-TYPE + SYNTAX MplsTpOAMLoopbackMipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAMLoopbackMipTable." + INDEX { oamMipIndex } + ::= { mplsTpOAMLoopbackMipTable 1 } + +MplsTpOAMLoopbackMipEntry ::= + SEQUENCE { + oamMipIndex Integer32, + oamMipServiceType INTEGER, + oamMipServiceName OCTET STRING, + oamMipTTL Integer32, + oamMipNodeId IpAddress, + oamMipMepIdTlv INTEGER, + oamMipDataTlv Integer32, + oamMipTimeout Integer32, + oamMipRepeat Integer32, + oamMipExp Integer32, + oamMipRowstatus RowStatus, + oamMipOperState INTEGER, + oamMipTimeSpent Integer32, + oamMipSuccessRate Integer32 + } + +oamMipIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam mip loopback request.Must be 1." + ::= { mplsTpOAMLoopbackMipEntry 1 } + +oamMipServiceType OBJECT-TYPE + SYNTAX INTEGER { lsp-pe(2), pw-tpe(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service type of the request." + ::= { mplsTpOAMLoopbackMipEntry 2 } + +oamMipServiceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service name of the request." + ::= { mplsTpOAMLoopbackMipEntry 3 } + +oamMipTTL OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL to the target mip." + ::= { mplsTpOAMLoopbackMipEntry 5 } + +oamMipNodeId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Mip node id." + ::= { mplsTpOAMLoopbackMipEntry 6 } + +oamMipMepIdTlv OBJECT-TYPE + SYNTAX INTEGER {request(1), no-request(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Whether to request the mepid tlv for the request." + DEFVAL { no-request } + ::= { mplsTpOAMLoopbackMipEntry 7 } + +oamMipDataTlv OBJECT-TYPE + SYNTAX Integer32 (0..9000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + DEFVAL { 0 } + ::= { mplsTpOAMLoopbackMipEntry 8 } + +oamMipTimeout OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TTL number to end." + DEFVAL { 5 } + ::= { mplsTpOAMLoopbackMipEntry 9 } + +oamMipRepeat OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Repeat count." + DEFVAL { 1 } + ::= { mplsTpOAMLoopbackMipEntry 10 } + +oamMipExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "MPLS exp." + DEFVAL { 7 } + ::= { mplsTpOAMLoopbackMipEntry 11 } + +oamMipRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpOAMLoopbackMipEntry 15 } + +oamMipOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { mplsTpOAMLoopbackMipEntry 16 } + +oamMipTimeSpent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time spent of the request, in ms." + ::= { mplsTpOAMLoopbackMipEntry 17 } + +oamMipSuccessRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The success rate of the request." + ::= { mplsTpOAMLoopbackMipEntry 18 } + +mplsTpOAM1dmRequestTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAM1dmRequestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp 1dm request." + ::= { mpls 65 } + +mplsTpOAM1dmRequestEntry OBJECT-TYPE + SYNTAX MplsTpOAM1dmRequestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAM1dmRequestTable." + INDEX { oam1dmReqIndex } + ::= { mplsTpOAM1dmRequestTable 1 } + +MplsTpOAM1dmRequestEntry ::= + SEQUENCE { + oam1dmReqIndex Integer32, + oam1dmReqServiceType INTEGER, + oam1dmReqServiceName OCTET STRING, + oam1dmReqRepeat Integer32, + oam1dmReqExp Integer32, + oam1dmReqInterval INTEGER, + oam1dmReqRowstatus RowStatus, + oam1dmReqOperState INTEGER + } + +oam1dmReqIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam 1dm request.Must be 1." + ::= { mplsTpOAM1dmRequestEntry 1 } + +oam1dmReqServiceType OBJECT-TYPE + SYNTAX INTEGER { section(1), lsp-pe(2), pw-tpe(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service type of the request." + ::= { mplsTpOAM1dmRequestEntry 2 } + +oam1dmReqServiceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service name of the request." + ::= { mplsTpOAM1dmRequestEntry 3 } + +oam1dmReqRepeat OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Exp." + ::= { mplsTpOAM1dmRequestEntry 5 } + +oam1dmReqExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Exp." + ::= { mplsTpOAM1dmRequestEntry 6 } + +oam1dmReqInterval OBJECT-TYPE + SYNTAX INTEGER + { + one-hundred-ms(1), + one-sec(2), + ten-sec(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Interval." + DEFVAL { one-sec } + ::= { mplsTpOAM1dmRequestEntry 7 } + +oam1dmReqRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpOAM1dmRequestEntry 15 } + +oam1dmReqOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { mplsTpOAM1dmRequestEntry 16 } + +mplsTpOAMDmmRequestTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMDmmRequestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp dmm request." + ::= { mpls 67 } + +mplsTpOAMDmmRequestEntry OBJECT-TYPE + SYNTAX MplsTpOAMDmmRequestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAMDmmRequestTable." + INDEX { oamDmmReqIndex } + ::= { mplsTpOAMDmmRequestTable 1 } + +MplsTpOAMDmmRequestEntry ::= + SEQUENCE { + oamDmmReqIndex Integer32, + oamDmmReqServiceType INTEGER, + oamDmmReqServiceName OCTET STRING, + oamDmmReqRepeat Integer32, + oamDmmReqExp Integer32, + oamDmmReqInterval INTEGER, + oamDmmReqRowstatus RowStatus, + oamDmmReqOperState INTEGER, + oamDmmReqSuccessRate Integer32, + oamDmmReqAverDelay Counter64, + oamDmmReqAverVar Counter64, + oamDmmReqMaxDelay Counter64, + oamDmmReqMinDelay Counter64 + } + +oamDmmReqIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam dmm request.Must be 1." + ::= { mplsTpOAMDmmRequestEntry 1 } + +oamDmmReqServiceType OBJECT-TYPE + SYNTAX INTEGER { section(1), lsp-pe(2), pw-tpe(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service type of the request." + ::= { mplsTpOAMDmmRequestEntry 2 } + +oamDmmReqServiceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service name of the request." + ::= { mplsTpOAMDmmRequestEntry 3 } + +oamDmmReqRepeat OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Exp." + ::= { mplsTpOAMDmmRequestEntry 5 } + +oamDmmReqExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Exp." + ::= { mplsTpOAMDmmRequestEntry 6 } + +oamDmmReqInterval OBJECT-TYPE + SYNTAX INTEGER + { + one-hundred-ms(1), + one-sec(2), + ten-sec(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Config Interval." + DEFVAL { one-sec } + ::= { mplsTpOAMDmmRequestEntry 7 } + +oamDmmReqRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpOAMDmmRequestEntry 15 } + +oamDmmReqOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { mplsTpOAMDmmRequestEntry 16 } + +oamDmmReqSuccessRate OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Success-rate of the operation." + ::= { mplsTpOAMDmmRequestEntry 17 } + +oamDmmReqAverDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average delay." + ::= { mplsTpOAMDmmRequestEntry 18 } + +oamDmmReqAverVar OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average variation." + ::= { mplsTpOAMDmmRequestEntry 19 } + +oamDmmReqMaxDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum delay." + ::= { mplsTpOAMDmmRequestEntry 20 } + +oamDmmReqMinDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Minimum delay." + ::= { mplsTpOAMDmmRequestEntry 21 } + +mplsTpOAMDmmResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMDmmResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM Dmm Result table." + ::= { mpls 68 } + +mplsTpOAMDmmResultEntry OBJECT-TYPE + SYNTAX MplsTpOAMDmmResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP Dmm Result entries." + INDEX { mplsTpOAMDmmResultIndex } + ::= { mplsTpOAMDmmResultTable 1 } + +MplsTpOAMDmmResultEntry ::= + SEQUENCE { + mplsTpOAMDmmResultIndex Integer32, + mplsTpOAMDmmResultDelay Counter64, + mplsTpOAMDmmResultVariation Counter64, + mplsTpOAMDmmResultExp Integer32, + mplsTpOAMDmmResultTime OCTET STRING + } + +mplsTpOAMDmmResultIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the entry." + ::= { mplsTpOAMDmmResultEntry 1 } + +mplsTpOAMDmmResultDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Delay time." + ::= { mplsTpOAMDmmResultEntry 2 } + +mplsTpOAMDmmResultVariation OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Variation." + ::= { mplsTpOAMDmmResultEntry 3 } + +mplsTpOAMDmmResultExp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Action type." + ::= { mplsTpOAMDmmResultEntry 4 } + +mplsTpOAMDmmResultTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Event time." + ::= { mplsTpOAMDmmResultEntry 5 } + +mplsTpOAMResourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMResourceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM resource table." + ::= { mpls 70 } + +mplsTpOAMResourceEntry OBJECT-TYPE + SYNTAX MplsTpOAMResourceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-Tp resource rule entries." + INDEX { mplsTpOAMResourceId } + ::= { mplsTpOAMResourceTable 1 } + +MplsTpOAMResourceEntry ::= + SEQUENCE { + mplsTpOAMResourceId INTEGER, + mplsTpOAMResourceMax Integer32, + mplsTpOAMResourceCurrent Integer32 + } + +mplsTpOAMResourceId OBJECT-TYPE + SYNTAX INTEGER + { + section(1), + meg(2), + local-mep(3), + remote-mep(4), + mip(5), + csf(6) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Resource type." + ::= { mplsTpOAMResourceEntry 1 } + +mplsTpOAMResourceMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Max resource number." + ::= { mplsTpOAMResourceEntry 2 } + +mplsTpOAMResourceCurrent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current resource number." + ::= { mplsTpOAMResourceEntry 3 } + +mplsTpOAMStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM Statistic table." + ::= { mpls 71 } + +mplsTpOAMStatisticEntry OBJECT-TYPE + SYNTAX MplsTpOAMStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-Tp Statistic rule entries." + INDEX { mplsTpOAMStatisticPktType } + ::= { mplsTpOAMStatisticTable 1 } + +MplsTpOAMStatisticEntry ::= + SEQUENCE { + mplsTpOAMStatisticPktType INTEGER, + mplsTpOAMStatisticTx Integer32, + mplsTpOAMStatisticRx Integer32, + mplsTpOAMStatisticRxErr Integer32 + } + +mplsTpOAMStatisticPktType OBJECT-TYPE + SYNTAX INTEGER + { + lbm(1), + lbr(2), + ais(3), + one-dm(4), + dmm(5), + dmr(6), + unexp-cc(7), + unknown(8), + lck(9), + csf(10), + aps(11) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Statistic type." + ::= { mplsTpOAMStatisticEntry 1 } + +mplsTpOAMStatisticTx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "TX packet number." + ::= { mplsTpOAMStatisticEntry 2 } + +mplsTpOAMStatisticRx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RX packet number." + ::= { mplsTpOAMStatisticEntry 3 } + +mplsTpOAMStatisticRxErr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RX error packet number." + ::= { mplsTpOAMStatisticEntry 4 } + +mplsTpOAMEventTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMEventEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM Event table." + ::= { mpls 72 } + +mplsTpOAMEventEntry OBJECT-TYPE + SYNTAX MplsTpOAMEventEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP Event entries." + INDEX { mplsTpOAMEventIndex } + ::= { mplsTpOAMEventTable 1 } + +MplsTpOAMEventEntry ::= + SEQUENCE { + mplsTpOAMEventIndex Integer32, + mplsTpOAMEventService INTEGER, + mplsTpOAMEventMegId OCTET STRING, + mplsTpOAMEventMepId Integer32, + mplsTpOAMEventId INTEGER, + mplsTpOAMEventAction INTEGER, + mplsTpOAMEventTime OCTET STRING + } + +mplsTpOAMEventIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Event index." + ::= { mplsTpOAMEventEntry 1 } + +mplsTpOAMEventService OBJECT-TYPE + SYNTAX INTEGER + { + section(1), + lsp(2), + pw-tpe(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service type of the event." + ::= { mplsTpOAMEventEntry 2 } + +mplsTpOAMEventMegId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMEventEntry 3 } + +mplsTpOAMEventMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsTpOAMEventEntry 4 } + +mplsTpOAMEventId OBJECT-TYPE + SYNTAX INTEGER + { + loc(1), + unExpRMepId(2), + unExpInterval(3), + unExpMegId(4), + unExpLevel(5), + rdiRx(6), + rdiTx(7), + waitFistCCM(8), + aisRx(9), + aisTx(10), + aisDefect(11), + eventFull(12), + oneDmFull(13), + lockRx(14), + lockTx(15), + lockDefect(16), + crcDefect(17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Event type." + ::= { mplsTpOAMEventEntry 5 } + +mplsTpOAMEventAction OBJECT-TYPE + SYNTAX INTEGER + { + occur(1), + clear(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Action type." + ::= { mplsTpOAMEventEntry 6 } + +mplsTpOAMEventTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Event time." + ::= { mplsTpOAMEventEntry 7 } + +mplsTpOAM1dmTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAM1dmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM 1dm table." + ::= { mpls 73 } + +mplsTpOAM1dmEntry OBJECT-TYPE + SYNTAX MplsTpOAM1dmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP 1dm entries." + INDEX { mplsTpOAM1dmMegId, mplsTpOAM1dmIndex } + ::= { mplsTpOAM1dmTable 1 } + +MplsTpOAM1dmEntry ::= + SEQUENCE { + mplsTpOAM1dmMegId OCTET STRING, + mplsTpOAM1dmIndex Integer32, + mplsTpOAM1dmService INTEGER, + mplsTpOAM1dmMepId Integer32, + mplsTpOAM1dmDelay Counter64, + mplsTpOAM1dmVariation Counter64, + mplsTpOAM1dmExp Integer32, + mplsTpOAM1dmTime OCTET STRING + } + +mplsTpOAM1dmMegId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAM1dmEntry 1 } + +mplsTpOAM1dmIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the entry." + ::= { mplsTpOAM1dmEntry 2 } + +mplsTpOAM1dmService OBJECT-TYPE + SYNTAX INTEGER + { + section(1), + lsp(2), + pw-tpe(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service type of the data." + ::= { mplsTpOAM1dmEntry 3 } + +mplsTpOAM1dmMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsTpOAM1dmEntry 4 } + +mplsTpOAM1dmDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Delay time." + ::= { mplsTpOAM1dmEntry 5 } + +mplsTpOAM1dmVariation OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Variation." + ::= { mplsTpOAM1dmEntry 6 } + +mplsTpOAM1dmExp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Action type." + ::= { mplsTpOAM1dmEntry 7 } + +mplsTpOAM1dmTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Event time." + ::= { mplsTpOAM1dmEntry 8 } + +mplsTpOAM1dmStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAM1dmStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM 1dm statistic table." + ::= { mpls 74 } + +mplsTpOAM1dmStatisticEntry OBJECT-TYPE + SYNTAX MplsTpOAM1dmStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP 1dm statistic entries." + INDEX { mplsTpOAM1dmStatMegId } + ::= { mplsTpOAM1dmStatisticTable 1 } + +MplsTpOAM1dmStatisticEntry ::= + SEQUENCE { + mplsTpOAM1dmStatMegId OCTET STRING, + mplsTpOAM1dmStatMinDelay Counter64, + mplsTpOAM1dmStatMaxDelay Counter64, + mplsTpOAM1dmStatAverDelay Counter64, + mplsTpOAM1dmStatAverVariation Counter64 + } + +mplsTpOAM1dmStatMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAM1dmStatisticEntry 1 } + +mplsTpOAM1dmStatMinDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Minimum delay time." + ::= { mplsTpOAM1dmStatisticEntry 2 } + +mplsTpOAM1dmStatMaxDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum delay time." + ::= { mplsTpOAM1dmStatisticEntry 3 } + +mplsTpOAM1dmStatAverDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average delay time." + ::= { mplsTpOAM1dmStatisticEntry 4 } + +mplsTpOAM1dmStatAverVariation OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average variation." + ::= { mplsTpOAM1dmStatisticEntry 5 } + +mplsTpOAMMPStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMMPStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM MEP and MIP Statistic table." + ::= { mpls 75 } + +mplsTpOAMMPStatisticEntry OBJECT-TYPE + SYNTAX MplsTpOAMMPStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-Tp MP Statistic entries." + INDEX { mplsTpOAMMPStatMegId, mplsTpOAMMPStatPktType } + ::= { mplsTpOAMMPStatisticTable 1 } + +MplsTpOAMMPStatisticEntry ::= + SEQUENCE { + mplsTpOAMMPStatMegId OCTET STRING, + mplsTpOAMMPStatPktType INTEGER, + mplsTpOAMMPStatTx Counter64, + mplsTpOAMMPStatRx Counter64, + mplsTpOAMMPStatRxErr Counter64 + } + +mplsTpOAMMPStatMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMMPStatisticEntry 1 } + +mplsTpOAMMPStatPktType OBJECT-TYPE + SYNTAX INTEGER + { + lbm(1), + lbr(2), + ais(3), + one-dm(4), + dmm(5), + dmr(6), + unexp-cc(7), + unknown(8), + lck(9), + csf(10), + aps(11) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet type." + ::= { mplsTpOAMMPStatisticEntry 2 } + +mplsTpOAMMPStatTx OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Tx packet number." + ::= { mplsTpOAMMPStatisticEntry 3 } + +mplsTpOAMMPStatRx OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Rx packet number." + ::= { mplsTpOAMMPStatisticEntry 4 } + +mplsTpOAMMPStatRxErr OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Rx error packet number." + ::= { mplsTpOAMMPStatisticEntry 5 } + +mplsTpOAMMepEventDefectTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMMepEventDefectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM MEP event defect table." + ::= { mpls 76 } + +mplsTpOAMMepEventDefectEntry OBJECT-TYPE + SYNTAX MplsTpOAMMepEventDefectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-Tp MEP event defect entries." + INDEX { mplsTpOAMMepEvtMegId, mplsTpOAMMepEvtId } + ::= { mplsTpOAMMepEventDefectTable 1 } + +MplsTpOAMMepEventDefectEntry ::= + SEQUENCE { + mplsTpOAMMepEvtMegId OCTET STRING, + mplsTpOAMMepEvtId INTEGER, + mplsTpOAMMepEvtDefect INTEGER + } + +mplsTpOAMMepEvtMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMMepEventDefectEntry 1 } + +mplsTpOAMMepEvtId OBJECT-TYPE + SYNTAX INTEGER + { + loc(1), + unExpRMepId(2), + unExpInterval(3), + unExpMegId(4), + unExpLevel(5), + rdiRx(6), + rdiTx(7), + waitFistCCM(8), + aisRx(9), + aisTx(10), + aisDefect(11), + eventFull(12), + oneDmFull(13), + lockRx(14), + lockTx(15), + lockDefect(16), + crcDefect(17) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Event type." + ::= { mplsTpOAMMepEventDefectEntry 2 } + +mplsTpOAMMepEvtDefect OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Event status." + ::= { mplsTpOAMMepEventDefectEntry 3 } + +mplsTPVpwsOAMCsfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTPVpwsOAMCsfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display OAM csf status of an MPLS Layer-2 Virtual Circuit." + ::= { mpls 77 } + +mplsTPVpwsOAMCsfEntry OBJECT-TYPE + SYNTAX MplsTPVpwsOAMCsfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTPVpwsOAMCsfTable." + INDEX { mplsTPVpwsOAMCsfVcId} + ::= { mplsTPVpwsOAMCsfTable 1 } + +MplsTPVpwsOAMCsfEntry ::= + SEQUENCE { + mplsTPVpwsOAMCsfVcId Integer32, + mplsTPVpwsOAMCsfSrvState INTEGER, + mplsTPVpwsOAMCsfClientState INTEGER, + mplsTPVpwsOAMCsfDCReason INTEGER, + mplsTPVpwsOAMCsfClientInterval Integer32, + mplsTPVpwsOAMCsfACDownEn INTEGER, + mplsTPVpwsOAMCsfACStatus INTEGER, + mplsTPVpwsOAMCsfTxCSFPacket INTEGER + } + +mplsTPVpwsOAMCsfVcId OBJECT-TYPE + SYNTAX Integer32(1..424967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for MPLS Layer-2 Virtual Circuit." + ::= { mplsTPVpwsOAMCsfEntry 1 } + +mplsTPVpwsOAMCsfSrvState OBJECT-TYPE + SYNTAX INTEGER { los(0), fdi(1), rdi(2), ok(3), init(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Csf Local AC state." + ::= { mplsTPVpwsOAMCsfEntry 2 } + +mplsTPVpwsOAMCsfClientState OBJECT-TYPE + SYNTAX INTEGER { los(0), fdi(1), rdi(2), dc(3), init(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Csf Remote AC state." + ::= { mplsTPVpwsOAMCsfEntry 3 } + +mplsTPVpwsOAMCsfDCReason OBJECT-TYPE + SYNTAX INTEGER { init(0), timeout(1), dci(2), invalid(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Csf DC reason." + ::= { mplsTPVpwsOAMCsfEntry 4 } + +mplsTPVpwsOAMCsfClientInterval OBJECT-TYPE + SYNTAX Integer32 (0|1|60) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interval of CSF client PDU, 0 is invalid." + ::= { mplsTPVpwsOAMCsfEntry 5 } + +mplsTPVpwsOAMCsfACDownEn OBJECT-TYPE + SYNTAX INTEGER { disable(0), down(1)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When receive csf packet, set AC port down. 1 is set AC port to down." + ::= { mplsTPVpwsOAMCsfEntry 6 } + +mplsTPVpwsOAMCsfACStatus OBJECT-TYPE + SYNTAX INTEGER { up(0), down(1), admin-down(2), errdisable(3), csf-ac-down(4), absent(5) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The AC interface status." + ::= { mplsTPVpwsOAMCsfEntry 7 } + +mplsTPVpwsOAMCsfTxCSFPacket OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "TX CSF packet status." + ::= { mplsTPVpwsOAMCsfEntry 8 } + +mplsVplsDynamicFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsDynamicFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vpls dynamic fdb table." + ::= { mpls 78 } + +mplsVplsDynamicFdbEntry OBJECT-TYPE + SYNTAX MplsVplsDynamicFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VPLS dynamic fdb entries." + INDEX { mplsVplsDynamicFdbVplsId, mplsVplsDynamicFdbMacAddr} + ::= { mplsVplsDynamicFdbTable 1 } + +MplsVplsDynamicFdbEntry ::= + SEQUENCE { + mplsVplsDynamicFdbVplsId Integer32, + mplsVplsDynamicFdbMacAddr MacAddress, + mplsVplsDynamicFdbIfName OCTET STRING, + mplsVplsDynamicFdbPeerIp IpAddress, + mplsVplsDynamicFdbTPPeerName OCTET STRING + } + +mplsVplsDynamicFdbVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsDynamicFdbEntry 1 } + +mplsVplsDynamicFdbMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Mac address of the fdb entry." + ::= { mplsVplsDynamicFdbEntry 2 } + +mplsVplsDynamicFdbIfName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going interface of the VPLS fdb entry." + ::= { mplsVplsDynamicFdbEntry 3 } + +mplsVplsDynamicFdbPeerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going peer IPV4 address of the VPLS fdb entry." + ::= { mplsVplsDynamicFdbEntry 4 } + +mplsVplsDynamicFdbTPPeerName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(1..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out-going tp-peer of the VPLS fdb entry." + ::= { mplsVplsDynamicFdbEntry 5 } + +mplsGlobal OBJECT IDENTIFIER ::= { mpls 79 } +mplsGlobalCurrentStaticLabelBlockNum OBJECT-TYPE + SYNTAX INTEGER (1..8192) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get current static label block number." + ::= { mplsGlobal 1 } + +mplsGlobalCurrentDynamicLabelBlockNum OBJECT-TYPE + SYNTAX Integer32 (0..8192) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get current dynamic label block number." + ::= { mplsGlobal 2 } + +mplsGlobalConfigStaticLabelBlockNum OBJECT-TYPE + SYNTAX Integer32 (1..8192) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Get static label block number configured for next reboot, + configure static label block number for next reboot." + ::= { mplsGlobal 3 } + + + + +mplsVplsIgspGlbInfo OBJECT IDENTIFIER ::= { mpls 80 } + +mplsVplsIgspGlbInfoMaxMemNum OBJECT-TYPE + SYNTAX Integer32 (1..16384) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vpls IGMP Snooping Max Member Number." + DEFVAL { 16384 } + ::= { mplsVplsIgspGlbInfo 1 } + +mplsVplsIgspGlbInfoQuerierTcnCnt OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vpls IGMP querier TCN query count." + DEFVAL { 2 } + ::= { mplsVplsIgspGlbInfo 2 } + +mplsVplsIgspGlbInfoQuerierTcnInterval OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vpls IGMP querier TCN query interval." + DEFVAL { 10 } + ::= { mplsVplsIgspGlbInfo 3 } + +mplsVplsIgspGlbInfoCurrMemNum OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls IGMP snooping current member number." + DEFVAL { 0 } + ::= { mplsVplsIgspGlbInfo 4 } + + + + +mplsVplsIgspCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsIgspCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vpls igmp snooping config table." + ::= { mpls 81 } + +mplsVplsIgspCfgEntry OBJECT-TYPE + SYNTAX MplsVplsIgspCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsIgspCfgTable." + INDEX { mplsVplsIgspVplsId } + ::= { mplsVplsIgspCfgTable 1 } + +MplsVplsIgspCfgEntry ::= + SEQUENCE { + mplsVplsIgspVplsId + Integer32, + mplsVplsIgspStatus + INTEGER, + mplsVplsIgspFastLeave + INTEGER, + mplsVplsIgspVersion + Integer32, + mplsVplsIgspMaxMemNum + Integer32, + mplsVplsIgspReportSuppr + INTEGER, + mplsVplsIgspLastMemQueryCnt + Integer32, + mplsVplsIgspLastMemQueryInteval + Integer32, + mplsVplsIgspRobuVari + Integer32, + mplsVplsIgspAccessGroup + OCTET STRING, + mplsVplsIgspQuerierStatus + INTEGER, + mplsVplsIgspQuerierTimeout + Integer32, + mplsVplsIgspQuerierAdd + IpAddress, + mplsVplsIgspQueryInterval + Integer32, + mplsVplsIgspQueryMaxResponTime + Integer32, + mplsVplsIgspElectedQuerier + IpAddress, + mplsVplsIgspQueryOperationalState + INTEGER, + mplsVplsIgspBundingCtrlVlan + Integer32 + } + +mplsVplsIgspVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + DEFVAL { 0 } + ::= { mplsVplsIgspCfgEntry 1 } + +mplsVplsIgspStatus OBJECT-TYPE + SYNTAX INTEGER + {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable or disable VPLS IGMP Snooping." + ::= { mplsVplsIgspCfgEntry 2 } + +mplsVplsIgspFastLeave OBJECT-TYPE + SYNTAX INTEGER + {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable VPLS IGMP Snooping Fast Leave." + ::= { mplsVplsIgspCfgEntry 3 } + +mplsVplsIgspVersion OBJECT-TYPE + SYNTAX Integer32 (1..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set VPLS IGMP Snooping Version." + DEFVAL { 2 } + ::= { mplsVplsIgspCfgEntry 4 } + +mplsVplsIgspMaxMemNum OBJECT-TYPE + SYNTAX Integer32 (1..16384) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPLS IGMP Snooping Max Member Number." + DEFVAL { 16384 } + ::= { mplsVplsIgspCfgEntry 5 } + +mplsVplsIgspReportSuppr OBJECT-TYPE + SYNTAX INTEGER + {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPLS IGMPv1/V2 Report Suppression." + ::= { mplsVplsIgspCfgEntry 6 } + +mplsVplsIgspLastMemQueryCnt OBJECT-TYPE + SYNTAX Integer32 (2..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Last Member Query Count value." + DEFVAL { 2 } + ::= { mplsVplsIgspCfgEntry 7 } + +mplsVplsIgspLastMemQueryInteval OBJECT-TYPE + SYNTAX Integer32 (1000..25500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Last Member Query Interval value." + DEFVAL { 1000 } + ::= { mplsVplsIgspCfgEntry 8 } + +mplsVplsIgspRobuVari OBJECT-TYPE + SYNTAX Integer32 (2..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Robustness Variable value." + DEFVAL { 2 } + ::= { mplsVplsIgspCfgEntry 9 } + +mplsVplsIgspAccessGroup OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IP Named Standard Access list." + ::= { mplsVplsIgspCfgEntry 10 } + +mplsVplsIgspQuerierStatus OBJECT-TYPE + SYNTAX INTEGER + {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable Vpls IGMP Snooping Query." + ::= { mplsVplsIgspCfgEntry 11 } + +mplsVplsIgspQuerierTimeout OBJECT-TYPE + SYNTAX Integer32 (60..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vpls IGMP previous querier timeout value." + DEFVAL { 255 } + ::= { mplsVplsIgspCfgEntry 12 } + +mplsVplsIgspQuerierAdd OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Vpls IGMP Querier IP Address." + ::= { mplsVplsIgspCfgEntry 13 } + +mplsVplsIgspQueryInterval OBJECT-TYPE + SYNTAX Integer32 (2..18000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPLS Igmp snooping Query Interval value." + DEFVAL { 125 } + ::= { mplsVplsIgspCfgEntry 14 } + +mplsVplsIgspQueryMaxResponTime OBJECT-TYPE + SYNTAX Integer32 (1..25) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "VPLS IGMP Max Query Response Time." + DEFVAL { 10 } + ::= { mplsVplsIgspCfgEntry 15 } + +mplsVplsIgspElectedQuerier OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls IGMP Elected Querier IP Address." + ::= { mplsVplsIgspCfgEntry 16 } + +mplsVplsIgspQueryOperationalState OBJECT-TYPE + SYNTAX INTEGER + {querier(1), non-querier(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "VPLS IGMP Querier Operational State." + ::= { mplsVplsIgspCfgEntry 17 } + +mplsVplsIgspBundingCtrlVlan OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to set VPLS IGMP Snooping Bunding Control Vlan. + Set 0 means bundling-control-vlan untag." + DEFVAL { 1 } + ::= { mplsVplsIgspCfgEntry 18 } + +mplsVplsIgspMrouterIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsIgspMrouterIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vpls IGMP snooping Multicast Router Interface table." + ::= { mpls 82 } + +mplsVplsIgspMrouterIfEntry OBJECT-TYPE + SYNTAX MplsVplsIgspMrouterIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsIgspMrouterIfTable." + INDEX { mplsVplsIgspMrouterIfVplsId , mplsVplsIgspMrouterIfIndex } + ::= { mplsVplsIgspMrouterIfTable 1 } + +MplsVplsIgspMrouterIfEntry ::= + SEQUENCE { + mplsVplsIgspMrouterIfVplsId + Integer32, + mplsVplsIgspMrouterIfIndex + Integer32, + mplsVplsIgspMrouterIfRowstatus + RowStatus + } + +mplsVplsIgspMrouterIfVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsIgspMrouterIfEntry 1 } + +mplsVplsIgspMrouterIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of interface." + ::= { mplsVplsIgspMrouterIfEntry 2 } + +mplsVplsIgspMrouterIfRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { mplsVplsIgspMrouterIfEntry 10 } + + +mplsVplsMrouterPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsMrouterPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP VPLS peer Multicast Router Table." + ::= { mpls 83 } + +mplsVplsMrouterPeerEntry OBJECT-TYPE + SYNTAX MplsVplsMrouterPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsMrouterPeerTable." + INDEX { mplsVplsMrouterPeerVplsId , mplsVplsMrouterPeer } + ::= { mplsVplsMrouterPeerTable 1 } + +MplsVplsMrouterPeerEntry ::= + SEQUENCE { + mplsVplsMrouterPeerVplsId + Integer32, + mplsVplsMrouterPeer + OCTET STRING, + mplsVplsMrouterPeerRowstatus + RowStatus + } + +mplsVplsMrouterPeerVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsMrouterPeerEntry 1 } + +mplsVplsMrouterPeer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for VPLS peer." + ::= { mplsVplsMrouterPeerEntry 2 } + +mplsVplsMrouterPeerRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { mplsVplsMrouterPeerEntry 10 } + +mplsVplsIgspSgIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsIgspSgIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Vpls igmp snooping Static Group Interface Table." + ::= { mpls 84 } + +mplsVplsIgspSgIfEntry OBJECT-TYPE + SYNTAX MplsVplsIgspSgIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsIgspStaticGroupIfTable" + INDEX { mplsVplsIgspSgIfVplsId , + mplsVplsIgspSgIfMadd , + mplsVplsIgspSgIfIndex, + mplsVplsIgspSgIfSourceAdd } + ::= { mplsVplsIgspSgIfTable 1 } + +MplsVplsIgspSgIfEntry ::= + SEQUENCE { + mplsVplsIgspSgIfVplsId + Integer32, + mplsVplsIgspSgIfMadd + IpAddress, + mplsVplsIgspSgIfIndex + Integer32, + mplsVplsIgspSgIfSourceAdd + IpAddress, + mplsVplsIgspSgIfRowstatus + RowStatus + } + +mplsVplsIgspSgIfVplsId OBJECT-TYPE + SYNTAX Integer32 (1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsIgspSgIfEntry 1 } + +mplsVplsIgspSgIfMadd OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Multicast Address to be Joined Static Group." + ::= { mplsVplsIgspSgIfEntry 2 } + +mplsVplsIgspSgIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of interface." + ::= { mplsVplsIgspSgIfEntry 3 } + +mplsVplsIgspSgIfSourceAdd OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Static Source to be Joined Static Group." + ::= { mplsVplsIgspSgIfEntry 4 } + +mplsVplsIgspSgIfRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { mplsVplsIgspSgIfEntry 10 } + + +mplsVplsIgspSgPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsIgspSgPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Igsp Static Group Table of MPLS-TP VPLS peer." + ::= { mpls 85 } + +mplsVplsIgspSgPeerEntry OBJECT-TYPE + SYNTAX MplsVplsIgspSgPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsIgspStaticGroupPeerTable." + INDEX { mplsVplsIgspSgPeerVplsId , + mplsVplsIgspSgPeerMadd , + mplsVplsIgspSgPeer, + mplsVplsIgspSgPeerSourceAdd} + ::= { mplsVplsIgspSgPeerTable 1 } + +MplsVplsIgspSgPeerEntry ::= + SEQUENCE { + mplsVplsIgspSgPeerVplsId + Integer32, + mplsVplsIgspSgPeerMadd + IpAddress, + mplsVplsIgspSgPeer + OCTET STRING, + mplsVplsIgspSgPeerSourceAdd + IpAddress, + mplsVplsIgspSgPeerRowstatus + RowStatus + } + +mplsVplsIgspSgPeerVplsId OBJECT-TYPE + SYNTAX Integer32 (1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsIgspSgPeerEntry 1 } + +mplsVplsIgspSgPeerMadd OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Multicast Address to be Joined Static Group." + ::= { mplsVplsIgspSgPeerEntry 2 } + +mplsVplsIgspSgPeer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for VPLS peer." + ::= { mplsVplsIgspSgPeerEntry 3 } + +mplsVplsIgspSgPeerSourceAdd OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Static Source to be Joined Static Group." + ::= { mplsVplsIgspSgPeerEntry 4 } + +mplsVplsIgspSgPeerRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { mplsVplsIgspSgPeerEntry 10 } + +mplsVplsIgspMaxGrpMemIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsIgspMaxGrpMemIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vpls IGMP snooping Max Group Member Interface table." + ::= { mpls 86 } + +mplsVplsIgspMaxGrpMemIfEntry OBJECT-TYPE + SYNTAX MplsVplsIgspMaxGrpMemIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsIgspMaxGrpMemIfTable." + INDEX { mplsVplsIgspMaxGrpMemIfVplsId , mplsVplsIgspMaxGrpMemIfIndex } + ::= { mplsVplsIgspMaxGrpMemIfTable 1 } + +MplsVplsIgspMaxGrpMemIfEntry ::= + SEQUENCE { + mplsVplsIgspMaxGrpMemIfVplsId + Integer32, + mplsVplsIgspMaxGrpMemIfIndex + Integer32, + mplsVplsIgspIfMaxGrpMemNum + Integer32, + mplsVplsIgspMaxGrpMemIfRowstatus + RowStatus, + mplsVplsIgspIfMaxGrpMemCount + Integer32 + } + +mplsVplsIgspMaxGrpMemIfVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsIgspMaxGrpMemIfEntry 1 } + +mplsVplsIgspMaxGrpMemIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of interface." + ::= { mplsVplsIgspMaxGrpMemIfEntry 2 } + +mplsVplsIgspIfMaxGrpMemNum OBJECT-TYPE + SYNTAX Integer32 (0..16384) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IGMP Snooping Max Allowed Group Number on this interface." + ::= { mplsVplsIgspMaxGrpMemIfEntry 3 } + +mplsVplsIgspMaxGrpMemIfRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { mplsVplsIgspMaxGrpMemIfEntry 10 } + +mplsVplsIgspIfMaxGrpMemCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IGMP Snooping Max Group Number Count on this interface." + ::= { mplsVplsIgspMaxGrpMemIfEntry 11 } + +mplsVplsMaxGrpMemPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsMaxGrpMemPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP VPLS peer Multicast Router Table." + ::= { mpls 87 } + +mplsVplsMaxGrpMemPeerEntry OBJECT-TYPE + SYNTAX MplsVplsMaxGrpMemPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsMaxGrpMemPeerTable." + INDEX { mplsVplsMaxGrpMemPeerVplsId , mplsVplsMaxGrpMemPeer } + ::= { mplsVplsMaxGrpMemPeerTable 1 } + +MplsVplsMaxGrpMemPeerEntry ::= + SEQUENCE { + mplsVplsMaxGrpMemPeerVplsId + Integer32, + mplsVplsMaxGrpMemPeer + OCTET STRING, + mplsVplsPeerMaxGrpMemNum + Integer32, + mplsVplsMaxGrpMemPeerRowstatus + RowStatus, + mplsVplsPeerMaxGrpMemCount + Integer32 + } + +mplsVplsMaxGrpMemPeerVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsMaxGrpMemPeerEntry 1 } + +mplsVplsMaxGrpMemPeer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for VPLS peer." + ::= { mplsVplsMaxGrpMemPeerEntry 2 } + +mplsVplsPeerMaxGrpMemNum OBJECT-TYPE + SYNTAX Integer32 (0..16384) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "IGMP Snooping Max Allowed Group Number on this peer." + ::= { mplsVplsMaxGrpMemPeerEntry 3 } + +mplsVplsMaxGrpMemPeerRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { mplsVplsMaxGrpMemPeerEntry 10 } + +mplsVplsPeerMaxGrpMemCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IGMP Snooping Max Group Number Count on this peer." + ::= { mplsVplsMaxGrpMemPeerEntry 11 } + +mplsVplsShowMrouterIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsShowMrouterIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vpls IGMP snooping Multicast Router Show Interface table." + ::= { mpls 88 } + +mplsVplsShowMrouterIfEntry OBJECT-TYPE + SYNTAX MplsVplsShowMrouterIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsShowMrouterIfTable." + INDEX { mplsVplsShowMrouterIfVplsId , mplsVplsShowMrouterIfIndex } + ::= { mplsVplsShowMrouterIfTable 1 } + +MplsVplsShowMrouterIfEntry ::= + SEQUENCE { + mplsVplsShowMrouterIfVplsId + Integer32, + mplsVplsShowMrouterIfIndex + Integer32, + mplsVplsShowMrouterIfName + OCTET STRING, + mplsVplsShowMrouterIfMode + INTEGER, + mplsVplsShowMrouterIfUptime + OCTET STRING, + mplsVplsShowMrouterIfExprietime + OCTET STRING + } + +mplsVplsShowMrouterIfVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsShowMrouterIfEntry 1 } + +mplsVplsShowMrouterIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of interface." + ::= { mplsVplsShowMrouterIfEntry 2 } + +mplsVplsShowMrouterIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of Interface." + ::= { mplsVplsShowMrouterIfEntry 3 } + +mplsVplsShowMrouterIfMode OBJECT-TYPE + SYNTAX INTEGER + {static(1), dynamic(2), both(3)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Mode of VPLS Igmp Snooping Mrouter on this Interface." + ::= { mplsVplsShowMrouterIfEntry 4 } + +mplsVplsShowMrouterIfUptime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Uptime of VPLS Igmp Snooping Mrouter on this Interface." + ::= { mplsVplsShowMrouterIfEntry 5 } + +mplsVplsShowMrouterIfExprietime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Exprietime of VPLS Igmp Snooping Mrouter on this Interface." + ::= { mplsVplsShowMrouterIfEntry 6 } + +mplsVplsShowMrouterPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsShowMrouterPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vpls IGMP snooping Multicast Router Show Peer Table." + ::= { mpls 89 } + +mplsVplsShowMrouterPeerEntry OBJECT-TYPE + SYNTAX MplsVplsShowMrouterPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsShowMrouterPeerTable." + INDEX { mplsVplsShowMrouterPeerVplsId , mplsVplsShowMrouterPeer } + ::= { mplsVplsShowMrouterPeerTable 1 } + +MplsVplsShowMrouterPeerEntry ::= + SEQUENCE { + mplsVplsShowMrouterPeerVplsId + Integer32, + mplsVplsShowMrouterPeer + OCTET STRING, + mplsVplsShowMrouterPeerName + OCTET STRING, + mplsVplsShowMrouterPeerMode + INTEGER, + mplsVplsShowMrouterPeerUptime + OCTET STRING, + mplsVplsShowMrouterPeerExprietime + OCTET STRING + } + +mplsVplsShowMrouterPeerVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsShowMrouterPeerEntry 1 } + +mplsVplsShowMrouterPeer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for VPLS peer." + ::= { mplsVplsShowMrouterPeerEntry 2 } + +mplsVplsShowMrouterPeerName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of peer." + ::= { mplsVplsShowMrouterPeerEntry 3 } + +mplsVplsShowMrouterPeerMode OBJECT-TYPE + SYNTAX INTEGER + {static(1), dynamic(2), both(3)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Mode of VPLS Igmp Snooping Mrouter on this peer." + ::= { mplsVplsShowMrouterPeerEntry 4 } + +mplsVplsShowMrouterPeerUptime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Uptime of VPLS Igmp Snooping Mrouter on this peer." + ::= { mplsVplsShowMrouterPeerEntry 5 } + +mplsVplsShowMrouterPeerExprietime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Exprietime of VPLS Igmp Snooping Mrouter on this peer." + ::= { mplsVplsShowMrouterPeerEntry 6 } + +mplsVplsShowGroupIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsShowGroupIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vpls IGMP snooping Show Groups Interface table." + ::= { mpls 90 } + +mplsVplsShowGroupIfEntry OBJECT-TYPE + SYNTAX MplsVplsShowGroupIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsShowGroupIfTable." + INDEX { mplsVplsShowGroupIfVplsId , mplsVplsShowGroupIfIndex ,mplsVplsShowGroupIfAddr} + ::= { mplsVplsShowGroupIfTable 1 } + +MplsVplsShowGroupIfEntry ::= + SEQUENCE { + mplsVplsShowGroupIfVplsId + Integer32, + mplsVplsShowGroupIfIndex + Integer32, + mplsVplsShowGroupIfAddr + IpAddress, + mplsVplsShowGroupIfName + OCTET STRING, + mplsVplsShowGroupIfUptime + OCTET STRING, + mplsVplsShowGroupIfExprietime + OCTET STRING, + mplsVplsShowGroupIfLastReporter + IpAddress + } + +mplsVplsShowGroupIfVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsShowGroupIfEntry 1 } + +mplsVplsShowGroupIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of interface." + ::= { mplsVplsShowGroupIfEntry 2 } + +mplsVplsShowGroupIfAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Group Address of VPLS Igmp Snooping Group on this Interface." + ::= { mplsVplsShowGroupIfEntry 3 } + +mplsVplsShowGroupIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of Interface." + ::= { mplsVplsShowGroupIfEntry 4 } + +mplsVplsShowGroupIfUptime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Uptime of VPLS Igmp Snooping Group on this Interface." + ::= { mplsVplsShowGroupIfEntry 5 } + +mplsVplsShowGroupIfExprietime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Exprietime of VPLS Igmp Snooping Group on this Interface." + ::= { mplsVplsShowGroupIfEntry 6 } + +mplsVplsShowGroupIfLastReporter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Address of VPLS Igmp Snooping Group Last Reporter on this Interface." + ::= { mplsVplsShowGroupIfEntry 7 } + + +mplsVplsShowGroupPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsVplsShowGroupPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Vpls IGMP snooping Show Group Peer Table." + ::= { mpls 91 } + +mplsVplsShowGroupPeerEntry OBJECT-TYPE + SYNTAX MplsVplsShowGroupPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsVplsShowGroupPeerTable." + INDEX { mplsVplsShowGroupPeerVplsId , mplsVplsShowGroupPeer ,mplsVplsShowGroupPeerAddr } + ::= { mplsVplsShowGroupPeerTable 1 } + +MplsVplsShowGroupPeerEntry ::= + SEQUENCE { + mplsVplsShowGroupPeerVplsId + Integer32, + mplsVplsShowGroupPeer + OCTET STRING, + mplsVplsShowGroupPeerAddr + IpAddress, + mplsVplsShowGroupPeerName + OCTET STRING, + mplsVplsShowGroupPeerUptime + OCTET STRING, + mplsVplsShowGroupPeerExprietime + OCTET STRING, + mplsVplsShowGroupPeerLastReporter + IpAddress + } + +mplsVplsShowGroupPeerVplsId OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying value for VPLS." + ::= { mplsVplsShowGroupPeerEntry 1 } + +mplsVplsShowGroupPeer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for VPLS peer." + ::= { mplsVplsShowGroupPeerEntry 2 } + +mplsVplsShowGroupPeerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Group Address of VPLS Igmp Snooping Group on this peer." + ::= { mplsVplsShowGroupPeerEntry 3 } + +mplsVplsShowGroupPeerName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Name of peer." + ::= { mplsVplsShowGroupPeerEntry 4 } + +mplsVplsShowGroupPeerUptime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Uptime of VPLS Igmp Snooping Group on this peer." + ::= { mplsVplsShowGroupPeerEntry 5 } + +mplsVplsShowGroupPeerExprietime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..27)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Exprietime of VPLS Igmp Snooping Group on this peer." + ::= { mplsVplsShowGroupPeerEntry 6 } + +mplsVplsShowGroupPeerLastReporter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Address of VPLS Igmp Snooping Group Last Reporter on this peer." + ::= { mplsVplsShowGroupPeerEntry 7 } + + mplsInterfaceMplsVpwsPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsInterfaceMplsVpwsPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "One MPLS layer-2 virtual circuit can only band to one interface, + but one interface may be banded to many VCs." + ::= { mpls 92 } + + mplsInterfaceMplsVpwsPolicyEntry OBJECT-TYPE + SYNTAX MplsInterfaceMplsVpwsPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsInterfaceMplsVpwsPolicyTable." + INDEX { mplsInterfaceMplsVpwsPolicyIfIndex} + ::= { mplsInterfaceMplsVpwsPolicyTable 1 } + +MplsInterfaceMplsVpwsPolicyEntry ::= + SEQUENCE { + mplsInterfaceMplsVpwsPolicyIfIndex Integer32, + mplsInterfaceMplsVpwsPolicyVcName OCTET STRING, + mplsInterfaceMplsVpwsPolicyName OCTET STRING, + mplsInterfaceMplsVpwsPolicyStatis INTEGER, + mplsInterfaceMplsVpwsPolicyRowStatus RowStatus + } + +mplsInterfaceMplsVpwsPolicyIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..48) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index." + ::= { mplsInterfaceMplsVpwsPolicyEntry 1 } + +mplsInterfaceMplsVpwsPolicyVcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identifying string for MPLS layer-2 virtual circuit." + ::= { mplsInterfaceMplsVpwsPolicyEntry 2 } + +mplsInterfaceMplsVpwsPolicyName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..20)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy map name." + ::= { mplsInterfaceMplsVpwsPolicyEntry 3 } + +mplsInterfaceMplsVpwsPolicyStatis OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "State of bundling." + DEFVAL { disable } + ::= { mplsInterfaceMplsVpwsPolicyEntry 4 } + +mplsInterfaceMplsVpwsPolicyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active." + ::= { mplsInterfaceMplsVpwsPolicyEntry 10 } + +mplsTpOAMLmmTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLmmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of mpls-tp Single-ended loss measurment message." + ::= { mpls 93 } + +mplsTpOAMLmmEntry OBJECT-TYPE + SYNTAX MplsTpOAMLmmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of mplsTpOAMLmmTable." + INDEX { oamLmmIndex } + ::= { mplsTpOAMLmmTable 1 } + +MplsTpOAMLmmEntry ::= + SEQUENCE { + oamLmmIndex Integer32, + oamLmmServiceType INTEGER, + oamLmmServiceName OCTET STRING, + oamLmmRepeat Integer32, + oamLmmInterval INTEGER, + oamLmmRowstatus RowStatus + } + +oamLmmIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of oam Single-ended loss measurment message.Must be 1." + ::= { mplsTpOAMLmmEntry 1 } + +oamLmmServiceType OBJECT-TYPE + SYNTAX INTEGER { section(1), lsp-pe(2), pw-tpe(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service type of the message." + ::= { mplsTpOAMLmmEntry 2 } + +oamLmmServiceName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Service name of the message." + ::= { mplsTpOAMLmmEntry 3 } + +oamLmmRepeat OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Repeat count value to Single-ended loss measurment message." + ::= { mplsTpOAMLmmEntry 4 } + +oamLmmInterval OBJECT-TYPE + SYNTAX INTEGER {one-hundred-ms(1), one-sec(2), ten-sec(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "LMM transmission interval." + DEFVAL { one-sec } + ::= { mplsTpOAMLmmEntry 5 } + +oamLmmRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. + Now only realize CreateAndGo and Destroy and Active." + ::= { mplsTpOAMLmmEntry 15 } + +mplsTpOAMLmDualTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLmDualEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM LmDual table." + ::= { mpls 94 } + +mplsTpOAMLmDualEntry OBJECT-TYPE + SYNTAX MplsTpOAMLmDualEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP LmDual entries." + INDEX { mplsTpOAMLmDualMegId, mplsTpOAMLmDualIndex } + ::= { mplsTpOAMLmDualTable 1 } + +MplsTpOAMLmDualEntry ::= + SEQUENCE { + mplsTpOAMLmDualMegId OCTET STRING, + mplsTpOAMLmDualIndex Integer32, + mplsTpOAMLmDualService INTEGER, + mplsTpOAMLmDualMepId Integer32, + mplsTpOAMLmDualExp Integer32, + mplsTpOAMLmDualLocalLoss Integer32, + mplsTpOAMLmDualLocalLossRatio Integer32, + mplsTpOAMLmDualRemoteLoss Integer32, + mplsTpOAMLmDualRemoteLossRatio Integer32 + } + +mplsTpOAMLmDualMegId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMLmDualEntry 1 } + +mplsTpOAMLmDualIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the entry." + ::= { mplsTpOAMLmDualEntry 2 } + +mplsTpOAMLmDualService OBJECT-TYPE + SYNTAX INTEGER + { + section(1), + lsp(2), + pw-tpe(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service type of the data." + ::= { mplsTpOAMLmDualEntry 3 } + +mplsTpOAMLmDualMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsTpOAMLmDualEntry 4 } + +mplsTpOAMLmDualExp OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Exp value, the range is 0 to 7 for cos and 8 for all-cos." + ::= { mplsTpOAMLmDualEntry 5 } + +mplsTpOAMLmDualLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm near end loss." + ::= { mplsTpOAMLmDualEntry 6 } + +mplsTpOAMLmDualLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm near end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmDualEntry 7 } + +mplsTpOAMLmDualRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm far end loss." + ::= { mplsTpOAMLmDualEntry 8 } + +mplsTpOAMLmDualRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm far end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmDualEntry 9 } + +mplsTpOAMLmDualLossTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLmDualLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM LmDualLoss table." + ::= { mpls 95 } + +mplsTpOAMLmDualLossEntry OBJECT-TYPE + SYNTAX MplsTpOAMLmDualLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP LmDualLoss entries." + INDEX { mplsTpOAMLmDualLossMegId } + ::= { mplsTpOAMLmDualLossTable 1 } + +MplsTpOAMLmDualLossEntry ::= + SEQUENCE { + mplsTpOAMLmDualLossMegId OCTET STRING, + mplsTpOAMLmDualLossMepId Integer32, + mplsTpOAMLmDualLossStartTime OCTET STRING, + mplsTpOAMLmDualLossEndTime OCTET STRING, + mplsTpOAMLmDualStatusInterval Integer32, + mplsTpOAMLmDualMaxLocalLoss Integer32, + mplsTpOAMLmDualMaxLocalLossRatio Integer32, + mplsTpOAMLmDualMinLocalLoss Integer32, + mplsTpOAMLmDualMinLocalLossRatio Integer32, + mplsTpOAMLmDualMaxRemoteLoss Integer32, + mplsTpOAMLmDualMaxRemoteLossRatio Integer32, + mplsTpOAMLmDualMinRemoteLoss Integer32, + mplsTpOAMLmDualMinRemoteLossRatio Integer32 + } + +mplsTpOAMLmDualLossMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMLmDualLossEntry 1 } + +mplsTpOAMLmDualLossMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mep Id." + ::= { mplsTpOAMLmDualLossEntry 2 } + +mplsTpOAMLmDualLossStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lm dual Start Time." + ::= { mplsTpOAMLmDualLossEntry 3 } + +mplsTpOAMLmDualLossEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lm dual End Time." + ::= { mplsTpOAMLmDualLossEntry 4 } + +mplsTpOAMLmDualStatusInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm status interval." + ::= { mplsTpOAMLmDualLossEntry 5 } + +mplsTpOAMLmDualMaxLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm max near end loss." + ::= { mplsTpOAMLmDualLossEntry 6 } + +mplsTpOAMLmDualMaxLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm max near end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmDualLossEntry 7 } + +mplsTpOAMLmDualMinLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm min near end loss." + ::= { mplsTpOAMLmDualLossEntry 8} + +mplsTpOAMLmDualMinLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm min near end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmDualLossEntry 9 } + +mplsTpOAMLmDualMaxRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm max far end loss." + ::= { mplsTpOAMLmDualLossEntry 10 } + +mplsTpOAMLmDualMaxRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm max far end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmDualLossEntry 11 } + +mplsTpOAMLmDualMinRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm min far end loss." + ::= { mplsTpOAMLmDualLossEntry 12 } + +mplsTpOAMLmDualMinRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dual-lm min far end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmDualLossEntry 13 } + +mplsTpOAMLmSingleTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLmSingleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM LmSingle table." + ::= { mpls 96 } + +mplsTpOAMLmSingleEntry OBJECT-TYPE + SYNTAX MplsTpOAMLmSingleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP LmSingle entries." + INDEX { mplsTpOAMLmSingleMegId, mplsTpOAMLmSingleIndex } + ::= { mplsTpOAMLmSingleTable 1 } + +MplsTpOAMLmSingleEntry ::= + SEQUENCE { + mplsTpOAMLmSingleMegId OCTET STRING, + mplsTpOAMLmSingleIndex Integer32, + mplsTpOAMLmSingleService INTEGER, + mplsTpOAMLmSingleMepId Integer32, + mplsTpOAMLmSingleExp Integer32, + mplsTpOAMLmSingleLocalLoss Integer32, + mplsTpOAMLmSingleLocalLossRatio Integer32, + mplsTpOAMLmSingleRemoteLoss Integer32, + mplsTpOAMLmSingleRemoteLossRatio Integer32 + } + +mplsTpOAMLmSingleMegId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMLmSingleEntry 1 } + +mplsTpOAMLmSingleIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the entry." + ::= { mplsTpOAMLmSingleEntry 2 } + +mplsTpOAMLmSingleService OBJECT-TYPE + SYNTAX INTEGER + { + section(1), + lsp(2), + pw-tpe(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service type of the data." + ::= { mplsTpOAMLmSingleEntry 3 } + +mplsTpOAMLmSingleMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MEP ID." + ::= { mplsTpOAMLmSingleEntry 4 } + +mplsTpOAMLmSingleExp OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Exp value, the range is 0 to 7 for cos and 8 for all-cos." + ::= { mplsTpOAMLmSingleEntry 5 } + +mplsTpOAMLmSingleLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm near end loss." + ::= { mplsTpOAMLmSingleEntry 6 } + +mplsTpOAMLmSingleLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm near end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmSingleEntry 7 } + +mplsTpOAMLmSingleRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm far end loss." + ::= { mplsTpOAMLmSingleEntry 8 } + +mplsTpOAMLmSingleRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm far end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmSingleEntry 9 } + +mplsTpOAMLmSingleLossTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMLmSingleLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM LmSingleLoss table." + ::= { mpls 97 } + +mplsTpOAMLmSingleLossEntry OBJECT-TYPE + SYNTAX MplsTpOAMLmSingleLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP LmSingleLoss entries." + INDEX { mplsTpOAMLmSingleLossMegId } + ::= { mplsTpOAMLmSingleLossTable 1 } + +MplsTpOAMLmSingleLossEntry ::= + SEQUENCE { + mplsTpOAMLmSingleLossMegId OCTET STRING, + mplsTpOAMLmSingleLossMepId Integer32, + mplsTpOAMLmSingleLossStartTime OCTET STRING, + mplsTpOAMLmSingleLossEndTime OCTET STRING, + mplsTpOAMLmSingleMaxLocalLoss Integer32, + mplsTpOAMLmSingleMaxLocalLossRatio Integer32, + mplsTpOAMLmSingleMinLocalLoss Integer32, + mplsTpOAMLmSingleMinLocalLossRatio Integer32, + mplsTpOAMLmSingleMaxRemoteLoss Integer32, + mplsTpOAMLmSingleMaxRemoteLossRatio Integer32, + mplsTpOAMLmSingleMinRemoteLoss Integer32, + mplsTpOAMLmSingleMinRemoteLossRatio Integer32 + } + +mplsTpOAMLmSingleLossMegId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..12)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMLmSingleLossEntry 1 } + +mplsTpOAMLmSingleLossMepId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mep Id." + ::= { mplsTpOAMLmSingleLossEntry 2 } + +mplsTpOAMLmSingleLossStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lm Single Start Time." + ::= { mplsTpOAMLmSingleLossEntry 3 } + +mplsTpOAMLmSingleLossEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..50)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lm Single End Time." + ::= { mplsTpOAMLmSingleLossEntry 4 } + +mplsTpOAMLmSingleMaxLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm max near end loss." + ::= { mplsTpOAMLmSingleLossEntry 5 } + +mplsTpOAMLmSingleMaxLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm max near end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmSingleLossEntry 6 } + +mplsTpOAMLmSingleMinLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm min near end loss." + ::= { mplsTpOAMLmSingleLossEntry 7} + +mplsTpOAMLmSingleMinLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm min near end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmSingleLossEntry 8 } + +mplsTpOAMLmSingleMaxRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm max far end loss." + ::= { mplsTpOAMLmSingleLossEntry 9 } + +mplsTpOAMLmSingleMaxRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm max far end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmSingleLossEntry 10 } + +mplsTpOAMLmSingleMinRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm min far end loss." + ::= { mplsTpOAMLmSingleLossEntry 11 } + +mplsTpOAMLmSingleMinRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm min far end loss ratio, the range is 0 - 1000000, + unit is one in a million." + ::= { mplsTpOAMLmSingleLossEntry 12 } + +mplsTpOAMSingleLMCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF MplsTpOAMSingleLMCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP OAM single lm cache table." + ::= { mpls 100 } + +mplsTpOAMSingleLMCacheEntry OBJECT-TYPE + SYNTAX MplsTpOAMSingleLMCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MPLS-TP single lm cache entries." + INDEX { mplsTpOAMSingleLMCacheMegId, mplsTpOAMSingleLMCacheIndex } + ::= { mplsTpOAMSingleLMCacheTable 1 } + +MplsTpOAMSingleLMCacheEntry ::= + SEQUENCE { + mplsTpOAMSingleLMCacheMegId OCTET STRING, + mplsTpOAMSingleLMCacheIndex Integer32, + mplsTpOAMSingleLMCacheExpValue Integer32, + mplsTpOAMSingleLMCacheLocalLoss Integer32, + mplsTpOAMSingleLMCacheLocalLossRatio Integer32, + mplsTpOAMSingleLMCacheRemoteLoss Integer32, + mplsTpOAMSingleLMCacheRemoteLossRatio Integer32, + mplsTpOAMSingleLMCacheTime OCTET STRING + } + +mplsTpOAMSingleLMCacheMegId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "MEG ID." + ::= { mplsTpOAMSingleLMCacheEntry 1 } + +mplsTpOAMSingleLMCacheIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the entry." + ::= { mplsTpOAMSingleLMCacheEntry 2 } + +mplsTpOAMSingleLMCacheExpValue OBJECT-TYPE + SYNTAX Integer32 (0..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Exp value, the range is 0 to 7 for cos and 8 for all-cos." + ::= { mplsTpOAMSingleLMCacheEntry 3 } + +mplsTpOAMSingleLMCacheLocalLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm near end loss." + ::= { mplsTpOAMSingleLMCacheEntry 4 } + +mplsTpOAMSingleLMCacheLocalLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm near end loss ratio, the range is 1 - 1000000, + unit is one in a million." + ::= { mplsTpOAMSingleLMCacheEntry 5 } + +mplsTpOAMSingleLMCacheRemoteLoss OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm far end loss." + ::= { mplsTpOAMSingleLMCacheEntry 6 } + +mplsTpOAMSingleLMCacheRemoteLossRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Single-lm far end loss ratio, the range is 1 - 1000000, + unit is one in a million." + ::= { mplsTpOAMSingleLMCacheEntry 7 } + +mplsTpOAMSingleLMCacheTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Cache time." + ::= { mplsTpOAMSingleLMCacheEntry 8 } + +mplsTrapGroup OBJECT IDENTIFIER ::= { mpls 1000 } + + tpOAMEventTrap NOTIFICATION-TYPE + OBJECTS { mplsTpOAMEventService, mplsTpOAMEventMegId, mplsTpOAMEventMepId, mplsTpOAMEventId, mplsTpOAMEventAction } + STATUS current + DESCRIPTION + "Mpls-tp OAM event." + ::= { mplsTrapGroup 1 } + + mplsTunnelSwitch NOTIFICATION-TYPE + OBJECTS { mplsTunnelSelectedLspPe, mplsTunnelG8131CurrentState } + STATUS current + DESCRIPTION + "Lsp switchover of mpls tunnel." + ::= { mplsTrapGroup 2 } + + mplsTPVpwsSwitch NOTIFICATION-TYPE + OBJECTS { mplsTPVpwsSelectedPw, mplsTPVpwsG8131CurrentState } + STATUS current + DESCRIPTION + "PW switchover of mpls-tp vpws." + ::= { mplsTrapGroup 3 } + + mplsVplsTPPeerSwitch NOTIFICATION-TYPE + OBJECTS { mplsVplsTPPeerSelectedPw, mplsVplsTPPeerG8131CurrentState } + STATUS current + DESCRIPTION + "PW switchover of mpls-tp vpls peer." + ::= { mplsTrapGroup 4 } + + mplsVpwsStateChange NOTIFICATION-TYPE + OBJECTS { mplsVpwsState } + STATUS current + DESCRIPTION + "Active or inactive of vpws." + ::= { mplsTrapGroup 5 } + + mplsVplsPeerStateChange NOTIFICATION-TYPE + OBJECTS { mplsVplsPeerState } + STATUS current + DESCRIPTION + "Active or inactive of vpls peer." + ::= { mplsTrapGroup 6 } + + mplsVpwsOAMCsfStateChange NOTIFICATION-TYPE + OBJECTS { mplsTPVpwsOAMCsfSrvState, mplsTPVpwsOAMCsfClientState, mplsTPVpwsOAMCsfDCReason, mplsTPVpwsOAMCsfClientInterval } + STATUS current + DESCRIPTION + "Vpws OAM csf state change." + ::= { mplsTrapGroup 7 } + + tpOAMSingleLmLocalLossTrap NOTIFICATION-TYPE + OBJECTS { mplsTpOAMSingleLMCacheLocalLoss, mplsTpOAMSingleLMCacheLocalLossRatio, mplsTpOAMSingleLMCacheTime} + STATUS current + DESCRIPTION + "Single lm local loss reaches threshold." + ::= { mplsTrapGroup 8 } + + tpOAMSingleLmLocalLossClearTrap NOTIFICATION-TYPE + OBJECTS { mplsTpOAMSingleLMCacheLocalLoss, mplsTpOAMSingleLMCacheLocalLossRatio, mplsTpOAMSingleLMCacheTime} + STATUS current + DESCRIPTION + "Single lm local loss reaches threshold." + ::= { mplsTrapGroup 9 } + + tpOAMSingleLmRemoteLossTrap NOTIFICATION-TYPE + OBJECTS { mplsTpOAMSingleLMCacheRemoteLoss, mplsTpOAMSingleLMCacheLocalLossRatio, mplsTpOAMSingleLMCacheTime} + STATUS current + DESCRIPTION + "Single lm local loss reaches threshold." + ::= { mplsTrapGroup 10 } + + tpOAMSingleLmRemoteLossClearTrap NOTIFICATION-TYPE + OBJECTS { mplsTpOAMSingleLMCacheRemoteLoss, mplsTpOAMSingleLMCacheRemoteLossRatio, mplsTpOAMSingleLMCacheTime} + STATUS current + DESCRIPTION + "Single lm local loss reaches threshold." + ::= { mplsTrapGroup 11 } + + writeSuccessTrap NOTIFICATION-TYPE + OBJECTS { configSave } + STATUS current + DESCRIPTION + "Config write success" + ::= { sysTrap 1 } + + writeFailureTrap NOTIFICATION-TYPE + OBJECTS { configSave } + STATUS current + DESCRIPTION + "Config write failure" + ::= { sysTrap 2 } + + rebootSendTrap NOTIFICATION-TYPE + OBJECTS { reload } + STATUS current + DESCRIPTION + "Reload send trap" + ::= { sysTrap 3 } + + + memUsageHigher NOTIFICATION-TYPE + OBJECTS { memTotalFree } + STATUS current + DESCRIPTION + "Memory usage higher" + ::= { sysTrap 4 } + + memUsageFormHigherToNormal NOTIFICATION-TYPE + OBJECTS { memTotalFree } + STATUS current + DESCRIPTION + "Memory usage from higher to normal" + ::= { sysTrap 5 } + + + vtySessionStartTrap NOTIFICATION-TYPE + OBJECTS { usersLineIndex, usersname, usersLocation } + STATUS current + DESCRIPTION + "Virtual terminal session start" + ::= { sysTrap 6 } + + vtySessionStopTrap NOTIFICATION-TYPE + OBJECTS { usersLineIndex, usersname, usersLocation } + STATUS current + DESCRIPTION + "Virtual terminal session stop" + ::= { sysTrap 7 } + + timeChangeTrap NOTIFICATION-TYPE + OBJECTS { timeSetClock, timeSetMonth, timeSetDay, timeSetYear } + STATUS current + DESCRIPTION + "Time Change Trap" + ::= { sysTrap 8 } + + cpuUsageHigher NOTIFICATION-TYPE + OBJECTS { ssCpuIdle } + STATUS current + DESCRIPTION + "Cpu Usage higher" + ::= { sysTrap 9 } + + cpuUsageFormHigherToNormal NOTIFICATION-TYPE + OBJECTS { ssCpuIdle } + STATUS current + DESCRIPTION + "Cpu Usage from higher to normal" + ::= { sysTrap 10 } + + lastCommandTrap NOTIFICATION-TYPE + OBJECTS { lastCommand } + STATUS current + DESCRIPTION + "The trap of the last command line and time. The command must be a legal and configure command." + ::= { sysTrap 11 } + + cFInserted NOTIFICATION-TYPE + OBJECTS { cfIndex } + STATUS current + DESCRIPTION + "Insert CF card." + ::= { sysTrap 12 } + + cFRemoved NOTIFICATION-TYPE + OBJECTS { cfIndex } + STATUS current + DESCRIPTION + "Remove CF card." + ::= { sysTrap 13 } + + loginFailTrap NOTIFICATION-TYPE + OBJECTS { loginFail } + STATUS current + DESCRIPTION + "Login fail for three times." + ::= { sysTrap 14 } + + processDumpTrap NOTIFICATION-TYPE + OBJECTS { lastDumpedProcess } + STATUS current + DESCRIPTION + "The trap of the last dumped process id." + ::= { sysTrap 15 } + +-- Sub Module: SMART-LINK + +-- +-- Node definitions +-- + +smartlinkRelayEnable OBJECT-TYPE + SYNTAX INTEGER {enabled(1),disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Relay flush packet is enabled on the device or not. + The meanings of the values are: + enabled(1) - Enable smart-link relay; + disabled(2) - Disable smart-link relay;" + ::= { smartlink 1 } + +smartlinkClearStatistic OBJECT-TYPE + SYNTAX INTEGER { yes(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Clear the statistic infomation smart link module. + The meanings of the values are: + YES(1) - Clear it;" + ::= { smartlink 2 } + +-- smartlinkGroupTable + +smartlinkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF SmartlinkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains smart-link group information." + ::= { smartlink 3 } + +smartlinkGroupEntry OBJECT-TYPE + SYNTAX SmartlinkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of smart-link group information " + INDEX { smartlinkGroupindex } + ::= { smartlinkGroupTable 1 } + +SmartlinkGroupEntry ::= + SEQUENCE + { + smartlinkGroupindex + INTEGER, + smartlinkGroupRowStatus + RowStatus, + smartlinkGroupMasterIntf + InterfaceIndex, + smartlinkGroupMasterDnCnt + INTEGER, + smartlinkGroupMasterlstDnTime + OCTET STRING, + smartlinkGroupMasterflhCnt + INTEGER, + smartlinkGroupMasterlstflhTime + OCTET STRING, + smartlinkGroupSlaveIntf + InterfaceIndex, + smartlinkGroupSlaveDnCnt + INTEGER, + smartlinkGroupSlavelstDnTime + OCTET STRING, + smartlinkGroupSlaveflhCnt + INTEGER, + smartlinkGroupSlavelstflhTime + OCTET STRING, + smartlinkGroupMstpInstance + OCTET STRING, + smartlinkGroupLoadBalanceInstance + OCTET STRING, + smartlinkGroupRestoreEnable + INTEGER, + smartlinkGroupRestoreTime + INTEGER, + smartlinkGroupControlVlan + INTEGER, + smartlinkGroupControlVlanPassword + OCTET STRING, + smartlinkGroupEnable + INTEGER + } + +smartlinkGroupindex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index that uniquely identifies an group in the smart link table." + ::= { smartlinkGroupEntry 1 } + +smartlinkGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { smartlinkGroupEntry 2 } + +smartlinkGroupMasterIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port number of the port for which this smart-link contains master interface. + 0 means delete" + ::= { smartlinkGroupEntry 3 } + +smartlinkGroupMasterDnCnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master down count." + ::= { smartlinkGroupEntry 4 } + +smartlinkGroupMasterlstDnTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master last down time." + ::= { smartlinkGroupEntry 5 } + +smartlinkGroupMasterflhCnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master flush count." + ::= { smartlinkGroupEntry 6 } + +smartlinkGroupMasterlstflhTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master last flush time." + ::= { smartlinkGroupEntry 7 } + +smartlinkGroupSlaveIntf OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port number of the port for which this smart-link contains slave interface. + 0 means delete" + ::= { smartlinkGroupEntry 8 } + +smartlinkGroupSlaveDnCnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master down count." + ::= { smartlinkGroupEntry 9 } + +smartlinkGroupSlavelstDnTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master last down time." + ::= { smartlinkGroupEntry 10 } + +smartlinkGroupSlaveflhCnt OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master flush count." + ::= { smartlinkGroupEntry 11 } + +smartlinkGroupSlavelstflhTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link master last flush time." + ::= { smartlinkGroupEntry 12 } + +smartlinkGroupMstpInstance OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..4094)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Protected mstp instance ID. + -1 means delete" + ::= { smartlinkGroupEntry 13 } + +smartlinkGroupLoadBalanceInstance OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..4094)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Load-balance instance ID. + -1 means delete" + ::= { smartlinkGroupEntry 14 } + +smartlinkGroupRestoreEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Auto-restore of the smart link group is enabled on the device or not. + The meanings of the values are: + enabled(1) - Enable auto-restore of the smart link group; + disabled(2) - Disable auto-restore of the smart link group;" + ::= { smartlinkGroupEntry 15 } + +smartlinkGroupRestoreTime OBJECT-TYPE + SYNTAX INTEGER(30..1200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time range(Second) of Restore time. Range <30-1200>" + ::= { smartlinkGroupEntry 16 } + +smartlinkGroupControlVlan OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vlan id of the smart-link control vlan. + Set 0 to delete the control vlan." + ::= { smartlinkGroupEntry 17 } + +smartlinkGroupControlVlanPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The password of the smart-link control vlan. + By default the password is 'default'" + DEFVAL {"default"} + ::= { smartlinkGroupEntry 18 } + +smartlinkGroupEnable OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of smart-link group . + The meanings of the values are: + enabled(1) - Enable smart-link group; + disabled(2) - Disable smart-link group;" + ::= { smartlinkGroupEntry 19 } + + +-- smartlinkRcvFlushintfTable + +smartlinkRcvFlushintfTable OBJECT-TYPE + SYNTAX SEQUENCE OF SmartlinkRcvFlushintfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains smart-link group information." + ::= { smartlink 4 } + +smartlinkRcvFlushintfEntry OBJECT-TYPE + SYNTAX SmartlinkRcvFlushintfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of smart-link group information. " + INDEX { smartlinkGroupindex } + ::= { smartlinkRcvFlushintfTable 1 } + +SmartlinkRcvFlushintfEntry ::= + SEQUENCE + { + smartlinkRcvFlushintfindex + InterfaceIndex, + smartlinkRcvFlushintfVlan + INTEGER, + smartlinkRcvFlushintfVlanPassword + OCTET STRING, + martlinkRcvFlushintfSetState + RowStatus + } + +smartlinkRcvFlushintfindex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of the interface which smart-link receive flush from." + ::= { smartlinkRcvFlushintfEntry 1 } + +smartlinkRcvFlushintfVlan OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vlan id of the interface which smart-link receive flush from." + ::= { smartlinkRcvFlushintfEntry 2 } + +smartlinkRcvFlushintfVlanPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The password of the interface which smart-link receive flush from." + ::= { smartlinkRcvFlushintfEntry 3 } + +martlinkRcvFlushintfSetState OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { smartlinkRcvFlushintfEntry 4 } +-- + +smartlinkRcvFlushPktNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link received flush packet number." + ::= { smartlink 5 } + +smartlinkProcFlushPktNum OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Smart-link processed flush packet number." + ::= { smartlink 6 } + + + +--flowctrl OBJECT IDENTIFIER ::= { OID 71 } + +-- Sub Module: FLOW-CONTROL + +-- +-- Node definitions +-- + +-- flowctrlSendEnableTable + +flowctrlSendEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF FlowctrlSendEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Enable or disable flow control send function. + The meanings of the values are: + on(1) - Set send flowcontrol enable; + off(2) - Set send flowcontrol disable; + Default setting is off(2)." + ::= { flowctrl 1 } + +flowctrlSendEnableEntry OBJECT-TYPE + SYNTAX FlowctrlSendEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of flowctrl Send Enable group information. " + INDEX { interfaceIndex } + ::= { flowctrlSendEnableTable 1 } + +FlowctrlSendEnableEntry ::= + SEQUENCE + { + flowctrlSendEnable + INTEGER + } + +flowctrlSendEnable OBJECT-TYPE + SYNTAX INTEGER {on(1),off(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable flow control send function. + The meanings of the values are: + on(1) - Set send flowcontrol enable; + off(2) - Set send flowcontrol disable; + Default setting is off(2." + DEFVAL { 2 } + ::= { flowctrlSendEnableEntry 1 } + + +-- flowctrlReceiveEnableTable + +flowctrlReceiveEnableTable OBJECT-TYPE + SYNTAX SEQUENCE OF FlowctrlReceiveEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Enable or disable flow control Receive function. + The meanings of the values are: + on(1) - Set Receive flowcontrol enable; + off(2) - Set Receive flowcontrol disable; + Default setting is off(2)." + ::= { flowctrl 2 } + +flowctrlReceiveEnableEntry OBJECT-TYPE + SYNTAX FlowctrlReceiveEnableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of smart-link group information " + INDEX { interfaceIndex } + ::= { flowctrlReceiveEnableTable 1 } + +FlowctrlReceiveEnableEntry ::= + SEQUENCE + { + flowctrlReceiveEnable + INTEGER + } + +flowctrlReceiveEnable OBJECT-TYPE + SYNTAX INTEGER {on(1),off(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable flow control Receive function. + The meanings of the values are: + on(1) - Set Receive flowcontrol enable; + off(2) - Set Receive flowcontrol disable; + Default setting is off(2)." + DEFVAL { 2 } + ::= { flowctrlReceiveEnableEntry 1 } + + +--cputraffic OBJECT IDENTIFIER ::= { OID 72 } + + +-- Sub Module: CPU-TRAFFIC + +-- +-- Node definitions +-- + +cputrafficLimitTotalRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the total rate of all streams destined to CPU. Value range 0~1000000 pps. Default 2048 pps" + DEFVAL { 2048 } + ::= { cputraffic 1 } + +cputrafficLimitReasonRate OBJECT IDENTIFIER ::= { cputraffic 2 } + + +arpReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Address Resolution Protocol. + Rate range 0~1000000. + Default value 256 pps." + DEFVAL { 256 } + ::= { cputrafficLimitReasonRate 1 } + +bpduReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Bridge Protocol Data Unit. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 2 } + +cfmReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Connectivity Fault Management. + Rate range 0~1000000. + Default value 512 pps." + DEFVAL { 512 } + ::= { cputrafficLimitReasonRate 3 } + +dhcpReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Dynamic Host Configuration Protocol. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 4 } + +eapolReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Extensible Authentication Protocol Over Lan. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 5 } + +erpsReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Ethernet Ring Protection Switching. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 6 } + +sflowIngressReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Sampled flow at ingress direction. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 7 } + +icmpRedirectReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ICMP Redirect. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 8 } + +--icmpV6ReasonRate OBJECT-TYPE +-- SYNTAX INTEGER (1..1000000) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- " Internet Control Message Protocol Version 6. +-- Rate range 0~1000000. +-- Default value 500 kbps." +-- DEFVAL { 500 } +-- ::= { cputrafficLimitReasonRate 9 } + +igmpReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IGMP/IGMP Snooping Protocol. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 9 } + +ipOptionReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Packets with IP Option. + Rate range 0~1000000. + Default value 512 pps." + DEFVAL { 512 } + ::= { cputrafficLimitReasonRate 10 } + +ipDaReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Destination to Router-self. + Rate range 0~1000000. + Default value 1024 pps." + DEFVAL { 1024 } + ::= { cputrafficLimitReasonRate 11 } + +ldpReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Label Distribution Protocol. + Rate range 0~1000000. + Default value 512 pps." + DEFVAL { 512 } + ::= { cputrafficLimitReasonRate 12 } + +macSaMismatchReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Port Security for source mac learned. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 13 } + +mcastRpfFailReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Multicast with rpf fail or first multicast packet. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 14 } + +mplsTtlFailReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Mpls Packets with ttl fail. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 15 } + +mtuDontFragReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Fragment with Flag dont-frag Set. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 16 } + +mtuFragReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Need Fragment. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 17 } + +ospfReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Open Shortest Path First. + Rate range 0~1000000. + Default value 256 pps." + DEFVAL { 256 } + ::= { cputrafficLimitReasonRate 18 } + +pimReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Protocol Independent Multicast. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 19 } + +portSecurityDiscardReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Port Security for exceeding fdb maxnum. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 20 } + +ptpReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Precision Time Synchronization Protocol. + Rate range 0~1000000. + Default value 512 pps." + DEFVAL { 512 } + ::= { cputrafficLimitReasonRate 21 } + +ripReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Routing Information Protocol. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 22 } + +rsvpReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Resource Reservation Protocol. + Rate range 0~1000000. + Default value 512 pps." + DEFVAL { 512 } + ::= { cputrafficLimitReasonRate 23 } + +slowProtoReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Slow Protocol. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 24 } + +smartLinkReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Smart Link Protocol. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 25 } + +ucastIpTtlFailReasonRate OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Unicast Packets with ttl fail. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 26 } + +vlanSecurityDiscardReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Vlan Security for exceeding fdb maxnum. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 27 } + +vrrpReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Virtual Router Redundancy Protocol. + Rate range 0~1000000. + Default value 512 pps." + DEFVAL { 512 } + ::= { cputrafficLimitReasonRate 28 } + +mldReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " MLD/MLD Snooping Protocol. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 29 } + +sflowEgressReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Sampled flow at egress direction. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 30 } + +udldReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Unidirectional Link Detection Protocol. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 31 } + + +fwdToCpuReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Packets forwarding to cpu. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 32 } + +mplsTpPwOamReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " MPLS-TP-OAM for PW. + Rate range 0~1000000. + Default value 128 pps." + DEFVAL { 128 } + ::= { cputrafficLimitReasonRate 33 } + +dot1xMacBypassReasonRate OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Dot1x Mac Auth Bypass. + Rate range 0~1000000. + Default value 64 pps." + DEFVAL { 64 } + ::= { cputrafficLimitReasonRate 34 } + +cputrafficLimitReasonClass OBJECT IDENTIFIER ::= { cputraffic 3 } + + + +arpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Address Resolution Protocol. + Class range 0~3. + Default Class is 1 ." + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 1 } + +bpduReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Bridge Protocol Data Unit. + Class range 0~3. + Default Class is 3 " + DEFVAL { 3 } + ::= { cputrafficLimitReasonClass 2 } + +cfmReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Connectivity Fault Management. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 3 } + +dhcpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Dynamic Host Configuration Protocol. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 4 } + +eapolReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Extensible Authentication Protocol Over Lan. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 5 } + +erpsReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Ethernet Ring Protection Switching. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 6 } + +sflowIngressReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Sampled flow at ingress direction. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 7 } + +icmpRedirectReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " ICMP Redirect. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 8 } + +--icmpV6ReasonClass OBJECT-TYPE +-- SYNTAX INTEGER (0..3) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- " Internet Control Message Protocol Version 6. +-- Class range 0~3. +-- Default Class is 1. " +-- DEFVAL { 1 } +-- ::= { cputrafficLimitReasonClass 9 } + +igmpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IGMP/IGMP Snooping Protocol. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 9 } + +ipOptionReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Packets with IP Option. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 10 } + +ipDaReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " IP Destination to Router-self. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 11 } + +ldpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Label Distribution Protocol. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 12 } + +macSaMismatchReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Port Security for source mac learned. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 13 } + +mcastRpfFailReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Multicast with rpf fail or first multicast packet. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 14 } + +--mcastTtlReasonClass OBJECT-TYPE +-- SYNTAX INTEGER (0..3) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- " Multicast Packets with ttl fail. +-- Class range 0~3. +-- Default Class is 0. " +-- DEFVAL { 0 } +-- ::= { cputrafficLimitReasonClass 15 } + +mplsTtlFailReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Mpls Packets with ttl fail. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 15 } + +mtuDontFragReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Fragment with Flag dont-frag Set. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 16 } + +mtuFragReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Need Fragment. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 17 } + +ospfReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Open Shortest Path First. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 18 } + +pimReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Protocol Independent Multicast. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 19 } + +portSecurityDiscardReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Port Security for exceeding fdb maxnum. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 20 } + +ptpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Precision Time Synchronization Protocol. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 21 } + +ripReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Routing Information Protocol. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 22 } + +rsvpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Resource Reservation Protocol. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 23 } + +slowProtoReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Slow Protocol. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 24 } + +smartLinkReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Smart Link Protocol. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 25 } + +ucastIpTtlFailReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Unicast Packets with ttl fail. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 26 } + +vlanSecurityDiscardReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Vlan Security for exceeding fdb maxnum. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 27 } + +vrrpReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Virtual Router Redundancy Protocol. + Class range 0~3. + Default Class is 1. " + DEFVAL { 1 } + ::= { cputrafficLimitReasonClass 28 } + +mldReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " MLD/MLD Snooping Protocol. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 29 } + + +sflowEgressReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Sampled flow at egress direction. + Class range 0~3. + Default Class is 0. " + DEFVAL { 0 } + ::= { cputrafficLimitReasonClass 30 } + +udldReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Sampled flow at egress direction. + Class range 0~3. + Default Class is 3. " + DEFVAL { 3 } + ::= { cputrafficLimitReasonClass 31 } + +mplsTpPwOamReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " MPLS-TP-OAM for PW. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 33 } + +dot1xMacBypassReasonClass OBJECT-TYPE + SYNTAX INTEGER (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Dot1x Mac Auth Bypass. + Class range 0~3. + Default Class is 2. " + DEFVAL { 2 } + ::= { cputrafficLimitReasonClass 34 } + +-- Sub Module: PORT-ISOLATE +-- portisolate OBJECT IDENTIFIER ::= { OID 73 } +-- +-- Node definitions +-- + +portIsolateMode OBJECT-TYPE + SYNTAX INTEGER {l2(1),all(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set isolate mode on the switch The default setting is l2. + The meanings of the values are: + l2(1) - Isolate bridged packets; + all(2) - Isolate bridged packtes and routed packets;" + DEFVAL { all } + ::= { portisolate 1 } + +-- Sub Module: PHY-LOOKBACK + +-- phyloopback OBJECT IDENTIFIER ::= { OID 74 } + +-- +-- Node definitions +-- + +-- phyloopbackTable + + +phyloopbackTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhyloopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains phy-loopback internal group information." + ::= { phyloopback 1 } + +phyloopbackEntry OBJECT-TYPE + SYNTAX PhyloopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of phy-loopback internal group information " + INDEX { phyloopbackIfindex } + ::= { phyloopbackTable 1 } + +PhyloopbackEntry ::= + SEQUENCE + { + phyloopbackIfindex + INTEGER, + phyloopbackType + INTEGER, + phyloopbackDstIfindex + INTEGER, + phyloopbackMacAddrSwap + INTEGER, + phyloopbackRowStatus + RowStatus + } + +phyloopbackIfindex OBJECT-TYPE + SYNTAX INTEGER (1..52) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of interface that uniquely identifies an phyloopback entry in the phyloopback table." + ::= { phyloopbackEntry 1 } + +phyloopbackType OBJECT-TYPE + SYNTAX INTEGER {internal(0), external(1), port(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Phy loopback commands type. internal(0), external(1), port(2). " + ::= { phyloopbackEntry 2 } + +phyloopbackDstIfindex OBJECT-TYPE + SYNTAX INTEGER (1..52) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An index that uniquely identifies phyloopback destination physical interface." + ::= { phyloopbackEntry 3 } + +phyloopbackMacAddrSwap OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The packet's SMAC incoming from port level loopback interface will be swaped with it's DMAC, + and the FCS will be updated. enable(1), disable(2). Default setting is disable(2). + For other types, should always be disable(2)." + ::= { phyloopbackEntry 4 } + +phyloopbackRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo(4) and Destroy(6) and Active(1)." + ::= { phyloopbackEntry 5 } + + +-- Sub Module: Monitor link +monitorLinkRecoverTime OBJECT-TYPE + SYNTAX Integer32 (3..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the recover time for down_link port, when the up_link up." + DEFVAL { 3 } + ::= { monitorlink 1 } + +monitorLinkGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonitorLinkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of Monitor link group." + ::= { monitorlink 2 } + +monitorLinkGroupEntry OBJECT-TYPE + SYNTAX MonitorLinkGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Monitor link group." + INDEX { groupIndex} + ::= { monitorLinkGroupTable 1 } + +MonitorLinkGroupEntry ::= + SEQUENCE + { + groupIndex + Integer32, + groupStatus + INTEGER, + groupRowStatus + RowStatus + } + +groupIndex OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of Monitor link group. The index value is group id minus 1." + ::= { monitorLinkGroupEntry 1 } + +groupStatus OBJECT-TYPE + SYNTAX INTEGER {up(1), down(2), idle(3)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of group." + ::= { monitorLinkGroupEntry 2 } + +groupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize Destroy and Active." + ::= { monitorLinkGroupEntry 3 } + + +monitorLinkMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonitorLinkMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of Monitor link member." + ::= { monitorlink 3 } + +monitorLinkMemberEntry OBJECT-TYPE + SYNTAX MonitorLinkMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Monitor link member." + INDEX { groupIndex, memberLinkType, memberIndex} + ::= { monitorLinkMemberTable 1 } + +MonitorLinkMemberEntry ::= + SEQUENCE + { + memberLinkType + INTEGER, + memberIndex + Integer32, + memberType + INTEGER, + memberIdentify + Integer32, + memberUptime + TimeTicks, + memberDowntime + TimeTicks, + memberUpCounter + Counter32, + memberDownCounter + Counter32, + memberRowStatus + RowStatus + } +memberLinkType OBJECT-TYPE + SYNTAX INTEGER {up-link(0), down-link(1)} + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The type of Monitor link member." + ::= { monitorLinkMemberEntry 1 } + +memberIndex OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of Monitor link member." + ::= { monitorLinkMemberEntry 2 } + +memberType OBJECT-TYPE + SYNTAX INTEGER {smart-link(0), interface(1)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of Monitor link member. Type of smart-link can only used as up-link." + ::= { monitorLinkMemberEntry 3 } + +memberIdentify OBJECT-TYPE + SYNTAX Integer32 (0..65536) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If the memberType type is interface, this value should be ifindex. + if the memberType type is smart-link, this value should be smartlinkGroupindex." + ::= { monitorLinkMemberEntry 4 } + +memberUptime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last-up-time of member." + ::= { monitorLinkMemberEntry 5 } + +memberDowntime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last-down-time of member." + ::= { monitorLinkMemberEntry 6 } + +memberUpCounter OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The counter of up time of the member." + ::= { monitorLinkMemberEntry 7 } + +memberDownCounter OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "TThe counter of down time of the member." + ::= { monitorLinkMemberEntry 8 } + +memberRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize Destroy and Active." + ::= { monitorLinkMemberEntry 9 } + +-- Sub Module: UDLD +-- udld OBJECT IDENTIFIER ::= { OID 76 } +-- +-- Node definitions +-- + +udldGlobalState OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set UDLD global state.The meanings of the values are: + enable(1) - Globally enable UDLD; + disable(2) - Globally disable UDLD;" + DEFVAL { disable } + ::= { udld 1 } + +udldMsgInterval OBJECT-TYPE + SYNTAX INTEGER (1..90) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set UDLD message interval.The default value is 15 seconds." + DEFVAL { 15 } + ::= { udld 2 } + +udldOperate OBJECT-TYPE + SYNTAX INTEGER {reset(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "UDLD global operations.The meanings of the values are: + reset(1) - Reset the interfaces disabled by UDLD;" + ::= { udld 3 } + +udldIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF UDLDIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains UDLD interface information." + ::= { udld 4 } + +udldIfEntry OBJECT-TYPE + SYNTAX UDLDIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of UDLD interface information " + INDEX { udldIfIndex } + ::= { udldIfTable 1 } + +UDLDIfEntry ::= + SEQUENCE + { + udldIfIndex + Integer32, + udldIfName + OCTET STRING, + udldState + INTEGER, + udldLinkState + INTEGER + } + +udldIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Interface index." + ::= { udldIfEntry 1 } + +udldIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Interface name." + ::= { udldIfEntry 2 } + +udldState OBJECT-TYPE + SYNTAX INTEGER {disable(1),normal(2),aggressive(3)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION "UDLD state of an interface.The meanings of the values are: + disable(0) - Disable UDLD; + normal(1) - Enable UDLD normal mode; + aggressive(2) - Enable UDLD aggressive mode;" + DEFVAL { disable } + ::= { udldIfEntry 3 } + +udldLinkState OBJECT-TYPE + SYNTAX INTEGER {linkUp(0),unknown(1),detection(2),exDetection(3),bidirectional(4),unidirectional(5),selfLoop(7),linkdown(8),inActive(9)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION "UDLD operation state of an interface." + ::= { udldIfEntry 4 } + +-- Sub Module: POLICYBASEDROUTING + +-- +-- Nodes of policyBaseRoutingIpPolicyRouteMap entry table +-- +pbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF PBREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "table of Policy based routing entry." + ::= { policyBasedRouting 1 } + +pbrEntry OBJECT-TYPE + SYNTAX PBREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Policy based routing entry" + INDEX { pbrIfIndex} + ::= { pbrTable 1 } + +PBREntry ::= + SEQUENCE + { + pbrIfIndex + Integer32, + pbrPolicyRmapName + OCTET STRING, + pbrRowStatus + RowStatus + } + +pbrIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "interface index which is applying the policy route-map." + ::= { pbrEntry 1 } + +pbrPolicyRmapName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "pbr policy route-map name." + ::= { pbrEntry 2 } + +pbrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { pbrEntry 9} + +-- Sub Module: DDOS prevent +-- ddos OBJECT IDENTIFIER ::= { OID 78 } +-- +-- Node definitions +-- + +ddosICMPIntercept OBJECT-TYPE + SYNTAX Integer32 (-1|0..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip ICMP intercept maxcount.The meanings of the values are: + -1 - no Ip ICMP intercept; + 0-1000 - Ip ICMP intercept maxcount." + DEFVAL { -1 } + ::= { ddos 1 } + +ddosUDPIntercept OBJECT-TYPE + SYNTAX Integer32 (-1|0..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip UDP intercept maxcount.The meanings of the values are: + -1 - no Ip UDP intercept; + 0-1000 - Ip UDP intercept maxcount." + DEFVAL { -1 } + ::= { ddos 2 } + +ddosTCPIntercept OBJECT-TYPE + SYNTAX Integer32 (-1|0..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip TCP intercept maxcount.The meanings of the values are: + -1 - no Ip TCP intercept; + 0-1000 - Ip TCP intercept maxcount." + DEFVAL { -1 } + ::= { ddos 3 } + +ddosSmurfIntercept OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip Smurf intercept maxcount.The meanings of the values are: + enable(1) - Ip Fraggle intercept; + disable(2) - no Ip Fraggle intercept." + DEFVAL { disable } + ::= { ddos 4 } + +ddosSmalpktIntercept OBJECT-TYPE + SYNTAX Integer32 (-1|28..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip Small-packet intercept maxcount.The meanings of the values are: + -1 - no Ip Small-packet intercept; + 28-65535 - Ip Small-packet intercept maxlength." + DEFVAL { -1 } + ::= { ddos 5 } + +ddosFraggleIntercept OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip Fraggle intercept.The meanings of the values are: + enable(1) - Ip Fraggle intercept; + disable(2) - no Ip Fraggle intercept." + DEFVAL { disable } + ::= { ddos 6 } + +ddosIpeqIntercept OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip Ipeq intercept.The meanings of the values are: + enable(1) - Ip Ipeq intercept; + disable(2) - no Ip Ipeq intercept." + DEFVAL { disable } + ::= { ddos 7 } + +ddosMaceqIntercept OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Ip Maceq intercept.The meanings of the values are: + enable(1) - Ip Maceq intercept; + disable(2) - no Ip Maceq intercept." + DEFVAL { disable } + ::= { ddos 8 } + +ddosSmalPktStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist Small-packet Attack packets number." + DEFVAL { 0 } + ::= { ddos 9 } + +ddosICMPStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist ICMP Flood packets number." + DEFVAL { 0 } + ::= { ddos 10 } + +ddosSmurfStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist Smurf Attack packets number." + DEFVAL { 0 } + ::= { ddos 11 } + +ddosTCPStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist SYN Flood packets number." + DEFVAL { 0 } + ::= { ddos 12 } + + +ddosFraggleStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist Fraggle Attack packets number." + DEFVAL { 0 } + ::= { ddos 13 } + +ddosUDPStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist UDP Flood packets number." + DEFVAL { 0 } + ::= { ddos 14 } + +ddosClearStatistic OBJECT-TYPE + SYNTAX INTEGER {clearStatistic(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Clear IP intercept Statistic.1:clear statistic. " + ::= { ddos 15 } + +ddosmgifSmalPktStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist mgmt-if Small-packet Attack packets number." + DEFVAL { 0 } + ::= { ddos 16 } + +ddosmgifICMPStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist mgmt-if ICMP Flood packets number." + DEFVAL { 0 } + ::= { ddos 17 } + +ddosmgifSmurfStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist mgmt-if Smurf Attack packets number." + DEFVAL { 0 } + ::= { ddos 18 } + +ddosmgifTCPStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist mgmt-if SYN Flood packets number." + DEFVAL { 0 } + ::= { ddos 19 } + + +ddosmgifFraggleStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist mgmt-if Fraggle Attack packets number." + DEFVAL { 0 } + ::= { ddos 20 } + +ddosmgifUDPStatistic OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show Resist mgmt-if UDP Flood packets number." + DEFVAL { 0 } + ::= { ddos 21 } + +-- l2ping OBJECT IDENTIFIER ::= { OID 79 } + +l2PingResponseTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2PingResponseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains l2 ping response information." + ::= { l2ping 1 } + +l2PingResponseEntry OBJECT-TYPE + SYNTAX L2PingResponseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface l2ping response information" + INDEX { l2pingResponseIfindex } + ::= { l2PingResponseTable 1 } + +L2PingResponseEntry ::= + SEQUENCE + { + l2pingResponseIfindex + INTEGER, + l2pingResponseEnable + INTEGER + } + +l2pingResponseIfindex OBJECT-TYPE + SYNTAX INTEGER (1..1023) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of interface that uniquely identifies an l2ping entry in the l2PingResponseTable table. + interface should be physical l2 interface" + ::= { l2PingResponseEntry 1 } + +l2pingResponseEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "L2 ping response enable(1), or disable(2). + Default : disable(2)." + DEFVAL {disable} + ::= { l2PingResponseEntry 2 } + + +--syncE OBJECT IDENTIFIER ::= { OID 81 } + +syncEDeviceClockID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A exclusive flag to distinguish every device" + ::= { syncE 1 } + +syncEGlbEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set whether the device is a synchronous equipment. + The meanings of the values are: + enable(1) - A synchronous equipment; + disable(2) - Not a synchronous equipment" + DEFVAL { disable } + ::= { syncE 2 } + +syncESsmGlbEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set whether the device work under synchronous + operation mode. The meanings of the values are: + enable(1) - Under synchronous operation mode; + disable(2) - Under non-sync operation mode" + DEFVAL { disable } + ::= { syncE 3 } + +syncEDeviceType OBJECT-TYPE + SYNTAX INTEGER {master-only(1), slave-only(2), none(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the device type. The meanings of the values are: + master-olny(1) - master-only type; + slave-only(2) - slave-only type; + none(3) - default type" + DEFVAL { none } + ::= { syncE 4 } + +syncELocalQuality OBJECT-TYPE + SYNTAX INTEGER {op2-prs(1), op1-prc(2), op2-eec2(3), op1-eec1(4),op1-dnu(5), op2-dus(6)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the device quality globally under option1. + The meanings of the values are: + op2-prs(1) - Primary reference source; + op1-prc(2) - Primary reference clock; + op2-eec2(3) - EEC2 clock(ITU-T G.8264); + op1-eec1(4) - EEC1 clock(ITU-T G.8264); + op1-dnu(5) - Do not use this quality; + op2-dus(6) - Do not use for synchronization" + + DEFVAL { op1-dnu } + ::= { syncE 5 } + + +syncELockedQuality OBJECT-TYPE + SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the locked quality.The meanings of the values are: + prs(1) - PRS traceable (ITU-T G.811); + prc(2) - Primary reference clock; + stu(3) - Synchronized Ƀ Traceability unknown; + ssua(4) - Type I or V slave clock + defined in ITU-T G.812; + tnc(5) - Traceable to transit node clock + (ITU-T G.812, type V); + st2(6) - Traceable to stratum 2 + (ITU-T G.812, type II); + ssub(7) - Type VI slave clock defined in ITU-T G.812; + eec2(8) - EEC2 clock or st3 clock; + eec1(9) - EEC1 clock or SEC clock; + smc(10) - Traceable to SONET clock self timed; + st3e(11) - Traceable to stratum 3E + (ITU-T G.812, type III); + prov(12) - Provisionable by the network operator; + dnu(13) - Do not use this quality; + dus(14) - Do not use for synchronization" + + ::= { syncE 6 } + +syncELocalPriority OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the device priority globally. + The range is 1 ~ 255" + DEFVAL { 255 } + ::= { syncE 7 } + +syncESelectedInterface OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get ifindex of the current selected port. + 0 means no interface is selected." + ::= { syncE 8 } + +syncEExtensionEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set whether the device start extend ssm. + The meanings of the values are: + enable(1) - Start extend ssm; + disable(2) - Not start extend ssm" + DEFVAL { disable } + ::= { syncE 9 } + +syncEClockState OBJECT-TYPE + SYNTAX INTEGER {master-clock(1), freerun(2), holdover(3), lock(4), unlock(5)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the device clock status. + The meanings of the values are: + master-clock(1) - Master-only device + affords time signal; + freerun(2) - Device has not been synchronized; + holdover(3) - Device going to holdover; + lock(4) - Device select and lock a time signal + unlock(5) - Device select and unlock a time signal" + ::= { syncE 10 } + +syncEOptionMode OBJECT-TYPE + SYNTAX INTEGER {op1(1), op2(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the device clock ssm option mode. + op1(1) - Option mode 1; + op2(2) - Option mode 2" + ::= { syncE 11 } + +syncESwitchForceIF OBJECT-TYPE + SYNTAX Integer32 (0..65536) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch time resource to one interface forcibaly. + The value is the ifindex. + Value 0 cancles configuration" + DEFVAL { 0 } + ::= { syncE 12 } + +syncEIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF SYNCEIFEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of ssm interface entry." + ::= { syncE 13 } + +syncEIfEntry OBJECT-TYPE + SYNTAX SYNCEIFEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ssm interface entry" + INDEX { syncEIfIndex } + ::= { syncEIfTable 1 } + +SYNCEIFEntry ::= + SEQUENCE + { + syncEIfIndex Integer32, + syncEIfSyncEEnable INTEGER, + syncEIfSyncEPduMode INTEGER, + syncEIfPortPriority Integer32, + syncEIfPortUp INTEGER, + syncEIfPortQuality INTEGER, + syncEIfSendTimerState INTEGER, + syncEIfTimeoutTimerState INTEGER, + syncEIfSendQuality INTEGER, + syncEIFDNUgroup Integer32, + syncEIfReplaceClockId INTEGER, + syncEIfForcibleRxQL INTEGER, + syncEIfForcibleTxQL INTEGER + } + +syncEIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface index which is able to apply ssm." + ::= { syncEIfEntry 1 } + +syncEIfSyncEEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set whether the port is a synchronous port. + The meanings of the values are: + enable(1) - a synchronous port; + disable(2) - not a synchronous port" + DEFVAL { disable } + ::= { syncEIfEntry 2 } + +syncEIfSyncEPduMode OBJECT-TYPE + SYNTAX INTEGER {rx(1), tx(2), all(3), none-all(4), none-rx(5), none-tx(6)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set whether the interface can receive or send PDU. + The meanings of the values are: + rx(1) - receive PDU only; + tx(2) - send PDU only; + all(3) - receive and send PDU; + none-all(4) - disable receive and send PDU; + none-rx(5) - receive PDU only; + none-tx(6) - send PDU only" + DEFVAL { all } + ::= { syncEIfEntry 3 } + +syncEIfPortPriority OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the port priority. The range is 1 ~ 255." + DEFVAL { 255 } + ::= { syncEIfEntry 4 } + +syncEIfPortUp OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the status of whether the port is up. + The meanings of the values are: + enable(1) - Port is up; + disable(2) - Port is down" + ::= { syncEIfEntry 5 } + +syncEIfPortQuality OBJECT-TYPE + SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14), na(15)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the current received quality of port. + The meanings of the values are: + prs(1) - PRS traceable (ITU-T G.811); + prc(2) - Primary reference clock; + stu(3) - Synchronized Ƀ Traceability unknown; + ssua(4) - Type I or V slave clock + defined in ITU-T G.812; + tnc(5) - Traceable to transit node clock + (ITU-T G.812, type V); + st2(6) - Traceable to stratum 2 + (ITU-T G.812, type II); + ssub(7) - Type VI slave clock defined in ITU-T G.812; + eec2(8) - EEC2 clock or st3 clock; + eec1(9) - EEC1 clock or SEC clock; + smc(10) - Traceable to SONET clock self timed; + st3e(11) - Traceable to stratum 3E + (ITU-T G.812, type III); + prov(12) - Provisionable by the network operator; + dnu(13) - Do not use this quality; + dus(14) - Do not use for synchronization; + na(15) - N/A(not receive)" + ::= { syncEIfEntry 6 } + +syncEIfSendTimerState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the status of Send timer. + The meanings of the values are: + enable(1) - Enable; + disable(2) - Disable" + ::= { syncEIfEntry 7 } + +syncEIfTimeoutTimerState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the status of Timeout timer. + The meanings of the values are: + enable(1) - Enable; + disable(2) - Disable" + ::= { syncEIfEntry 8 } + +syncEIfSendQuality OBJECT-TYPE + SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14), na(15)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the current sending quality of port. + The meanings of the values are: + prs(1) - PRS traceable (ITU-T G.811); + prc(2) - Primary reference clock; + stu(3) - Synchronized Ƀ Traceability unknown; + ssua(4) - Type I or V slave clock + defined in ITU-T G.812; + tnc(5) - Traceable to transit node clock + (ITU-T G.812, type V); + st2(6) - Traceable to stratum 2 + (ITU-T G.812, type II); + ssub(7) - Type VI slave clock defined in ITU-T G.812; + eec2(8) - EEC2 clock or st3 clock; + eec1(9) - EEC1 clock or SEC clock; + smc(10) - Traceable to SONET clock self timed; + st3e(11) - Traceable to stratum 3E + (ITU-T G.812, type III); + prov(12) - Provisionable by the network operator; + dnu(13) - Do not use this quality; + dus(14) - Do not use for synchronization; + na(15) - N/A(not send)" + ::= { syncEIfEntry 9 } + +syncEIFDNUgroup OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Add the port into DNU group. The range is 0 ~ 255. + value 0 is delete port from DNU group." + DEFVAL { 0 } + ::= { syncEIfEntry 10 } + +syncEIfReplaceClockId OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Get or set the status of replace clockid. + The meanings of the values are: + enable(1) - Enable; + disable(2) - Disable" + DEFVAL { disable } + ::= { syncEIfEntry 11 } + +syncEIfForcibleRxQL OBJECT-TYPE + SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14), na(15)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Get and set Rx quality of physical port. + The meanings of the values are: + prs(1) - PRS traceable (ITU-T G.811); + prc(2) - Primary reference clock; + stu(3) - Synchronized Ƀ Traceability unknown; + ssua(4) - Type I or V slave clock + defined in ITU-T G.812; + tnc(5) - Traceable to transit node clock + (ITU-T G.812, type V); + st2(6) - Traceable to stratum 2 + (ITU-T G.812, type II); + ssub(7) - Type VI slave clock defined in ITU-T G.812; + eec2(8) - EEC2 clock or st3 clock; + eec1(9) - EEC1 clock or SEC clock; + smc(10) - Traceable to SONET clock self timed; + st3e(11) - Traceable to stratum 3E + (ITU-T G.812, type III); + prov(12) - Provisionable by the network operator; + dnu(13) - Do not use this quality; + dus(14) - Do not use for synchronization; + na(15) - N/A(not set Rx QL forcibly)" + DEFVAL { 15 } + ::= { syncEIfEntry 12 } + +syncEIfForcibleTxQL OBJECT-TYPE + SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14), na(15)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Get and set Tx quality of physical port. + The meanings of the values are: + prs(1) - PRS traceable (ITU-T G.811); + prc(2) - Primary reference clock; + stu(3) - Synchronized Ƀ Traceability unknown; + ssua(4) - Type I or V slave clock + defined in ITU-T G.812; + tnc(5) - Traceable to transit node clock + (ITU-T G.812, type V); + st2(6) - Traceable to stratum 2 + (ITU-T G.812, type II); + ssub(7) - Type VI slave clock defined in ITU-T G.812; + eec2(8) - EEC2 clock or st3 clock; + eec1(9) - EEC1 clock or SEC clock; + smc(10) - Traceable to SONET clock self timed; + st3e(11) - Traceable to stratum 3E + (ITU-T G.812, type III); + prov(12) - Provisionable by the network operator; + dnu(13) - Do not use this quality; + dus(14) - Do not use for synchronization; + na(15) - N/A(not set Tx QL forcibly)" + DEFVAL { 15 } + ::= { syncEIfEntry 13 } + +--ssmForcibleE1RxQL OBJECT-TYPE +-- SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14), na(15)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Get and set Rx quality of E1 port. +-- The meanings of the values are: +-- prs(1) - PRS traceable (ITU-T G.811); +-- prc(2) - Primary reference clock; +-- stu(3) - Synchronized Ƀ Traceability unknown; +-- ssua(4) - Type I or V slave clock +-- defined in ITU-T G.812; +-- tnc(5) - Traceable to transit node clock +-- (ITU-T G.812, type V); +-- st2(6) - Traceable to stratum 2 +-- (ITU-T G.812, type II); +-- ssub(7) - Type VI slave clock defined in ITU-T G.812; +-- eec2(8) - EEC2 clock or st3 clock; +-- eec1(9) - EEC1 clock or SEC clock; +-- smc(10) - Traceable to SONET clock self timed; +-- st3e(11) - Traceable to stratum 3E +-- (ITU-T G.812, type III); +-- prov(12) - Provisionable by the network operator; +-- dnu(13) - Do not use this quality; +-- dus(14) - Do not use for synchronization; +-- na(15) - N/A(not set Rx QL forcibly)" +-- DEFVAL { 15 } +-- ::= { syncE 14 } +-- +--ssmForcibleE1TxQL OBJECT-TYPE +-- SYNTAX INTEGER {prs(1), prc(2), stu(3), ssua(4), tnc(5), st2(6), ssub(7), eec2(8), eec1(9), smc(10), st3e(11), prov(12), dnu(13), dus(14), na(15)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Get and set Tx quality of E1 port. +-- The meanings of the values are: +-- prs(1) - PRS traceable (ITU-T G.811); +-- prc(2) - Primary reference clock; +-- stu(3) - Synchronized Ƀ Traceability unknown; +-- ssua(4) - Type I or V slave clock +-- defined in ITU-T G.812; +-- tnc(5) - Traceable to transit node clock +-- (ITU-T G.812, type V); +-- st2(6) - Traceable to stratum 2 +-- (ITU-T G.812, type II); +-- ssub(7) - Type VI slave clock defined in ITU-T G.812; +-- eec2(8) - EEC2 clock or st3 clock; +-- eec1(9) - EEC1 clock or SEC clock; +-- smc(10) - Traceable to SONET clock self timed; +-- st3e(11) - Traceable to stratum 3E +-- (ITU-T G.812, type III); +-- prov(12) - Provisionable by the network operator; +-- dnu(13) - Not to be used for synchronization; +-- dus(14) - Not to be used for synchronization; +-- na(15) - N/A(not set Tx QL forcibly)" +-- DEFVAL { 15 } +-- ::= { syncE 15 } + +syncEClockRecoverySelect OBJECT-TYPE + SYNTAX INTEGER {synce(1), bits1(2), bits2(3)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the way to recovery clock. + The meanings of the values are: + synce(1) - Set syncE to recovery clock; + bits1(2) - Set bits1 to recovery clock; + bits2(3) - Set bits2 to recovery clock" + DEFVAL { 1 } + ::= { syncE 15 } + +syncENotifications OBJECT IDENTIFIER ::= { syncE 100 } + +syncEStateChange NOTIFICATION-TYPE + OBJECTS {syncEClockState, syncESelectedInterface} + STATUS current + DESCRIPTION + "This trap will be generated when state of syncE + changes." + ::= {syncENotifications 1} + +--arpConfig OBJECT IDENTIFIER ::= { OID 82 } +arpGratuitousRecvEn OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Enable or disable receiving gratuitous ARP packets." + DEFVAL { disable } + ::= { arpConfig 1 } + +arpAllEntries OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " All arp entries." + ::= { arpConfig 2 } + +arpAllIncompleteEntries OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " All arp incomplete entries." + ::= { arpConfig 3 } + +--cfm OBJECT IDENTIFIER ::= { OID 83 } + +cfmEn OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable cfm globally." + DEFVAL { disable } + ::= { cfm 1 } + +-- cfmLearnRmepEn OBJECT-TYPE +-- SYNTAX INTEGER {enable(1),disable(2)} +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "Enable or disable learning remote MEP globally." +-- DEFVAL { 2 } +-- ::= { cfm 2 } + +-- cfmCcmDatabaseSize OBJECT-TYPE +-- SYNTAX Integer32 (1..2048) +-- MAX-ACCESS read-write +-- STATUS current +-- DESCRIPTION +-- "The max number of learning remote MEPs." +-- DEFVAL { 100 } +-- ::= { cfm 3 } + +cfmLinktraceCacheEn OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable caching linktrace results globally." + DEFVAL { disable } + ::= { cfm 4 } + +cfmLinktraceCacheSize OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max number of caching linktrace results." + DEFVAL { 100 } + ::= { cfm 5 } + +cfmLinktraceHoldTime OBJECT-TYPE + SYNTAX Integer32 (60..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval of reserving linktraace cache entry, unit is minute." + DEFVAL { 60 } + ::= { cfm 6 } + +cfmMipFdbDatabaseSize OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The max number of learning MIP fdb entries." + DEFVAL { 100 } + ::= { cfm 7 } + +cfmMipFdbHoldTime OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval of reserving MIP fdb entry, unit is minute. When fdb is static, + the value of hold time is 65535." + DEFVAL { 60 } + ::= { cfm 8 } + +cfmSFReasonLoc OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable that loss of continuity is signal fail reason." + DEFVAL { disable } + ::= { cfm 11 } + +cfmSFReasonRxRdi OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable that rdi of remote MEP is signal fail reason." + DEFVAL { disable } + ::= { cfm 12 } + +cfmSFReasonAisDefect OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable that ais condition of MEP is signal fail reason." + DEFVAL { disable } + ::= { cfm 13 } + +cfmMDErrorClearLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "According to MD level, clearing all errors in MD." + DEFVAL { 0 } + ::= { cfm 14 } + +cfmMipFdbClear OBJECT-TYPE + SYNTAX INTEGER {enable(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear all entries in MIP fdb database." + ::= { cfm 15 } + +cfmLinkTraceCacheClear OBJECT-TYPE + SYNTAX INTEGER {enable(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear all entries in linktrace cache." + ::= { cfm 17 } + +cfmMDTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMMDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm maintenance domain." + ::= { cfm 18 } + +cfmMDEntry OBJECT-TYPE + SYNTAX CFMMDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfm maintenance domain." + INDEX { cfmMDLevel } + ::= { cfmMDTable 1 } + +CFMMDEntry ::= + SEQUENCE { + cfmMDLevel Integer32, + cfmMDName OCTET STRING, + cfmMDRowStatus RowStatus + } + +cfmMDLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMDTable. Maintenance domain level number." + ::= { cfmMDEntry 1 } + +cfmMDName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm maintenance domain name." + ::= { cfmMDEntry 2 } + +cfmMDRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmMDEntry 6 } + +cfmMATable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMMAEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm maintenance association." + ::= { cfm 19 } + +cfmMAEntry OBJECT-TYPE + SYNTAX CFMMAEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfm maintenance domain." + INDEX { cfmMAIndex, cfmMAVlan } + ::= { cfmMATable 1 } + +CFMMAEntry ::= + SEQUENCE + { + cfmMAIndex Integer32, + cfmMAVlan Integer32, + cfmMAName OCTET STRING, + cfmMARowStatus RowStatus, + cfmMACCEn INTEGER, + cfmMACCVlanPriority Integer32, + cfmMAErrorWriteEn INTEGER, + cfmMAAisSuppressAlarm INTEGER + } + +cfmMAIndex OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMATable. The MA belongs to the MD and this is the MD level." + ::= { cfmMAEntry 1 } + +cfmMAVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMATable. The MA associates to the vlan." + ::= { cfmMAEntry 2 } + +cfmMAName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..43)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm maintenance association name." + ::= { cfmMAEntry 3 } + +cfmMARowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmMAEntry 7 } + +cfmMACCEn OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable continuity check." + DEFVAL { disable } + ::= { cfmMAEntry 8 } + +cfmMACCVlanPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vlan priority for the continuirty check packets." + DEFVAL { 7 } + ::= { cfmMAEntry 9 } + +cfmMAErrorWriteEn OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable writing errors to error cache." + DEFVAL { disable } + ::= { cfmMAEntry 10 } + +cfmMAAisSuppressAlarm OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable suppressing alarms when enter AIS condition." + DEFVAL { disable } + ::= { cfmMAEntry 11 } + +cfmMepTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMMepEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm maintenance domain end point." + ::= { cfm 20 } + +cfmMepEntry OBJECT-TYPE + SYNTAX CFMMepEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfm maintenance domain end point." + INDEX { cfmMepLevel, cfmMepVlan, cfmMepId } + ::= { cfmMepTable 1 } + +CFMMepEntry ::= + SEQUENCE { + cfmMepLevel Integer32, + cfmMepVlan Integer32, + cfmMepId Integer32, + cfmMepDirection INTEGER, + cfmMepInterval INTEGER, + cfmMepIfIndex INTEGER, + cfmMepRowStatus RowStatus, + cfmMepRdi INTEGER, + cfmMepAisCondition INTEGER + } + +cfmMepLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMepTable. The MEP belongs to the MD and this is the MD level." + ::= { cfmMepEntry 1 } + +cfmMepVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMepTable. The MEP belongs to the MA and the MA associates to the vlan." + ::= { cfmMepEntry 2 } + +cfmMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMepTable. The MEP id is exclusive in same MD and MA." + ::= { cfmMepEntry 3 } + +cfmMepDirection OBJECT-TYPE + SYNTAX INTEGER {down(0),up(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Up MEP or down MEP." + ::= { cfmMepEntry 4 } + +cfmMepInterval OBJECT-TYPE + SYNTAX INTEGER (1..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval of MEP continuity check message." + ::= { cfmMepEntry 5 } + +cfmMepIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port ifindex and the MEP is configured on the port" + ::= { cfmMepEntry 6 } + +cfmMepRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmMepEntry 10 } + +cfmMepRdi OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rdi status, only clearing MEP rdi is allowed." + ::= { cfmMepEntry 11 } +cfmMepAisCondition OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ais condition. When ais packet is received and cc is disabled or LOC defect on MEP, + MEP will enter Ais condition." + ::= { cfmMepEntry 12 } + +cfmRMepTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMRMepEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of remote cfm maintenance domain end point." + ::= { cfm 21 } + +cfmRMepEntry OBJECT-TYPE + SYNTAX CFMRMepEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of remote cfm maintenance domain end point." + INDEX { cfmRMepLevel, cfmRMepVlan, cfmRMepId } + ::= { cfmRMepTable 1 } + +CFMRMepEntry ::= + SEQUENCE { + cfmRMepLevel Integer32, + cfmRMepVlan Integer32, + cfmRMepId Integer32, + cfmRMepIfIndex INTEGER, + cfmRMepAddr OCTET STRING, + cfmRMepFlag INTEGER, + cfmRMepRowStatus RowStatus, + cfmRMepRdi INTEGER + } + +cfmRMepLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmRMepTable. The remote MEP belongs to the MD and this is the MD level." + ::= { cfmRMepEntry 1 } + +cfmRMepVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmRMepTable. The remote MEP belongs to the MA and the MA associates + to the vlan." + ::= { cfmRMepEntry 2 } + +cfmRMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmRMepTable. The MEP id is exclusive in same MD and MA." + ::= { cfmRMepEntry 3 } + +cfmRMepIfIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port ifindex and the remote MEP is configured on the port." + ::= { cfmRMepEntry 4 } + +cfmRMepAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The remote MEP mac adress." + ::= { cfmRMepEntry 5 } + +cfmRMepFlag OBJECT-TYPE + SYNTAX INTEGER {configured(1),macConfigured(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The remote MEP flag, when the flag is 1, the remote MEP is configured but + the remote MEP mac is not configured. When the flag is 2, the remote MEP + mac is configured." + ::= { cfmRMepEntry 6 } + +cfmRMepRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmRMepEntry 10 } + +cfmRMepRdi OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Rdi status of remote mep." + ::= { cfmRMepEntry 11 } + +cfmMipTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMMipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm maintenance domain intermediate point." + ::= { cfm 22 } + +cfmMipEntry OBJECT-TYPE + SYNTAX CFMMipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfm maintenance domain intermediate point." + INDEX { cfmMipLevel, cfmMipVlan, cfmMipIfIndex } + ::= { cfmMipTable 1 } + +CFMMipEntry ::= + SEQUENCE { + cfmMipLevel Integer32, + cfmMipVlan Integer32, + cfmMipIfIndex Integer32, + cfmMipRowStatus RowStatus + } + +cfmMipLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMipTable. The MIP belongs to the MD and this is the MD level." + ::= { cfmMipEntry 1 } + +cfmMipVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMipTable. The MIP belongs to the MA and the MA associates to the vlan." + ::= { cfmMipEntry 2 } + +cfmMipIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port ifindex and the MIP is configured on the port." + ::= { cfmMipEntry 3 } + +cfmMipRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmMipEntry 7 } + +cfmAisServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMAisServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of alarm indication signal server." + ::= { cfm 23 } + +cfmAisServerEntry OBJECT-TYPE + SYNTAX CFMAisServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of alarm indication signal server." + INDEX { cfmAisServerIfIndex } + ::= { cfmAisServerTable 1 } + +CFMAisServerEntry ::= + SEQUENCE { + cfmAisServerIfIndex Integer32, + cfmAisServerLevel Integer32, + cfmAisServerInterval Integer32, + cfmAisServerRowStatus RowStatus + } + +cfmAisServerIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The port ifindex and the ais server is configured on the port." + ::= { cfmAisServerEntry 1 } + +cfmAisServerLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Index of cfmAisServerTable. The ais server belongs to the MD and this is the + MD level." + ::= { cfmAisServerEntry 2 } + +cfmAisServerInterval OBJECT-TYPE + SYNTAX Integer32 (1..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The transmission interval of ais packet, only can be 1 second or 60 seconds." + DEFVAL { 1 } + ::= { cfmAisServerEntry 3 } + +cfmAisServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmAisServerEntry 7 } + +cfmAisTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMAisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm MEP ais enable/disable." + ::= { cfm 24 } + +cfmAisEntry OBJECT-TYPE + SYNTAX CFMAisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfm mep ais enable/disable." + INDEX { cfmAisLevel, cfmAisVlan, cfmAisMepId } + ::= { cfmAisTable 1 } + +CFMAisEntry ::= + SEQUENCE { + cfmAisLevel Integer32, + cfmAisVlan Integer32, + cfmAisMepId Integer32, + cfmAisIfIndex Integer32, + cfmAisConfigLoc INTEGER, + cfmAisConfigMismerge INTEGER, + cfmAisConfigUnexpectedMep INTEGER, + cfmAisConfigUnexpectedMegLevel INTEGER, + cfmAisConfigUnexpectedPeriod INTEGER, + cfmAisPacketType INTEGER, + cfmAisDestAddr MacAddress, + cfmAisDestLevel INTEGER, + cfmAisRowStatus RowStatus, + cfmAisDetectLoc INTEGER, + cfmAisDetectMismerge INTEGER, + cfmAisDetectUnexpectedMep INTEGER, + cfmAisDetectUnexpectedMegLevel INTEGER, + cfmAisDetectUnexpectedPeriod INTEGER + } + +cfmAisLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMepTable. The ais MEP belongs to the MD and this is the MD level." + ::= { cfmAisEntry 1 } + +cfmAisVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmAisTable. The ais MEP belongs to the MA and the MA associates to + the vlan." + ::= { cfmAisEntry 2 } + +cfmAisMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmAisTable. The MEP id is exclusive in same MD and MA." + ::= { cfmAisEntry 3 } + +cfmAisIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port ifindex and the ais MEP is configured on the port" + ::= { cfmAisEntry 4 } + +cfmAisConfigLoc OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet will be sent when detecting loss of continuity." + DEFVAL { disable } + ::= { cfmAisEntry 5 } + +cfmAisConfigMismerge OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet will be sent when detecting incorrect MD or MA name." + DEFVAL { disable } + ::= { cfmAisEntry 6 } + +cfmAisConfigUnexpectedMep OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet will be sent when detecting incorrect MEP id." + DEFVAL { disable } + ::= { cfmAisEntry 7 } + +cfmAisConfigUnexpectedMegLevel OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet will be sent when detecting incorrect MD level." + DEFVAL { disable } + ::= { cfmAisEntry 8 } + +cfmAisConfigUnexpectedPeriod OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet will be sent when detecting mismatch of CC period." + DEFVAL { disable } + ::= { cfmAisEntry 9 } + +cfmAisPacketType OBJECT-TYPE + SYNTAX INTEGER {uniscast(1),multicast(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet type. When the type is multicast, cfmAisDestAddr will be invalid." + ::= { cfmAisEntry 10 } + +cfmAisDestAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais packet destination mac address." + ::= { cfmAisEntry 11 } + +cfmAisDestLevel OBJECT-TYPE + SYNTAX INTEGER (1..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ais destination level at which the AIS frames have to be sent." + ::= { cfmAisEntry 12 } + +cfmAisRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmAisEntry 16 } + +cfmAisDetectLoc OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When detecting LOC defect, this flag will be true." + ::= { cfmAisEntry 17 } + +cfmAisDetectMismerge OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When detecting incorrect MD or MA name, this flag will be true." + ::= { cfmAisEntry 18 } + +cfmAisDetectUnexpectedMep OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When detecting incorrect MEP id, this flag will be true." + ::= { cfmAisEntry 19 } + +cfmAisDetectUnexpectedMegLevel OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When detecting incorrect MD level, this flag will be true." + ::= { cfmAisEntry 20 } + +cfmAisDetectUnexpectedPeriod OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When detecting mismatch of CC period, this flag will be true." + ::= { cfmAisEntry 21 } + +cfmLoopbackTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMLoopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of loopback remote MEP or MIP." + ::= { cfm 25 } + +cfmLoopbackEntry OBJECT-TYPE + SYNTAX CFMLoopbackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfmLoopbackTable." + INDEX { cfmLoopbackIndex } + ::= { cfmLoopbackTable 1 } + +CFMLoopbackEntry ::= + SEQUENCE { + cfmLoopbackIndex Integer32, + cfmLoopbackLevel Integer32, + cfmLoopbackVlan Integer32, + cfmLoopbackMepId Integer32, + cfmLoopbackFrameType INTEGER, + cfmLoopbackRMepId Integer32, + cfmLoopbackRmac MacAddress, + cfmLoopbackRepeat Integer32, + cfmLoopbackExp Integer32, + cfmLoopbackTimeout Integer32, + cfmLoopbackRowStatus RowStatus, + cfmLoopbackOperState INTEGER, + cfmLoopbackSuccessRate Integer32 + } + +cfmLoopbackIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfm loopback, Must be 1." + ::= { cfmLoopbackEntry 1 } + +cfmLoopbackLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Loopback is initiated by a MEP and the MEP belongs to the MD and this is + the MD level." + ::= { cfmLoopbackEntry 2 } + +cfmLoopbackVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Loopback is initiated by a MEP and the MEP belongs to the MA and the MA + associates to the vlan." + ::= { cfmLoopbackEntry 3 } + +cfmLoopbackMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Loopback is initiated by a MEP and the MEP id is exclusive in same MD and MA." + ::= { cfmLoopbackEntry 4 } + +cfmLoopbackFrameType OBJECT-TYPE + SYNTAX INTEGER { unicast(1), multicast(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Frame type of cfm loopback." + ::= { cfmLoopbackEntry 5 } + +cfmLoopbackRMepId OBJECT-TYPE + SYNTAX Integer32 (0..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP id. When frame type is unicast, this node is valid. if the remote MEP id + is 0, the value is invalid and cfmLoopbackRmac will be used." + ::= { cfmLoopbackEntry 6 } + +cfmLoopbackRmac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP or MEP mac address. if the cfmLoopbackRMepId isn't 0, + the node is invalid." + ::= { cfmLoopbackEntry 7 } + +cfmLoopbackRepeat OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Loopback repeat times." + ::= { cfmLoopbackEntry 8 } + +cfmLoopbackExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vlan priority of loopback packets." + ::= { cfmLoopbackEntry 9 } + +cfmLoopbackTimeout OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure time out of per loopback packet." + ::= { cfmLoopbackEntry 10 } + +cfmLoopbackRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmLoopbackEntry 13 } + +cfmLoopbackOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { cfmLoopbackEntry 14 } + +cfmLoopbackSuccessRate OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Success-rate of the operation." + ::= { cfmLoopbackEntry 15 } + + +cfmLinktraceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMLinktraceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of linktrace remote MEP or MIP." + ::= { cfm 26 } + +cfmLinktraceEntry OBJECT-TYPE + SYNTAX CFMLinktraceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfmLinktraceTable." + INDEX { cfmLinktraceIndex } + ::= { cfmLinktraceTable 1 } + +CFMLinktraceEntry ::= + SEQUENCE { + cfmLinktraceIndex Integer32, + cfmLinktraceLevel Integer32, + cfmLinktraceVlan Integer32, + cfmLinktraceMepId Integer32, + cfmLinktraceRMepId Integer32, + cfmLinktraceRmac MacAddress, + cfmLinktraceTtl Integer32, + cfmLinktraceExp Integer32, + cfmLinktraceTimeout Integer32, + cfmLinktraceEgressIdTLV INTEGER, + cfmLinktraceSenderIdTLV INTEGER, + cfmLinktraceOrganizationSpecTLV INTEGER, + cfmLinktraceRowStatus RowStatus, + cfmLinktraceOperState INTEGER + } + +cfmLinktraceIndex OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfm linktrace, Must be 1." + ::= { cfmLinktraceEntry 1 } + +cfmLinktraceLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Linktrace is initiated by a MEP, the MEP belongs to the MD and this is the MD level." + ::= { cfmLinktraceEntry 2 } + +cfmLinktraceVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Linktrace is initiated by a MEP, the MEP belongs to the MA and the MA + associates to the vlan." + ::= { cfmLinktraceEntry 3 } + +cfmLinktraceMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Linktrace is initiated by a MEP and the MEP id is exclusive in same MD and MA." + ::= { cfmLinktraceEntry 4 } + +cfmLinktraceRMepId OBJECT-TYPE + SYNTAX Integer32 (0..8191) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP id. if the Remote MEP id is 0, cfmLinktraceRmac will be used." + ::= { cfmLinktraceEntry 5 } + +cfmLinktraceRmac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote MEP or MIP mac address. if the cfmLinktraceRMepId isn't 0, + this node is invalid." + ::= { cfmLinktraceEntry 6 } + +cfmLinktraceTtl OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of maximum hops." + ::= { cfmLinktraceEntry 7 } + +cfmLinktraceExp OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The vlan priority of linktrace packets." + ::= { cfmLinktraceEntry 8 } + +cfmLinktraceTimeout OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure time out of per hop." + ::= { cfmLinktraceEntry 9 } + +cfmLinktraceEgressIdTLV OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The linktrace message will include Egress Identifier TLV." + ::= { cfmLinktraceEntry 10 } + +cfmLinktraceSenderIdTLV OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The linktrace message will include Sender Identifier TLV." + ::= { cfmLinktraceEntry 11 } + +cfmLinktraceOrganizationSpecTLV OBJECT-TYPE + SYNTAX INTEGER { enable(1), disable(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The linktrace message will include Organization Specific TLV." + ::= { cfmLinktraceEntry 12 } + +cfmLinktraceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and + Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { cfmLinktraceEntry 16 } + +cfmLinktraceOperState OBJECT-TYPE + SYNTAX INTEGER { done(1), in-progress(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operation status." + ::= { cfmLinktraceEntry 17 } + +cfmMipFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMMipFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the cfm MIP mac address entry." + ::= { cfm 29 } + +cfmMipFdbEntry OBJECT-TYPE + SYNTAX CFMMipFdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table stores the cfm MIP mac address entry." + INDEX { cfmMipFdbVlan, cfmMipFdbMacAddress, cfmMipFdbLevel } + ::= { cfmMipFdbTable 1 } + +CFMMipFdbEntry ::= + SEQUENCE { + cfmMipFdbVlan Integer32, + cfmMipFdbMacAddress MacAddress, + cfmMipFdbLevel Integer32, + cfmMipFdbIfIndex Integer32, + cfmMipFdbAgeTime Integer32 + } + +cfmMipFdbVlan OBJECT-TYPE + SYNTAX Integer32 (0..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMipFdbTable, identifying value for vlan." + ::= { cfmMipFdbEntry 1 } + +cfmMipFdbMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMipFdbTable, the mac address of MIP forwarding database entry." + ::= { cfmMipFdbEntry 2 } + +cfmMipFdbLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmMipFdbTable, the MIP belongs to the MD and this is the MD level." + ::= { cfmMipFdbEntry 3 } + +cfmMipFdbIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port ifindex, MIP fdb is learnt from the port or configured on the port." + ::= { cfmMipFdbEntry 4 } + +cfmMipFdbAgeTime OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval of reserving MIP fdb entry, unit is minute." + ::= { cfmMipFdbEntry 5 } + +cfmErrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMErrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm reporting errors." + ::= { cfm 30 } + +cfmErrorEntry OBJECT-TYPE + SYNTAX CFMErrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfmErrorTable." + INDEX { cfmErrorLevel, cfmErrorVlan, cfmErrorMepId, cfmErrorIndex } + ::= { cfmErrorTable 1 } + +CFMErrorEntry ::= + SEQUENCE { + cfmErrorLevel Integer32, + cfmErrorVlan Integer32, + cfmErrorMepId Integer32, + cfmErrorIndex Integer32, + cfmErrorRmac MacAddress, + cfmErrorReason INTEGER, + cfmErrorReportTime OCTET STRING + } + +cfmErrorLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Errors are reported by a MEP, the MEP belongs to the MD and this is the MD level." + ::= { cfmErrorEntry 1 } + +cfmErrorVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Errors are reported by a MEP, the MEP belongs to the MA and the MA associates to + the vlan." + ::= { cfmErrorEntry 2 } + +cfmErrorMepId OBJECT-TYPE + SYNTAX Integer32 (1..8191) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Errors are reported by a MEP and the MEP id is exclusive in same MD and MA." + ::= { cfmErrorEntry 3 } + +cfmErrorIndex OBJECT-TYPE + SYNTAX Integer32 (1..5) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmErrorTable, the range is 1 to 5." + ::= { cfmErrorEntry 4 } + +cfmErrorRmac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address of remote MEP." + ::= { cfmErrorEntry 5 } + +cfmErrorReason OBJECT-TYPE + SYNTAX INTEGER + { + rdi(2), + rdi-clear(3), + loc(4), + loc-clear(5), + unexpected-mep(6), + unexpected-mep-clear(7), + unexpected-period(8), + unexpected-period-clear(9), + mismerge(10), + mismerge-clear(11), + unexpected-meg-level(12), + unexpected-meg-level-clear(13), + recieve-ais(14), + no-receive-ais-in-35-period(15), + lck-receive-cause-ais(16), + lck-receive-cause-ais-clear(17), + enter-lck-condition(18), + exit-lck-condiftion(19), + enter-csf-condition(20), + exit-csf-condition(21), + rmep-first-packet-receive(22) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The error reson is as follows: + rdi(2), + rdi-clear(3), + loc(4), + loc-clear(5), + unexpected-mep(6), + unexpected-mep-clear(7), + unexpected-period(8), + unexpected-period-clear(9), + mismerge(10), + mismerge-clear(11), + unexpected-meg-level(12), + unexpected-meg-level-clear(13), + recieve-ais(14), + no-receive-ais-in-35-period(15), + lck-receive-cause-ais(16), + lck-receive-cause-ais-clear(17), + enter-lck-condition(18), + exit-lck-condiftion(19), + enter-csf-condition(20), + exit-csf-condition(21), + rmep-first-packet-receive(22)" + ::= { cfmErrorEntry 6 } + +cfmErrorReportTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reporting time of the error." + ::= { cfmErrorEntry 7 } + +cfmLTCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMLTCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm linktrace cache." + ::= { cfm 31 } + +cfmLTCacheEntry OBJECT-TYPE + SYNTAX CFMLTCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfmLTCacheTable." + INDEX { cfmLTCacheIndex } + ::= { cfmLTCacheTable 1 } + +CFMLTCacheEntry ::= + SEQUENCE { + cfmLTCacheIndex Integer32, + cfmLTCacheLevel Integer32, + cfmLTCacheVlan Integer32, + cfmLTCacheTargetMacAddress MacAddress, + cfmLTCacheStartTime OCTET STRING, + cfmLTCacheAge Integer32, + cfmLTCacheHops Integer32, + cfmLTCacheTTL Integer32, + cfmLTCacheForwarded INTEGER, + cfmLTCacheTerminalMEP INTEGER, + cfmLTCacheRelayAction INTEGER, + cfmLTCacheIngressAction INTEGER, + cfmLTCacheIngressMacAddress MacAddress, + cfmLTCacheIngressIfName OCTET STRING, + cfmLTCacheEgressAction INTEGER, + cfmLTCacheEgressMacAddress MacAddress, + cfmLTCacheEgressIfName OCTET STRING, + cfmLTCacheLastEgressID MacAddress, + cfmLTCacheNextEgressID MacAddress + } + +cfmLTCacheIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Linktrace cache index." + ::= { cfmLTCacheEntry 1 } + +cfmLTCacheLevel OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Linktrace is initiated by a MEP, the MEP belongs to the MD and this is the MD level." + ::= { cfmLTCacheEntry 2 } + +cfmLTCacheVlan OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Linktrace is initiated by a MEP, the MEP belongs to the MA and the MA associates to + the vlan." + ::= { cfmLTCacheEntry 3 } + +cfmLTCacheTargetMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Linktrace target mac address." + ::= { cfmLTCacheEntry 4 } + +cfmLTCacheStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time of sending first linktrace message." + ::= { cfmLTCacheEntry 5 } + +cfmLTCacheAge OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Linktrace age time, unit is minute." + ::= { cfmLTCacheEntry 6 } + +cfmLTCacheHops OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of cfmLTCacheTable, the linktrace hop number and the range is 1 to 64." + ::= { cfmLTCacheEntry 7 } + +cfmLTCacheTTL OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When LTM is received and forwarded by switch, the TTL will minus one. + when the TTL equals one, the LTM will not be relayed." + ::= { cfmLTCacheEntry 8 } + +cfmLTCacheForwarded OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If LTM will be forwarded, this flag is true." + ::= { cfmLTCacheEntry 9 } + +cfmLTCacheTerminalMEP OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the LTM is received by terminal MEP and LTR is sent by the MEP, + this flag is true." + ::= { cfmLTCacheEntry 10 } + +cfmLTCacheRelayAction OBJECT-TYPE + SYNTAX INTEGER { relayNone(0), relayHit(1), relayFdb(2), relayMipFdb(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When LTM is received by terminal MEP or MIP, this flag is relayHit. + When LTM is forwarded by Fdb, this flag is relayFdb. + When LTM is forwarded by MIP Fdb, this flag is relayMipFdb." + ::= { cfmLTCacheEntry 11 } + +cfmLTCacheIngressAction OBJECT-TYPE + SYNTAX INTEGER { ingNone(0), ingOK(1),ingDown(2), ingBlocked(3) ,ingNotMemVlan(4)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the ingress port status is normal, this flag is ingOK. + When the ingress port is blocked by STP, this flag is ingBlocked." + ::= { cfmLTCacheEntry 12 } + +cfmLTCacheIngressMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address of ingress port." + ::= { cfmLTCacheEntry 13 } + +cfmLTCacheIngressIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ingress interface name." + ::= { cfmLTCacheEntry 14 } + +cfmLTCacheEgressAction OBJECT-TYPE + SYNTAX INTEGER { egrNone(0), egrOK(1), egrDown(2), egrBlocked(3), egrNotMemVlan(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the egress port status is normal, this flag is egrOK. + When the egress port is blocked by STP, this flag is egrBlocked." + ::= { cfmLTCacheEntry 15 } + +cfmLTCacheEgressMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address of egress port." + ::= { cfmLTCacheEntry 16 } + +cfmLTCacheEgressIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Egress interface name." + ::= { cfmLTCacheEntry 17 } + +cfmLTCacheLastEgressID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route mac address of the source switch which initiates the linktrace." + ::= { cfmLTCacheEntry 18 } + +cfmLTCacheNextEgressID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route mac address of the switch which transmits this LTR." + ::= { cfmLTCacheEntry 19 } + +cfmLTResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF CFMLTResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of cfm linktrace result." + ::= { cfm 32 } + +cfmLTResultEntry OBJECT-TYPE + SYNTAX CFMLTResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of cfmLTResultTable." + INDEX { cfmLTResultHops } + ::= { cfmLTResultTable 1 } + +CFMLTResultEntry ::= + SEQUENCE { + cfmLTResultHops Integer32, + cfmLTResultTTL Integer32, + cfmLTResultForwarded INTEGER, + cfmLTResultTerminalMEP INTEGER, + cfmLTResultRelayAction INTEGER, + cfmLTResultIngressAction INTEGER, + cfmLTResultIngressMacAddress MacAddress, + cfmLTResultIngressIfName OCTET STRING, + cfmLTResultEgressAction INTEGER, + cfmLTResultEgressMacAddress MacAddress, + cfmLTResultEgressIfName OCTET STRING, + cfmLTResultLastEgressID MacAddress, + cfmLTResultNextEgressID MacAddress + } + +cfmLTResultHops OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of cfmLTResultTable, the linktrace hop number and the range is 1 to 64." + ::= { cfmLTResultEntry 1 } + +cfmLTResultTTL OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When LTM is received and forwarded by switch, the TTL will minus one. + when the TTL equals one, the LTM will not be relayed." + ::= { cfmLTResultEntry 2 } + +cfmLTResultForwarded OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If LTM will be forwarded, this flag is true." + ::= { cfmLTResultEntry 3 } + +cfmLTResultTerminalMEP OBJECT-TYPE + SYNTAX INTEGER {enable(1),disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the LTM is received by terminal MEP and LTR is sent by the MEP, + this flag is true." + ::= { cfmLTResultEntry 4 } + +cfmLTResultRelayAction OBJECT-TYPE + SYNTAX INTEGER { relayHit(1), relayFdb(2), relayMipFdb(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When LTM is received by terminal MEP or MIP, this flag is relayHit. + When LTM is forwarded by Fdb, this flag is relayFdb. + When LTM is forwarded by MIP Fdb, this flag is relayMipFdb." + ::= { cfmLTResultEntry 5 } + +cfmLTResultIngressAction OBJECT-TYPE + SYNTAX INTEGER { ingOK(1), ingBlocked(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the ingress port status is normal, this flag is ingOK. + When the ingress port is blocked by STP, this flag is ingBlocked." + ::= { cfmLTResultEntry 6 } + +cfmLTResultIngressMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address of ingress port." + ::= { cfmLTResultEntry 7 } + +cfmLTResultIngressIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ingress interface name." + ::= { cfmLTResultEntry 8 } + +cfmLTResultEgressAction OBJECT-TYPE + SYNTAX INTEGER { egrOK(1), egrDown(2), egrBlocked(3), egrNotMemVlan(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the egress port status is normal, this flag is egrOK. + When the egress port is blocked by STP, this flag is egrBlocked." + ::= { cfmLTResultEntry 9 } + +cfmLTResultEgressMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mac address of egress port." + ::= { cfmLTResultEntry 10 } + +cfmLTResultEgressIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Egress interface name." + ::= { cfmLTResultEntry 11 } + +cfmLTResultLastEgressID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route mac address of the source switch which initiates the linktrace." + ::= { cfmLTResultEntry 12 } + +cfmLTResultNextEgressID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The route mac address of the switch which transmits this LTR." + ::= { cfmLTResultEntry 13 } + + +cfmTrap OBJECT IDENTIFIER ::= { cfm 1000 } +cfmErrorTrap NOTIFICATION-TYPE + OBJECTS { cfmErrorRmac, cfmErrorReason } + STATUS current + DESCRIPTION + "Cfm error Trap" + ::= { cfmTrap 1 } + + +--efmOAM OBJECT IDENTIFIER ::= { OID 84 } + +efmOAMIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF EFMOAMIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure efm OAM on an interface." + ::= { efm 1 } + +efmOAMIfEntry OBJECT-TYPE + SYNTAX EFMOAMIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of efmOAMIfTable." + INDEX { efmOAMIfIndex } + ::= { efmOAMIfTable 1 } + +EFMOAMIfEntry ::= + SEQUENCE { + efmOAMIfIndex Integer32, + efmOAMEnable INTEGER, + efmOAMMode INTEGER, + efmOAMMinRate Integer32, + efmOAMMaxRate Integer32, + efmOAMLinkMonitorEn INTEGER, + efmOAMLinkMonitorSupported INTEGER, + efmOAMLinkMonitorFrameHigh Integer32, + efmOAMLinkMonitorFrameLow Integer32, + efmOAMLinkMonitorFrameWin Integer32, + efmOAMLinkMonitorFrameSecHigh Integer32, + efmOAMLinkMonitorFrameSecLow Integer32, + efmOAMLinkMonitorFrameSecWin Integer32, + efmOAMLinkMonitorHighThreAction INTEGER, + efmOAMRemoteLoopbackSupported INTEGER, + efmOAMRemoteLoopbackTimeout Integer32, + efmOAMRemoteLoopbackState INTEGER, + efmOAMTimeout Integer32, + efmOAMRemoteFailureCriticalEvent INTEGER, + efmOAMRemoteFailureDyingGasp INTEGER, + efmOAMRemoteFailureLinkFailure INTEGER + } + +efmOAMIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Interface index." + ::= { efmOAMIfEntry 1 } + +efmOAMEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable the Ethernet OAM module on a port.The meanings of the values are: + enable(1);disable(2)." + DEFVAL { disable } + ::= { efmOAMIfEntry 2 } + +efmOAMMode OBJECT-TYPE + SYNTAX INTEGER {active(1), passive(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the DTE to active mode or passive mode.The meanings of the values are: + active(1);passive(2)." + DEFVAL { passive } + ::= { efmOAMIfEntry 3 } + +efmOAMMinRate OBJECT-TYPE + SYNTAX Integer32(1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the OAMPDU minimum number of PDUS per second. this timer in the range <1-10>." + DEFVAL { 1 } + ::= { efmOAMIfEntry 4 } + +efmOAMMaxRate OBJECT-TYPE + SYNTAX Integer32(1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "set the OAMPDU maximum number of PDUS per second. this timer in the range <1-10>." + DEFVAL { 10 } + ::= { efmOAMIfEntry 5 } + +efmOAMLinkMonitorEn OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Turn on or off link monitoring on an interface.The meanings of the values are: + enable(1);disable(2)." + DEFVAL { enable } + ::= { efmOAMIfEntry 6 } + +efmOAMLinkMonitorSupported OBJECT-TYPE + SYNTAX INTEGER {supported(1), un-supported(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set link monitoring on an interface.The meanings of the values are: + supported(1);un-supported(2)." + DEFVAL { supported } + ::= { efmOAMIfEntry 7 } + +efmOAMLinkMonitorFrameHigh OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set value of the high threshold for errored frames. The meanings of the values are: + none(0) - no high threshold is configured; + Value of the high threshold <1-65535>." + DEFVAL { 0 } + ::= { efmOAMIfEntry 8 } + +efmOAMLinkMonitorFrameLow OBJECT-TYPE + SYNTAX Integer32(0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set value of the low threshold for errored frames in the range <0-65535>." + DEFVAL { 1 } + ::= { efmOAMIfEntry 9 } + +efmOAMLinkMonitorFrameWin OBJECT-TYPE + SYNTAX Integer32(10..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set size of frame event window in the range <10-600>." + DEFVAL { 10 } + ::= { efmOAMIfEntry 10 } + +efmOAMLinkMonitorFrameSecHigh OBJECT-TYPE + SYNTAX Integer32(0..900) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set value of the High threshold for the number of errored frame-seconds. The meanings of the values are: + none(0) - no high threshold is configured; + Value of the high threshold <1-900>." + DEFVAL { 0 } + ::= { efmOAMIfEntry 11 } + +efmOAMLinkMonitorFrameSecLow OBJECT-TYPE + SYNTAX Integer32(1..900) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set value of the Low threshold for the number of errored frame-seconds in the range <1-900>." + DEFVAL { 1 } + ::= { efmOAMIfEntry 12 } + +efmOAMLinkMonitorFrameSecWin OBJECT-TYPE + SYNTAX Integer32(100..9000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set Window for frame-seconds events in the range <100-9000>." + DEFVAL { 1000 } + ::= { efmOAMIfEntry 13 } + +efmOAMLinkMonitorHighThreAction OBJECT-TYPE + SYNTAX INTEGER {error-disable-interface(1), none(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set action when high threshold is detected.The meanings of the values are: + error-disable-interface(1) - Disable the interface when high threshold is exceeded; + none(2)." + DEFVAL { none } + ::= { efmOAMIfEntry 14 } + +efmOAMRemoteLoopbackSupported OBJECT-TYPE + SYNTAX INTEGER {supported(1), un-supported(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set remote loopback on a interface. The meanings of the values are: + un-supported(2); supported(1)." + DEFVAL { un-supported } + ::= { efmOAMIfEntry 15 } + +efmOAMRemoteLoopbackTimeout OBJECT-TYPE + SYNTAX Integer32(0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set remote loopback on a interface.." + DEFVAL { 0 } + ::= { efmOAMIfEntry 16 } + +efmOAMRemoteLoopbackState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set remote loopback state on a interface.." + DEFVAL { disable } + ::= { efmOAMIfEntry 17 } + +efmOAMTimeout OBJECT-TYPE + SYNTAX Integer32(2..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reset the LOCAL_LOST_LINK_TIMER and start an Ethernet OAM discovery process." + DEFVAL { 5 } + ::= { efmOAMIfEntry 18 } + +efmOAMRemoteFailureCriticalEvent OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote Failure Action Critical Link Event on an interface. + The meanings of the values are:enable(1);disable(2)." + DEFVAL { disable } + ::= { efmOAMIfEntry 19 } + +efmOAMRemoteFailureDyingGasp OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "TRemote Failure Action Dying Gasp Event on an interface. + The meanings of the values are:enable(1);disable(2)." + DEFVAL { disable } + ::= { efmOAMIfEntry 20 } + +efmOAMRemoteFailureLinkFailure OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Remote Failure Action Link Fault Event on an interface. + The meanings of the values are:enable(1);disable(2)." + DEFVAL { disable } + ::= { efmOAMIfEntry 21 } + +--efmOAMTestLoopbackTable OBJECT-TYPE +-- SYNTAX SEQUENCE OF EFMOAMTestLoopbackEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Test efm OAM loopback on an interface." +-- ::= { efm 2 } +-- +--efmOAMTestLoopbackEntry OBJECT-TYPE +-- SYNTAX EFMOAMTestLoopbackEntry +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION +-- "Entry of efmOAMTestLoopbackTable." +-- INDEX { efmOAMTestLoopbackIndex } +-- ::= { efmOAMTestLoopbackTable 1 } +-- +--EFMOAMTestLoopbackEntry ::= +-- SEQUENCE { +-- efmOAMTestLoopbackIndex Integer32, +-- efmOAMTestLoopbackIfindex Integer32, +-- efmOAMTestLoopbackVlanId Integer32, +-- efmOAMTestLoopbackMac MacAddress, +-- efmOAMTestLoopbackCount Integer32, +-- efmOAMTestLoopbackRowstatus RowStatus +-- } +-- +--efmOAMTestLoopbackIndex OBJECT-TYPE +-- SYNTAX Integer32 (1) +-- MAX-ACCESS not-accessible +-- STATUS current +-- DESCRIPTION "Loopback operaion index." +-- ::= { efmOAMTestLoopbackEntry 1 } +-- +--efmOAMTestLoopbackIfindex OBJECT-TYPE +-- SYNTAX Integer32 (1..65535) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION "Interface index to send test packet." +-- ::= { efmOAMTestLoopbackEntry 2 } +-- +--efmOAMTestLoopbackVlanId OBJECT-TYPE +-- SYNTAX Integer32 (0..4094) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION "Interface index to send test packet." +-- DEFVAL { 0 } +-- ::= { efmOAMTestLoopbackEntry 3 } +-- +--efmOAMTestLoopbackMac OBJECT-TYPE +-- SYNTAX MacAddress +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION "Mac address to send test packet." +-- ::= { efmOAMTestLoopbackEntry 4 } +-- +--efmOAMTestLoopbackCount OBJECT-TYPE +-- SYNTAX Integer32 (1..10000) +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION "Interface index to send test packet." +-- ::= { efmOAMTestLoopbackEntry 5 } +-- +--efmOAMTestLoopbackRowstatus OBJECT-TYPE +-- SYNTAX RowStatus +-- MAX-ACCESS read-create +-- STATUS current +-- DESCRIPTION +-- "The status of this conceptual row. Now only realize CreateAndGo and +-- Destroy and Active. +-- 1 means Active +-- 4 means CreateAndGo +-- 6 means Destroy." +-- ::= { efmOAMTestLoopbackEntry 10 } + + +efmOAMDiscoveryTable OBJECT-TYPE + SYNTAX SEQUENCE OF EFMOAMDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Get efm OAM discovery state on an interface." + ::= { efm 3 } + +efmOAMDiscoveryEntry OBJECT-TYPE + SYNTAX EFMOAMDiscoveryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of efmOAMDiscoveryTable." + INDEX { efmOAMDiscoveryIfIndex } + ::= { efmOAMDiscoveryTable 1 } + +EFMOAMDiscoveryEntry ::= + SEQUENCE { + efmOAMDiscoveryIfIndex Integer32, + efmOAMDiscoveryLocalMode INTEGER, + efmOAMDiscoveryLocalUnidirection INTEGER, + efmOAMDiscoveryLocalLinkMonitor INTEGER, + efmOAMDiscoveryLocalRemoteLoopback INTEGER, + efmOAMDiscoveryLocalMibRetrieve INTEGER, + efmOAMDiscoveryLocalMtuSize Integer32, + efmOAMDiscoveryLocalPortStatus INTEGER, + efmOAMDiscoveryLocalLoopbackStatus INTEGER, + efmOAMDiscoveryLocalPduRevision Integer32, + efmOAMDiscoveryRemoteMacAddress MacAddress, + efmOAMDiscoveryRemotePduRevision Integer32, + efmOAMDiscoveryRemoteVendor OCTET STRING, + efmOAMDiscoveryRemoteMode INTEGER, + efmOAMDiscoveryRemoteUnidirection INTEGER, + efmOAMDiscoveryRemoteLinkMonitor INTEGER, + efmOAMDiscoveryRemoteRemoteLoopback INTEGER, + efmOAMDiscoveryRemoteMibRetrieve INTEGER, + efmOAMDiscoveryRemoteMtuSize Integer32 + } + +efmOAMDiscoveryIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Interface index." + ::= { efmOAMDiscoveryEntry 1 } + +efmOAMDiscoveryLocalMode OBJECT-TYPE + SYNTAX INTEGER { active(1), passive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local mode." + ::= { efmOAMDiscoveryEntry 2 } + +efmOAMDiscoveryLocalUnidirection OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local unidirection." + ::= { efmOAMDiscoveryEntry 3 } + +efmOAMDiscoveryLocalLinkMonitor OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local link monitor." + ::= { efmOAMDiscoveryEntry 4 } + +efmOAMDiscoveryLocalRemoteLoopback OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local remote loopback." + ::= { efmOAMDiscoveryEntry 5 } + +efmOAMDiscoveryLocalMibRetrieve OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local mib retrieve." + ::= { efmOAMDiscoveryEntry 6} + +efmOAMDiscoveryLocalMtuSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local mtu size." + ::= { efmOAMDiscoveryEntry 7 } + +efmOAMDiscoveryLocalPortStatus OBJECT-TYPE + SYNTAX INTEGER { invalid(0), fault(1), active-send-local(2), passive-wait(3), send-local-remote(4),send-local-remote-ok(5), send-any(6) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local port status." + ::= { efmOAMDiscoveryEntry 8 } + +efmOAMDiscoveryLocalLoopbackStatus OBJECT-TYPE + SYNTAX INTEGER { local-loopback(1), remote-loopback(2), no-loopback(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local loopback status." + ::= { efmOAMDiscoveryEntry 9 } + +efmOAMDiscoveryLocalPduRevision OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local pdu revision." + ::= { efmOAMDiscoveryEntry 10 } + +efmOAMDiscoveryRemoteMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote mac addess." + ::= { efmOAMDiscoveryEntry 11 } + +efmOAMDiscoveryRemotePduRevision OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote pdu revision." + ::= { efmOAMDiscoveryEntry 12 } + +efmOAMDiscoveryRemoteVendor OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote vendor." + ::= { efmOAMDiscoveryEntry 13 } + +efmOAMDiscoveryRemoteMode OBJECT-TYPE + SYNTAX INTEGER { active(1), passive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote Mode." + ::= { efmOAMDiscoveryEntry 14 } + +efmOAMDiscoveryRemoteUnidirection OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote unidirection." + ::= { efmOAMDiscoveryEntry 15 } + +efmOAMDiscoveryRemoteLinkMonitor OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote link monitor." + ::= { efmOAMDiscoveryEntry 16 } + +efmOAMDiscoveryRemoteRemoteLoopback OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote loopback." + ::= { efmOAMDiscoveryEntry 17 } + +efmOAMDiscoveryRemoteMibRetrieve OBJECT-TYPE + SYNTAX INTEGER { supported(1), un-supported(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote mib retrieve." + ::= { efmOAMDiscoveryEntry 18 } + +efmOAMDiscoveryRemoteMtuSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote mtu size." + ::= { efmOAMDiscoveryEntry 19 } + + +efmOAMStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF EFMOAMStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Get efm OAM state on an interface." + ::= { efm 4 } + +efmOAMStateEntry OBJECT-TYPE + SYNTAX EFMOAMStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of efmOAMStateTable." + INDEX { efmOAMStateIfIndex } + ::= { efmOAMStateTable 1 } + +EFMOAMStateEntry ::= + SEQUENCE { + efmOAMStateIfIndex Integer32, + efmOAMStateLocalLinkStatus INTEGER, + efmOAMStateLocalPduStatus INTEGER, + efmOAMStateLocalSatisfied INTEGER, + efmOAMStateLocalStable INTEGER, + efmOAMStateRemoteStateValid INTEGER, + efmOAMStateRemoteStable INTEGER, + efmOAMStateLocalPaserState INTEGER, + efmOAMStateLocalMultiplexerState INTEGER, + efmOAMStateRemotePaserState INTEGER, + efmOAMStateRemoteMultiplexerState INTEGER + } + +efmOAMStateIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Interface index." + ::= { efmOAMStateEntry 1 } + +efmOAMStateLocalLinkStatus OBJECT-TYPE + SYNTAX INTEGER + { + ok(1), + fault(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local link status. + OK(1),FAULT(2)." + ::= { efmOAMStateEntry 2 } + +efmOAMStateLocalPduStatus OBJECT-TYPE + SYNTAX INTEGER + { + lfInfo(1), + rxInfo(2), + info(3), + any(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local pdu status. + LF_INFO(1),RX_INFO(2),INFO(3),ANY(4)." + ::= { efmOAMStateEntry 3 } + +efmOAMStateLocalSatisfied OBJECT-TYPE + SYNTAX INTEGER + { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local Satisfied. + True(1),False(2)." + ::= { efmOAMStateEntry 4 } + +efmOAMStateLocalStable OBJECT-TYPE + SYNTAX INTEGER + { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local Stable. + True(1),False(2)." + ::= { efmOAMStateEntry 5 } + +efmOAMStateRemoteStateValid OBJECT-TYPE + SYNTAX INTEGER + { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote State valid. + True(1),False(2)." + ::= { efmOAMStateEntry 6 } + +efmOAMStateRemoteStable OBJECT-TYPE + SYNTAX INTEGER + { + true(1), + false(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote Stable. + True(1),False(2)." + ::= { efmOAMStateEntry 7 } + +efmOAMStateLocalPaserState OBJECT-TYPE + SYNTAX INTEGER + { + forward(1), + loopback(2), + discard(3), + invalid(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local Parser State. + Forward(1),Loopback(2),Discard(3),Invalid(4)." + ::= { efmOAMStateEntry 8 } + +efmOAMStateLocalMultiplexerState OBJECT-TYPE + SYNTAX INTEGER + { + forward(1), + discard(2), + invalid(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local Multiplexer State. + Forward(1),Discard(2),Invalid(3)." + ::= { efmOAMStateEntry 9 } + +efmOAMStateRemotePaserState OBJECT-TYPE + SYNTAX INTEGER + { + forward(1), + loopback(2), + discard(3), + invalid(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote Parser State. + Forward(1),Loopback(2),Discard(3),Invalid(4)." + ::= { efmOAMStateEntry 10 } + +efmOAMStateRemoteMultiplexerState OBJECT-TYPE + SYNTAX INTEGER + { + forward(1), + discard(2), + invalid(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote Multiplexer State. + Forward(1),Discard(2),Invalid(3)." + ::= { efmOAMStateEntry 11 } + + +efmOAMStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF EFMOAMStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Get efm OAM statistic on an interface." + ::= { efm 5 } + +efmOAMStatisticEntry OBJECT-TYPE + SYNTAX EFMOAMStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of efmOAMStatisticTable." + INDEX { efmOAMStatisticIfIndex } + ::= { efmOAMStatisticTable 1 } + +EFMOAMStatisticEntry ::= + SEQUENCE { + efmOAMStatisticIfIndex Integer32, + efmOAMPduInfomationTx Integer32, + efmOAMPduInfomationRx Integer32, + efmOAMPduEvtNotificationTx Integer32, + efmOAMPduEvtNotificationRx Integer32, + efmOAMPduLoopbackControlTx Integer32, + efmOAMPduLoopbackControlRx Integer32, + efmOAMPduUnsupportedRx Integer32, + efmOAMLocalLinkFaultRecords Integer32, + efmOAMLocalDyingGaspRecords Integer32, + efmOAMLocalCriticalEvtRecords Integer32, + efmOAMRemoteLinkFaultRecords Integer32, + efmOAMRemoteDyingGaspRecords Integer32, + efmOAMRemoteCriticalEvtRecords Integer32, + efmOAMLocalErrorFrameRecords Integer32, + efmOAMLocalErrorFrameSecondRecords Integer32, + efmOAMRemoteErrorSymbolPeriodRecords Integer32, + efmOAMRemoteErrorFrameRecords Integer32, + efmOAMRemoteErrorFramePeriodRecords Integer32, + efmOAMRemoteErrorFrameSecondRecords Integer32, + efmOAMLoopbackTestPktsSent Integer32, + efmOAMLoopbackTestPktsRecv Integer32, + efmOAMLoopbackTestPercentValidRate Integer32 + } + +efmOAMStatisticIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Interface index." + ::= { efmOAMStatisticEntry 1 } + +efmOAMPduInfomationTx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Information OAMPDU Tx." + ::= { efmOAMStatisticEntry 2 } + +efmOAMPduInfomationRx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Information OAMPDU Rx." + ::= { efmOAMStatisticEntry 3 } + +efmOAMPduEvtNotificationTx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Event Notification OAMPDU Tx." + ::= { efmOAMStatisticEntry 4 } + +efmOAMPduEvtNotificationRx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Event Notification OAMPDU Rx." + ::= { efmOAMStatisticEntry 5 } + +efmOAMPduLoopbackControlTx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Loopback Control OAMPDU Tx." + ::= { efmOAMStatisticEntry 6 } + +efmOAMPduLoopbackControlRx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Loopback Control OAMPDU Rx." + ::= { efmOAMStatisticEntry 7 } + +efmOAMPduUnsupportedRx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unsupported OAMPDU Rx." + ::= { efmOAMStatisticEntry 8 } + +efmOAMLocalLinkFaultRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local ink Fault records." + ::= { efmOAMStatisticEntry 9 } + +efmOAMLocalDyingGaspRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local dying Gasp records." + ::= { efmOAMStatisticEntry 10 } + +efmOAMLocalCriticalEvtRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local critical Event records." + ::= { efmOAMStatisticEntry 11 } + +efmOAMRemoteLinkFaultRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote link Fault records." + ::= { efmOAMStatisticEntry 12 } + +efmOAMRemoteDyingGaspRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote dying Gasp records." + ::= { efmOAMStatisticEntry 13 } + +efmOAMRemoteCriticalEvtRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote critical Event records." + ::= { efmOAMStatisticEntry 14 } + +efmOAMLocalErrorFrameRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local errored Frame records." + ::= { efmOAMStatisticEntry 15 } + +efmOAMLocalErrorFrameSecondRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Local errored frame Seconds records." + ::= { efmOAMStatisticEntry 16 } + +efmOAMRemoteErrorSymbolPeriodRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote errored Symbol Period records." + ::= { efmOAMStatisticEntry 17 } + +efmOAMRemoteErrorFrameRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote errored Frame records." + ::= { efmOAMStatisticEntry 18 } + +efmOAMRemoteErrorFramePeriodRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote errored Frame Period records." + ::= { efmOAMStatisticEntry 19 } + +efmOAMRemoteErrorFrameSecondRecords OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Remote errored Frame Seconds records." + ::= { efmOAMStatisticEntry 20 } + +efmOAMLoopbackTestPktsSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Test packet is sended." + ::= { efmOAMStatisticEntry 21 } + +efmOAMLoopbackTestPktsRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Test packet is received." + ::= { efmOAMStatisticEntry 22 } + +efmOAMLoopbackTestPercentValidRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Percent valid rate." + ::= { efmOAMStatisticEntry 23 } + + +-- ptp OBJECT IDENTIFIER ::= { OID 85 } + +ptpGlobalInfo OBJECT IDENTIFIER ::= { ptp 1 } + +--ptpDomainIndex OBJECT-TYPE +-- SYNTAX Integer32 (0..255) +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION "Ptp domain index." +-- ::= { ptpGlobalInfo 1 } + +ptpPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp port number." + ::= { ptpGlobalInfo 1 } + +ptpUtcOffset OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp utc offset." + ::= { ptpGlobalInfo 2 } + +ptpLocalClockIdentity OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp local clock identiry." + ::= { ptpGlobalInfo 3 } + +ptpBMCRecMem OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc reciver member" + ::= { ptpGlobalInfo 4 } + +ptpBMCParentClockId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc parent clock id." + ::= { ptpGlobalInfo 5 } + +ptpBMCParentPortNum OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc parent port number." + ::= { ptpGlobalInfo 6 } + +ptpBMCMeanPathDelay OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc mean path delay." + ::= { ptpGlobalInfo 7 } + +ptpBMCOffsetFromMaster OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc offset from master." + ::= { ptpGlobalInfo 8 } + +ptpBMCStepRemoved OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc step removed." + ::= { ptpGlobalInfo 9 } + +ptpBMCGMClockId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm clock id." + ::= { ptpGlobalInfo 10 } + +ptpBMCGMPriority1 OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm priority1." + ::= { ptpGlobalInfo 11 } + +ptpBMCGMPriority2 OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm priority2." + ::= { ptpGlobalInfo 12 } + +ptpBMCGMClockAccuracy OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm clock accuracy." + ::= { ptpGlobalInfo 13 } + +ptpBMCGMClockClass OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm clock class." + ::= { ptpGlobalInfo 14 } + +ptpBMCGMTimeSource OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm time source." + ::= { ptpGlobalInfo 15 } + +ptpBMCGMUtcOffset OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm utc offset." + ::= { ptpGlobalInfo 16 } + +ptpBMCGMUTCOffsetValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm utc offset valid." + ::= { ptpGlobalInfo 17 } + +ptpBMCGMTimeScale OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm time scale." + ::= { ptpGlobalInfo 18 } + +ptpBMCGMTimeTraceable OBJECT-TYPE + SYNTAX INTEGER{true(1),false(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm time trace able." + DEFVAL { false } + ::= { ptpGlobalInfo 19 } + +ptpBMCGMLeap59 OBJECT-TYPE + SYNTAX INTEGER{true(1),false(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm leap59." + DEFVAL { false } + ::= { ptpGlobalInfo 20 } + +ptpBMCGMLeap61 OBJECT-TYPE + SYNTAX INTEGER{true(1),false(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm leap61." + DEFVAL { false } + ::= { ptpGlobalInfo 21 } + +ptpBMCGMFrequencyTraceable OBJECT-TYPE + SYNTAX INTEGER{true(1),false(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp bmc gm frequency traceable." + DEFVAL { false } + ::= { ptpGlobalInfo 22 } + + +ptpClearStatistics OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Clear all statistics for the ptp. 0 mean clear all ptp interface statistics." + ::= { ptpGlobalInfo 23 } + +ptpDeviceType OBJECT-TYPE + SYNTAX INTEGER + { + oc(0), + bc (1), + e2etc(2), + p2ptc(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The type of the clock. oc(0), bc(1), e2etc(2), p2ptc(3). " + DEFVAL { bc } + ::= { ptpGlobalInfo 24 } + +ptpGlobalEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable Precision Time Protocol (IEEE1588). enable(1), disable(2). " + DEFVAL { disable } + ::= { ptpGlobalInfo 25 } + +ptpDomain OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The domain attribute of the local clock. Range 0~255. " + DEFVAL { 0 } + ::= { ptpGlobalInfo 26 } + +ptpTcPrimaryDomain OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The primary syntonization domain. Range 0~255. " + DEFVAL { 0 } + ::= { ptpGlobalInfo 27 } + +ptpSlaveOnly OBJECT-TYPE + SYNTAX INTEGER + { + disable(2), + enable (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Slave-only clock can never enter the MASTER state. Disable(2), Enable(1). " + DEFVAL { disable } + ::= { ptpGlobalInfo 28 } + +ptpPriority1 OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The priority1 attribute of the local clock. Range 0~255. " + DEFVAL { 128 } + ::= { ptpGlobalInfo 29 } + +ptpPriority2 OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The priority2 attribute of the local clock. Range 0~255. " + DEFVAL { 128 } + ::= { ptpGlobalInfo 30 } + +ptpClockAccuracy OBJECT-TYPE + SYNTAX Integer32 (1..19) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The clock accuracy characterizes a clock for the purpose of the best master clock(BMC) algorithm. + Value: + 1: The time is accurate to within 25 ns. + 2: The time is accurate to within 100 ns. + 3: The time is accurate to within 250 ns + 4: The time is accurate to within 1 us. + 5: The time is accurate to within 2.5 us. + 6: The time is accurate to within 10 us. + 7: The time is accurate to within 25 us. + 8: The time is accurate to within 100 us. + 9: The time is accurate to within 250 us. + 10: The time is accurate to within 1 ms. + 11: The time is accurate to within 2.5 ms. + 12: The time is accurate to within 10 ms. + 13: The time is accurate to within 25 ms. + 14: The time is accurate to within 100 ms. + 15: The time is accurate to within 250 ms. + 16: The time is accurate to within 1 s. + 17: The time is accurate to within 10 s. + 18: The time is accurate to > 10 s. + 19: The time is accurate to unknown. + " +-- DEFVAL { 0xFE } + ::= { ptpGlobalInfo 31 } + +ptpClockClass OBJECT-TYPE + SYNTAX INTEGER + { + class6(6), + class7(7), + class13(13), + class14(14), + class52(52), + class58(58), + class187(187), + class193(193), + class248(248) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The clockClass attribute of an ordinary or boundary clock denotes the traceability of the time or frequency distributed by the grandmaster clock. Value only is 6,7,13,14,52,58,187,193,248." +-- DEFVAL { 0xFE } + ::= { ptpGlobalInfo 32 } + +ptpLeap59 OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The last minute of the current UTC day contains 59 seconds. Disable(2), Enable(1). " + DEFVAL { disable } + ::= { ptpGlobalInfo 33 } + +ptpLeap61 OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The last minute of the current UTC day contains 61 seconds. Disable(2), Enable(1). " + DEFVAL { disable } + ::= { ptpGlobalInfo 34 } + +ptpTimeSource OBJECT-TYPE + SYNTAX INTEGER + { + atomic-clock(1), + gps(2), + internal-oscillator(3), + ptp(4), + ntp(5), + hand-set(6), + other(7), + terrestrial-radio(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The attribute indicates the source of time used by the local clock. + atomic-clock(1), + gps(2), + internal-oscillator(3), + ptp(4), + ntp(5), + hand-set(6), + other(7), + terrestrial-radio(8)." + DEFVAL { internal-oscillator } + ::= { ptpGlobalInfo 35 } + +ptpClockTodOutput OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable clock tod output. enable(1), disable(2). " + DEFVAL { disable } + ::= { ptpGlobalInfo 36 } + +ptpClockSyncInterfaceOutput OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable clock sync interface output. enable(1), disable(2). " + DEFVAL { disable } + ::= { ptpGlobalInfo 37 } + +ptpTodPulseDelayCorrection OBJECT-TYPE + SYNTAX Integer32 (1..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ptp tod pulse delay correction. Range 1~1000000. " + DEFVAL { 1 } + ::= { ptpGlobalInfo 38 } + +-- ## 1.2 show ptp interface + +ptpIfConfigureTable OBJECT-TYPE + SYNTAX SEQUENCE OF PtpIfConfigureEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of Monitor link group." + ::= { ptp 2 } + +ptpIfConfigureEntry OBJECT-TYPE + SYNTAX PtpIfConfigureEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Monitor link group." + INDEX { ptpIfIndex} + ::= { ptpIfConfigureTable 1 } + +PtpIfConfigureEntry ::= + SEQUENCE + { + ptpIfIndex + Integer32, + ptpAnnounceInterval + Integer32, + ptpSyncInterval + Integer32, + ptpMinDelayreqInterval + Integer32, + ptpMinPdelayreqInterval + Integer32, + ptpAnnounceReceiptTimeout + Integer32, + ptpDelayMechanism + INTEGER, + ptpEnable + INTEGER, + ptpAsymmetryCorrection + Integer32, + ptpProtocolMac + INTEGER, + ptpUdpSrcIp + OCTET STRING, + ptpVlanId + Integer32, + ptpCos + Integer32, + ptpIfName + OCTET STRING, + ptpIfState + INTEGER, + ptpIfStep + Integer32, + ptpIfPortId + OCTET STRING, + ptpIfRcvAnn + Integer32, + ptpIfRcvDelayReq + Integer32, + ptpIfRcvDelayResp + Integer32, + ptpIfRcvFollowUp + Integer32, + ptpIfRcvUnknown + Integer32, + ptpIfRcvSync + Integer32, + ptpIfRcvPDelayReq + Integer32, + ptpIfRcvPDelayResp + Integer32, + ptpIfRcvPDelayRespFowllowUp + Integer32, + ptpIfSendAnn + Integer32, + ptpIfSendDelayReq + Integer32, + ptpIfSendDelayResp + Integer32, + ptpIfSendFollowUp + Integer32, + ptpIfSendUnknown + Integer32, + ptpIfSendSync + Integer32, + ptpIfSendPDelayReq + Integer32, + ptpIfSendPDelayResp + Integer32, + ptpIfSendPDelayRespFowllowUp + Integer32, + ptpIfDiscardAnn + Integer32, + ptpIfDiscardDelayReq + Integer32, + ptpIfDiscardDelayResp + Integer32, + ptpIfDiscardFollowUp + Integer32, + ptpIfDiscardUnknown + Integer32, + ptpIfDiscardSync + Integer32, + ptpIfDiscardPDelayReq + Integer32, + ptpIfDiscardPDelayResp + Integer32, + ptpIfDiscardPDelayRespFowllowUp + Integer32, + ptpIfIngressLatency + Integer32, + ptpIfEgressLatency + Integer32 + } + +ptpIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..1024) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of ptp interface." + ::= { ptpIfConfigureEntry 1 } + +ptpAnnounceInterval OBJECT-TYPE + SYNTAX Integer32 (-1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mean announce interval. Range -1~10. " + DEFVAL { 1 } + ::= { ptpIfConfigureEntry 2 } + +ptpSyncInterval OBJECT-TYPE + SYNTAX Integer32 (-1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mean sync interval for multicast messages. Range -1~10. " + DEFVAL { 1 } + ::= { ptpIfConfigureEntry 3 } + +ptpMinDelayreqInterval OBJECT-TYPE + SYNTAX Integer32 (-1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum delay request interval for multicast messages. Range -1~10. " + DEFVAL { 0 } + ::= { ptpIfConfigureEntry 4 } + +ptpMinPdelayreqInterval OBJECT-TYPE + SYNTAX Integer32 (-1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum peer delay request interval for multicast messages. Range -1~10. " + DEFVAL { 0 } + ::= { ptpIfConfigureEntry 5 } + +ptpAnnounceReceiptTimeout OBJECT-TYPE + SYNTAX Integer32 (3..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of announce interval that has to pass without receipt of an Announce message before the occurrence of the event ANNOUNCE_RECEIPT_TIMEOUT_EXPIRES. Range 3~255. " + DEFVAL { 4 } + ::= { ptpIfConfigureEntry 6 } + +ptpDelayMechanism OBJECT-TYPE + SYNTAX INTEGER + { + normal (1), + peer (2), + disable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The propagation delay measuring option used by the port in computing meanPathDelay. normal(1).peer(2).disable(3)." + DEFVAL { normal } + ::= { ptpIfConfigureEntry 7 } + +ptpEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(2), + enable (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable Precision Time Protocol (IEEE1588). Disable(2), Enable(1). " + DEFVAL { disable } + ::= { ptpIfConfigureEntry 8 } + +ptpAsymmetryCorrection OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The asymmetry correction of the path. Range -2000000 - 2000000. " + DEFVAL { 0 } + ::= { ptpIfConfigureEntry 9 } + +ptpProtocolMac OBJECT-TYPE + SYNTAX INTEGER + { + enable (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transport PTP messages directly over Ethernet frames as specified in IEEE Std 802.3-2005.Note: IF set value (1), ptpUdpSrcIp(11) will invalid. " + ::= { ptpIfConfigureEntry 10 } + +ptpUdpSrcIp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transport PTP messages over the User Datagram Protocol (UDP) as defined in IETF RFC 768 (1980), and Internet Protocol version 4 (IPv4), as defined in IETF RFC 791 (1981). Note: IF set value, ptpProtocolMac(10) will invalid. " + ::= { ptpIfConfigureEntry 11 } + +ptpVlanId OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Vlan ID. Range 1~4094. -1 mean delete." + ::= { ptpIfConfigureEntry 12 } + +ptpCos OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Class of Services. Range 0~7. -1 mean delete." + ::= { ptpIfConfigureEntry 13 } + +ptpIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ptp interface name. " + ::= { ptpIfConfigureEntry 14 } + +ptpIfState OBJECT-TYPE + SYNTAX INTEGER + { + normal(0), + initializing(1), + faulty(2), + disabled(3), + listening(4), + premaster(5), + master(6), + passive(7), + uncalibrated(8), + slave(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface state." + ::= { ptpIfConfigureEntry 15 } + +ptpIfStep OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface step." + ::= { ptpIfConfigureEntry 16 } + +ptpIfPortId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface id." + ::= { ptpIfConfigureEntry 17 } + +ptpIfRcvAnn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive announce packet." + ::= { ptpIfConfigureEntry 18 } + +ptpIfRcvDelayReq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive delay packet." + ::= { ptpIfConfigureEntry 19 } + +ptpIfRcvDelayResp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive delay response packet." + ::= { ptpIfConfigureEntry 20 } + +ptpIfRcvFollowUp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive follow up packet." + ::= { ptpIfConfigureEntry 21 } + +ptpIfRcvUnknown OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive unknown packet." + ::= { ptpIfConfigureEntry 22 } + +ptpIfRcvSync OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive sync packet." + ::= { ptpIfConfigureEntry 23 } + +ptpIfRcvPDelayReq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive peer delay packet." + ::= { ptpIfConfigureEntry 24 } + +ptpIfRcvPDelayResp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive delay response packet." + ::= { ptpIfConfigureEntry 25 } + +ptpIfRcvPDelayRespFowllowUp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface receive delay response follow up packet." + ::= { ptpIfConfigureEntry 26 } + +ptpIfSendAnn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send announce packet." + ::= { ptpIfConfigureEntry 27 } + +ptpIfSendDelayReq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send delay request packet." + ::= { ptpIfConfigureEntry 28 } + +ptpIfSendDelayResp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send delay response packet." + ::= { ptpIfConfigureEntry 29 } + +ptpIfSendFollowUp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send follow up packet." + ::= { ptpIfConfigureEntry 30 } + +ptpIfSendUnknown OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send unknown packet." + ::= { ptpIfConfigureEntry 31 } + +ptpIfSendSync OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send sync packet." + ::= { ptpIfConfigureEntry 32 } + +ptpIfSendPDelayReq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send peer delay request packet." + ::= { ptpIfConfigureEntry 33 } + +ptpIfSendPDelayResp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send peer delay response packet." + ::= { ptpIfConfigureEntry 34 } + +ptpIfSendPDelayRespFowllowUp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface send peer delay response follow up packet." + ::= { ptpIfConfigureEntry 35 } + +ptpIfDiscardAnn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard announce packet." + ::= { ptpIfConfigureEntry 36 } + +ptpIfDiscardDelayReq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard delay request packet." + ::= { ptpIfConfigureEntry 37 } + +ptpIfDiscardDelayResp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard delay response packet." + ::= { ptpIfConfigureEntry 38 } + +ptpIfDiscardFollowUp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard follow up packet." + ::= { ptpIfConfigureEntry 39 } + +ptpIfDiscardUnknown OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard unknown packet." + ::= { ptpIfConfigureEntry 40 } + +ptpIfDiscardSync OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard sync packet." + ::= { ptpIfConfigureEntry 41 } + +ptpIfDiscardPDelayReq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard delay request packet." + ::= { ptpIfConfigureEntry 42 } + +ptpIfDiscardPDelayResp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard peer delay response packet." + ::= { ptpIfConfigureEntry 43 } + +ptpIfDiscardPDelayRespFowllowUp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Ptp interface discard peer delay response follow up packet." + ::= { ptpIfConfigureEntry 44 } + +ptpIfIngressLatency OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ptn ingress latency. Range 0~65535. " + DEFVAL { 0 } + ::= { ptpIfConfigureEntry 45 } + +ptpIfEgressLatency OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ptp egress latency. Range 0~65535. " + DEFVAL { 0 } + ::= { ptpIfConfigureEntry 46 } + + +-- ## 1.3 show ptp foreign-master + + +ptpForeignMasterTable OBJECT-TYPE + SYNTAX SEQUENCE OF PtpForeignMasterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of Monitor link group." + ::= { ptp 3 } + +ptpForeignMasterEntry OBJECT-TYPE + SYNTAX PtpForeignMasterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of Monitor link group." + INDEX { ptpFMIndex, ptpFMNodeIndex} + ::= { ptpForeignMasterTable 1 } + +PtpForeignMasterEntry ::= + SEQUENCE + { + ptpFMIndex + Integer32, + ptpFMNodeIndex + Integer32, + ptpFMBest + TruthValue, + ptpFMClockID + OCTET STRING, + ptpFMPortNum + Integer32, + ptpFMQualification + Integer32, + ptpFMIfName + OCTET STRING + } + +ptpFMIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ptp foreign master interface index. " + ::= { ptpForeignMasterEntry 1 } + +ptpFMNodeIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ptp foreign master node index. " + ::= { ptpForeignMasterEntry 2 } + +ptpFMBest OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of foreign master: true(1): best.false(2): not best." + ::= { ptpForeignMasterEntry 3 } + +ptpFMClockID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ptp foreign master clock id. " + ::= { ptpForeignMasterEntry 4 } + +ptpFMPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ptp foreign master port num. " + ::= { ptpForeignMasterEntry 5 } + +ptpFMQualification OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ptp foreign master qualification. " + ::= { ptpForeignMasterEntry 6 } + +ptpFMIfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ptp foreign master interface name. " + ::= { ptpForeignMasterEntry 7 } + +ptpNotifications OBJECT IDENTIFIER ::= { ptp 100 } + +ptpMasterChange NOTIFICATION-TYPE + OBJECTS { ptpFMClockID } + STATUS current + DESCRIPTION + "This trap will be generated when timing + reference changes." + ::= {ptpNotifications 1} + +ptpIfStateChange NOTIFICATION-TYPE + OBJECTS { ptpIfState } + STATUS current + DESCRIPTION + "This trap will be generated when ptp state + of an interface changes." + ::= {ptpNotifications 2} + +ptpMasterClockAccuracyChange NOTIFICATION-TYPE + OBJECTS { ptpClockAccuracy } + STATUS current + DESCRIPTION + "This trap will be generated when clock accuracy + of the master changes." + ::= {ptpNotifications 3} + +--pm OBJECT IDENTIFIER ::= { OID 90 } + +pmThresholdTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains all pm threshold information." + ::= { pm 1 } + +pmThresholdEntry OBJECT-TYPE + SYNTAX PMThresholdEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of all pm threshold information." + INDEX { pmThresholdIndex } + ::= { pmThresholdTable 1 } + +PMThresholdEntry ::= + SEQUENCE + { + pmThresholdIndex INTEGER, + pmThreshold15mValue OCTET STRING, + pmThreshold1hValue OCTET STRING, + pmThreshold1dValue OCTET STRING + } + +pmThresholdIndex OBJECT-TYPE + SYNTAX INTEGER + { + unit-temperature-min(1), + unit-temperature-max(2), + sfp-rx-power-min(3), + sfp-rx-power-max(4), + sfp-tx-power-min(5), + sfp-tx-power-max(6), + if-dropped-events(7), + if-input-packets(8), + if-input-bytes(9), + if-input-broadcasts(10), + if-input-multicasts(11), + if-crc-errors(12), + if-collisions(13), + if-undersized-packets(14), + if-oversized-packets(15), + if-fragments(16), + if-jabbers(17), + if-packet-64(18), + if-packet-65-127(19), + if-packet-128-255(20), + if-packet-256-511(21), + if-packet-512-1023(22), + if-packet-1024(23), + if-output-packets(24), + if-output-bytes(25), + lsp-pe-out-packets(26), + lsp-pe-out-bytes(27), + lsp-p-east-ingress-packets(28), + lsp-p-east-ingress-bytes(29), + lsp-p-west-ingress-packets(30), + lsp-p-west-ingress-bytes(31), + vpws-ingress-packets(32), + vpws-ingress-bytes(33), + vpws-egress-packets(34), + vpws-egress-bytes(35), + vpls-ingress-packets(36), + vpls-ingress-bytes(37), + vpls-egress-packets(38), + vpls-egress-bytes(39) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of pm types." + ::= { pmThresholdEntry 1 } + +pmThreshold15mValue OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Threshold for 15min period." + ::= { pmThresholdEntry 2 } + +pmThreshold1hValue OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Threshold for 1hour period." + ::= { pmThresholdEntry 3 } + +pmThreshold1dValue OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Threshold for 1day period." + ::= { pmThresholdEntry 4 } + +pmUnitTempr OBJECT IDENTIFIER ::= { pm 100 } + +pmUnitTemprCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMUnitTemprCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 1 } + +pmUnitTemprCurr15mEntry OBJECT-TYPE + SYNTAX PMUnitTemprCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmUnitTemprCurr15mIndex } + ::= { pmUnitTemprCurr15mTable 1 } + +PMUnitTemprCurr15mEntry ::= + SEQUENCE + { + pmUnitTemprCurr15mIndex Integer32, + pmUnitTemprCurr15mId OCTET STRING, + pmUnitTemprCurr15mUnitType INTEGER, + pmUnitTemprCurr15mAverage Counter64, + pmUnitTemprCurr15mMin Counter64, + pmUnitTemprCurr15mMax Counter64, + pmUnitTemprCurr15mStartTime DateAndTime, + pmUnitTemprCurr15mStopTime DateAndTime + } + +pmUnitTemprCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmUnitTemprCurr15mEntry 1 } + +pmUnitTemprCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit sensor name." + ::= { pmUnitTemprCurr15mEntry 2 } + +pmUnitTemprCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmUnitTemprCurr15mEntry 3 } + +pmUnitTemprCurr15mAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of average unit temperature." + ::= { pmUnitTemprCurr15mEntry 4 } + +pmUnitTemprCurr15mMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of minimum unit temperature." + ::= { pmUnitTemprCurr15mEntry 5 } + +pmUnitTemprCurr15mMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of maximum unit temperature." + ::= { pmUnitTemprCurr15mEntry 6 } + +pmUnitTemprCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmUnitTemprCurr15mEntry 100 } + +pmUnitTemprCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmUnitTemprCurr15mEntry 101 } + +pmUnitTemprPrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMUnitTemprPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 2 } + +pmUnitTemprPrev15mEntry OBJECT-TYPE + SYNTAX PMUnitTemprPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmUnitTemprPrev15mIndex } + ::= { pmUnitTemprPrev15mTable 1 } + +PMUnitTemprPrev15mEntry ::= + SEQUENCE + { + pmUnitTemprPrev15mIndex Integer32, + pmUnitTemprPrev15mId OCTET STRING, + pmUnitTemprPrev15mUnitType INTEGER, + pmUnitTemprPrev15mAverage Counter64, + pmUnitTemprPrev15mMin Counter64, + pmUnitTemprPrev15mMax Counter64, + pmUnitTemprPrev15mStartTime DateAndTime, + pmUnitTemprPrev15mStopTime DateAndTime + } + +pmUnitTemprPrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmUnitTemprPrev15mEntry 1 } + +pmUnitTemprPrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmUnitTemprPrev15mEntry 2 } + +pmUnitTemprPrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmUnitTemprPrev15mEntry 3 } + +pmUnitTemprPrev15mAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of average unit temperature." + ::= { pmUnitTemprPrev15mEntry 4 } + +pmUnitTemprPrev15mMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of minimum unit temperature." + ::= { pmUnitTemprPrev15mEntry 5 } + +pmUnitTemprPrev15mMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of maximum unit temperature." + ::= { pmUnitTemprPrev15mEntry 6 } + +pmUnitTemprPrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmUnitTemprPrev15mEntry 100 } + +pmUnitTemprPrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmUnitTemprPrev15mEntry 101 } + + +pmUnitTemprCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMUnitTemprCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 3 } + +pmUnitTemprCurr1hEntry OBJECT-TYPE + SYNTAX PMUnitTemprCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmUnitTemprCurr1hIndex } + ::= { pmUnitTemprCurr1hTable 1 } + +PMUnitTemprCurr1hEntry ::= + SEQUENCE + { + pmUnitTemprCurr1hIndex Integer32, + pmUnitTemprCurr1hId OCTET STRING, + pmUnitTemprCurr1hUnitType INTEGER, + pmUnitTemprCurr1hAverage Counter64, + pmUnitTemprCurr1hMin Counter64, + pmUnitTemprCurr1hMax Counter64, + pmUnitTemprCurr1hStartTime DateAndTime, + pmUnitTemprCurr1hStopTime DateAndTime + } + +pmUnitTemprCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmUnitTemprCurr1hEntry 1 } + +pmUnitTemprCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit sensor name." + ::= { pmUnitTemprCurr1hEntry 2 } + +pmUnitTemprCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmUnitTemprCurr1hEntry 3 } + +pmUnitTemprCurr1hAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of average unit temperature." + ::= { pmUnitTemprCurr1hEntry 4 } + +pmUnitTemprCurr1hMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of minimum unit temperature." + ::= { pmUnitTemprCurr1hEntry 5 } + +pmUnitTemprCurr1hMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of maximum unit temperature." + ::= { pmUnitTemprCurr1hEntry 6 } + +pmUnitTemprCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmUnitTemprCurr1hEntry 100 } + +pmUnitTemprCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmUnitTemprCurr1hEntry 101 } + +pmUnitTemprPrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMUnitTemprPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 4 } + +pmUnitTemprPrev1hEntry OBJECT-TYPE + SYNTAX PMUnitTemprPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmUnitTemprPrev1hIndex } + ::= { pmUnitTemprPrev1hTable 1 } + +PMUnitTemprPrev1hEntry ::= + SEQUENCE + { + pmUnitTemprPrev1hIndex Integer32, + pmUnitTemprPrev1hId OCTET STRING, + pmUnitTemprPrev1hUnitType INTEGER, + pmUnitTemprPrev1hAverage Counter64, + pmUnitTemprPrev1hMin Counter64, + pmUnitTemprPrev1hMax Counter64, + pmUnitTemprPrev1hStartTime DateAndTime, + pmUnitTemprPrev1hStopTime DateAndTime + } + +pmUnitTemprPrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmUnitTemprPrev1hEntry 1 } + +pmUnitTemprPrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmUnitTemprPrev1hEntry 2 } + +pmUnitTemprPrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmUnitTemprPrev1hEntry 3 } + +pmUnitTemprPrev1hAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of average unit temperature." + ::= { pmUnitTemprPrev1hEntry 4 } + +pmUnitTemprPrev1hMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of minimum unit temperature." + ::= { pmUnitTemprPrev1hEntry 5 } + +pmUnitTemprPrev1hMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of maximum unit temperature." + ::= { pmUnitTemprPrev1hEntry 6 } + +pmUnitTemprPrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmUnitTemprPrev1hEntry 100 } + +pmUnitTemprPrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmUnitTemprPrev1hEntry 101 } + +pmUnitTemprCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMUnitTemprCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 5 } + +pmUnitTemprCurr1dEntry OBJECT-TYPE + SYNTAX PMUnitTemprCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmUnitTemprCurr1dIndex } + ::= { pmUnitTemprCurr1dTable 1 } + +PMUnitTemprCurr1dEntry ::= + SEQUENCE + { + pmUnitTemprCurr1dIndex Integer32, + pmUnitTemprCurr1dId OCTET STRING, + pmUnitTemprCurr1dUnitType INTEGER, + pmUnitTemprCurr1dAverage Counter64, + pmUnitTemprCurr1dMin Counter64, + pmUnitTemprCurr1dMax Counter64, + pmUnitTemprCurr1dStartTime DateAndTime, + pmUnitTemprCurr1dStopTime DateAndTime + } + +pmUnitTemprCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmUnitTemprCurr1dEntry 1 } + +pmUnitTemprCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmUnitTemprCurr1dEntry 2 } + +pmUnitTemprCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmUnitTemprCurr1dEntry 3 } + +pmUnitTemprCurr1dAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of average unit temperature." + ::= { pmUnitTemprCurr1dEntry 4 } + +pmUnitTemprCurr1dMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of minimum unit temperature." + ::= { pmUnitTemprCurr1dEntry 5 } + +pmUnitTemprCurr1dMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of maximum unit temperature." + ::= { pmUnitTemprCurr1dEntry 6 } + +pmUnitTemprCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day start time." + ::= { pmUnitTemprCurr1dEntry 100 } + +pmUnitTemprCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day stop time." + ::= { pmUnitTemprCurr1dEntry 101 } + +pmUnitTemprPrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMUnitTemprPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 6 } + +pmUnitTemprPrev1dEntry OBJECT-TYPE + SYNTAX PMUnitTemprPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmUnitTemprPrev1dIndex } + ::= { pmUnitTemprPrev1dTable 1 } + +PMUnitTemprPrev1dEntry ::= + SEQUENCE + { + pmUnitTemprPrev1dIndex Integer32, + pmUnitTemprPrev1dId OCTET STRING, + pmUnitTemprPrev1dUnitType INTEGER, + pmUnitTemprPrev1dAverage Counter64, + pmUnitTemprPrev1dMin Counter64, + pmUnitTemprPrev1dMax Counter64, + pmUnitTemprPrev1dStartTime DateAndTime, + pmUnitTemprPrev1dStopTime DateAndTime + } + +pmUnitTemprPrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmUnitTemprPrev1dEntry 1 } + +pmUnitTemprPrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmUnitTemprPrev1dEntry 2 } + +pmUnitTemprPrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmUnitTemprPrev1dEntry 3 } + +pmUnitTemprPrev1dAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of average unit temperature." + ::= { pmUnitTemprPrev1dEntry 4 } + +pmUnitTemprPrev1dMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of minimu unit temperature." + ::= { pmUnitTemprPrev1dEntry 5 } + +pmUnitTemprPrev1dMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of maximum unit temperature." + ::= { pmUnitTemprPrev1dEntry 6 } + +pmUnitTemprPrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day start time." + ::= { pmUnitTemprPrev1dEntry 100 } + +pmUnitTemprPrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day stop time." + ::= { pmUnitTemprPrev1dEntry 101 } + +pmTcaUnitTemprMin15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaUnitTemprMin15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 7 } + +pmTcaUnitTemprMin15mEntry OBJECT-TYPE + SYNTAX PMTcaUnitTemprMin15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaUnitTemprMin15mIndex } + ::= { pmTcaUnitTemprMin15mTable 1 } + +PMTcaUnitTemprMin15mEntry ::= + SEQUENCE + { + pmTcaUnitTemprMin15mIndex Integer32, + pmTcaUnitTemprMin15mId OCTET STRING, + pmTcaUnitTemprMin15mUnitType INTEGER, + pmTcaUnitTemprMin15mCnt Counter64, + pmTcaUnitTemprMin15mThreshold Counter64, + pmTcaUnitTemprMin15mOccurTime DateAndTime + } + +pmTcaUnitTemprMin15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaUnitTemprMin15mEntry 1 } + +pmTcaUnitTemprMin15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmTcaUnitTemprMin15mEntry 2 } + +pmTcaUnitTemprMin15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaUnitTemprMin15mEntry 3 } + +pmTcaUnitTemprMin15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of unit temperature." + ::= { pmTcaUnitTemprMin15mEntry 4 } + +pmTcaUnitTemprMin15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of unit temperature." + ::= { pmTcaUnitTemprMin15mEntry 5 } + +pmTcaUnitTemprMin15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaUnitTemprMin15mEntry 6 } + +pmTcaUnitTemprMin1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaUnitTemprMin1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 8 } + +pmTcaUnitTemprMin1hEntry OBJECT-TYPE + SYNTAX PMTcaUnitTemprMin1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaUnitTemprMin1hIndex } + ::= { pmTcaUnitTemprMin1hTable 1 } + +PMTcaUnitTemprMin1hEntry ::= + SEQUENCE + { + pmTcaUnitTemprMin1hIndex Integer32, + pmTcaUnitTemprMin1hId OCTET STRING, + pmTcaUnitTemprMin1hUnitType INTEGER, + pmTcaUnitTemprMin1hCnt Counter64, + pmTcaUnitTemprMin1hThreshold Counter64, + pmTcaUnitTemprMin1hOccurTime DateAndTime + } + +pmTcaUnitTemprMin1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaUnitTemprMin1hEntry 1 } + +pmTcaUnitTemprMin1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmTcaUnitTemprMin1hEntry 2 } + +pmTcaUnitTemprMin1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaUnitTemprMin1hEntry 3 } + +pmTcaUnitTemprMin1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of unit temperature." + ::= { pmTcaUnitTemprMin1hEntry 4 } + +pmTcaUnitTemprMin1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of unit temperature." + ::= { pmTcaUnitTemprMin1hEntry 5 } + +pmTcaUnitTemprMin1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaUnitTemprMin1hEntry 6 } + +pmTcaUnitTemprMin1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaUnitTemprMin1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 9 } + +pmTcaUnitTemprMin1dEntry OBJECT-TYPE + SYNTAX PMTcaUnitTemprMin1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaUnitTemprMin1dIndex } + ::= { pmTcaUnitTemprMin1dTable 1 } + +PMTcaUnitTemprMin1dEntry ::= + SEQUENCE + { + pmTcaUnitTemprMin1dIndex Integer32, + pmTcaUnitTemprMin1dId OCTET STRING, + pmTcaUnitTemprMin1dUnitType INTEGER, + pmTcaUnitTemprMin1dCnt Counter64, + pmTcaUnitTemprMin1dThreshold Counter64, + pmTcaUnitTemprMin1dOccurTime DateAndTime + } + +pmTcaUnitTemprMin1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaUnitTemprMin1dEntry 1 } + +pmTcaUnitTemprMin1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmTcaUnitTemprMin1dEntry 2 } + +pmTcaUnitTemprMin1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaUnitTemprMin1dEntry 3 } + +pmTcaUnitTemprMin1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of unit temperature." + ::= { pmTcaUnitTemprMin1dEntry 4 } + +pmTcaUnitTemprMin1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of unit temperature." + ::= { pmTcaUnitTemprMin1dEntry 5 } + +pmTcaUnitTemprMin1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaUnitTemprMin1dEntry 6 } + +pmTcaUnitTemprMax15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaUnitTemprMax15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 10 } + +pmTcaUnitTemprMax15mEntry OBJECT-TYPE + SYNTAX PMTcaUnitTemprMax15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaUnitTemprMax15mIndex } + ::= { pmTcaUnitTemprMax15mTable 1 } + +PMTcaUnitTemprMax15mEntry ::= + SEQUENCE + { + pmTcaUnitTemprMax15mIndex Integer32, + pmTcaUnitTemprMax15mId OCTET STRING, + pmTcaUnitTemprMax15mUnitType INTEGER, + pmTcaUnitTemprMax15mCnt Counter64, + pmTcaUnitTemprMax15mThreshold Counter64, + pmTcaUnitTemprMax15mOccurTime DateAndTime + } + +pmTcaUnitTemprMax15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaUnitTemprMax15mEntry 1 } + +pmTcaUnitTemprMax15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmTcaUnitTemprMax15mEntry 2 } + +pmTcaUnitTemprMax15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaUnitTemprMax15mEntry 3 } + +pmTcaUnitTemprMax15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of unit temperature." + ::= { pmTcaUnitTemprMax15mEntry 4 } + +pmTcaUnitTemprMax15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of unit temperature." + ::= { pmTcaUnitTemprMax15mEntry 5 } + +pmTcaUnitTemprMax15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaUnitTemprMax15mEntry 6 } + +pmTcaUnitTemprMax1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaUnitTemprMax1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 11 } + +pmTcaUnitTemprMax1hEntry OBJECT-TYPE + SYNTAX PMTcaUnitTemprMax1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaUnitTemprMax1hIndex } + ::= { pmTcaUnitTemprMax1hTable 1 } + +PMTcaUnitTemprMax1hEntry ::= + SEQUENCE + { + pmTcaUnitTemprMax1hIndex Integer32, + pmTcaUnitTemprMax1hId OCTET STRING, + pmTcaUnitTemprMax1hUnitType INTEGER, + pmTcaUnitTemprMax1hCnt Counter64, + pmTcaUnitTemprMax1hThreshold Counter64, + pmTcaUnitTemprMax1hOccurTime DateAndTime + } + +pmTcaUnitTemprMax1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaUnitTemprMax1hEntry 1 } + +pmTcaUnitTemprMax1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sensor name." + ::= { pmTcaUnitTemprMax1hEntry 2 } + +pmTcaUnitTemprMax1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaUnitTemprMax1hEntry 3 } + +pmTcaUnitTemprMax1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of unit temperature." + ::= { pmTcaUnitTemprMax1hEntry 4 } + +pmTcaUnitTemprMax1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of unit temperature." + ::= { pmTcaUnitTemprMax1hEntry 5 } + +pmTcaUnitTemprMax1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaUnitTemprMax1hEntry 6 } + +pmTcaUnitTemprMax1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaUnitTemprMax1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmUnitTempr 12 } + +pmTcaUnitTemprMax1dEntry OBJECT-TYPE + SYNTAX PMTcaUnitTemprMax1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaUnitTemprMax1dIndex } + ::= { pmTcaUnitTemprMax1dTable 1 } + +PMTcaUnitTemprMax1dEntry ::= + SEQUENCE + { + pmTcaUnitTemprMax1dIndex Integer32, + pmTcaUnitTemprMax1dId OCTET STRING, + pmTcaUnitTemprMax1dUnitType INTEGER, + pmTcaUnitTemprMax1dCnt Counter64, + pmTcaUnitTemprMax1dThreshold Counter64, + pmTcaUnitTemprMax1dOccurTime DateAndTime + } + +pmTcaUnitTemprMax1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaUnitTemprMax1dEntry 1 } + +pmTcaUnitTemprMax1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaUnitTemprMax1dEntry 2 } + +pmTcaUnitTemprMax1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaUnitTemprMax1dEntry 3 } + +pmTcaUnitTemprMax1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of unit temperature." + ::= { pmTcaUnitTemprMax1dEntry 4 } + +pmTcaUnitTemprMax1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of unit temperature." + ::= { pmTcaUnitTemprMax1dEntry 5 } + +pmTcaUnitTemprMax1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaUnitTemprMax1dEntry 6 } + +pmSFPPower OBJECT IDENTIFIER ::= { pm 101 } + +pmSFPPowerCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMSFPPowerCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 1 } + +pmSFPPowerCurr15mEntry OBJECT-TYPE + SYNTAX PMSFPPowerCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmSFPPowerCurr15mIndex } + ::= { pmSFPPowerCurr15mTable 1 } + +PMSFPPowerCurr15mEntry ::= + SEQUENCE + { + pmSFPPowerCurr15mIndex Integer32, + pmSFPPowerCurr15mId OCTET STRING, + pmSFPPowerCurr15mUnitType INTEGER, + pmSFPPowerCurr15mRxAverage Counter64, + pmSFPPowerCurr15mRxMin Counter64, + pmSFPPowerCurr15mRxMax Counter64, + pmSFPPowerCurr15mTxAverage Counter64, + pmSFPPowerCurr15mTxMin Counter64, + pmSFPPowerCurr15mTxMax Counter64, + pmSFPPowerCurr15mStartTime DateAndTime, + pmSFPPowerCurr15mStopTime DateAndTime + } + +pmSFPPowerCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmSFPPowerCurr15mEntry 1 } + +pmSFPPowerCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SFP name." + ::= { pmSFPPowerCurr15mEntry 2 } + +pmSFPPowerCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmSFPPowerCurr15mEntry 3 } + +pmSFPPowerCurr15mRxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of average sfp rx power." + ::= { pmSFPPowerCurr15mEntry 4 } + +pmSFPPowerCurr15mRxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of minimum sfp rx power." + ::= { pmSFPPowerCurr15mEntry 5 } + +pmSFPPowerCurr15mRxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of maximum sfp rx power." + ::= { pmSFPPowerCurr15mEntry 6 } + +pmSFPPowerCurr15mTxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of average sfp tx power." + ::= { pmSFPPowerCurr15mEntry 7 } + +pmSFPPowerCurr15mTxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of minimum sfp tx power." + ::= { pmSFPPowerCurr15mEntry 8 } + +pmSFPPowerCurr15mTxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of maximum sfp tx power." + ::= { pmSFPPowerCurr15mEntry 9 } + +pmSFPPowerCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmSFPPowerCurr15mEntry 100 } + +pmSFPPowerCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmSFPPowerCurr15mEntry 101 } + +pmSFPPowerPrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMSFPPowerPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 2 } + +pmSFPPowerPrev15mEntry OBJECT-TYPE + SYNTAX PMSFPPowerPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmSFPPowerPrev15mIndex } + ::= { pmSFPPowerPrev15mTable 1 } + +PMSFPPowerPrev15mEntry ::= + SEQUENCE + { + pmSFPPowerPrev15mIndex Integer32, + pmSFPPowerPrev15mId OCTET STRING, + pmSFPPowerPrev15mUnitType INTEGER, + pmSFPPowerPrev15mRxAverage Counter64, + pmSFPPowerPrev15mRxMin Counter64, + pmSFPPowerPrev15mRxMax Counter64, + pmSFPPowerPrev15mTxAverage Counter64, + pmSFPPowerPrev15mTxMin Counter64, + pmSFPPowerPrev15mTxMax Counter64, + pmSFPPowerPrev15mStartTime DateAndTime, + pmSFPPowerPrev15mStopTime DateAndTime + } + +pmSFPPowerPrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmSFPPowerPrev15mEntry 1 } + +pmSFPPowerPrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SFP name." + ::= { pmSFPPowerPrev15mEntry 2 } + +pmSFPPowerPrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmSFPPowerPrev15mEntry 3 } + +pmSFPPowerPrev15mRxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of average sfp rx power." + ::= { pmSFPPowerPrev15mEntry 4 } + +pmSFPPowerPrev15mRxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of minimum sfp rx power." + ::= { pmSFPPowerPrev15mEntry 5 } + +pmSFPPowerPrev15mRxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of maximum sfp rx power." + ::= { pmSFPPowerPrev15mEntry 6 } + +pmSFPPowerPrev15mTxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of average sfp tx power." + ::= { pmSFPPowerPrev15mEntry 7 } + +pmSFPPowerPrev15mTxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of minimum sfp tx power." + ::= { pmSFPPowerPrev15mEntry 8 } + +pmSFPPowerPrev15mTxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of maximum sfp tx power." + ::= { pmSFPPowerPrev15mEntry 9 } + +pmSFPPowerPrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmSFPPowerPrev15mEntry 100 } + +pmSFPPowerPrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmSFPPowerPrev15mEntry 101 } + +pmSFPPowerCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMSFPPowerCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 3 } + +pmSFPPowerCurr1hEntry OBJECT-TYPE + SYNTAX PMSFPPowerCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmSFPPowerCurr1hIndex } + ::= { pmSFPPowerCurr1hTable 1 } + +PMSFPPowerCurr1hEntry ::= + SEQUENCE + { + pmSFPPowerCurr1hIndex Integer32, + pmSFPPowerCurr1hId OCTET STRING, + pmSFPPowerCurr1hUnitType INTEGER, + pmSFPPowerCurr1hRxAverage Counter64, + pmSFPPowerCurr1hRxMin Counter64, + pmSFPPowerCurr1hRxMax Counter64, + pmSFPPowerCurr1hTxAverage Counter64, + pmSFPPowerCurr1hTxMin Counter64, + pmSFPPowerCurr1hTxMax Counter64, + pmSFPPowerCurr1hStartTime DateAndTime, + pmSFPPowerCurr1hStopTime DateAndTime + } + +pmSFPPowerCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmSFPPowerCurr1hEntry 1 } + +pmSFPPowerCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SFP name." + ::= { pmSFPPowerCurr1hEntry 2 } + +pmSFPPowerCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmSFPPowerCurr1hEntry 3 } + +pmSFPPowerCurr1hRxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of average sfp rx power." + ::= { pmSFPPowerCurr1hEntry 4 } + +pmSFPPowerCurr1hRxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of minimum sfp rx power." + ::= { pmSFPPowerCurr1hEntry 5 } + +pmSFPPowerCurr1hRxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of maximum sfp rx power." + ::= { pmSFPPowerCurr1hEntry 6 } + +pmSFPPowerCurr1hTxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of average sfp tx power." + ::= { pmSFPPowerCurr1hEntry 7 } + +pmSFPPowerCurr1hTxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of minimum sfp tx power." + ::= { pmSFPPowerCurr1hEntry 8 } + +pmSFPPowerCurr1hTxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of maximum sfp tx power." + ::= { pmSFPPowerCurr1hEntry 9 } + +pmSFPPowerCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmSFPPowerCurr1hEntry 100 } + +pmSFPPowerCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmSFPPowerCurr1hEntry 101 } + +pmSFPPowerPrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMSFPPowerPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 4 } + +pmSFPPowerPrev1hEntry OBJECT-TYPE + SYNTAX PMSFPPowerPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmSFPPowerPrev1hIndex } + ::= { pmSFPPowerPrev1hTable 1 } + +PMSFPPowerPrev1hEntry ::= + SEQUENCE + { + pmSFPPowerPrev1hIndex Integer32, + pmSFPPowerPrev1hId OCTET STRING, + pmSFPPowerPrev1hUnitType INTEGER, + pmSFPPowerPrev1hRxAverage Counter64, + pmSFPPowerPrev1hRxMin Counter64, + pmSFPPowerPrev1hRxMax Counter64, + pmSFPPowerPrev1hTxAverage Counter64, + pmSFPPowerPrev1hTxMin Counter64, + pmSFPPowerPrev1hTxMax Counter64, + pmSFPPowerPrev1hStartTime DateAndTime, + pmSFPPowerPrev1hStopTime DateAndTime + } + +pmSFPPowerPrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmSFPPowerPrev1hEntry 1 } + +pmSFPPowerPrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SFP name." + ::= { pmSFPPowerPrev1hEntry 2 } + +pmSFPPowerPrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmSFPPowerPrev1hEntry 3 } + +pmSFPPowerPrev1hRxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of average sfp rx power." + ::= { pmSFPPowerPrev1hEntry 4 } + +pmSFPPowerPrev1hRxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of minimum sfp rx power." + ::= { pmSFPPowerPrev1hEntry 5 } + +pmSFPPowerPrev1hRxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of maximum sfp rx power." + ::= { pmSFPPowerPrev1hEntry 6 } + +pmSFPPowerPrev1hTxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of average sfp tx power." + ::= { pmSFPPowerPrev1hEntry 7 } + +pmSFPPowerPrev1hTxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of minimum sfp tx power." + ::= { pmSFPPowerPrev1hEntry 8 } + +pmSFPPowerPrev1hTxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of maximum sfp tx power." + ::= { pmSFPPowerPrev1hEntry 9 } + +pmSFPPowerPrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmSFPPowerPrev1hEntry 100 } + +pmSFPPowerPrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmSFPPowerPrev1hEntry 101 } + +pmSFPPowerCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMSFPPowerCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 5 } + +pmSFPPowerCurr1dEntry OBJECT-TYPE + SYNTAX PMSFPPowerCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmSFPPowerCurr1dIndex } + ::= { pmSFPPowerCurr1dTable 1 } + +PMSFPPowerCurr1dEntry ::= + SEQUENCE + { + pmSFPPowerCurr1dIndex Integer32, + pmSFPPowerCurr1dId OCTET STRING, + pmSFPPowerCurr1dUnitType INTEGER, + pmSFPPowerCurr1dRxAverage Counter64, + pmSFPPowerCurr1dRxMin Counter64, + pmSFPPowerCurr1dRxMax Counter64, + pmSFPPowerCurr1dTxAverage Counter64, + pmSFPPowerCurr1dTxMin Counter64, + pmSFPPowerCurr1dTxMax Counter64, + pmSFPPowerCurr1dStartTime DateAndTime, + pmSFPPowerCurr1dStopTime DateAndTime + } + +pmSFPPowerCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmSFPPowerCurr1dEntry 1 } + +pmSFPPowerCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SFP name." + ::= { pmSFPPowerCurr1dEntry 2 } + +pmSFPPowerCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmSFPPowerCurr1dEntry 3 } + +pmSFPPowerCurr1dRxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of average sfp rx power." + ::= { pmSFPPowerCurr1dEntry 4 } + +pmSFPPowerCurr1dRxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of minimum sfp rx power." + ::= { pmSFPPowerCurr1dEntry 5 } + +pmSFPPowerCurr1dRxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of maximum sfp rx power." + ::= { pmSFPPowerCurr1dEntry 6 } + +pmSFPPowerCurr1dTxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of average sfp tx power." + ::= { pmSFPPowerCurr1dEntry 7 } + +pmSFPPowerCurr1dTxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of minimum sfp tx power." + ::= { pmSFPPowerCurr1dEntry 8 } + +pmSFPPowerCurr1dTxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of maximum sfp tx power." + ::= { pmSFPPowerCurr1dEntry 9 } + +pmSFPPowerCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day start time." + ::= { pmSFPPowerCurr1dEntry 100 } + +pmSFPPowerCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day stop time." + ::= { pmSFPPowerCurr1dEntry 101 } + +pmSFPPowerPrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMSFPPowerPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 6 } + +pmSFPPowerPrev1dEntry OBJECT-TYPE + SYNTAX PMSFPPowerPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmSFPPowerPrev1dIndex } + ::= { pmSFPPowerPrev1dTable 1 } + +PMSFPPowerPrev1dEntry ::= + SEQUENCE + { + pmSFPPowerPrev1dIndex Integer32, + pmSFPPowerPrev1dId OCTET STRING, + pmSFPPowerPrev1dUnitType INTEGER, + pmSFPPowerPrev1dRxAverage Counter64, + pmSFPPowerPrev1dRxMin Counter64, + pmSFPPowerPrev1dRxMax Counter64, + pmSFPPowerPrev1dTxAverage Counter64, + pmSFPPowerPrev1dTxMin Counter64, + pmSFPPowerPrev1dTxMax Counter64, + pmSFPPowerPrev1dStartTime DateAndTime, + pmSFPPowerPrev1dStopTime DateAndTime + } + +pmSFPPowerPrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmSFPPowerPrev1dEntry 1 } + +pmSFPPowerPrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SFP name." + ::= { pmSFPPowerPrev1dEntry 2 } + +pmSFPPowerPrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmSFPPowerPrev1dEntry 3 } + +pmSFPPowerPrev1dRxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of average sfp rx power." + ::= { pmSFPPowerPrev1dEntry 4 } + +pmSFPPowerPrev1dRxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of minimum sfp rx power." + ::= { pmSFPPowerPrev1dEntry 5 } + +pmSFPPowerPrev1dRxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of maximum sfp rx power." + ::= { pmSFPPowerPrev1dEntry 6 } + +pmSFPPowerPrev1dTxAverage OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of average sfp tx power." + ::= { pmSFPPowerPrev1dEntry 7 } + +pmSFPPowerPrev1dTxMin OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of minimum sfp tx power." + ::= { pmSFPPowerPrev1dEntry 8 } + +pmSFPPowerPrev1dTxMax OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of maximum sfp tx power." + ::= { pmSFPPowerPrev1dEntry 9 } + +pmSFPPowerPrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day start time." + ::= { pmSFPPowerPrev1dEntry 100 } + +pmSFPPowerPrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day stop time." + ::= { pmSFPPowerPrev1dEntry 101 } + +pmTcaSFPRxPowerMin15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPRxPowerMin15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 7 } + +pmTcaSFPRxPowerMin15mEntry OBJECT-TYPE + SYNTAX PMTcaSFPRxPowerMin15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPRxPowerMin15mIndex } + ::= { pmTcaSFPRxPowerMin15mTable 1 } + +PMTcaSFPRxPowerMin15mEntry ::= + SEQUENCE + { + pmTcaSFPRxPowerMin15mIndex Integer32, + pmTcaSFPRxPowerMin15mId OCTET STRING, + pmTcaSFPRxPowerMin15mUnitType INTEGER, + pmTcaSFPRxPowerMin15mCnt Counter64, + pmTcaSFPRxPowerMin15mThreshold Counter64, + pmTcaSFPRxPowerMin15mOccurTime DateAndTime + } + +pmTcaSFPRxPowerMin15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPRxPowerMin15mEntry 1 } + +pmTcaSFPRxPowerMin15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPRxPowerMin15mEntry 2 } + +pmTcaSFPRxPowerMin15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPRxPowerMin15mEntry 3 } + +pmTcaSFPRxPowerMin15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of unit temperature." + ::= { pmTcaSFPRxPowerMin15mEntry 4 } + +pmTcaSFPRxPowerMin15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of unit temperature." + ::= { pmTcaSFPRxPowerMin15mEntry 5 } + +pmTcaSFPRxPowerMin15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPRxPowerMin15mEntry 6 } + +pmTcaSFPRxPowerMin1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPRxPowerMin1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 8 } + +pmTcaSFPRxPowerMin1hEntry OBJECT-TYPE + SYNTAX PMTcaSFPRxPowerMin1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPRxPowerMin1hIndex } + ::= { pmTcaSFPRxPowerMin1hTable 1 } + +PMTcaSFPRxPowerMin1hEntry ::= + SEQUENCE + { + pmTcaSFPRxPowerMin1hIndex Integer32, + pmTcaSFPRxPowerMin1hId OCTET STRING, + pmTcaSFPRxPowerMin1hUnitType INTEGER, + pmTcaSFPRxPowerMin1hCnt Counter64, + pmTcaSFPRxPowerMin1hThreshold Counter64, + pmTcaSFPRxPowerMin1hOccurTime DateAndTime + } + +pmTcaSFPRxPowerMin1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPRxPowerMin1hEntry 1 } + +pmTcaSFPRxPowerMin1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPRxPowerMin1hEntry 2 } + +pmTcaSFPRxPowerMin1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPRxPowerMin1hEntry 3 } + +pmTcaSFPRxPowerMin1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of unit temperature." + ::= { pmTcaSFPRxPowerMin1hEntry 4 } + +pmTcaSFPRxPowerMin1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of unit temperature." + ::= { pmTcaSFPRxPowerMin1hEntry 5 } + +pmTcaSFPRxPowerMin1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPRxPowerMin1hEntry 6 } + +pmTcaSFPRxPowerMin1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPRxPowerMin1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 9 } + +pmTcaSFPRxPowerMin1dEntry OBJECT-TYPE + SYNTAX PMTcaSFPRxPowerMin1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPRxPowerMin1dIndex } + ::= { pmTcaSFPRxPowerMin1dTable 1 } + +PMTcaSFPRxPowerMin1dEntry ::= + SEQUENCE + { + pmTcaSFPRxPowerMin1dIndex Integer32, + pmTcaSFPRxPowerMin1dId OCTET STRING, + pmTcaSFPRxPowerMin1dUnitType INTEGER, + pmTcaSFPRxPowerMin1dCnt Counter64, + pmTcaSFPRxPowerMin1dThreshold Counter64, + pmTcaSFPRxPowerMin1dOccurTime DateAndTime + } + +pmTcaSFPRxPowerMin1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPRxPowerMin1dEntry 1 } + +pmTcaSFPRxPowerMin1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPRxPowerMin1dEntry 2 } + +pmTcaSFPRxPowerMin1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPRxPowerMin1dEntry 3 } + +pmTcaSFPRxPowerMin1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of unit temperature." + ::= { pmTcaSFPRxPowerMin1dEntry 4 } + +pmTcaSFPRxPowerMin1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of unit temperature." + ::= { pmTcaSFPRxPowerMin1dEntry 5 } + +pmTcaSFPRxPowerMin1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPRxPowerMin1dEntry 6 } + +pmTcaSFPRxPowerMax15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPRxPowerMax15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 10 } + +pmTcaSFPRxPowerMax15mEntry OBJECT-TYPE + SYNTAX PMTcaSFPRxPowerMax15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPRxPowerMax15mIndex } + ::= { pmTcaSFPRxPowerMax15mTable 1 } + +PMTcaSFPRxPowerMax15mEntry ::= + SEQUENCE + { + pmTcaSFPRxPowerMax15mIndex Integer32, + pmTcaSFPRxPowerMax15mId OCTET STRING, + pmTcaSFPRxPowerMax15mUnitType INTEGER, + pmTcaSFPRxPowerMax15mCnt Counter64, + pmTcaSFPRxPowerMax15mThreshold Counter64, + pmTcaSFPRxPowerMax15mOccurTime DateAndTime + } + +pmTcaSFPRxPowerMax15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPRxPowerMax15mEntry 1 } + +pmTcaSFPRxPowerMax15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPRxPowerMax15mEntry 2 } + +pmTcaSFPRxPowerMax15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPRxPowerMax15mEntry 3 } + +pmTcaSFPRxPowerMax15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of unit temperature." + ::= { pmTcaSFPRxPowerMax15mEntry 4 } + +pmTcaSFPRxPowerMax15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of unit temperature." + ::= { pmTcaSFPRxPowerMax15mEntry 5 } + +pmTcaSFPRxPowerMax15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPRxPowerMax15mEntry 6 } + +pmTcaSFPRxPowerMax1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPRxPowerMax1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 11 } + +pmTcaSFPRxPowerMax1hEntry OBJECT-TYPE + SYNTAX PMTcaSFPRxPowerMax1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPRxPowerMax1hIndex } + ::= { pmTcaSFPRxPowerMax1hTable 1 } + +PMTcaSFPRxPowerMax1hEntry ::= + SEQUENCE + { + pmTcaSFPRxPowerMax1hIndex Integer32, + pmTcaSFPRxPowerMax1hId OCTET STRING, + pmTcaSFPRxPowerMax1hUnitType INTEGER, + pmTcaSFPRxPowerMax1hCnt Counter64, + pmTcaSFPRxPowerMax1hThreshold Counter64, + pmTcaSFPRxPowerMax1hOccurTime DateAndTime + } + +pmTcaSFPRxPowerMax1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPRxPowerMax1hEntry 1 } + +pmTcaSFPRxPowerMax1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPRxPowerMax1hEntry 2 } + +pmTcaSFPRxPowerMax1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPRxPowerMax1hEntry 3 } + +pmTcaSFPRxPowerMax1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of unit temperature." + ::= { pmTcaSFPRxPowerMax1hEntry 4 } + +pmTcaSFPRxPowerMax1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of unit temperature." + ::= { pmTcaSFPRxPowerMax1hEntry 5 } + +pmTcaSFPRxPowerMax1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPRxPowerMax1hEntry 6 } + +pmTcaSFPRxPowerMax1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPRxPowerMax1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 12 } + +pmTcaSFPRxPowerMax1dEntry OBJECT-TYPE + SYNTAX PMTcaSFPRxPowerMax1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPRxPowerMax1dIndex } + ::= { pmTcaSFPRxPowerMax1dTable 1 } + +PMTcaSFPRxPowerMax1dEntry ::= + SEQUENCE + { + pmTcaSFPRxPowerMax1dIndex Integer32, + pmTcaSFPRxPowerMax1dId OCTET STRING, + pmTcaSFPRxPowerMax1dUnitType INTEGER, + pmTcaSFPRxPowerMax1dCnt Counter64, + pmTcaSFPRxPowerMax1dThreshold Counter64, + pmTcaSFPRxPowerMax1dOccurTime DateAndTime + } + +pmTcaSFPRxPowerMax1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPRxPowerMax1dEntry 1 } + +pmTcaSFPRxPowerMax1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPRxPowerMax1dEntry 2 } + +pmTcaSFPRxPowerMax1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPRxPowerMax1dEntry 3 } + +pmTcaSFPRxPowerMax1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of unit temperature." + ::= { pmTcaSFPRxPowerMax1dEntry 4 } + +pmTcaSFPRxPowerMax1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of unit temperature." + ::= { pmTcaSFPRxPowerMax1dEntry 5 } + +pmTcaSFPRxPowerMax1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPRxPowerMax1dEntry 6 } + +pmTcaSFPTxPowerMin15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPTxPowerMin15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 13 } + +pmTcaSFPTxPowerMin15mEntry OBJECT-TYPE + SYNTAX PMTcaSFPTxPowerMin15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPTxPowerMin15mIndex } + ::= { pmTcaSFPTxPowerMin15mTable 1 } + +PMTcaSFPTxPowerMin15mEntry ::= + SEQUENCE + { + pmTcaSFPTxPowerMin15mIndex Integer32, + pmTcaSFPTxPowerMin15mId OCTET STRING, + pmTcaSFPTxPowerMin15mUnitType INTEGER, + pmTcaSFPTxPowerMin15mCnt Counter64, + pmTcaSFPTxPowerMin15mThreshold Counter64, + pmTcaSFPTxPowerMin15mOccurTime DateAndTime + } + +pmTcaSFPTxPowerMin15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPTxPowerMin15mEntry 1 } + +pmTcaSFPTxPowerMin15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPTxPowerMin15mEntry 2 } + +pmTcaSFPTxPowerMin15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPTxPowerMin15mEntry 3 } + +pmTcaSFPTxPowerMin15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of unit temperature." + ::= { pmTcaSFPTxPowerMin15mEntry 4 } + +pmTcaSFPTxPowerMin15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of unit temperature." + ::= { pmTcaSFPTxPowerMin15mEntry 5 } + +pmTcaSFPTxPowerMin15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPTxPowerMin15mEntry 6 } + +pmTcaSFPTxPowerMin1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPTxPowerMin1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 14 } + +pmTcaSFPTxPowerMin1hEntry OBJECT-TYPE + SYNTAX PMTcaSFPTxPowerMin1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPTxPowerMin1hIndex } + ::= { pmTcaSFPTxPowerMin1hTable 1 } + +PMTcaSFPTxPowerMin1hEntry ::= + SEQUENCE + { + pmTcaSFPTxPowerMin1hIndex Integer32, + pmTcaSFPTxPowerMin1hId OCTET STRING, + pmTcaSFPTxPowerMin1hUnitType INTEGER, + pmTcaSFPTxPowerMin1hCnt Counter64, + pmTcaSFPTxPowerMin1hThreshold Counter64, + pmTcaSFPTxPowerMin1hOccurTime DateAndTime + } + +pmTcaSFPTxPowerMin1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPTxPowerMin1hEntry 1 } + +pmTcaSFPTxPowerMin1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPTxPowerMin1hEntry 2 } + +pmTcaSFPTxPowerMin1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPTxPowerMin1hEntry 3 } + +pmTcaSFPTxPowerMin1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of unit temperature." + ::= { pmTcaSFPTxPowerMin1hEntry 4 } + +pmTcaSFPTxPowerMin1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of unit temperature." + ::= { pmTcaSFPTxPowerMin1hEntry 5 } + +pmTcaSFPTxPowerMin1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPTxPowerMin1hEntry 6 } + +pmTcaSFPTxPowerMin1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPTxPowerMin1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 15 } + +pmTcaSFPTxPowerMin1dEntry OBJECT-TYPE + SYNTAX PMTcaSFPTxPowerMin1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPTxPowerMin1dIndex } + ::= { pmTcaSFPTxPowerMin1dTable 1 } + +PMTcaSFPTxPowerMin1dEntry ::= + SEQUENCE + { + pmTcaSFPTxPowerMin1dIndex Integer32, + pmTcaSFPTxPowerMin1dId OCTET STRING, + pmTcaSFPTxPowerMin1dUnitType INTEGER, + pmTcaSFPTxPowerMin1dCnt Counter64, + pmTcaSFPTxPowerMin1dThreshold Counter64, + pmTcaSFPTxPowerMin1dOccurTime DateAndTime + } + +pmTcaSFPTxPowerMin1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPTxPowerMin1dEntry 1 } + +pmTcaSFPTxPowerMin1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPTxPowerMin1dEntry 2 } + +pmTcaSFPTxPowerMin1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPTxPowerMin1dEntry 3 } + +pmTcaSFPTxPowerMin1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of unit temperature." + ::= { pmTcaSFPTxPowerMin1dEntry 4 } + +pmTcaSFPTxPowerMin1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of unit temperature." + ::= { pmTcaSFPTxPowerMin1dEntry 5 } + +pmTcaSFPTxPowerMin1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPTxPowerMin1dEntry 6 } + +pmTcaSFPTxPowerMax15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPTxPowerMax15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 16 } + +pmTcaSFPTxPowerMax15mEntry OBJECT-TYPE + SYNTAX PMTcaSFPTxPowerMax15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPTxPowerMax15mIndex } + ::= { pmTcaSFPTxPowerMax15mTable 1 } + +PMTcaSFPTxPowerMax15mEntry ::= + SEQUENCE + { + pmTcaSFPTxPowerMax15mIndex Integer32, + pmTcaSFPTxPowerMax15mId OCTET STRING, + pmTcaSFPTxPowerMax15mUnitType INTEGER, + pmTcaSFPTxPowerMax15mCnt Counter64, + pmTcaSFPTxPowerMax15mThreshold Counter64, + pmTcaSFPTxPowerMax15mOccurTime DateAndTime + } + +pmTcaSFPTxPowerMax15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPTxPowerMax15mEntry 1 } + +pmTcaSFPTxPowerMax15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPTxPowerMax15mEntry 2 } + +pmTcaSFPTxPowerMax15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPTxPowerMax15mEntry 3 } + +pmTcaSFPTxPowerMax15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of unit temperature." + ::= { pmTcaSFPTxPowerMax15mEntry 4 } + +pmTcaSFPTxPowerMax15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of unit temperature." + ::= { pmTcaSFPTxPowerMax15mEntry 5 } + +pmTcaSFPTxPowerMax15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPTxPowerMax15mEntry 6 } + +pmTcaSFPTxPowerMax1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPTxPowerMax1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 17 } + +pmTcaSFPTxPowerMax1hEntry OBJECT-TYPE + SYNTAX PMTcaSFPTxPowerMax1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPTxPowerMax1hIndex } + ::= { pmTcaSFPTxPowerMax1hTable 1 } + +PMTcaSFPTxPowerMax1hEntry ::= + SEQUENCE + { + pmTcaSFPTxPowerMax1hIndex Integer32, + pmTcaSFPTxPowerMax1hId OCTET STRING, + pmTcaSFPTxPowerMax1hUnitType INTEGER, + pmTcaSFPTxPowerMax1hCnt Counter64, + pmTcaSFPTxPowerMax1hThreshold Counter64, + pmTcaSFPTxPowerMax1hOccurTime DateAndTime + } + +pmTcaSFPTxPowerMax1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPTxPowerMax1hEntry 1 } + +pmTcaSFPTxPowerMax1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPTxPowerMax1hEntry 2 } + +pmTcaSFPTxPowerMax1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPTxPowerMax1hEntry 3 } + +pmTcaSFPTxPowerMax1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of unit temperature." + ::= { pmTcaSFPTxPowerMax1hEntry 4 } + +pmTcaSFPTxPowerMax1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of unit temperature." + ::= { pmTcaSFPTxPowerMax1hEntry 5 } + +pmTcaSFPTxPowerMax1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPTxPowerMax1hEntry 6 } + +pmTcaSFPTxPowerMax1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaSFPTxPowerMax1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmSFPPower 18 } + +pmTcaSFPTxPowerMax1dEntry OBJECT-TYPE + SYNTAX PMTcaSFPTxPowerMax1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaSFPTxPowerMax1dIndex } + ::= { pmTcaSFPTxPowerMax1dTable 1 } + +PMTcaSFPTxPowerMax1dEntry ::= + SEQUENCE + { + pmTcaSFPTxPowerMax1dIndex Integer32, + pmTcaSFPTxPowerMax1dId OCTET STRING, + pmTcaSFPTxPowerMax1dUnitType INTEGER, + pmTcaSFPTxPowerMax1dCnt Counter64, + pmTcaSFPTxPowerMax1dThreshold Counter64, + pmTcaSFPTxPowerMax1dOccurTime DateAndTime + } + +pmTcaSFPTxPowerMax1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaSFPTxPowerMax1dEntry 1 } + +pmTcaSFPTxPowerMax1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaSFPTxPowerMax1dEntry 2 } + +pmTcaSFPTxPowerMax1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaSFPTxPowerMax1dEntry 3 } + +pmTcaSFPTxPowerMax1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of unit temperature." + ::= { pmTcaSFPTxPowerMax1dEntry 4 } + +pmTcaSFPTxPowerMax1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of unit temperature." + ::= { pmTcaSFPTxPowerMax1dEntry 5 } + +pmTcaSFPTxPowerMax1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaSFPTxPowerMax1dEntry 6 } + +pmIfStatistics OBJECT IDENTIFIER ::= { pm 102 } + + +pmIfStatCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMIfStatCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface statistics information of all units." + ::= { pmIfStatistics 1 } + +pmIfStatCurr15mEntry OBJECT-TYPE + SYNTAX PMIfStatCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface statistics information of all units." + INDEX { pmIfStatCurr15mIndex } + ::= { pmIfStatCurr15mTable 1 } + +PMIfStatCurr15mEntry ::= + SEQUENCE + { + pmIfStatCurr15mIndex Integer32, + pmIfStatCurr15mId OCTET STRING, + pmIfStatCurr15mUnitType INTEGER, + pmIfStatCurr15mDropped Counter64, + pmIfStatCurr15mInputPkts Counter64, + pmIfStatCurr15mInputbytes Counter64, + pmIfStatCurr15mInputBrdCst Counter64, + pmIfStatCurr15mInputMltCst Counter64, + pmIfStatCurr15mCrcErrors Counter64, + pmIfStatCurr15mCollision Counter64, + pmIfStatCurr15mUndersized Counter64, + pmIfStatCurr15mOversized Counter64, + pmIfStatCurr15mFragments Counter64, + pmIfStatCurr15mJabbers Counter64, + pmIfStatCurr15mPkt64 Counter64, + pmIfStatCurr15mPkt65To127 Counter64, + pmIfStatCurr15mPkt128To255 Counter64, + pmIfStatCurr15mPkt256To511 Counter64, + pmIfStatCurr15mPkt512To1023 Counter64, + pmIfStatCurr15mPkt1024 Counter64, + pmIfStatCurr15mOutputPkts Counter64, + pmIfStatCurr15mOutputBytes Counter64, + pmIfStatCurr15mStartTime DateAndTime, + pmIfStatCurr15mStopTime DateAndTime + } + +pmIfStatCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmIfStatCurr15mEntry 1 } + +pmIfStatCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmIfStatCurr15mEntry 2 } + +pmIfStatCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmIfStatCurr15mEntry 3 } + +pmIfStatCurr15mDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of dropped events." + ::= { pmIfStatCurr15mEntry 4 } + +pmIfStatCurr15mInputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of input packets." + ::= { pmIfStatCurr15mEntry 5 } + +pmIfStatCurr15mInputbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of input bytes." + ::= { pmIfStatCurr15mEntry 6 } + +pmIfStatCurr15mCrcErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with CRC error." + ::= { pmIfStatCurr15mEntry 7 } + +pmIfStatCurr15mInputBrdCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of broadcast packets." + ::= { pmIfStatCurr15mEntry 8 } + +pmIfStatCurr15mInputMltCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of multicast packets." + ::= { pmIfStatCurr15mEntry 9 } + +pmIfStatCurr15mCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of collisions." + ::= { pmIfStatCurr15mEntry 10 } + +pmIfStatCurr15mUndersized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of undersized packets." + ::= { pmIfStatCurr15mEntry 11 } + +pmIfStatCurr15mOversized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of oversized packets." + ::= { pmIfStatCurr15mEntry 12 } + +pmIfStatCurr15mFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of frament packets." + ::= { pmIfStatCurr15mEntry 13 } + +pmIfStatCurr15mJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of jabber packets." + ::= { pmIfStatCurr15mEntry 14 } + +pmIfStatCurr15mPkt64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with size under 64." + ::= { pmIfStatCurr15mEntry 15 } + +pmIfStatCurr15mPkt65To127 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with size between 65 to 127." + ::= { pmIfStatCurr15mEntry 16 } + +pmIfStatCurr15mPkt128To255 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with size between 128 to 255." + ::= { pmIfStatCurr15mEntry 17 } + +pmIfStatCurr15mPkt256To511 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with size between 256 to 511." + ::= { pmIfStatCurr15mEntry 18 } + +pmIfStatCurr15mPkt512To1023 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with size between 512 to 1023." + ::= { pmIfStatCurr15mEntry 19 } + +pmIfStatCurr15mPkt1024 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of packets with size over 1024." + ::= { pmIfStatCurr15mEntry 20 } + +pmIfStatCurr15mOutputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of interface output packets." + ::= { pmIfStatCurr15mEntry 21 } + +pmIfStatCurr15mOutputBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of interface output bytes." + ::= { pmIfStatCurr15mEntry 22 } + +pmIfStatCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmIfStatCurr15mEntry 100 } + +pmIfStatCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmIfStatCurr15mEntry 101 } + + +pmIfStatPrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMIfStatPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface statistics information of all units." + ::= { pmIfStatistics 2 } + +pmIfStatPrev15mEntry OBJECT-TYPE + SYNTAX PMIfStatPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface statistics information of all units." + INDEX { pmIfStatPrev15mIndex } + ::= { pmIfStatPrev15mTable 1 } + +PMIfStatPrev15mEntry ::= + SEQUENCE + { + pmIfStatPrev15mIndex Integer32, + pmIfStatPrev15mId OCTET STRING, + pmIfStatPrev15mUnitType INTEGER, + pmIfStatPrev15mDropped Counter64, + pmIfStatPrev15mInputPkts Counter64, + pmIfStatPrev15mInputbytes Counter64, + pmIfStatPrev15mInputBrdCst Counter64, + pmIfStatPrev15mInputMltCst Counter64, + pmIfStatPrev15mCrcErrors Counter64, + pmIfStatPrev15mCollision Counter64, + pmIfStatPrev15mUndersized Counter64, + pmIfStatPrev15mOversized Counter64, + pmIfStatPrev15mFragments Counter64, + pmIfStatPrev15mJabbers Counter64, + pmIfStatPrev15mPkt64 Counter64, + pmIfStatPrev15mPkt65To127 Counter64, + pmIfStatPrev15mPkt128To255 Counter64, + pmIfStatPrev15mPkt256To511 Counter64, + pmIfStatPrev15mPkt512To1023 Counter64, + pmIfStatPrev15mPkt1024 Counter64, + pmIfStatPrev15mOutputPkts Counter64, + pmIfStatPrev15mOutputBytes Counter64, + pmIfStatPrev15mStartTime DateAndTime, + pmIfStatPrev15mStopTime DateAndTime + } + +pmIfStatPrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmIfStatPrev15mEntry 1 } + +pmIfStatPrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmIfStatPrev15mEntry 2 } + +pmIfStatPrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmIfStatPrev15mEntry 3 } + +pmIfStatPrev15mDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of dropped events." + ::= { pmIfStatPrev15mEntry 4 } + +pmIfStatPrev15mInputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of input packets." + ::= { pmIfStatPrev15mEntry 5 } + +pmIfStatPrev15mInputbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of input bytes." + ::= { pmIfStatPrev15mEntry 6 } + +pmIfStatPrev15mCrcErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with CRC error." + ::= { pmIfStatPrev15mEntry 7 } + +pmIfStatPrev15mInputBrdCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of broadcast packets." + ::= { pmIfStatPrev15mEntry 8 } + +pmIfStatPrev15mInputMltCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of multicast packets." + ::= { pmIfStatPrev15mEntry 9 } + +pmIfStatPrev15mCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of collisions." + ::= { pmIfStatPrev15mEntry 10 } + +pmIfStatPrev15mUndersized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of undersized packets." + ::= { pmIfStatPrev15mEntry 11 } + +pmIfStatPrev15mOversized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of oversized packets." + ::= { pmIfStatPrev15mEntry 12 } + +pmIfStatPrev15mFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of frament packets." + ::= { pmIfStatPrev15mEntry 13 } + +pmIfStatPrev15mJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of jabber packets." + ::= { pmIfStatPrev15mEntry 14 } + +pmIfStatPrev15mPkt64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with size under 64." + ::= { pmIfStatPrev15mEntry 15 } + +pmIfStatPrev15mPkt65To127 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with size between 65 to 127." + ::= { pmIfStatPrev15mEntry 16 } + +pmIfStatPrev15mPkt128To255 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with size between 128 to 255." + ::= { pmIfStatPrev15mEntry 17 } + +pmIfStatPrev15mPkt256To511 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with size between 256 to 511." + ::= { pmIfStatPrev15mEntry 18 } + +pmIfStatPrev15mPkt512To1023 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with size between 512 to 1023." + ::= { pmIfStatPrev15mEntry 19 } + +pmIfStatPrev15mPkt1024 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of packets with size over 1024." + ::= { pmIfStatPrev15mEntry 20 } + +pmIfStatPrev15mOutputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of interface output packets." + ::= { pmIfStatPrev15mEntry 21 } + +pmIfStatPrev15mOutputBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of interface output bytes." + ::= { pmIfStatPrev15mEntry 22 } + +pmIfStatPrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmIfStatPrev15mEntry 100 } + +pmIfStatPrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmIfStatPrev15mEntry 101 } + +pmIfStatCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMIfStatCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface statistics information of all units." + ::= { pmIfStatistics 3 } + +pmIfStatCurr1hEntry OBJECT-TYPE + SYNTAX PMIfStatCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface statistics information of all units." + INDEX { pmIfStatCurr1hIndex } + ::= { pmIfStatCurr1hTable 1 } + +PMIfStatCurr1hEntry ::= + SEQUENCE + { + pmIfStatCurr1hIndex Integer32, + pmIfStatCurr1hId OCTET STRING, + pmIfStatCurr1hUnitType INTEGER, + pmIfStatCurr1hDropped Counter64, + pmIfStatCurr1hInputPkts Counter64, + pmIfStatCurr1hInputbytes Counter64, + pmIfStatCurr1hInputBrdCst Counter64, + pmIfStatCurr1hInputMltCst Counter64, + pmIfStatCurr1hCrcErrors Counter64, + pmIfStatCurr1hCollision Counter64, + pmIfStatCurr1hUndersized Counter64, + pmIfStatCurr1hOversized Counter64, + pmIfStatCurr1hFragments Counter64, + pmIfStatCurr1hJabbers Counter64, + pmIfStatCurr1hPkt64 Counter64, + pmIfStatCurr1hPkt65To127 Counter64, + pmIfStatCurr1hPkt128To255 Counter64, + pmIfStatCurr1hPkt256To511 Counter64, + pmIfStatCurr1hPkt512To1023 Counter64, + pmIfStatCurr1hPkt1024 Counter64, + pmIfStatCurr1hOutputPkts Counter64, + pmIfStatCurr1hOutputBytes Counter64, + pmIfStatCurr1hStartTime DateAndTime, + pmIfStatCurr1hStopTime DateAndTime + } + +pmIfStatCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmIfStatCurr1hEntry 1 } + +pmIfStatCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmIfStatCurr1hEntry 2 } + +pmIfStatCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmIfStatCurr1hEntry 3 } + +pmIfStatCurr1hDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of dropped events." + ::= { pmIfStatCurr1hEntry 4 } + +pmIfStatCurr1hInputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of input packets." + ::= { pmIfStatCurr1hEntry 5 } + +pmIfStatCurr1hInputbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of input bytes." + ::= { pmIfStatCurr1hEntry 6 } + +pmIfStatCurr1hCrcErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with CRC error." + ::= { pmIfStatCurr1hEntry 7 } + +pmIfStatCurr1hInputBrdCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of broadcast packets." + ::= { pmIfStatCurr1hEntry 8 } + +pmIfStatCurr1hInputMltCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of multicast packets." + ::= { pmIfStatCurr1hEntry 9 } + +pmIfStatCurr1hCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of collisions." + ::= { pmIfStatCurr1hEntry 10 } + +pmIfStatCurr1hUndersized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of undersized packets." + ::= { pmIfStatCurr1hEntry 11 } + +pmIfStatCurr1hOversized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of oversized packets." + ::= { pmIfStatCurr1hEntry 12 } + +pmIfStatCurr1hFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of frament packets." + ::= { pmIfStatCurr1hEntry 13 } + +pmIfStatCurr1hJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of jabber packets." + ::= { pmIfStatCurr1hEntry 14 } + +pmIfStatCurr1hPkt64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with size under 64." + ::= { pmIfStatCurr1hEntry 15 } + +pmIfStatCurr1hPkt65To127 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with size between 65 to 127." + ::= { pmIfStatCurr1hEntry 16 } + +pmIfStatCurr1hPkt128To255 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with size between 128 to 255." + ::= { pmIfStatCurr1hEntry 17 } + +pmIfStatCurr1hPkt256To511 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with size between 256 to 511." + ::= { pmIfStatCurr1hEntry 18 } + +pmIfStatCurr1hPkt512To1023 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with size between 512 to 1023." + ::= { pmIfStatCurr1hEntry 19 } + +pmIfStatCurr1hPkt1024 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of packets with size over 1024." + ::= { pmIfStatCurr1hEntry 20 } + +pmIfStatCurr1hOutputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of interface output packets." + ::= { pmIfStatCurr1hEntry 21 } + +pmIfStatCurr1hOutputBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of interface output bytes." + ::= { pmIfStatCurr1hEntry 22 } + +pmIfStatCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmIfStatCurr1hEntry 100 } + +pmIfStatCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmIfStatCurr1hEntry 101 } + + +pmIfStatPrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMIfStatPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface statistics information of all units." + ::= { pmIfStatistics 4 } + +pmIfStatPrev1hEntry OBJECT-TYPE + SYNTAX PMIfStatPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface statistics information of all units." + INDEX { pmIfStatPrev1hIndex } + ::= { pmIfStatPrev1hTable 1 } + +PMIfStatPrev1hEntry ::= + SEQUENCE + { + pmIfStatPrev1hIndex Integer32, + pmIfStatPrev1hId OCTET STRING, + pmIfStatPrev1hUnitType INTEGER, + pmIfStatPrev1hDropped Counter64, + pmIfStatPrev1hInputPkts Counter64, + pmIfStatPrev1hInputbytes Counter64, + pmIfStatPrev1hInputBrdCst Counter64, + pmIfStatPrev1hInputMltCst Counter64, + pmIfStatPrev1hCrcErrors Counter64, + pmIfStatPrev1hCollision Counter64, + pmIfStatPrev1hUndersized Counter64, + pmIfStatPrev1hOversized Counter64, + pmIfStatPrev1hFragments Counter64, + pmIfStatPrev1hJabbers Counter64, + pmIfStatPrev1hPkt64 Counter64, + pmIfStatPrev1hPkt65To127 Counter64, + pmIfStatPrev1hPkt128To255 Counter64, + pmIfStatPrev1hPkt256To511 Counter64, + pmIfStatPrev1hPkt512To1023 Counter64, + pmIfStatPrev1hPkt1024 Counter64, + pmIfStatPrev1hOutputPkts Counter64, + pmIfStatPrev1hOutputBytes Counter64, + pmIfStatPrev1hStartTime DateAndTime, + pmIfStatPrev1hStopTime DateAndTime + } + +pmIfStatPrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmIfStatPrev1hEntry 1 } + +pmIfStatPrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmIfStatPrev1hEntry 2 } + +pmIfStatPrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmIfStatPrev1hEntry 3 } + +pmIfStatPrev1hDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of dropped events." + ::= { pmIfStatPrev1hEntry 4 } + +pmIfStatPrev1hInputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of input packets." + ::= { pmIfStatPrev1hEntry 5 } + +pmIfStatPrev1hInputbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of input bytes." + ::= { pmIfStatPrev1hEntry 6 } + +pmIfStatPrev1hCrcErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with CRC error." + ::= { pmIfStatPrev1hEntry 7 } + +pmIfStatPrev1hInputBrdCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of broadcast packets." + ::= { pmIfStatPrev1hEntry 8 } + +pmIfStatPrev1hInputMltCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of multicast packets." + ::= { pmIfStatPrev1hEntry 9 } + +pmIfStatPrev1hCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of collisions." + ::= { pmIfStatPrev1hEntry 10 } + +pmIfStatPrev1hUndersized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of undersized packets." + ::= { pmIfStatPrev1hEntry 11 } + +pmIfStatPrev1hOversized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of oversized packets." + ::= { pmIfStatPrev1hEntry 12 } + +pmIfStatPrev1hFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of frament packets." + ::= { pmIfStatPrev1hEntry 13 } + +pmIfStatPrev1hJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of jabber packets." + ::= { pmIfStatPrev1hEntry 14 } + +pmIfStatPrev1hPkt64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with size under 64." + ::= { pmIfStatPrev1hEntry 15 } + +pmIfStatPrev1hPkt65To127 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with size between 65 to 127." + ::= { pmIfStatPrev1hEntry 16 } + +pmIfStatPrev1hPkt128To255 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with size between 128 to 255." + ::= { pmIfStatPrev1hEntry 17 } + +pmIfStatPrev1hPkt256To511 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with size between 256 to 511." + ::= { pmIfStatPrev1hEntry 18 } + +pmIfStatPrev1hPkt512To1023 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with size between 512 to 1023." + ::= { pmIfStatPrev1hEntry 19 } + +pmIfStatPrev1hPkt1024 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of packets with size over 1024." + ::= { pmIfStatPrev1hEntry 20 } + +pmIfStatPrev1hOutputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of interface output packets." + ::= { pmIfStatPrev1hEntry 21 } + +pmIfStatPrev1hOutputBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of interface output bytes." + ::= { pmIfStatPrev1hEntry 22 } + +pmIfStatPrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmIfStatPrev1hEntry 100 } + +pmIfStatPrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmIfStatPrev1hEntry 101 } + +pmIfStatCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMIfStatCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface statistics information of all units." + ::= { pmIfStatistics 5 } + +pmIfStatCurr1dEntry OBJECT-TYPE + SYNTAX PMIfStatCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface statistics information of all units." + INDEX { pmIfStatCurr1dIndex } + ::= { pmIfStatCurr1dTable 1 } + +PMIfStatCurr1dEntry ::= + SEQUENCE + { + pmIfStatCurr1dIndex Integer32, + pmIfStatCurr1dId OCTET STRING, + pmIfStatCurr1dUnitType INTEGER, + pmIfStatCurr1dDropped Counter64, + pmIfStatCurr1dInputPkts Counter64, + pmIfStatCurr1dInputbytes Counter64, + pmIfStatCurr1dInputBrdCst Counter64, + pmIfStatCurr1dInputMltCst Counter64, + pmIfStatCurr1dCrcErrors Counter64, + pmIfStatCurr1dCollision Counter64, + pmIfStatCurr1dUndersized Counter64, + pmIfStatCurr1dOversized Counter64, + pmIfStatCurr1dFragments Counter64, + pmIfStatCurr1dJabbers Counter64, + pmIfStatCurr1dPkt64 Counter64, + pmIfStatCurr1dPkt65To127 Counter64, + pmIfStatCurr1dPkt128To255 Counter64, + pmIfStatCurr1dPkt256To511 Counter64, + pmIfStatCurr1dPkt512To1023 Counter64, + pmIfStatCurr1dPkt1024 Counter64, + pmIfStatCurr1dOutputPkts Counter64, + pmIfStatCurr1dOutputBytes Counter64, + pmIfStatCurr1dStartTime DateAndTime, + pmIfStatCurr1dStopTime DateAndTime + } + +pmIfStatCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmIfStatCurr1dEntry 1 } + +pmIfStatCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmIfStatCurr1dEntry 2 } + +pmIfStatCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmIfStatCurr1dEntry 3 } + +pmIfStatCurr1dDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of dropped events." + ::= { pmIfStatCurr1dEntry 4 } + +pmIfStatCurr1dInputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of input packets." + ::= { pmIfStatCurr1dEntry 5 } + +pmIfStatCurr1dInputbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of input bytes." + ::= { pmIfStatCurr1dEntry 6 } + +pmIfStatCurr1dCrcErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with CRC error." + ::= { pmIfStatCurr1dEntry 7 } + +pmIfStatCurr1dInputBrdCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of broadcast packets." + ::= { pmIfStatCurr1dEntry 8 } + +pmIfStatCurr1dInputMltCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of multicast packets." + ::= { pmIfStatCurr1dEntry 9 } + +pmIfStatCurr1dCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of collisions." + ::= { pmIfStatCurr1dEntry 10 } + +pmIfStatCurr1dUndersized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of undersized packets." + ::= { pmIfStatCurr1dEntry 11 } + +pmIfStatCurr1dOversized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of oversized packets." + ::= { pmIfStatCurr1dEntry 12 } + +pmIfStatCurr1dFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of frament packets." + ::= { pmIfStatCurr1dEntry 13 } + +pmIfStatCurr1dJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of jabber packets." + ::= { pmIfStatCurr1dEntry 14 } + +pmIfStatCurr1dPkt64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with size under 64." + ::= { pmIfStatCurr1dEntry 15 } + +pmIfStatCurr1dPkt65To127 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with size between 65 to 127." + ::= { pmIfStatCurr1dEntry 16 } + +pmIfStatCurr1dPkt128To255 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with size between 128 to 255." + ::= { pmIfStatCurr1dEntry 17 } + +pmIfStatCurr1dPkt256To511 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with size between 256 to 511." + ::= { pmIfStatCurr1dEntry 18 } + +pmIfStatCurr1dPkt512To1023 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with size between 512 to 1023." + ::= { pmIfStatCurr1dEntry 19 } + +pmIfStatCurr1dPkt1024 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of packets with size over 1024." + ::= { pmIfStatCurr1dEntry 20 } + +pmIfStatCurr1dOutputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of interface output packets." + ::= { pmIfStatCurr1dEntry 21 } + +pmIfStatCurr1dOutputBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of interface output bytes." + ::= { pmIfStatCurr1dEntry 22 } + +pmIfStatCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day start time." + ::= { pmIfStatCurr1dEntry 100 } + +pmIfStatCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day stop time." + ::= { pmIfStatCurr1dEntry 101 } + + +pmIfStatPrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMIfStatPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface statistics information of all units." + ::= { pmIfStatistics 6 } + +pmIfStatPrev1dEntry OBJECT-TYPE + SYNTAX PMIfStatPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface statistics information of all units." + INDEX { pmIfStatPrev1dIndex } + ::= { pmIfStatPrev1dTable 1 } + +PMIfStatPrev1dEntry ::= + SEQUENCE + { + pmIfStatPrev1dIndex Integer32, + pmIfStatPrev1dId OCTET STRING, + pmIfStatPrev1dUnitType INTEGER, + pmIfStatPrev1dDropped Counter64, + pmIfStatPrev1dInputPkts Counter64, + pmIfStatPrev1dInputbytes Counter64, + pmIfStatPrev1dInputBrdCst Counter64, + pmIfStatPrev1dInputMltCst Counter64, + pmIfStatPrev1dCrcErrors Counter64, + pmIfStatPrev1dCollision Counter64, + pmIfStatPrev1dUndersized Counter64, + pmIfStatPrev1dOversized Counter64, + pmIfStatPrev1dFragments Counter64, + pmIfStatPrev1dJabbers Counter64, + pmIfStatPrev1dPkt64 Counter64, + pmIfStatPrev1dPkt65To127 Counter64, + pmIfStatPrev1dPkt128To255 Counter64, + pmIfStatPrev1dPkt256To511 Counter64, + pmIfStatPrev1dPkt512To1023 Counter64, + pmIfStatPrev1dPkt1024 Counter64, + pmIfStatPrev1dOutputPkts Counter64, + pmIfStatPrev1dOutputBytes Counter64, + pmIfStatPrev1dStartTime DateAndTime, + pmIfStatPrev1dStopTime DateAndTime + } + +pmIfStatPrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmIfStatPrev1dEntry 1 } + +pmIfStatPrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmIfStatPrev1dEntry 2 } + +pmIfStatPrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmIfStatPrev1dEntry 3 } + +pmIfStatPrev1dDropped OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of dropped events." + ::= { pmIfStatPrev1dEntry 4 } + +pmIfStatPrev1dInputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of input packets." + ::= { pmIfStatPrev1dEntry 5 } + +pmIfStatPrev1dInputbytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of input bytes." + ::= { pmIfStatPrev1dEntry 6 } + +pmIfStatPrev1dCrcErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with CRC error." + ::= { pmIfStatPrev1dEntry 7 } + +pmIfStatPrev1dInputBrdCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of broadcast packets." + ::= { pmIfStatPrev1dEntry 8 } + +pmIfStatPrev1dInputMltCst OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of multicast packets." + ::= { pmIfStatPrev1dEntry 9 } + +pmIfStatPrev1dCollision OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of collisions." + ::= { pmIfStatPrev1dEntry 10 } + +pmIfStatPrev1dUndersized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of undersized packets." + ::= { pmIfStatPrev1dEntry 11 } + +pmIfStatPrev1dOversized OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of oversized packets." + ::= { pmIfStatPrev1dEntry 12 } + +pmIfStatPrev1dFragments OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of frament packets." + ::= { pmIfStatPrev1dEntry 13 } + +pmIfStatPrev1dJabbers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of jabber packets." + ::= { pmIfStatPrev1dEntry 14 } + +pmIfStatPrev1dPkt64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with size under 64." + ::= { pmIfStatPrev1dEntry 15 } + +pmIfStatPrev1dPkt65To127 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with size between 65 to 127." + ::= { pmIfStatPrev1dEntry 16 } + +pmIfStatPrev1dPkt128To255 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with size between 128 to 255." + ::= { pmIfStatPrev1dEntry 17 } + +pmIfStatPrev1dPkt256To511 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with size between 256 to 511." + ::= { pmIfStatPrev1dEntry 18 } + +pmIfStatPrev1dPkt512To1023 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with size between 512 to 1023." + ::= { pmIfStatPrev1dEntry 19 } + +pmIfStatPrev1dPkt1024 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of packets with size over 1024." + ::= { pmIfStatPrev1dEntry 20 } + +pmIfStatPrev1dOutputPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of interface output packets." + ::= { pmIfStatPrev1dEntry 21 } + +pmIfStatPrev1dOutputBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of interface output bytes." + ::= { pmIfStatPrev1dEntry 22 } + +pmIfStatPrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day start time." + ::= { pmIfStatPrev1dEntry 100 } + +pmIfStatPrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day stop time." + ::= { pmIfStatPrev1dEntry 101 } + + +pmTcaIfDropped15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfDropped15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 7 } + +pmTcaIfDropped15mEntry OBJECT-TYPE + SYNTAX PMTcaIfDropped15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaIfDropped15mIndex } + ::= { pmTcaIfDropped15mTable 1 } + +PMTcaIfDropped15mEntry ::= + SEQUENCE + { + pmTcaIfDropped15mIndex Integer32, + pmTcaIfDropped15mId OCTET STRING, + pmTcaIfDropped15mUnitType INTEGER, + pmTcaIfDropped15mCnt Counter64, + pmTcaIfDropped15mThreshold Counter64, + pmTcaIfDropped15mOccurTime DateAndTime + } + +pmTcaIfDropped15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfDropped15mEntry 1 } + +pmTcaIfDropped15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfDropped15mEntry 2 } + +pmTcaIfDropped15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfDropped15mEntry 3 } + +pmTcaIfDropped15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of interface dropped events." + ::= { pmTcaIfDropped15mEntry 4 } + +pmTcaIfDropped15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of interface dropped events." + ::= { pmTcaIfDropped15mEntry 5 } + +pmTcaIfDropped15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfDropped15mEntry 6 } + +pmTcaIfDropped1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfDropped1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 8 } + +pmTcaIfDropped1hEntry OBJECT-TYPE + SYNTAX PMTcaIfDropped1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaIfDropped1hIndex } + ::= { pmTcaIfDropped1hTable 1 } + +PMTcaIfDropped1hEntry ::= + SEQUENCE + { + pmTcaIfDropped1hIndex Integer32, + pmTcaIfDropped1hId OCTET STRING, + pmTcaIfDropped1hUnitType INTEGER, + pmTcaIfDropped1hCnt Counter64, + pmTcaIfDropped1hThreshold Counter64, + pmTcaIfDropped1hOccurTime DateAndTime + } + +pmTcaIfDropped1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfDropped1hEntry 1 } + +pmTcaIfDropped1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfDropped1hEntry 2 } + +pmTcaIfDropped1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfDropped1hEntry 3 } + +pmTcaIfDropped1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of interface dropped events." + ::= { pmTcaIfDropped1hEntry 4 } + +pmTcaIfDropped1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of interface dropped events." + ::= { pmTcaIfDropped1hEntry 5 } + +pmTcaIfDropped1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfDropped1hEntry 6 } + +pmTcaIfDropped1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfDropped1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains temperature information of all units." + ::= { pmIfStatistics 9 } + +pmTcaIfDropped1dEntry OBJECT-TYPE + SYNTAX PMTcaIfDropped1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { pmTcaIfDropped1dIndex } + ::= { pmTcaIfDropped1dTable 1 } + +PMTcaIfDropped1dEntry ::= + SEQUENCE + { + pmTcaIfDropped1dIndex Integer32, + pmTcaIfDropped1dId OCTET STRING, + pmTcaIfDropped1dUnitType INTEGER, + pmTcaIfDropped1dCnt Counter64, + pmTcaIfDropped1dThreshold Counter64, + pmTcaIfDropped1dOccurTime DateAndTime + } + +pmTcaIfDropped1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfDropped1dEntry 1 } + +pmTcaIfDropped1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfDropped1dEntry 2 } + +pmTcaIfDropped1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfDropped1dEntry 3 } + +pmTcaIfDropped1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of interface dropped events." + ::= { pmTcaIfDropped1dEntry 4 } + +pmTcaIfDropped1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of interface dropped events." + ::= { pmTcaIfDropped1dEntry 5 } + +pmTcaIfDropped1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfDropped1dEntry 6 } + + +pmTcaIfInPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 10 } + +pmTcaIfInPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaIfInPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInPkts15mIndex } + ::= { pmTcaIfInPkts15mTable 1 } + +PMTcaIfInPkts15mEntry ::= + SEQUENCE + { + pmTcaIfInPkts15mIndex Integer32, + pmTcaIfInPkts15mId OCTET STRING, + pmTcaIfInPkts15mUnitType INTEGER, + pmTcaIfInPkts15mCnt Counter64, + pmTcaIfInPkts15mThreshold Counter64, + pmTcaIfInPkts15mOccurTime DateAndTime + } + +pmTcaIfInPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInPkts15mEntry 1 } + +pmTcaIfInPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInPkts15mEntry 2 } + +pmTcaIfInPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInPkts15mEntry 3 } + +pmTcaIfInPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of input packets." + ::= { pmTcaIfInPkts15mEntry 4 } + +pmTcaIfInPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of input packets." + ::= { pmTcaIfInPkts15mEntry 5 } + +pmTcaIfInPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInPkts15mEntry 6 } + +pmTcaIfInPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 11 } + +pmTcaIfInPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaIfInPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInPkts1hIndex } + ::= { pmTcaIfInPkts1hTable 1 } + +PMTcaIfInPkts1hEntry ::= + SEQUENCE + { + pmTcaIfInPkts1hIndex Integer32, + pmTcaIfInPkts1hId OCTET STRING, + pmTcaIfInPkts1hUnitType INTEGER, + pmTcaIfInPkts1hCnt Counter64, + pmTcaIfInPkts1hThreshold Counter64, + pmTcaIfInPkts1hOccurTime DateAndTime + } + +pmTcaIfInPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInPkts1hEntry 1 } + +pmTcaIfInPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInPkts1hEntry 2 } + +pmTcaIfInPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInPkts1hEntry 3 } + +pmTcaIfInPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of input packets." + ::= { pmTcaIfInPkts1hEntry 4 } + +pmTcaIfInPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of input packets." + ::= { pmTcaIfInPkts1hEntry 5 } + +pmTcaIfInPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInPkts1hEntry 6 } + +pmTcaIfInPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 12 } + +pmTcaIfInPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaIfInPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInPkts1dIndex } + ::= { pmTcaIfInPkts1dTable 1 } + +PMTcaIfInPkts1dEntry ::= + SEQUENCE + { + pmTcaIfInPkts1dIndex Integer32, + pmTcaIfInPkts1dId OCTET STRING, + pmTcaIfInPkts1dUnitType INTEGER, + pmTcaIfInPkts1dCnt Counter64, + pmTcaIfInPkts1dThreshold Counter64, + pmTcaIfInPkts1dOccurTime DateAndTime + } + +pmTcaIfInPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInPkts1dEntry 1 } + +pmTcaIfInPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInPkts1dEntry 2 } + +pmTcaIfInPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInPkts1dEntry 3 } + +pmTcaIfInPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of input packets." + ::= { pmTcaIfInPkts1dEntry 4 } + +pmTcaIfInPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of input packets." + ::= { pmTcaIfInPkts1dEntry 5 } + +pmTcaIfInPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInPkts1dEntry 6 } + + +pmTcaIfInBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 13 } + +pmTcaIfInBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaIfInBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInBytes15mIndex } + ::= { pmTcaIfInBytes15mTable 1 } + +PMTcaIfInBytes15mEntry ::= + SEQUENCE + { + pmTcaIfInBytes15mIndex Integer32, + pmTcaIfInBytes15mId OCTET STRING, + pmTcaIfInBytes15mUnitType INTEGER, + pmTcaIfInBytes15mCnt Counter64, + pmTcaIfInBytes15mThreshold Counter64, + pmTcaIfInBytes15mOccurTime DateAndTime + } + +pmTcaIfInBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInBytes15mEntry 1 } + +pmTcaIfInBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInBytes15mEntry 2 } + +pmTcaIfInBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInBytes15mEntry 3 } + +pmTcaIfInBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of input bytes." + ::= { pmTcaIfInBytes15mEntry 4 } + +pmTcaIfInBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of input bytes." + ::= { pmTcaIfInBytes15mEntry 5 } + +pmTcaIfInBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInBytes15mEntry 6 } + +pmTcaIfInBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 14 } + +pmTcaIfInBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaIfInBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInBytes1hIndex } + ::= { pmTcaIfInBytes1hTable 1 } + +PMTcaIfInBytes1hEntry ::= + SEQUENCE + { + pmTcaIfInBytes1hIndex Integer32, + pmTcaIfInBytes1hId OCTET STRING, + pmTcaIfInBytes1hUnitType INTEGER, + pmTcaIfInBytes1hCnt Counter64, + pmTcaIfInBytes1hThreshold Counter64, + pmTcaIfInBytes1hOccurTime DateAndTime + } + +pmTcaIfInBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInBytes1hEntry 1 } + +pmTcaIfInBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInBytes1hEntry 2 } + +pmTcaIfInBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInBytes1hEntry 3 } + +pmTcaIfInBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of input bytes." + ::= { pmTcaIfInBytes1hEntry 4 } + +pmTcaIfInBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of input bytes." + ::= { pmTcaIfInBytes1hEntry 5 } + +pmTcaIfInBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInBytes1hEntry 6 } + +pmTcaIfInBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 15 } + +pmTcaIfInBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaIfInBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInBytes1dIndex } + ::= { pmTcaIfInBytes1dTable 1 } + +PMTcaIfInBytes1dEntry ::= + SEQUENCE + { + pmTcaIfInBytes1dIndex Integer32, + pmTcaIfInBytes1dId OCTET STRING, + pmTcaIfInBytes1dUnitType INTEGER, + pmTcaIfInBytes1dCnt Counter64, + pmTcaIfInBytes1dThreshold Counter64, + pmTcaIfInBytes1dOccurTime DateAndTime + } + +pmTcaIfInBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInBytes1dEntry 1 } + +pmTcaIfInBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInBytes1dEntry 2 } + +pmTcaIfInBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInBytes1dEntry 3 } + +pmTcaIfInBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of input bytes." + ::= { pmTcaIfInBytes1dEntry 4 } + +pmTcaIfInBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of input bytes." + ::= { pmTcaIfInBytes1dEntry 5 } + +pmTcaIfInBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInBytes1dEntry 6 } + + +pmTcaIfInBrdcasts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInBrdcasts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 16 } + +pmTcaIfInBrdcasts15mEntry OBJECT-TYPE + SYNTAX PMTcaIfInBrdcasts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInBrdcasts15mIndex } + ::= { pmTcaIfInBrdcasts15mTable 1 } + +PMTcaIfInBrdcasts15mEntry ::= + SEQUENCE + { + pmTcaIfInBrdcasts15mIndex Integer32, + pmTcaIfInBrdcasts15mId OCTET STRING, + pmTcaIfInBrdcasts15mUnitType INTEGER, + pmTcaIfInBrdcasts15mCnt Counter64, + pmTcaIfInBrdcasts15mThreshold Counter64, + pmTcaIfInBrdcasts15mOccurTime DateAndTime + } + +pmTcaIfInBrdcasts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInBrdcasts15mEntry 1 } + +pmTcaIfInBrdcasts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInBrdcasts15mEntry 2 } + +pmTcaIfInBrdcasts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInBrdcasts15mEntry 3 } + +pmTcaIfInBrdcasts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of input broadcast packets." + ::= { pmTcaIfInBrdcasts15mEntry 4 } + +pmTcaIfInBrdcasts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of input broadcast packets." + ::= { pmTcaIfInBrdcasts15mEntry 5 } + +pmTcaIfInBrdcasts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInBrdcasts15mEntry 6 } + +pmTcaIfInBrdcasts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInBrdcasts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 17 } + +pmTcaIfInBrdcasts1hEntry OBJECT-TYPE + SYNTAX PMTcaIfInBrdcasts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInBrdcasts1hIndex } + ::= { pmTcaIfInBrdcasts1hTable 1 } + +PMTcaIfInBrdcasts1hEntry ::= + SEQUENCE + { + pmTcaIfInBrdcasts1hIndex Integer32, + pmTcaIfInBrdcasts1hId OCTET STRING, + pmTcaIfInBrdcasts1hUnitType INTEGER, + pmTcaIfInBrdcasts1hCnt Counter64, + pmTcaIfInBrdcasts1hThreshold Counter64, + pmTcaIfInBrdcasts1hOccurTime DateAndTime + } + +pmTcaIfInBrdcasts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInBrdcasts1hEntry 1 } + +pmTcaIfInBrdcasts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInBrdcasts1hEntry 2 } + +pmTcaIfInBrdcasts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInBrdcasts1hEntry 3 } + +pmTcaIfInBrdcasts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of input broadcast packets." + ::= { pmTcaIfInBrdcasts1hEntry 4 } + +pmTcaIfInBrdcasts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of input broadcast packets." + ::= { pmTcaIfInBrdcasts1hEntry 5 } + +pmTcaIfInBrdcasts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInBrdcasts1hEntry 6 } + +pmTcaIfInBrdcasts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInBrdcasts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 18 } + +pmTcaIfInBrdcasts1dEntry OBJECT-TYPE + SYNTAX PMTcaIfInBrdcasts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInBrdcasts1dIndex } + ::= { pmTcaIfInBrdcasts1dTable 1 } + +PMTcaIfInBrdcasts1dEntry ::= + SEQUENCE + { + pmTcaIfInBrdcasts1dIndex Integer32, + pmTcaIfInBrdcasts1dId OCTET STRING, + pmTcaIfInBrdcasts1dUnitType INTEGER, + pmTcaIfInBrdcasts1dCnt Counter64, + pmTcaIfInBrdcasts1dThreshold Counter64, + pmTcaIfInBrdcasts1dOccurTime DateAndTime + } + +pmTcaIfInBrdcasts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInBrdcasts1dEntry 1 } + +pmTcaIfInBrdcasts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInBrdcasts1dEntry 2 } + +pmTcaIfInBrdcasts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInBrdcasts1dEntry 3 } + +pmTcaIfInBrdcasts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of input broadcast packets." + ::= { pmTcaIfInBrdcasts1dEntry 4 } + +pmTcaIfInBrdcasts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of input broadcast packets." + ::= { pmTcaIfInBrdcasts1dEntry 5 } + +pmTcaIfInBrdcasts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInBrdcasts1dEntry 6 } + + +pmTcaIfInMltcasts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInMltcasts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 19 } + +pmTcaIfInMltcasts15mEntry OBJECT-TYPE + SYNTAX PMTcaIfInMltcasts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInMltcasts15mIndex } + ::= { pmTcaIfInMltcasts15mTable 1 } + +PMTcaIfInMltcasts15mEntry ::= + SEQUENCE + { + pmTcaIfInMltcasts15mIndex Integer32, + pmTcaIfInMltcasts15mId OCTET STRING, + pmTcaIfInMltcasts15mUnitType INTEGER, + pmTcaIfInMltcasts15mCnt Counter64, + pmTcaIfInMltcasts15mThreshold Counter64, + pmTcaIfInMltcasts15mOccurTime DateAndTime + } + +pmTcaIfInMltcasts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInMltcasts15mEntry 1 } + +pmTcaIfInMltcasts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInMltcasts15mEntry 2 } + +pmTcaIfInMltcasts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInMltcasts15mEntry 3 } + +pmTcaIfInMltcasts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of input multicast packets." + ::= { pmTcaIfInMltcasts15mEntry 4 } + +pmTcaIfInMltcasts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of input multicast packets." + ::= { pmTcaIfInMltcasts15mEntry 5 } + +pmTcaIfInMltcasts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInMltcasts15mEntry 6 } + +pmTcaIfInMltcasts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInMltcasts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 20 } + +pmTcaIfInMltcasts1hEntry OBJECT-TYPE + SYNTAX PMTcaIfInMltcasts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInMltcasts1hIndex } + ::= { pmTcaIfInMltcasts1hTable 1 } + +PMTcaIfInMltcasts1hEntry ::= + SEQUENCE + { + pmTcaIfInMltcasts1hIndex Integer32, + pmTcaIfInMltcasts1hId OCTET STRING, + pmTcaIfInMltcasts1hUnitType INTEGER, + pmTcaIfInMltcasts1hCnt Counter64, + pmTcaIfInMltcasts1hThreshold Counter64, + pmTcaIfInMltcasts1hOccurTime DateAndTime + } + +pmTcaIfInMltcasts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInMltcasts1hEntry 1 } + +pmTcaIfInMltcasts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInMltcasts1hEntry 2 } + +pmTcaIfInMltcasts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInMltcasts1hEntry 3 } + +pmTcaIfInMltcasts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of input multicast packets." + ::= { pmTcaIfInMltcasts1hEntry 4 } + +pmTcaIfInMltcasts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of input multicast packets." + ::= { pmTcaIfInMltcasts1hEntry 5 } + +pmTcaIfInMltcasts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInMltcasts1hEntry 6 } + +pmTcaIfInMltcasts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfInMltcasts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 21 } + +pmTcaIfInMltcasts1dEntry OBJECT-TYPE + SYNTAX PMTcaIfInMltcasts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfInMltcasts1dIndex } + ::= { pmTcaIfInMltcasts1dTable 1 } + +PMTcaIfInMltcasts1dEntry ::= + SEQUENCE + { + pmTcaIfInMltcasts1dIndex Integer32, + pmTcaIfInMltcasts1dId OCTET STRING, + pmTcaIfInMltcasts1dUnitType INTEGER, + pmTcaIfInMltcasts1dCnt Counter64, + pmTcaIfInMltcasts1dThreshold Counter64, + pmTcaIfInMltcasts1dOccurTime DateAndTime + } + +pmTcaIfInMltcasts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfInMltcasts1dEntry 1 } + +pmTcaIfInMltcasts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfInMltcasts1dEntry 2 } + +pmTcaIfInMltcasts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfInMltcasts1dEntry 3 } + +pmTcaIfInMltcasts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of input multicast packets." + ::= { pmTcaIfInMltcasts1dEntry 4 } + +pmTcaIfInMltcasts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of input multicast packets." + ::= { pmTcaIfInMltcasts1dEntry 5 } + +pmTcaIfInMltcasts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfInMltcasts1dEntry 6 } + + +pmTcaIfCrcErr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfCrcErr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 22 } + +pmTcaIfCrcErr15mEntry OBJECT-TYPE + SYNTAX PMTcaIfCrcErr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfCrcErr15mIndex } + ::= { pmTcaIfCrcErr15mTable 1 } + +PMTcaIfCrcErr15mEntry ::= + SEQUENCE + { + pmTcaIfCrcErr15mIndex Integer32, + pmTcaIfCrcErr15mId OCTET STRING, + pmTcaIfCrcErr15mUnitType INTEGER, + pmTcaIfCrcErr15mCnt Counter64, + pmTcaIfCrcErr15mThreshold Counter64, + pmTcaIfCrcErr15mOccurTime DateAndTime + } + +pmTcaIfCrcErr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfCrcErr15mEntry 1 } + +pmTcaIfCrcErr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfCrcErr15mEntry 2 } + +pmTcaIfCrcErr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfCrcErr15mEntry 3 } + +pmTcaIfCrcErr15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with CRC error." + ::= { pmTcaIfCrcErr15mEntry 4 } + +pmTcaIfCrcErr15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with CRC error." + ::= { pmTcaIfCrcErr15mEntry 5 } + +pmTcaIfCrcErr15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfCrcErr15mEntry 6 } + +pmTcaIfCrcErr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfCrcErr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 23 } + +pmTcaIfCrcErr1hEntry OBJECT-TYPE + SYNTAX PMTcaIfCrcErr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfCrcErr1hIndex } + ::= { pmTcaIfCrcErr1hTable 1 } + +PMTcaIfCrcErr1hEntry ::= + SEQUENCE + { + pmTcaIfCrcErr1hIndex Integer32, + pmTcaIfCrcErr1hId OCTET STRING, + pmTcaIfCrcErr1hUnitType INTEGER, + pmTcaIfCrcErr1hCnt Counter64, + pmTcaIfCrcErr1hThreshold Counter64, + pmTcaIfCrcErr1hOccurTime DateAndTime + } + +pmTcaIfCrcErr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfCrcErr1hEntry 1 } + +pmTcaIfCrcErr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfCrcErr1hEntry 2 } + +pmTcaIfCrcErr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfCrcErr1hEntry 3 } + +pmTcaIfCrcErr1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with CRC error." + ::= { pmTcaIfCrcErr1hEntry 4 } + +pmTcaIfCrcErr1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with CRC error." + ::= { pmTcaIfCrcErr1hEntry 5 } + +pmTcaIfCrcErr1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfCrcErr1hEntry 6 } + +pmTcaIfCrcErr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfCrcErr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 24 } + +pmTcaIfCrcErr1dEntry OBJECT-TYPE + SYNTAX PMTcaIfCrcErr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfCrcErr1dIndex } + ::= { pmTcaIfCrcErr1dTable 1 } + +PMTcaIfCrcErr1dEntry ::= + SEQUENCE + { + pmTcaIfCrcErr1dIndex Integer32, + pmTcaIfCrcErr1dId OCTET STRING, + pmTcaIfCrcErr1dUnitType INTEGER, + pmTcaIfCrcErr1dCnt Counter64, + pmTcaIfCrcErr1dThreshold Counter64, + pmTcaIfCrcErr1dOccurTime DateAndTime + } + +pmTcaIfCrcErr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfCrcErr1dEntry 1 } + +pmTcaIfCrcErr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfCrcErr1dEntry 2 } + +pmTcaIfCrcErr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfCrcErr1dEntry 3 } + +pmTcaIfCrcErr1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with CRC error." + ::= { pmTcaIfCrcErr1dEntry 4 } + +pmTcaIfCrcErr1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with CRC error." + ::= { pmTcaIfCrcErr1dEntry 5 } + +pmTcaIfCrcErr1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfCrcErr1dEntry 6 } + +pmTcaIfCollisions15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfCollisions15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 25 } + +pmTcaIfCollisions15mEntry OBJECT-TYPE + SYNTAX PMTcaIfCollisions15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfCollisions15mIndex } + ::= { pmTcaIfCollisions15mTable 1 } + +PMTcaIfCollisions15mEntry ::= + SEQUENCE + { + pmTcaIfCollisions15mIndex Integer32, + pmTcaIfCollisions15mId OCTET STRING, + pmTcaIfCollisions15mUnitType INTEGER, + pmTcaIfCollisions15mCnt Counter64, + pmTcaIfCollisions15mThreshold Counter64, + pmTcaIfCollisions15mOccurTime DateAndTime + } + +pmTcaIfCollisions15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfCollisions15mEntry 1 } + +pmTcaIfCollisions15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfCollisions15mEntry 2 } + +pmTcaIfCollisions15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfCollisions15mEntry 3 } + +pmTcaIfCollisions15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of collisions." + ::= { pmTcaIfCollisions15mEntry 4 } + +pmTcaIfCollisions15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of collisions." + ::= { pmTcaIfCollisions15mEntry 5 } + +pmTcaIfCollisions15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfCollisions15mEntry 6 } + +pmTcaIfCollisions1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfCollisions1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 26 } + +pmTcaIfCollisions1hEntry OBJECT-TYPE + SYNTAX PMTcaIfCollisions1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfCollisions1hIndex } + ::= { pmTcaIfCollisions1hTable 1 } + +PMTcaIfCollisions1hEntry ::= + SEQUENCE + { + pmTcaIfCollisions1hIndex Integer32, + pmTcaIfCollisions1hId OCTET STRING, + pmTcaIfCollisions1hUnitType INTEGER, + pmTcaIfCollisions1hCnt Counter64, + pmTcaIfCollisions1hThreshold Counter64, + pmTcaIfCollisions1hOccurTime DateAndTime + } + +pmTcaIfCollisions1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfCollisions1hEntry 1 } + +pmTcaIfCollisions1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfCollisions1hEntry 2 } + +pmTcaIfCollisions1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfCollisions1hEntry 3 } + +pmTcaIfCollisions1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of collisions." + ::= { pmTcaIfCollisions1hEntry 4 } + +pmTcaIfCollisions1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of collisions." + ::= { pmTcaIfCollisions1hEntry 5 } + +pmTcaIfCollisions1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfCollisions1hEntry 6 } + +pmTcaIfCollisions1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfCollisions1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 27 } + +pmTcaIfCollisions1dEntry OBJECT-TYPE + SYNTAX PMTcaIfCollisions1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfCollisions1dIndex } + ::= { pmTcaIfCollisions1dTable 1 } + +PMTcaIfCollisions1dEntry ::= + SEQUENCE + { + pmTcaIfCollisions1dIndex Integer32, + pmTcaIfCollisions1dId OCTET STRING, + pmTcaIfCollisions1dUnitType INTEGER, + pmTcaIfCollisions1dCnt Counter64, + pmTcaIfCollisions1dThreshold Counter64, + pmTcaIfCollisions1dOccurTime DateAndTime + } + +pmTcaIfCollisions1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfCollisions1dEntry 1 } + +pmTcaIfCollisions1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfCollisions1dEntry 2 } + +pmTcaIfCollisions1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfCollisions1dEntry 3 } + +pmTcaIfCollisions1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of collisions." + ::= { pmTcaIfCollisions1dEntry 4 } + +pmTcaIfCollisions1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of collisions." + ::= { pmTcaIfCollisions1dEntry 5 } + +pmTcaIfCollisions1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfCollisions1dEntry 6 } + + +pmTcaIfUndersized15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfUndersized15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 28 } + +pmTcaIfUndersized15mEntry OBJECT-TYPE + SYNTAX PMTcaIfUndersized15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfUndersized15mIndex } + ::= { pmTcaIfUndersized15mTable 1 } + +PMTcaIfUndersized15mEntry ::= + SEQUENCE + { + pmTcaIfUndersized15mIndex Integer32, + pmTcaIfUndersized15mId OCTET STRING, + pmTcaIfUndersized15mUnitType INTEGER, + pmTcaIfUndersized15mCnt Counter64, + pmTcaIfUndersized15mThreshold Counter64, + pmTcaIfUndersized15mOccurTime DateAndTime + } + +pmTcaIfUndersized15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfUndersized15mEntry 1 } + +pmTcaIfUndersized15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfUndersized15mEntry 2 } + +pmTcaIfUndersized15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfUndersized15mEntry 3 } + +pmTcaIfUndersized15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of undersized packets." + ::= { pmTcaIfUndersized15mEntry 4 } + +pmTcaIfUndersized15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of undersized packets." + ::= { pmTcaIfUndersized15mEntry 5 } + +pmTcaIfUndersized15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfUndersized15mEntry 6 } + +pmTcaIfUndersized1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfUndersized1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 29 } + +pmTcaIfUndersized1hEntry OBJECT-TYPE + SYNTAX PMTcaIfUndersized1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfUndersized1hIndex } + ::= { pmTcaIfUndersized1hTable 1 } + +PMTcaIfUndersized1hEntry ::= + SEQUENCE + { + pmTcaIfUndersized1hIndex Integer32, + pmTcaIfUndersized1hId OCTET STRING, + pmTcaIfUndersized1hUnitType INTEGER, + pmTcaIfUndersized1hCnt Counter64, + pmTcaIfUndersized1hThreshold Counter64, + pmTcaIfUndersized1hOccurTime DateAndTime + } + +pmTcaIfUndersized1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfUndersized1hEntry 1 } + +pmTcaIfUndersized1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfUndersized1hEntry 2 } + +pmTcaIfUndersized1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfUndersized1hEntry 3 } + +pmTcaIfUndersized1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of undersized packets." + ::= { pmTcaIfUndersized1hEntry 4 } + +pmTcaIfUndersized1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of undersized packets." + ::= { pmTcaIfUndersized1hEntry 5 } + +pmTcaIfUndersized1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfUndersized1hEntry 6 } + +pmTcaIfUndersized1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfUndersized1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 30 } + +pmTcaIfUndersized1dEntry OBJECT-TYPE + SYNTAX PMTcaIfUndersized1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfUndersized1dIndex } + ::= { pmTcaIfUndersized1dTable 1 } + +PMTcaIfUndersized1dEntry ::= + SEQUENCE + { + pmTcaIfUndersized1dIndex Integer32, + pmTcaIfUndersized1dId OCTET STRING, + pmTcaIfUndersized1dUnitType INTEGER, + pmTcaIfUndersized1dCnt Counter64, + pmTcaIfUndersized1dThreshold Counter64, + pmTcaIfUndersized1dOccurTime DateAndTime + } + +pmTcaIfUndersized1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfUndersized1dEntry 1 } + +pmTcaIfUndersized1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfUndersized1dEntry 2 } + +pmTcaIfUndersized1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfUndersized1dEntry 3 } + +pmTcaIfUndersized1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of undersized packets." + ::= { pmTcaIfUndersized1dEntry 4 } + +pmTcaIfUndersized1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of undersized packets." + ::= { pmTcaIfUndersized1dEntry 5 } + +pmTcaIfUndersized1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfUndersized1dEntry 6 } + + +pmTcaIfOversized15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOversized15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 31 } + +pmTcaIfOversized15mEntry OBJECT-TYPE + SYNTAX PMTcaIfOversized15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfOversized15mIndex } + ::= { pmTcaIfOversized15mTable 1 } + +PMTcaIfOversized15mEntry ::= + SEQUENCE + { + pmTcaIfOversized15mIndex Integer32, + pmTcaIfOversized15mId OCTET STRING, + pmTcaIfOversized15mUnitType INTEGER, + pmTcaIfOversized15mCnt Counter64, + pmTcaIfOversized15mThreshold Counter64, + pmTcaIfOversized15mOccurTime DateAndTime + } + +pmTcaIfOversized15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOversized15mEntry 1 } + +pmTcaIfOversized15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOversized15mEntry 2 } + +pmTcaIfOversized15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOversized15mEntry 3 } + +pmTcaIfOversized15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of oversized packets." + ::= { pmTcaIfOversized15mEntry 4 } + +pmTcaIfOversized15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of oversized packets." + ::= { pmTcaIfOversized15mEntry 5 } + +pmTcaIfOversized15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOversized15mEntry 6 } + +pmTcaIfOversized1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOversized1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 32 } + +pmTcaIfOversized1hEntry OBJECT-TYPE + SYNTAX PMTcaIfOversized1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature interface of all units." + INDEX { pmTcaIfOversized1hIndex } + ::= { pmTcaIfOversized1hTable 1 } + +PMTcaIfOversized1hEntry ::= + SEQUENCE + { + pmTcaIfOversized1hIndex Integer32, + pmTcaIfOversized1hId OCTET STRING, + pmTcaIfOversized1hUnitType INTEGER, + pmTcaIfOversized1hCnt Counter64, + pmTcaIfOversized1hThreshold Counter64, + pmTcaIfOversized1hOccurTime DateAndTime + } + +pmTcaIfOversized1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOversized1hEntry 1 } + +pmTcaIfOversized1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOversized1hEntry 2 } + +pmTcaIfOversized1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOversized1hEntry 3 } + +pmTcaIfOversized1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of oversized packets." + ::= { pmTcaIfOversized1hEntry 4 } + +pmTcaIfOversized1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of oversized packets." + ::= { pmTcaIfOversized1hEntry 5 } + +pmTcaIfOversized1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOversized1hEntry 6 } + +pmTcaIfOversized1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOversized1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 33 } + +pmTcaIfOversized1dEntry OBJECT-TYPE + SYNTAX PMTcaIfOversized1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOversized1dIndex } + ::= { pmTcaIfOversized1dTable 1 } + +PMTcaIfOversized1dEntry ::= + SEQUENCE + { + pmTcaIfOversized1dIndex Integer32, + pmTcaIfOversized1dId OCTET STRING, + pmTcaIfOversized1dUnitType INTEGER, + pmTcaIfOversized1dCnt Counter64, + pmTcaIfOversized1dThreshold Counter64, + pmTcaIfOversized1dOccurTime DateAndTime + } + +pmTcaIfOversized1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOversized1dEntry 1 } + +pmTcaIfOversized1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOversized1dEntry 2 } + +pmTcaIfOversized1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOversized1dEntry 3 } + +pmTcaIfOversized1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of oversized packets." + ::= { pmTcaIfOversized1dEntry 4 } + +pmTcaIfOversized1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of oversized packets." + ::= { pmTcaIfOversized1dEntry 5 } + +pmTcaIfOversized1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOversized1dEntry 6 } + + +pmTcaIfFragments15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfFragments15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 34 } + +pmTcaIfFragments15mEntry OBJECT-TYPE + SYNTAX PMTcaIfFragments15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfFragments15mIndex } + ::= { pmTcaIfFragments15mTable 1 } + +PMTcaIfFragments15mEntry ::= + SEQUENCE + { + pmTcaIfFragments15mIndex Integer32, + pmTcaIfFragments15mId OCTET STRING, + pmTcaIfFragments15mUnitType INTEGER, + pmTcaIfFragments15mCnt Counter64, + pmTcaIfFragments15mThreshold Counter64, + pmTcaIfFragments15mOccurTime DateAndTime + } + +pmTcaIfFragments15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfFragments15mEntry 1 } + +pmTcaIfFragments15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfFragments15mEntry 2 } + +pmTcaIfFragments15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfFragments15mEntry 3 } + +pmTcaIfFragments15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of fragment packets." + ::= { pmTcaIfFragments15mEntry 4 } + +pmTcaIfFragments15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of fragment packets." + ::= { pmTcaIfFragments15mEntry 5 } + +pmTcaIfFragments15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfFragments15mEntry 6 } + +pmTcaIfFragments1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfFragments1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 35 } + +pmTcaIfFragments1hEntry OBJECT-TYPE + SYNTAX PMTcaIfFragments1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfFragments1hIndex } + ::= { pmTcaIfFragments1hTable 1 } + +PMTcaIfFragments1hEntry ::= + SEQUENCE + { + pmTcaIfFragments1hIndex Integer32, + pmTcaIfFragments1hId OCTET STRING, + pmTcaIfFragments1hUnitType INTEGER, + pmTcaIfFragments1hCnt Counter64, + pmTcaIfFragments1hThreshold Counter64, + pmTcaIfFragments1hOccurTime DateAndTime + } + +pmTcaIfFragments1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfFragments1hEntry 1 } + +pmTcaIfFragments1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfFragments1hEntry 2 } + +pmTcaIfFragments1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfFragments1hEntry 3 } + +pmTcaIfFragments1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of fragment packets." + ::= { pmTcaIfFragments1hEntry 4 } + +pmTcaIfFragments1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of fragment packets." + ::= { pmTcaIfFragments1hEntry 5 } + +pmTcaIfFragments1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfFragments1hEntry 6 } + +pmTcaIfFragments1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfFragments1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 36 } + +pmTcaIfFragments1dEntry OBJECT-TYPE + SYNTAX PMTcaIfFragments1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfFragments1dIndex } + ::= { pmTcaIfFragments1dTable 1 } + +PMTcaIfFragments1dEntry ::= + SEQUENCE + { + pmTcaIfFragments1dIndex Integer32, + pmTcaIfFragments1dId OCTET STRING, + pmTcaIfFragments1dUnitType INTEGER, + pmTcaIfFragments1dCnt Counter64, + pmTcaIfFragments1dThreshold Counter64, + pmTcaIfFragments1dOccurTime DateAndTime + } + +pmTcaIfFragments1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfFragments1dEntry 1 } + +pmTcaIfFragments1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfFragments1dEntry 2 } + +pmTcaIfFragments1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfFragments1dEntry 3 } + +pmTcaIfFragments1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of fragment packets." + ::= { pmTcaIfFragments1dEntry 4 } + +pmTcaIfFragments1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of fragment packets." + ::= { pmTcaIfFragments1dEntry 5 } + +pmTcaIfFragments1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfFragments1dEntry 6 } + + +pmTcaIfJabbers15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfJabbers15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 37 } + +pmTcaIfJabbers15mEntry OBJECT-TYPE + SYNTAX PMTcaIfJabbers15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfJabbers15mIndex } + ::= { pmTcaIfJabbers15mTable 1 } + +PMTcaIfJabbers15mEntry ::= + SEQUENCE + { + pmTcaIfJabbers15mIndex Integer32, + pmTcaIfJabbers15mId OCTET STRING, + pmTcaIfJabbers15mUnitType INTEGER, + pmTcaIfJabbers15mCnt Counter64, + pmTcaIfJabbers15mThreshold Counter64, + pmTcaIfJabbers15mOccurTime DateAndTime + } + +pmTcaIfJabbers15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfJabbers15mEntry 1 } + +pmTcaIfJabbers15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfJabbers15mEntry 2 } + +pmTcaIfJabbers15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfJabbers15mEntry 3 } + +pmTcaIfJabbers15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of jabber packets." + ::= { pmTcaIfJabbers15mEntry 4 } + +pmTcaIfJabbers15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of jabber packets." + ::= { pmTcaIfJabbers15mEntry 5 } + +pmTcaIfJabbers15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfJabbers15mEntry 6 } + +pmTcaIfJabbers1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfJabbers1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 38 } + +pmTcaIfJabbers1hEntry OBJECT-TYPE + SYNTAX PMTcaIfJabbers1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfJabbers1hIndex } + ::= { pmTcaIfJabbers1hTable 1 } + +PMTcaIfJabbers1hEntry ::= + SEQUENCE + { + pmTcaIfJabbers1hIndex Integer32, + pmTcaIfJabbers1hId OCTET STRING, + pmTcaIfJabbers1hUnitType INTEGER, + pmTcaIfJabbers1hCnt Counter64, + pmTcaIfJabbers1hThreshold Counter64, + pmTcaIfJabbers1hOccurTime DateAndTime + } + +pmTcaIfJabbers1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfJabbers1hEntry 1 } + +pmTcaIfJabbers1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfJabbers1hEntry 2 } + +pmTcaIfJabbers1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfJabbers1hEntry 3 } + +pmTcaIfJabbers1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of jabber packets." + ::= { pmTcaIfJabbers1hEntry 4 } + +pmTcaIfJabbers1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of jabber packets." + ::= { pmTcaIfJabbers1hEntry 5 } + +pmTcaIfJabbers1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfJabbers1hEntry 6 } + +pmTcaIfJabbers1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfJabbers1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 39 } + +pmTcaIfJabbers1dEntry OBJECT-TYPE + SYNTAX PMTcaIfJabbers1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfJabbers1dIndex } + ::= { pmTcaIfJabbers1dTable 1 } + +PMTcaIfJabbers1dEntry ::= + SEQUENCE + { + pmTcaIfJabbers1dIndex Integer32, + pmTcaIfJabbers1dId OCTET STRING, + pmTcaIfJabbers1dUnitType INTEGER, + pmTcaIfJabbers1dCnt Counter64, + pmTcaIfJabbers1dThreshold Counter64, + pmTcaIfJabbers1dOccurTime DateAndTime + } + +pmTcaIfJabbers1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfJabbers1dEntry 1 } + +pmTcaIfJabbers1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfJabbers1dEntry 2 } + +pmTcaIfJabbers1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfJabbers1dEntry 3 } + +pmTcaIfJabbers1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of jabber packets." + ::= { pmTcaIfJabbers1dEntry 4 } + +pmTcaIfJabbers1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of jabber packets." + ::= { pmTcaIfJabbers1dEntry 5 } + +pmTcaIfJabbers1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfJabbers1dEntry 6 } + + +pmTcaIfPkt6415mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt6415mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 40 } + +pmTcaIfPkt6415mEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt6415mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt6415mIndex } + ::= { pmTcaIfPkt6415mTable 1 } + +PMTcaIfPkt6415mEntry ::= + SEQUENCE + { + pmTcaIfPkt6415mIndex Integer32, + pmTcaIfPkt6415mId OCTET STRING, + pmTcaIfPkt6415mUnitType INTEGER, + pmTcaIfPkt6415mCnt Counter64, + pmTcaIfPkt6415mThreshold Counter64, + pmTcaIfPkt6415mOccurTime DateAndTime + } + +pmTcaIfPkt6415mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt6415mEntry 1 } + +pmTcaIfPkt6415mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt6415mEntry 2 } + +pmTcaIfPkt6415mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt6415mEntry 3 } + +pmTcaIfPkt6415mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with size under 64." + ::= { pmTcaIfPkt6415mEntry 4 } + +pmTcaIfPkt6415mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with size under 64." + ::= { pmTcaIfPkt6415mEntry 5 } + +pmTcaIfPkt6415mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt6415mEntry 6 } + +pmTcaIfPkt641hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt641hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 41 } + +pmTcaIfPkt641hEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt641hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt641hIndex } + ::= { pmTcaIfPkt641hTable 1 } + +PMTcaIfPkt641hEntry ::= + SEQUENCE + { + pmTcaIfPkt641hIndex Integer32, + pmTcaIfPkt641hId OCTET STRING, + pmTcaIfPkt641hUnitType INTEGER, + pmTcaIfPkt641hCnt Counter64, + pmTcaIfPkt641hThreshold Counter64, + pmTcaIfPkt641hOccurTime DateAndTime + } + +pmTcaIfPkt641hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt641hEntry 1 } + +pmTcaIfPkt641hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt641hEntry 2 } + +pmTcaIfPkt641hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt641hEntry 3 } + +pmTcaIfPkt641hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with size under 64." + ::= { pmTcaIfPkt641hEntry 4 } + +pmTcaIfPkt641hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with size under 64." + ::= { pmTcaIfPkt641hEntry 5 } + +pmTcaIfPkt641hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt641hEntry 6 } + +pmTcaIfPkt641dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt641dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 42 } + +pmTcaIfPkt641dEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt641dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt641dIndex } + ::= { pmTcaIfPkt641dTable 1 } + +PMTcaIfPkt641dEntry ::= + SEQUENCE + { + pmTcaIfPkt641dIndex Integer32, + pmTcaIfPkt641dId OCTET STRING, + pmTcaIfPkt641dUnitType INTEGER, + pmTcaIfPkt641dCnt Counter64, + pmTcaIfPkt641dThreshold Counter64, + pmTcaIfPkt641dOccurTime DateAndTime + } + +pmTcaIfPkt641dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt641dEntry 1 } + +pmTcaIfPkt641dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt641dEntry 2 } + +pmTcaIfPkt641dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt641dEntry 3 } + +pmTcaIfPkt641dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with size under 64." + ::= { pmTcaIfPkt641dEntry 4 } + +pmTcaIfPkt641dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with size under 64." + ::= { pmTcaIfPkt641dEntry 5 } + +pmTcaIfPkt641dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt641dEntry 6 } + + +pmTcaIfPkt65to12715mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt65to12715mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 43 } + +pmTcaIfPkt65to12715mEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt65to12715mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt65to12715mIndex } + ::= { pmTcaIfPkt65to12715mTable 1 } + +PMTcaIfPkt65to12715mEntry ::= + SEQUENCE + { + pmTcaIfPkt65to12715mIndex Integer32, + pmTcaIfPkt65to12715mId OCTET STRING, + pmTcaIfPkt65to12715mUnitType INTEGER, + pmTcaIfPkt65to12715mCnt Counter64, + pmTcaIfPkt65to12715mThreshold Counter64, + pmTcaIfPkt65to12715mOccurTime DateAndTime + } + +pmTcaIfPkt65to12715mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt65to12715mEntry 1 } + +pmTcaIfPkt65to12715mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt65to12715mEntry 2 } + +pmTcaIfPkt65to12715mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt65to12715mEntry 3 } + +pmTcaIfPkt65to12715mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with size between 65 to 127." + ::= { pmTcaIfPkt65to12715mEntry 4 } + +pmTcaIfPkt65to12715mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with size between 65 to 127." + ::= { pmTcaIfPkt65to12715mEntry 5 } + +pmTcaIfPkt65to12715mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt65to12715mEntry 6 } + +pmTcaIfPkt65to1271hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt65to1271hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 44 } + +pmTcaIfPkt65to1271hEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt65to1271hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt65to1271hIndex } + ::= { pmTcaIfPkt65to1271hTable 1 } + +PMTcaIfPkt65to1271hEntry ::= + SEQUENCE + { + pmTcaIfPkt65to1271hIndex Integer32, + pmTcaIfPkt65to1271hId OCTET STRING, + pmTcaIfPkt65to1271hUnitType INTEGER, + pmTcaIfPkt65to1271hCnt Counter64, + pmTcaIfPkt65to1271hThreshold Counter64, + pmTcaIfPkt65to1271hOccurTime DateAndTime + } + +pmTcaIfPkt65to1271hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt65to1271hEntry 1 } + +pmTcaIfPkt65to1271hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt65to1271hEntry 2 } + +pmTcaIfPkt65to1271hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt65to1271hEntry 3 } + +pmTcaIfPkt65to1271hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with size between 65 to 127." + ::= { pmTcaIfPkt65to1271hEntry 4 } + +pmTcaIfPkt65to1271hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with size between 65 to 127." + ::= { pmTcaIfPkt65to1271hEntry 5 } + +pmTcaIfPkt65to1271hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt65to1271hEntry 6 } + +pmTcaIfPkt65to1271dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt65to1271dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 45 } + +pmTcaIfPkt65to1271dEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt65to1271dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt65to1271dIndex } + ::= { pmTcaIfPkt65to1271dTable 1 } + +PMTcaIfPkt65to1271dEntry ::= + SEQUENCE + { + pmTcaIfPkt65to1271dIndex Integer32, + pmTcaIfPkt65to1271dId OCTET STRING, + pmTcaIfPkt65to1271dUnitType INTEGER, + pmTcaIfPkt65to1271dCnt Counter64, + pmTcaIfPkt65to1271dThreshold Counter64, + pmTcaIfPkt65to1271dOccurTime DateAndTime + } + +pmTcaIfPkt65to1271dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt65to1271dEntry 1 } + +pmTcaIfPkt65to1271dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt65to1271dEntry 2 } + +pmTcaIfPkt65to1271dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt65to1271dEntry 3 } + +pmTcaIfPkt65to1271dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with size between 65 to 127." + ::= { pmTcaIfPkt65to1271dEntry 4 } + +pmTcaIfPkt65to1271dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with size between 65 to 127." + ::= { pmTcaIfPkt65to1271dEntry 5 } + +pmTcaIfPkt65to1271dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt65to1271dEntry 6 } + + +pmTcaIfPkt128to25515mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt128to25515mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 46 } + +pmTcaIfPkt128to25515mEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt128to25515mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt128to25515mIndex } + ::= { pmTcaIfPkt128to25515mTable 1 } + +PMTcaIfPkt128to25515mEntry ::= + SEQUENCE + { + pmTcaIfPkt128to25515mIndex Integer32, + pmTcaIfPkt128to25515mId OCTET STRING, + pmTcaIfPkt128to25515mUnitType INTEGER, + pmTcaIfPkt128to25515mCnt Counter64, + pmTcaIfPkt128to25515mThreshold Counter64, + pmTcaIfPkt128to25515mOccurTime DateAndTime + } + +pmTcaIfPkt128to25515mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt128to25515mEntry 1 } + +pmTcaIfPkt128to25515mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt128to25515mEntry 2 } + +pmTcaIfPkt128to25515mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt128to25515mEntry 3 } + +pmTcaIfPkt128to25515mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with size between 128 to 255." + ::= { pmTcaIfPkt128to25515mEntry 4 } + +pmTcaIfPkt128to25515mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with size between 128 to 255." + ::= { pmTcaIfPkt128to25515mEntry 5 } + +pmTcaIfPkt128to25515mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt128to25515mEntry 6 } + +pmTcaIfPkt128to2551hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt128to2551hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 47 } + +pmTcaIfPkt128to2551hEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt128to2551hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt128to2551hIndex } + ::= { pmTcaIfPkt128to2551hTable 1 } + +PMTcaIfPkt128to2551hEntry ::= + SEQUENCE + { + pmTcaIfPkt128to2551hIndex Integer32, + pmTcaIfPkt128to2551hId OCTET STRING, + pmTcaIfPkt128to2551hUnitType INTEGER, + pmTcaIfPkt128to2551hCnt Counter64, + pmTcaIfPkt128to2551hThreshold Counter64, + pmTcaIfPkt128to2551hOccurTime DateAndTime + } + +pmTcaIfPkt128to2551hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt128to2551hEntry 1 } + +pmTcaIfPkt128to2551hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt128to2551hEntry 2 } + +pmTcaIfPkt128to2551hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt128to2551hEntry 3 } + +pmTcaIfPkt128to2551hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with size between 128 to 255." + ::= { pmTcaIfPkt128to2551hEntry 4 } + +pmTcaIfPkt128to2551hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with size between 128 to 255." + ::= { pmTcaIfPkt128to2551hEntry 5 } + +pmTcaIfPkt128to2551hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt128to2551hEntry 6 } + +pmTcaIfPkt128to2551dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt128to2551dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 48 } + +pmTcaIfPkt128to2551dEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt128to2551dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt128to2551dIndex } + ::= { pmTcaIfPkt128to2551dTable 1 } + +PMTcaIfPkt128to2551dEntry ::= + SEQUENCE + { + pmTcaIfPkt128to2551dIndex Integer32, + pmTcaIfPkt128to2551dId OCTET STRING, + pmTcaIfPkt128to2551dUnitType INTEGER, + pmTcaIfPkt128to2551dCnt Counter64, + pmTcaIfPkt128to2551dThreshold Counter64, + pmTcaIfPkt128to2551dOccurTime DateAndTime + } + +pmTcaIfPkt128to2551dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt128to2551dEntry 1 } + +pmTcaIfPkt128to2551dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt128to2551dEntry 2 } + +pmTcaIfPkt128to2551dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt128to2551dEntry 3 } + +pmTcaIfPkt128to2551dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with size between 128 to 255." + ::= { pmTcaIfPkt128to2551dEntry 4 } + +pmTcaIfPkt128to2551dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with size between 128 to 255." + ::= { pmTcaIfPkt128to2551dEntry 5 } + +pmTcaIfPkt128to2551dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt128to2551dEntry 6 } + + +pmTcaIfPkt256to51115mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt256to51115mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 49 } + +pmTcaIfPkt256to51115mEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt256to51115mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt256to51115mIndex } + ::= { pmTcaIfPkt256to51115mTable 1 } + +PMTcaIfPkt256to51115mEntry ::= + SEQUENCE + { + pmTcaIfPkt256to51115mIndex Integer32, + pmTcaIfPkt256to51115mId OCTET STRING, + pmTcaIfPkt256to51115mUnitType INTEGER, + pmTcaIfPkt256to51115mCnt Counter64, + pmTcaIfPkt256to51115mThreshold Counter64, + pmTcaIfPkt256to51115mOccurTime DateAndTime + } + +pmTcaIfPkt256to51115mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt256to51115mEntry 1 } + +pmTcaIfPkt256to51115mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt256to51115mEntry 2 } + +pmTcaIfPkt256to51115mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt256to51115mEntry 3 } + +pmTcaIfPkt256to51115mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with size between 256 to 511." + ::= { pmTcaIfPkt256to51115mEntry 4 } + +pmTcaIfPkt256to51115mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with size between 256 to 511." + ::= { pmTcaIfPkt256to51115mEntry 5 } + +pmTcaIfPkt256to51115mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt256to51115mEntry 6 } + +pmTcaIfPkt256to5111hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt256to5111hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 50 } + +pmTcaIfPkt256to5111hEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt256to5111hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt256to5111hIndex } + ::= { pmTcaIfPkt256to5111hTable 1 } + +PMTcaIfPkt256to5111hEntry ::= + SEQUENCE + { + pmTcaIfPkt256to5111hIndex Integer32, + pmTcaIfPkt256to5111hId OCTET STRING, + pmTcaIfPkt256to5111hUnitType INTEGER, + pmTcaIfPkt256to5111hCnt Counter64, + pmTcaIfPkt256to5111hThreshold Counter64, + pmTcaIfPkt256to5111hOccurTime DateAndTime + } + +pmTcaIfPkt256to5111hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt256to5111hEntry 1 } + +pmTcaIfPkt256to5111hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt256to5111hEntry 2 } + +pmTcaIfPkt256to5111hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt256to5111hEntry 3 } + +pmTcaIfPkt256to5111hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with size between 256 to 511." + ::= { pmTcaIfPkt256to5111hEntry 4 } + +pmTcaIfPkt256to5111hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with size between 256 to 511." + ::= { pmTcaIfPkt256to5111hEntry 5 } + +pmTcaIfPkt256to5111hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt256to5111hEntry 6 } + +pmTcaIfPkt256to5111dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt256to5111dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 51 } + +pmTcaIfPkt256to5111dEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt256to5111dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt256to5111dIndex } + ::= { pmTcaIfPkt256to5111dTable 1 } + +PMTcaIfPkt256to5111dEntry ::= + SEQUENCE + { + pmTcaIfPkt256to5111dIndex Integer32, + pmTcaIfPkt256to5111dId OCTET STRING, + pmTcaIfPkt256to5111dUnitType INTEGER, + pmTcaIfPkt256to5111dCnt Counter64, + pmTcaIfPkt256to5111dThreshold Counter64, + pmTcaIfPkt256to5111dOccurTime DateAndTime + } + +pmTcaIfPkt256to5111dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt256to5111dEntry 1 } + +pmTcaIfPkt256to5111dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt256to5111dEntry 2 } + +pmTcaIfPkt256to5111dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt256to5111dEntry 3 } + +pmTcaIfPkt256to5111dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with size between 256 to 511." + ::= { pmTcaIfPkt256to5111dEntry 4 } + +pmTcaIfPkt256to5111dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with size between 256 to 511." + ::= { pmTcaIfPkt256to5111dEntry 5 } + +pmTcaIfPkt256to5111dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt256to5111dEntry 6 } + + +pmTcaIfPkt512to102315mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt512to102315mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 52 } + +pmTcaIfPkt512to102315mEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt512to102315mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt512to102315mIndex } + ::= { pmTcaIfPkt512to102315mTable 1 } + +PMTcaIfPkt512to102315mEntry ::= + SEQUENCE + { + pmTcaIfPkt512to102315mIndex Integer32, + pmTcaIfPkt512to102315mId OCTET STRING, + pmTcaIfPkt512to102315mUnitType INTEGER, + pmTcaIfPkt512to102315mCnt Counter64, + pmTcaIfPkt512to102315mThreshold Counter64, + pmTcaIfPkt512to102315mOccurTime DateAndTime + } + +pmTcaIfPkt512to102315mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt512to102315mEntry 1 } + +pmTcaIfPkt512to102315mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt512to102315mEntry 2 } + +pmTcaIfPkt512to102315mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt512to102315mEntry 3 } + +pmTcaIfPkt512to102315mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with size between 512 to 1023." + ::= { pmTcaIfPkt512to102315mEntry 4 } + +pmTcaIfPkt512to102315mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with size between 512 to 1023." + ::= { pmTcaIfPkt512to102315mEntry 5 } + +pmTcaIfPkt512to102315mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt512to102315mEntry 6 } + +pmTcaIfPkt512to10231hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt512to10231hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 53 } + +pmTcaIfPkt512to10231hEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt512to10231hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt512to10231hIndex } + ::= { pmTcaIfPkt512to10231hTable 1 } + +PMTcaIfPkt512to10231hEntry ::= + SEQUENCE + { + pmTcaIfPkt512to10231hIndex Integer32, + pmTcaIfPkt512to10231hId OCTET STRING, + pmTcaIfPkt512to10231hUnitType INTEGER, + pmTcaIfPkt512to10231hCnt Counter64, + pmTcaIfPkt512to10231hThreshold Counter64, + pmTcaIfPkt512to10231hOccurTime DateAndTime + } + +pmTcaIfPkt512to10231hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt512to10231hEntry 1 } + +pmTcaIfPkt512to10231hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt512to10231hEntry 2 } + +pmTcaIfPkt512to10231hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt512to10231hEntry 3 } + +pmTcaIfPkt512to10231hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with size between 512 to 1023." + ::= { pmTcaIfPkt512to10231hEntry 4 } + +pmTcaIfPkt512to10231hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with size between 512 to 1023." + ::= { pmTcaIfPkt512to10231hEntry 5 } + +pmTcaIfPkt512to10231hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt512to10231hEntry 6 } + +pmTcaIfPkt512to10231dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt512to10231dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 54 } + +pmTcaIfPkt512to10231dEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt512to10231dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt512to10231dIndex } + ::= { pmTcaIfPkt512to10231dTable 1 } + +PMTcaIfPkt512to10231dEntry ::= + SEQUENCE + { + pmTcaIfPkt512to10231dIndex Integer32, + pmTcaIfPkt512to10231dId OCTET STRING, + pmTcaIfPkt512to10231dUnitType INTEGER, + pmTcaIfPkt512to10231dCnt Counter64, + pmTcaIfPkt512to10231dThreshold Counter64, + pmTcaIfPkt512to10231dOccurTime DateAndTime + } + +pmTcaIfPkt512to10231dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt512to10231dEntry 1 } + +pmTcaIfPkt512to10231dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt512to10231dEntry 2 } + +pmTcaIfPkt512to10231dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt512to10231dEntry 3 } + +pmTcaIfPkt512to10231dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with size between 512 to 1023." + ::= { pmTcaIfPkt512to10231dEntry 4 } + +pmTcaIfPkt512to10231dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with size between 512 to 1023." + ::= { pmTcaIfPkt512to10231dEntry 5 } + +pmTcaIfPkt512to10231dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt512to10231dEntry 6 } + + +pmTcaIfPkt102415mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt102415mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 55 } + +pmTcaIfPkt102415mEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt102415mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt102415mIndex } + ::= { pmTcaIfPkt102415mTable 1 } + +PMTcaIfPkt102415mEntry ::= + SEQUENCE + { + pmTcaIfPkt102415mIndex Integer32, + pmTcaIfPkt102415mId OCTET STRING, + pmTcaIfPkt102415mUnitType INTEGER, + pmTcaIfPkt102415mCnt Counter64, + pmTcaIfPkt102415mThreshold Counter64, + pmTcaIfPkt102415mOccurTime DateAndTime + } + +pmTcaIfPkt102415mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt102415mEntry 1 } + +pmTcaIfPkt102415mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt102415mEntry 2 } + +pmTcaIfPkt102415mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt102415mEntry 3 } + +pmTcaIfPkt102415mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of packets with size over 1024." + ::= { pmTcaIfPkt102415mEntry 4 } + +pmTcaIfPkt102415mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of packets with size over 1024." + ::= { pmTcaIfPkt102415mEntry 5 } + +pmTcaIfPkt102415mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt102415mEntry 6 } + +pmTcaIfPkt10241hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt10241hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 56 } + +pmTcaIfPkt10241hEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt10241hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt10241hIndex } + ::= { pmTcaIfPkt10241hTable 1 } + +PMTcaIfPkt10241hEntry ::= + SEQUENCE + { + pmTcaIfPkt10241hIndex Integer32, + pmTcaIfPkt10241hId OCTET STRING, + pmTcaIfPkt10241hUnitType INTEGER, + pmTcaIfPkt10241hCnt Counter64, + pmTcaIfPkt10241hThreshold Counter64, + pmTcaIfPkt10241hOccurTime DateAndTime + } + +pmTcaIfPkt10241hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt10241hEntry 1 } + +pmTcaIfPkt10241hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt10241hEntry 2 } + +pmTcaIfPkt10241hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt10241hEntry 3 } + +pmTcaIfPkt10241hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of packets with size over 1024." + ::= { pmTcaIfPkt10241hEntry 4 } + +pmTcaIfPkt10241hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of packets with size over 1024." + ::= { pmTcaIfPkt10241hEntry 5 } + +pmTcaIfPkt10241hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt10241hEntry 6 } + +pmTcaIfPkt10241dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfPkt10241dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 57 } + +pmTcaIfPkt10241dEntry OBJECT-TYPE + SYNTAX PMTcaIfPkt10241dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfPkt10241dIndex } + ::= { pmTcaIfPkt10241dTable 1 } + +PMTcaIfPkt10241dEntry ::= + SEQUENCE + { + pmTcaIfPkt10241dIndex Integer32, + pmTcaIfPkt10241dId OCTET STRING, + pmTcaIfPkt10241dUnitType INTEGER, + pmTcaIfPkt10241dCnt Counter64, + pmTcaIfPkt10241dThreshold Counter64, + pmTcaIfPkt10241dOccurTime DateAndTime + } + +pmTcaIfPkt10241dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfPkt10241dEntry 1 } + +pmTcaIfPkt10241dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfPkt10241dEntry 2 } + +pmTcaIfPkt10241dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfPkt10241dEntry 3 } + +pmTcaIfPkt10241dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of packets with size over 1024." + ::= { pmTcaIfPkt10241dEntry 4 } + +pmTcaIfPkt10241dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of packets with size over 1024." + ::= { pmTcaIfPkt10241dEntry 5 } + +pmTcaIfPkt10241dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfPkt10241dEntry 6 } + + +pmTcaIfOutPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOutPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 58 } + +pmTcaIfOutPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaIfOutPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOutPkts15mIndex } + ::= { pmTcaIfOutPkts15mTable 1 } + +PMTcaIfOutPkts15mEntry ::= + SEQUENCE + { + pmTcaIfOutPkts15mIndex Integer32, + pmTcaIfOutPkts15mId OCTET STRING, + pmTcaIfOutPkts15mUnitType INTEGER, + pmTcaIfOutPkts15mCnt Counter64, + pmTcaIfOutPkts15mThreshold Counter64, + pmTcaIfOutPkts15mOccurTime DateAndTime + } + +pmTcaIfOutPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOutPkts15mEntry 1 } + +pmTcaIfOutPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOutPkts15mEntry 2 } + +pmTcaIfOutPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOutPkts15mEntry 3 } + +pmTcaIfOutPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of output packets." + ::= { pmTcaIfOutPkts15mEntry 4 } + +pmTcaIfOutPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of output packets." + ::= { pmTcaIfOutPkts15mEntry 5 } + +pmTcaIfOutPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOutPkts15mEntry 6 } + +pmTcaIfOutPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOutPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 59 } + +pmTcaIfOutPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaIfOutPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOutPkts1hIndex } + ::= { pmTcaIfOutPkts1hTable 1 } + +PMTcaIfOutPkts1hEntry ::= + SEQUENCE + { + pmTcaIfOutPkts1hIndex Integer32, + pmTcaIfOutPkts1hId OCTET STRING, + pmTcaIfOutPkts1hUnitType INTEGER, + pmTcaIfOutPkts1hCnt Counter64, + pmTcaIfOutPkts1hThreshold Counter64, + pmTcaIfOutPkts1hOccurTime DateAndTime + } + +pmTcaIfOutPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOutPkts1hEntry 1 } + +pmTcaIfOutPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOutPkts1hEntry 2 } + +pmTcaIfOutPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOutPkts1hEntry 3 } + +pmTcaIfOutPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of output packets." + ::= { pmTcaIfOutPkts1hEntry 4 } + +pmTcaIfOutPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of output packets." + ::= { pmTcaIfOutPkts1hEntry 5 } + +pmTcaIfOutPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOutPkts1hEntry 6 } + +pmTcaIfOutPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOutPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 60 } + +pmTcaIfOutPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaIfOutPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOutPkts1dIndex } + ::= { pmTcaIfOutPkts1dTable 1 } + +PMTcaIfOutPkts1dEntry ::= + SEQUENCE + { + pmTcaIfOutPkts1dIndex Integer32, + pmTcaIfOutPkts1dId OCTET STRING, + pmTcaIfOutPkts1dUnitType INTEGER, + pmTcaIfOutPkts1dCnt Counter64, + pmTcaIfOutPkts1dThreshold Counter64, + pmTcaIfOutPkts1dOccurTime DateAndTime + } + +pmTcaIfOutPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOutPkts1dEntry 1 } + +pmTcaIfOutPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOutPkts1dEntry 2 } + +pmTcaIfOutPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOutPkts1dEntry 3 } + +pmTcaIfOutPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of output packets." + ::= { pmTcaIfOutPkts1dEntry 4 } + +pmTcaIfOutPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of output packets." + ::= { pmTcaIfOutPkts1dEntry 5 } + +pmTcaIfOutPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOutPkts1dEntry 6 } + + +pmTcaIfOutBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOutBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 61 } + +pmTcaIfOutBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaIfOutBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOutBytes15mIndex } + ::= { pmTcaIfOutBytes15mTable 1 } + +PMTcaIfOutBytes15mEntry ::= + SEQUENCE + { + pmTcaIfOutBytes15mIndex Integer32, + pmTcaIfOutBytes15mId OCTET STRING, + pmTcaIfOutBytes15mUnitType INTEGER, + pmTcaIfOutBytes15mCnt Counter64, + pmTcaIfOutBytes15mThreshold Counter64, + pmTcaIfOutBytes15mOccurTime DateAndTime + } + +pmTcaIfOutBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOutBytes15mEntry 1 } + +pmTcaIfOutBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOutBytes15mEntry 2 } + +pmTcaIfOutBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOutBytes15mEntry 3 } + +pmTcaIfOutBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of output bytes." + ::= { pmTcaIfOutBytes15mEntry 4 } + +pmTcaIfOutBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of output bytes." + ::= { pmTcaIfOutBytes15mEntry 5 } + +pmTcaIfOutBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOutBytes15mEntry 6 } + +pmTcaIfOutBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOutBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 62 } + +pmTcaIfOutBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaIfOutBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOutBytes1hIndex } + ::= { pmTcaIfOutBytes1hTable 1 } + +PMTcaIfOutBytes1hEntry ::= + SEQUENCE + { + pmTcaIfOutBytes1hIndex Integer32, + pmTcaIfOutBytes1hId OCTET STRING, + pmTcaIfOutBytes1hUnitType INTEGER, + pmTcaIfOutBytes1hCnt Counter64, + pmTcaIfOutBytes1hThreshold Counter64, + pmTcaIfOutBytes1hOccurTime DateAndTime + } + +pmTcaIfOutBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOutBytes1hEntry 1 } + +pmTcaIfOutBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOutBytes1hEntry 2 } + +pmTcaIfOutBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOutBytes1hEntry 3 } + +pmTcaIfOutBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of output bytes." + ::= { pmTcaIfOutBytes1hEntry 4 } + +pmTcaIfOutBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of output bytes." + ::= { pmTcaIfOutBytes1hEntry 5 } + +pmTcaIfOutBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOutBytes1hEntry 6 } + +pmTcaIfOutBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaIfOutBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains interface information of all units." + ::= { pmIfStatistics 63 } + +pmTcaIfOutBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaIfOutBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface information of all units." + INDEX { pmTcaIfOutBytes1dIndex } + ::= { pmTcaIfOutBytes1dTable 1 } + +PMTcaIfOutBytes1dEntry ::= + SEQUENCE + { + pmTcaIfOutBytes1dIndex Integer32, + pmTcaIfOutBytes1dId OCTET STRING, + pmTcaIfOutBytes1dUnitType INTEGER, + pmTcaIfOutBytes1dCnt Counter64, + pmTcaIfOutBytes1dThreshold Counter64, + pmTcaIfOutBytes1dOccurTime DateAndTime + } + +pmTcaIfOutBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaIfOutBytes1dEntry 1 } + +pmTcaIfOutBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface name." + ::= { pmTcaIfOutBytes1dEntry 2 } + +pmTcaIfOutBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaIfOutBytes1dEntry 3 } + +pmTcaIfOutBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of output bytes." + ::= { pmTcaIfOutBytes1dEntry 4 } + +pmTcaIfOutBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of output bytes." + ::= { pmTcaIfOutBytes1dEntry 5 } + +pmTcaIfOutBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaIfOutBytes1dEntry 6 } + + +pmLspPe OBJECT IDENTIFIER ::= { pm 103 } + + +pmLspPeCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPeCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 1 } + +pmLspPeCurr15mEntry OBJECT-TYPE + SYNTAX PMLspPeCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmLspPeCurr15mIndex } + ::= { pmLspPeCurr15mTable 1 } + +PMLspPeCurr15mEntry ::= + SEQUENCE + { + pmLspPeCurr15mIndex Integer32, + pmLspPeCurr15mId OCTET STRING, + pmLspPeCurr15mUnitType INTEGER, + pmLspPeCurr15mOutPkts Counter64, + pmLspPeCurr15mOutBytes Counter64, + pmLspPeCurr15mStartTime DateAndTime, + pmLspPeCurr15mStopTime DateAndTime + } + +pmLspPeCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPeCurr15mEntry 1 } + +pmLspPeCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmLspPeCurr15mEntry 2 } + +pmLspPeCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPeCurr15mEntry 3 } + +pmLspPeCurr15mOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of lsp-pe out packets." + ::= { pmLspPeCurr15mEntry 4 } + +pmLspPeCurr15mOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of lsp-pe out bytes." + ::= { pmLspPeCurr15mEntry 5 } + +pmLspPeCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmLspPeCurr15mEntry 100 } + +pmLspPeCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmLspPeCurr15mEntry 101 } + + +pmLspPePrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPePrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 2 } + +pmLspPePrev15mEntry OBJECT-TYPE + SYNTAX PMLspPePrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmLspPePrev15mIndex } + ::= { pmLspPePrev15mTable 1 } + +PMLspPePrev15mEntry ::= + SEQUENCE + { + pmLspPePrev15mIndex Integer32, + pmLspPePrev15mId OCTET STRING, + pmLspPePrev15mUnitType INTEGER, + pmLspPePrev15mOutPkts Counter64, + pmLspPePrev15mOutBytes Counter64, + pmLspPePrev15mStartTime DateAndTime, + pmLspPePrev15mStopTime DateAndTime + } + +pmLspPePrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPePrev15mEntry 1 } + +pmLspPePrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmLspPePrev15mEntry 2 } + +pmLspPePrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPePrev15mEntry 3 } + +pmLspPePrev15mOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of lsp-pe out packets." + ::= { pmLspPePrev15mEntry 4 } + +pmLspPePrev15mOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of lsp-pe out bytes." + ::= { pmLspPePrev15mEntry 5 } + +pmLspPePrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmLspPePrev15mEntry 100 } + +pmLspPePrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmLspPePrev15mEntry 101 } + + +pmLspPeCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPeCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 3 } + +pmLspPeCurr1hEntry OBJECT-TYPE + SYNTAX PMLspPeCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmLspPeCurr1hIndex } + ::= { pmLspPeCurr1hTable 1 } + +PMLspPeCurr1hEntry ::= + SEQUENCE + { + pmLspPeCurr1hIndex Integer32, + pmLspPeCurr1hId OCTET STRING, + pmLspPeCurr1hUnitType INTEGER, + pmLspPeCurr1hOutPkts Counter64, + pmLspPeCurr1hOutBytes Counter64, + pmLspPeCurr1hStartTime DateAndTime, + pmLspPeCurr1hStopTime DateAndTime + } + +pmLspPeCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPeCurr1hEntry 1 } + +pmLspPeCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmLspPeCurr1hEntry 2 } + +pmLspPeCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPeCurr1hEntry 3 } + +pmLspPeCurr1hOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of lsp-pe out packets." + ::= { pmLspPeCurr1hEntry 4 } + +pmLspPeCurr1hOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of lsp-pe out bytes." + ::= { pmLspPeCurr1hEntry 5 } + +pmLspPeCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmLspPeCurr1hEntry 100 } + +pmLspPeCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmLspPeCurr1hEntry 101 } + + +pmLspPePrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPePrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 4 } + +pmLspPePrev1hEntry OBJECT-TYPE + SYNTAX PMLspPePrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmLspPePrev1hIndex } + ::= { pmLspPePrev1hTable 1 } + +PMLspPePrev1hEntry ::= + SEQUENCE + { + pmLspPePrev1hIndex Integer32, + pmLspPePrev1hId OCTET STRING, + pmLspPePrev1hUnitType INTEGER, + pmLspPePrev1hOutPkts Counter64, + pmLspPePrev1hOutBytes Counter64, + pmLspPePrev1hStartTime DateAndTime, + pmLspPePrev1hStopTime DateAndTime + } + +pmLspPePrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPePrev1hEntry 1 } + +pmLspPePrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmLspPePrev1hEntry 2 } + +pmLspPePrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPePrev1hEntry 3 } + +pmLspPePrev1hOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of lsp-pe out packets." + ::= { pmLspPePrev1hEntry 4 } + +pmLspPePrev1hOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of lsp-pe out bytes." + ::= { pmLspPePrev1hEntry 5 } + +pmLspPePrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmLspPePrev1hEntry 100 } + +pmLspPePrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmLspPePrev1hEntry 101 } + + +pmLspPeCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPeCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 5 } + +pmLspPeCurr1dEntry OBJECT-TYPE + SYNTAX PMLspPeCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmLspPeCurr1dIndex } + ::= { pmLspPeCurr1dTable 1 } + +PMLspPeCurr1dEntry ::= + SEQUENCE + { + pmLspPeCurr1dIndex Integer32, + pmLspPeCurr1dId OCTET STRING, + pmLspPeCurr1dUnitType INTEGER, + pmLspPeCurr1dOutPkts Counter64, + pmLspPeCurr1dOutBytes Counter64, + pmLspPeCurr1dStartTime DateAndTime, + pmLspPeCurr1dStopTime DateAndTime + } + +pmLspPeCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPeCurr1dEntry 1 } + +pmLspPeCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmLspPeCurr1dEntry 2 } + +pmLspPeCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPeCurr1dEntry 3 } + +pmLspPeCurr1dOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of lsp-pe out packets." + ::= { pmLspPeCurr1dEntry 4 } + +pmLspPeCurr1dOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of lsp-pe out bytes." + ::= { pmLspPeCurr1dEntry 5 } + +pmLspPeCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day start time." + ::= { pmLspPeCurr1dEntry 100 } + +pmLspPeCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day stop time." + ::= { pmLspPeCurr1dEntry 101 } + + +pmLspPePrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPePrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 6 } + +pmLspPePrev1dEntry OBJECT-TYPE + SYNTAX PMLspPePrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmLspPePrev1dIndex } + ::= { pmLspPePrev1dTable 1 } + +PMLspPePrev1dEntry ::= + SEQUENCE + { + pmLspPePrev1dIndex Integer32, + pmLspPePrev1dId OCTET STRING, + pmLspPePrev1dUnitType INTEGER, + pmLspPePrev1dOutPkts Counter64, + pmLspPePrev1dOutBytes Counter64, + pmLspPePrev1dStartTime DateAndTime, + pmLspPePrev1dStopTime DateAndTime + } + +pmLspPePrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPePrev1dEntry 1 } + +pmLspPePrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmLspPePrev1dEntry 2 } + +pmLspPePrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPePrev1dEntry 3 } + +pmLspPePrev1dOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous1day counter of lsp-pe out packets." + ::= { pmLspPePrev1dEntry 4 } + +pmLspPePrev1dOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous1day counter of lsp-pe out bytes." + ::= { pmLspPePrev1dEntry 5 } + +pmLspPePrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous1day start time." + ::= { pmLspPePrev1dEntry 100 } + +pmLspPePrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous1day stop time." + ::= { pmLspPePrev1dEntry 101 } + + +pmTcaLspPeOutPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPeOutPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 7 } + +pmTcaLspPeOutPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaLspPeOutPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmTcaLspPeOutPkts15mIndex } + ::= { pmTcaLspPeOutPkts15mTable 1 } + +PMTcaLspPeOutPkts15mEntry ::= + SEQUENCE + { + pmTcaLspPeOutPkts15mIndex Integer32, + pmTcaLspPeOutPkts15mId OCTET STRING, + pmTcaLspPeOutPkts15mUnitType INTEGER, + pmTcaLspPeOutPkts15mCnt Counter64, + pmTcaLspPeOutPkts15mThreshold Counter64, + pmTcaLspPeOutPkts15mOccurTime DateAndTime + } + +pmTcaLspPeOutPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPeOutPkts15mEntry 1 } + +pmTcaLspPeOutPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmTcaLspPeOutPkts15mEntry 2 } + +pmTcaLspPeOutPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPeOutPkts15mEntry 3 } + +pmTcaLspPeOutPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of lsp-pe out packets." + ::= { pmTcaLspPeOutPkts15mEntry 4 } + +pmTcaLspPeOutPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of lsp-pe out packets." + ::= { pmTcaLspPeOutPkts15mEntry 5 } + +pmTcaLspPeOutPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPeOutPkts15mEntry 6 } + +pmTcaLspPeOutPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPeOutPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 8 } + +pmTcaLspPeOutPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaLspPeOutPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmTcaLspPeOutPkts1hIndex } + ::= { pmTcaLspPeOutPkts1hTable 1 } + +PMTcaLspPeOutPkts1hEntry ::= + SEQUENCE + { + pmTcaLspPeOutPkts1hIndex Integer32, + pmTcaLspPeOutPkts1hId OCTET STRING, + pmTcaLspPeOutPkts1hUnitType INTEGER, + pmTcaLspPeOutPkts1hCnt Counter64, + pmTcaLspPeOutPkts1hThreshold Counter64, + pmTcaLspPeOutPkts1hOccurTime DateAndTime + } + +pmTcaLspPeOutPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPeOutPkts1hEntry 1 } + +pmTcaLspPeOutPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmTcaLspPeOutPkts1hEntry 2 } + +pmTcaLspPeOutPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPeOutPkts1hEntry 3 } + +pmTcaLspPeOutPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of lsp-pe out packets." + ::= { pmTcaLspPeOutPkts1hEntry 4 } + +pmTcaLspPeOutPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of lsp-pe out packets." + ::= { pmTcaLspPeOutPkts1hEntry 5 } + +pmTcaLspPeOutPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPeOutPkts1hEntry 6 } + +pmTcaLspPeOutPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPeOutPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 9 } + +pmTcaLspPeOutPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaLspPeOutPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmTcaLspPeOutPkts1dIndex } + ::= { pmTcaLspPeOutPkts1dTable 1 } + +PMTcaLspPeOutPkts1dEntry ::= + SEQUENCE + { + pmTcaLspPeOutPkts1dIndex Integer32, + pmTcaLspPeOutPkts1dId OCTET STRING, + pmTcaLspPeOutPkts1dUnitType INTEGER, + pmTcaLspPeOutPkts1dCnt Counter64, + pmTcaLspPeOutPkts1dThreshold Counter64, + pmTcaLspPeOutPkts1dOccurTime DateAndTime + } + +pmTcaLspPeOutPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPeOutPkts1dEntry 1 } + +pmTcaLspPeOutPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmTcaLspPeOutPkts1dEntry 2 } + +pmTcaLspPeOutPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPeOutPkts1dEntry 3 } + +pmTcaLspPeOutPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of lsp-pe out packets." + ::= { pmTcaLspPeOutPkts1dEntry 4 } + +pmTcaLspPeOutPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of lsp-pe out packets." + ::= { pmTcaLspPeOutPkts1dEntry 5 } + +pmTcaLspPeOutPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPeOutPkts1dEntry 6 } + + +pmTcaLspPeOutBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPeOutBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 10 } + +pmTcaLspPeOutBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaLspPeOutBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmTcaLspPeOutBytes15mIndex } + ::= { pmTcaLspPeOutBytes15mTable 1 } + +PMTcaLspPeOutBytes15mEntry ::= + SEQUENCE + { + pmTcaLspPeOutBytes15mIndex Integer32, + pmTcaLspPeOutBytes15mId OCTET STRING, + pmTcaLspPeOutBytes15mUnitType INTEGER, + pmTcaLspPeOutBytes15mCnt Counter64, + pmTcaLspPeOutBytes15mThreshold Counter64, + pmTcaLspPeOutBytes15mOccurTime DateAndTime + } + +pmTcaLspPeOutBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPeOutBytes15mEntry 1 } + +pmTcaLspPeOutBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmTcaLspPeOutBytes15mEntry 2 } + +pmTcaLspPeOutBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPeOutBytes15mEntry 3 } + +pmTcaLspPeOutBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of lsp-pe out bytes." + ::= { pmTcaLspPeOutBytes15mEntry 4 } + +pmTcaLspPeOutBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of lsp-pe out bytes." + ::= { pmTcaLspPeOutBytes15mEntry 5 } + +pmTcaLspPeOutBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPeOutBytes15mEntry 6 } + +pmTcaLspPeOutBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPeOutBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 11 } + +pmTcaLspPeOutBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaLspPeOutBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmTcaLspPeOutBytes1hIndex } + ::= { pmTcaLspPeOutBytes1hTable 1 } + +PMTcaLspPeOutBytes1hEntry ::= + SEQUENCE + { + pmTcaLspPeOutBytes1hIndex Integer32, + pmTcaLspPeOutBytes1hId OCTET STRING, + pmTcaLspPeOutBytes1hUnitType INTEGER, + pmTcaLspPeOutBytes1hCnt Counter64, + pmTcaLspPeOutBytes1hThreshold Counter64, + pmTcaLspPeOutBytes1hOccurTime DateAndTime + } + +pmTcaLspPeOutBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPeOutBytes1hEntry 1 } + +pmTcaLspPeOutBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmTcaLspPeOutBytes1hEntry 2 } + +pmTcaLspPeOutBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPeOutBytes1hEntry 3 } + +pmTcaLspPeOutBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of lsp-pe out bytes." + ::= { pmTcaLspPeOutBytes1hEntry 4 } + +pmTcaLspPeOutBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of lsp-pe out bytes." + ::= { pmTcaLspPeOutBytes1hEntry 5 } + +pmTcaLspPeOutBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPeOutBytes1hEntry 6 } + +pmTcaLspPeOutBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPeOutBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-pe information of all units." + ::= { pmLspPe 12 } + +pmTcaLspPeOutBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaLspPeOutBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-pe information of all units." + INDEX { pmTcaLspPeOutBytes1dIndex } + ::= { pmTcaLspPeOutBytes1dTable 1 } + +PMTcaLspPeOutBytes1dEntry ::= + SEQUENCE + { + pmTcaLspPeOutBytes1dIndex Integer32, + pmTcaLspPeOutBytes1dId OCTET STRING, + pmTcaLspPeOutBytes1dUnitType INTEGER, + pmTcaLspPeOutBytes1dCnt Counter64, + pmTcaLspPeOutBytes1dThreshold Counter64, + pmTcaLspPeOutBytes1dOccurTime DateAndTime + } + +pmTcaLspPeOutBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPeOutBytes1dEntry 1 } + +pmTcaLspPeOutBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-pe name." + ::= { pmTcaLspPeOutBytes1dEntry 2 } + +pmTcaLspPeOutBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPeOutBytes1dEntry 3 } + +pmTcaLspPeOutBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of lsp-pe out bytes." + ::= { pmTcaLspPeOutBytes1dEntry 4 } + +pmTcaLspPeOutBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of lsp-pe out bytes." + ::= { pmTcaLspPeOutBytes1dEntry 5 } + +pmTcaLspPeOutBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPeOutBytes1dEntry 6 } + + +pmLspP OBJECT IDENTIFIER ::= { pm 104 } + + +pmLspPCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 1 } + +pmLspPCurr15mEntry OBJECT-TYPE + SYNTAX PMLspPCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of ls-p information of all units." + INDEX { pmLspPCurr15mIndex } + ::= { pmLspPCurr15mTable 1 } + +PMLspPCurr15mEntry ::= + SEQUENCE + { + pmLspPCurr15mIndex Integer32, + pmLspPCurr15mId OCTET STRING, + pmLspPCurr15mUnitType INTEGER, + pmLspPCurr15mEastInPkts Counter64, + pmLspPCurr15mEastInBytes Counter64, + pmLspPCurr15mWestInPkts Counter64, + pmLspPCurr15mWestInBytes Counter64, + pmLspPCurr15mStartTime DateAndTime, + pmLspPCurr15mStopTime DateAndTime + } + +pmLspPCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPCurr15mEntry 1 } + +pmLspPCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmLspPCurr15mEntry 2 } + +pmLspPCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPCurr15mEntry 3 } + +pmLspPCurr15mEastInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of lsp-p east ingress packets." + ::= { pmLspPCurr15mEntry 4 } + +pmLspPCurr15mEastInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of lsp-p east ingress bytes." + ::= { pmLspPCurr15mEntry 5 } + +pmLspPCurr15mWestInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of lsp-p west ingress packets." + ::= { pmLspPCurr15mEntry 6 } + +pmLspPCurr15mWestInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of lsp-p west ingress bytes." + ::= { pmLspPCurr15mEntry 7 } + +pmLspPCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmLspPCurr15mEntry 100 } + +pmLspPCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmLspPCurr15mEntry 101 } + + +pmLspPPrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 2 } + +pmLspPPrev15mEntry OBJECT-TYPE + SYNTAX PMLspPPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of ls-p information of all units." + INDEX { pmLspPPrev15mIndex } + ::= { pmLspPPrev15mTable 1 } + +PMLspPPrev15mEntry ::= + SEQUENCE + { + pmLspPPrev15mIndex Integer32, + pmLspPPrev15mId OCTET STRING, + pmLspPPrev15mUnitType INTEGER, + pmLspPPrev15mEastInPkts Counter64, + pmLspPPrev15mEastInBytes Counter64, + pmLspPPrev15mWestInPkts Counter64, + pmLspPPrev15mWestInBytes Counter64, + pmLspPPrev15mStartTime DateAndTime, + pmLspPPrev15mStopTime DateAndTime + } + +pmLspPPrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPPrev15mEntry 1 } + +pmLspPPrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmLspPPrev15mEntry 2 } + +pmLspPPrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPPrev15mEntry 3 } + +pmLspPPrev15mEastInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of lsp-p east ingress packets." + ::= { pmLspPPrev15mEntry 4 } + +pmLspPPrev15mEastInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of lsp-p east ingress bytes." + ::= { pmLspPPrev15mEntry 5 } + +pmLspPPrev15mWestInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of lsp-p west ingress packets." + ::= { pmLspPPrev15mEntry 6 } + +pmLspPPrev15mWestInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of lsp-p west ingress bytes." + ::= { pmLspPPrev15mEntry 7 } + +pmLspPPrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmLspPPrev15mEntry 100 } + +pmLspPPrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmLspPPrev15mEntry 101 } + + +pmLspPCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 3 } + +pmLspPCurr1hEntry OBJECT-TYPE + SYNTAX PMLspPCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of ls-p information of all units." + INDEX { pmLspPCurr1hIndex } + ::= { pmLspPCurr1hTable 1 } + +PMLspPCurr1hEntry ::= + SEQUENCE + { + pmLspPCurr1hIndex Integer32, + pmLspPCurr1hId OCTET STRING, + pmLspPCurr1hUnitType INTEGER, + pmLspPCurr1hEastInPkts Counter64, + pmLspPCurr1hEastInBytes Counter64, + pmLspPCurr1hWestInPkts Counter64, + pmLspPCurr1hWestInBytes Counter64, + pmLspPCurr1hStartTime DateAndTime, + pmLspPCurr1hStopTime DateAndTime + } + +pmLspPCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPCurr1hEntry 1 } + +pmLspPCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmLspPCurr1hEntry 2 } + +pmLspPCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPCurr1hEntry 3 } + +pmLspPCurr1hEastInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of lsp-p east ingress packets." + ::= { pmLspPCurr1hEntry 4 } + +pmLspPCurr1hEastInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of lsp-p east ingress bytes." + ::= { pmLspPCurr1hEntry 5 } + +pmLspPCurr1hWestInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of lsp-p west ingress packets." + ::= { pmLspPCurr1hEntry 6 } + +pmLspPCurr1hWestInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of lsp-p west ingress bytes." + ::= { pmLspPCurr1hEntry 7 } + +pmLspPCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmLspPCurr1hEntry 100 } + +pmLspPCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmLspPCurr1hEntry 101 } + + +pmLspPPrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 4 } + +pmLspPPrev1hEntry OBJECT-TYPE + SYNTAX PMLspPPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of ls-p information of all units." + INDEX { pmLspPPrev1hIndex } + ::= { pmLspPPrev1hTable 1 } + +PMLspPPrev1hEntry ::= + SEQUENCE + { + pmLspPPrev1hIndex Integer32, + pmLspPPrev1hId OCTET STRING, + pmLspPPrev1hUnitType INTEGER, + pmLspPPrev1hEastInPkts Counter64, + pmLspPPrev1hEastInBytes Counter64, + pmLspPPrev1hWestInPkts Counter64, + pmLspPPrev1hWestInBytes Counter64, + pmLspPPrev1hStartTime DateAndTime, + pmLspPPrev1hStopTime DateAndTime + } + +pmLspPPrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPPrev1hEntry 1 } + +pmLspPPrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmLspPPrev1hEntry 2 } + +pmLspPPrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPPrev1hEntry 3 } + +pmLspPPrev1hEastInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of lsp-p east ingress packets." + ::= { pmLspPPrev1hEntry 4 } + +pmLspPPrev1hEastInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of lsp-p east ingress bytes." + ::= { pmLspPPrev1hEntry 5 } + +pmLspPPrev1hWestInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of lsp-p west ingress packets." + ::= { pmLspPPrev1hEntry 6 } + +pmLspPPrev1hWestInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of lsp-p west ingress bytes." + ::= { pmLspPPrev1hEntry 7 } + +pmLspPPrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmLspPPrev1hEntry 100 } + +pmLspPPrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmLspPPrev1hEntry 101 } + +pmLspPCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 5 } + +pmLspPCurr1dEntry OBJECT-TYPE + SYNTAX PMLspPCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of ls-p information of all units." + INDEX { pmLspPCurr1dIndex } + ::= { pmLspPCurr1dTable 1 } + +PMLspPCurr1dEntry ::= + SEQUENCE + { + pmLspPCurr1dIndex Integer32, + pmLspPCurr1dId OCTET STRING, + pmLspPCurr1dUnitType INTEGER, + pmLspPCurr1dEastInPkts Counter64, + pmLspPCurr1dEastInBytes Counter64, + pmLspPCurr1dWestInPkts Counter64, + pmLspPCurr1dWestInBytes Counter64, + pmLspPCurr1dStartTime DateAndTime, + pmLspPCurr1dStopTime DateAndTime + } + +pmLspPCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPCurr1dEntry 1 } + +pmLspPCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmLspPCurr1dEntry 2 } + +pmLspPCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPCurr1dEntry 3 } + +pmLspPCurr1dEastInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1d counter of lsp-p east ingress packets." + ::= { pmLspPCurr1dEntry 4 } + +pmLspPCurr1dEastInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1d counter of lsp-p east ingress bytes." + ::= { pmLspPCurr1dEntry 5 } + +pmLspPCurr1dWestInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1d counter of lsp-p west ingress packets." + ::= { pmLspPCurr1dEntry 6 } + +pmLspPCurr1dWestInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1d counter of lsp-p west ingress bytes." + ::= { pmLspPCurr1dEntry 7 } + +pmLspPCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1d start time." + ::= { pmLspPCurr1dEntry 100 } + +pmLspPCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1d stop time." + ::= { pmLspPCurr1dEntry 101 } + + +pmLspPPrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMLspPPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 6 } + +pmLspPPrev1dEntry OBJECT-TYPE + SYNTAX PMLspPPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of ls-p information of all units." + INDEX { pmLspPPrev1dIndex } + ::= { pmLspPPrev1dTable 1 } + +PMLspPPrev1dEntry ::= + SEQUENCE + { + pmLspPPrev1dIndex Integer32, + pmLspPPrev1dId OCTET STRING, + pmLspPPrev1dUnitType INTEGER, + pmLspPPrev1dEastInPkts Counter64, + pmLspPPrev1dEastInBytes Counter64, + pmLspPPrev1dWestInPkts Counter64, + pmLspPPrev1dWestInBytes Counter64, + pmLspPPrev1dStartTime DateAndTime, + pmLspPPrev1dStopTime DateAndTime + } + +pmLspPPrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmLspPPrev1dEntry 1 } + +pmLspPPrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmLspPPrev1dEntry 2 } + +pmLspPPrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmLspPPrev1dEntry 3 } + +pmLspPPrev1dEastInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1d counter of lsp-p east ingress packets." + ::= { pmLspPPrev1dEntry 4 } + +pmLspPPrev1dEastInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1d counter of lsp-p east ingress bytes." + ::= { pmLspPPrev1dEntry 5 } + +pmLspPPrev1dWestInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1d counter of lsp-p west ingress packets." + ::= { pmLspPPrev1dEntry 6 } + +pmLspPPrev1dWestInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1d counter of lsp-p west ingress bytes." + ::= { pmLspPPrev1dEntry 7 } + +pmLspPPrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1d start time." + ::= { pmLspPPrev1dEntry 100 } + +pmLspPPrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1d stop time." + ::= { pmLspPPrev1dEntry 101 } + +pmTcaLspPEastInPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPEastInPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 7 } + +pmTcaLspPEastInPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaLspPEastInPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPEastInPkts15mIndex } + ::= { pmTcaLspPEastInPkts15mTable 1 } + +PMTcaLspPEastInPkts15mEntry ::= + SEQUENCE + { + pmTcaLspPEastInPkts15mIndex Integer32, + pmTcaLspPEastInPkts15mId OCTET STRING, + pmTcaLspPEastInPkts15mUnitType INTEGER, + pmTcaLspPEastInPkts15mCnt Counter64, + pmTcaLspPEastInPkts15mThreshold Counter64, + pmTcaLspPEastInPkts15mOccurTime DateAndTime + } + +pmTcaLspPEastInPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPEastInPkts15mEntry 1 } + +pmTcaLspPEastInPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPEastInPkts15mEntry 2 } + +pmTcaLspPEastInPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPEastInPkts15mEntry 3 } + +pmTcaLspPEastInPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of lsp-p east ingress packets." + ::= { pmTcaLspPEastInPkts15mEntry 4 } + +pmTcaLspPEastInPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of lsp-p east ingress packets." + ::= { pmTcaLspPEastInPkts15mEntry 5 } + +pmTcaLspPEastInPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPEastInPkts15mEntry 6 } + +pmTcaLspPEastInPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPEastInPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 8 } + +pmTcaLspPEastInPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaLspPEastInPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPEastInPkts1hIndex } + ::= { pmTcaLspPEastInPkts1hTable 1 } + +PMTcaLspPEastInPkts1hEntry ::= + SEQUENCE + { + pmTcaLspPEastInPkts1hIndex Integer32, + pmTcaLspPEastInPkts1hId OCTET STRING, + pmTcaLspPEastInPkts1hUnitType INTEGER, + pmTcaLspPEastInPkts1hCnt Counter64, + pmTcaLspPEastInPkts1hThreshold Counter64, + pmTcaLspPEastInPkts1hOccurTime DateAndTime + } + +pmTcaLspPEastInPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPEastInPkts1hEntry 1 } + +pmTcaLspPEastInPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPEastInPkts1hEntry 2 } + +pmTcaLspPEastInPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPEastInPkts1hEntry 3 } + +pmTcaLspPEastInPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of lsp-p east ingress packets." + ::= { pmTcaLspPEastInPkts1hEntry 4 } + +pmTcaLspPEastInPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of lsp-p east ingress packets." + ::= { pmTcaLspPEastInPkts1hEntry 5 } + +pmTcaLspPEastInPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPEastInPkts1hEntry 6 } + +pmTcaLspPEastInPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPEastInPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 9 } + +pmTcaLspPEastInPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaLspPEastInPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPEastInPkts1dIndex } + ::= { pmTcaLspPEastInPkts1dTable 1 } + +PMTcaLspPEastInPkts1dEntry ::= + SEQUENCE + { + pmTcaLspPEastInPkts1dIndex Integer32, + pmTcaLspPEastInPkts1dId OCTET STRING, + pmTcaLspPEastInPkts1dUnitType INTEGER, + pmTcaLspPEastInPkts1dCnt Counter64, + pmTcaLspPEastInPkts1dThreshold Counter64, + pmTcaLspPEastInPkts1dOccurTime DateAndTime + } + +pmTcaLspPEastInPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPEastInPkts1dEntry 1 } + +pmTcaLspPEastInPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPEastInPkts1dEntry 2 } + +pmTcaLspPEastInPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPEastInPkts1dEntry 3 } + +pmTcaLspPEastInPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of lsp-p east ingress packets." + ::= { pmTcaLspPEastInPkts1dEntry 4 } + +pmTcaLspPEastInPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of lsp-p east ingress packets." + ::= { pmTcaLspPEastInPkts1dEntry 5 } + +pmTcaLspPEastInPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPEastInPkts1dEntry 6 } + + +pmTcaLspPEastInBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPEastInBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 10 } + +pmTcaLspPEastInBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaLspPEastInBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPEastInBytes15mIndex } + ::= { pmTcaLspPEastInBytes15mTable 1 } + +PMTcaLspPEastInBytes15mEntry ::= + SEQUENCE + { + pmTcaLspPEastInBytes15mIndex Integer32, + pmTcaLspPEastInBytes15mId OCTET STRING, + pmTcaLspPEastInBytes15mUnitType INTEGER, + pmTcaLspPEastInBytes15mCnt Counter64, + pmTcaLspPEastInBytes15mThreshold Counter64, + pmTcaLspPEastInBytes15mOccurTime DateAndTime + } + +pmTcaLspPEastInBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPEastInBytes15mEntry 1 } + +pmTcaLspPEastInBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPEastInBytes15mEntry 2 } + +pmTcaLspPEastInBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPEastInBytes15mEntry 3 } + +pmTcaLspPEastInBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of lsp-p east ingress bytes." + ::= { pmTcaLspPEastInBytes15mEntry 4 } + +pmTcaLspPEastInBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of lsp-p east ingress bytes." + ::= { pmTcaLspPEastInBytes15mEntry 5 } + +pmTcaLspPEastInBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPEastInBytes15mEntry 6 } + +pmTcaLspPEastInBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPEastInBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 11 } + +pmTcaLspPEastInBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaLspPEastInBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPEastInBytes1hIndex } + ::= { pmTcaLspPEastInBytes1hTable 1 } + +PMTcaLspPEastInBytes1hEntry ::= + SEQUENCE + { + pmTcaLspPEastInBytes1hIndex Integer32, + pmTcaLspPEastInBytes1hId OCTET STRING, + pmTcaLspPEastInBytes1hUnitType INTEGER, + pmTcaLspPEastInBytes1hCnt Counter64, + pmTcaLspPEastInBytes1hThreshold Counter64, + pmTcaLspPEastInBytes1hOccurTime DateAndTime + } + +pmTcaLspPEastInBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPEastInBytes1hEntry 1 } + +pmTcaLspPEastInBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPEastInBytes1hEntry 2 } + +pmTcaLspPEastInBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPEastInBytes1hEntry 3 } + +pmTcaLspPEastInBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of lsp-p east ingress bytes." + ::= { pmTcaLspPEastInBytes1hEntry 4 } + +pmTcaLspPEastInBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of lsp-p east ingress bytes." + ::= { pmTcaLspPEastInBytes1hEntry 5 } + +pmTcaLspPEastInBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPEastInBytes1hEntry 6 } + +pmTcaLspPEastInBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPEastInBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 12 } + +pmTcaLspPEastInBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaLspPEastInBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPEastInBytes1dIndex } + ::= { pmTcaLspPEastInBytes1dTable 1 } + +PMTcaLspPEastInBytes1dEntry ::= + SEQUENCE + { + pmTcaLspPEastInBytes1dIndex Integer32, + pmTcaLspPEastInBytes1dId OCTET STRING, + pmTcaLspPEastInBytes1dUnitType INTEGER, + pmTcaLspPEastInBytes1dCnt Counter64, + pmTcaLspPEastInBytes1dThreshold Counter64, + pmTcaLspPEastInBytes1dOccurTime DateAndTime + } + +pmTcaLspPEastInBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPEastInBytes1dEntry 1 } + +pmTcaLspPEastInBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPEastInBytes1dEntry 2 } + +pmTcaLspPEastInBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPEastInBytes1dEntry 3 } + +pmTcaLspPEastInBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of lsp-p east ingress bytes." + ::= { pmTcaLspPEastInBytes1dEntry 4 } + +pmTcaLspPEastInBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of lsp-p east ingress bytes." + ::= { pmTcaLspPEastInBytes1dEntry 5 } + +pmTcaLspPEastInBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPEastInBytes1dEntry 6 } + + +pmTcaLspPWestInPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPWestInPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 13 } + +pmTcaLspPWestInPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaLspPWestInPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPWestInPkts15mIndex } + ::= { pmTcaLspPWestInPkts15mTable 1 } + +PMTcaLspPWestInPkts15mEntry ::= + SEQUENCE + { + pmTcaLspPWestInPkts15mIndex Integer32, + pmTcaLspPWestInPkts15mId OCTET STRING, + pmTcaLspPWestInPkts15mUnitType INTEGER, + pmTcaLspPWestInPkts15mCnt Counter64, + pmTcaLspPWestInPkts15mThreshold Counter64, + pmTcaLspPWestInPkts15mOccurTime DateAndTime + } + +pmTcaLspPWestInPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPWestInPkts15mEntry 1 } + +pmTcaLspPWestInPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPWestInPkts15mEntry 2 } + +pmTcaLspPWestInPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPWestInPkts15mEntry 3 } + +pmTcaLspPWestInPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of lsp-p west ingress packets." + ::= { pmTcaLspPWestInPkts15mEntry 4 } + +pmTcaLspPWestInPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of lsp-p west ingress packets." + ::= { pmTcaLspPWestInPkts15mEntry 5 } + +pmTcaLspPWestInPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPWestInPkts15mEntry 6 } + +pmTcaLspPWestInPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPWestInPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 14 } + +pmTcaLspPWestInPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaLspPWestInPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPWestInPkts1hIndex } + ::= { pmTcaLspPWestInPkts1hTable 1 } + +PMTcaLspPWestInPkts1hEntry ::= + SEQUENCE + { + pmTcaLspPWestInPkts1hIndex Integer32, + pmTcaLspPWestInPkts1hId OCTET STRING, + pmTcaLspPWestInPkts1hUnitType INTEGER, + pmTcaLspPWestInPkts1hCnt Counter64, + pmTcaLspPWestInPkts1hThreshold Counter64, + pmTcaLspPWestInPkts1hOccurTime DateAndTime + } + +pmTcaLspPWestInPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPWestInPkts1hEntry 1 } + +pmTcaLspPWestInPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPWestInPkts1hEntry 2 } + +pmTcaLspPWestInPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPWestInPkts1hEntry 3 } + +pmTcaLspPWestInPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of lsp-p west ingress packets." + ::= { pmTcaLspPWestInPkts1hEntry 4 } + +pmTcaLspPWestInPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of lsp-p west ingress packets." + ::= { pmTcaLspPWestInPkts1hEntry 5 } + +pmTcaLspPWestInPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPWestInPkts1hEntry 6 } + +pmTcaLspPWestInPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPWestInPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 15 } + +pmTcaLspPWestInPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaLspPWestInPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPWestInPkts1dIndex } + ::= { pmTcaLspPWestInPkts1dTable 1 } + +PMTcaLspPWestInPkts1dEntry ::= + SEQUENCE + { + pmTcaLspPWestInPkts1dIndex Integer32, + pmTcaLspPWestInPkts1dId OCTET STRING, + pmTcaLspPWestInPkts1dUnitType INTEGER, + pmTcaLspPWestInPkts1dCnt Counter64, + pmTcaLspPWestInPkts1dThreshold Counter64, + pmTcaLspPWestInPkts1dOccurTime DateAndTime + } + +pmTcaLspPWestInPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPWestInPkts1dEntry 1 } + +pmTcaLspPWestInPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPWestInPkts1dEntry 2 } + +pmTcaLspPWestInPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPWestInPkts1dEntry 3 } + +pmTcaLspPWestInPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of lsp-p west ingress packets." + ::= { pmTcaLspPWestInPkts1dEntry 4 } + +pmTcaLspPWestInPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of lsp-p west ingress packets." + ::= { pmTcaLspPWestInPkts1dEntry 5 } + +pmTcaLspPWestInPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPWestInPkts1dEntry 6 } + + +pmTcaLspPWestInBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPWestInBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 16 } + +pmTcaLspPWestInBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaLspPWestInBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPWestInBytes15mIndex } + ::= { pmTcaLspPWestInBytes15mTable 1 } + +PMTcaLspPWestInBytes15mEntry ::= + SEQUENCE + { + pmTcaLspPWestInBytes15mIndex Integer32, + pmTcaLspPWestInBytes15mId OCTET STRING, + pmTcaLspPWestInBytes15mUnitType INTEGER, + pmTcaLspPWestInBytes15mCnt Counter64, + pmTcaLspPWestInBytes15mThreshold Counter64, + pmTcaLspPWestInBytes15mOccurTime DateAndTime + } + +pmTcaLspPWestInBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPWestInBytes15mEntry 1 } + +pmTcaLspPWestInBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPWestInBytes15mEntry 2 } + +pmTcaLspPWestInBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPWestInBytes15mEntry 3 } + +pmTcaLspPWestInBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of lsp-p west ingress bytes." + ::= { pmTcaLspPWestInBytes15mEntry 4 } + +pmTcaLspPWestInBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of lsp-p west ingress bytes." + ::= { pmTcaLspPWestInBytes15mEntry 5 } + +pmTcaLspPWestInBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPWestInBytes15mEntry 6 } + +pmTcaLspPWestInBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPWestInBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 17 } + +pmTcaLspPWestInBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaLspPWestInBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of lsp-p information of all units." + INDEX { pmTcaLspPWestInBytes1hIndex } + ::= { pmTcaLspPWestInBytes1hTable 1 } + +PMTcaLspPWestInBytes1hEntry ::= + SEQUENCE + { + pmTcaLspPWestInBytes1hIndex Integer32, + pmTcaLspPWestInBytes1hId OCTET STRING, + pmTcaLspPWestInBytes1hUnitType INTEGER, + pmTcaLspPWestInBytes1hCnt Counter64, + pmTcaLspPWestInBytes1hThreshold Counter64, + pmTcaLspPWestInBytes1hOccurTime DateAndTime + } + +pmTcaLspPWestInBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPWestInBytes1hEntry 1 } + +pmTcaLspPWestInBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPWestInBytes1hEntry 2 } + +pmTcaLspPWestInBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPWestInBytes1hEntry 3 } + +pmTcaLspPWestInBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of lsp-p west ingress bytes." + ::= { pmTcaLspPWestInBytes1hEntry 4 } + +pmTcaLspPWestInBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of lsp-p west ingress bytes." + ::= { pmTcaLspPWestInBytes1hEntry 5 } + +pmTcaLspPWestInBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPWestInBytes1hEntry 6 } + +pmTcaLspPWestInBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaLspPWestInBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains lsp-p information of all units." + ::= { pmLspP 18 } + +pmTcaLspPWestInBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaLspPWestInBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature lsp-p of all units." + INDEX { pmTcaLspPWestInBytes1dIndex } + ::= { pmTcaLspPWestInBytes1dTable 1 } + +PMTcaLspPWestInBytes1dEntry ::= + SEQUENCE + { + pmTcaLspPWestInBytes1dIndex Integer32, + pmTcaLspPWestInBytes1dId OCTET STRING, + pmTcaLspPWestInBytes1dUnitType INTEGER, + pmTcaLspPWestInBytes1dCnt Counter64, + pmTcaLspPWestInBytes1dThreshold Counter64, + pmTcaLspPWestInBytes1dOccurTime DateAndTime + } + +pmTcaLspPWestInBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaLspPWestInBytes1dEntry 1 } + +pmTcaLspPWestInBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Lsp-p name." + ::= { pmTcaLspPWestInBytes1dEntry 2 } + +pmTcaLspPWestInBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaLspPWestInBytes1dEntry 3 } + +pmTcaLspPWestInBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of lsp-p west ingress bytes." + ::= { pmTcaLspPWestInBytes1dEntry 4 } + +pmTcaLspPWestInBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of lsp-p west ingress bytes." + ::= { pmTcaLspPWestInBytes1dEntry 5 } + +pmTcaLspPWestInBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaLspPWestInBytes1dEntry 6 } + + +pmVpws OBJECT IDENTIFIER ::= { pm 105 } + +pmVpwsCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVpwsCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 1 } + +pmVpwsCurr15mEntry OBJECT-TYPE + SYNTAX PMVpwsCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmVpwsCurr15mIndex } + ::= { pmVpwsCurr15mTable 1 } + +PMVpwsCurr15mEntry ::= + SEQUENCE + { + pmVpwsCurr15mIndex Integer32, + pmVpwsCurr15mId OCTET STRING, + pmVpwsCurr15mUnitType INTEGER, + pmVpwsCurr15mIngressPkts Counter64, + pmVpwsCurr15mIngressBytes Counter64, + pmVpwsCurr15mEgressPkts Counter64, + pmVpwsCurr15mEgressBytes Counter64, + pmVpwsCurr15mStartTime DateAndTime, + pmVpwsCurr15mStopTime DateAndTime + } + +pmVpwsCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVpwsCurr15mEntry 1 } + +pmVpwsCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmVpwsCurr15mEntry 2 } + +pmVpwsCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVpwsCurr15mEntry 3 } + +pmVpwsCurr15mIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpws ingress packets." + ::= { pmVpwsCurr15mEntry 4 } + +pmVpwsCurr15mIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpws ingress bytes." + ::= { pmVpwsCurr15mEntry 5 } + +pmVpwsCurr15mEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpws egress packets." + ::= { pmVpwsCurr15mEntry 6 } + +pmVpwsCurr15mEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpws egress bytes." + ::= { pmVpwsCurr15mEntry 7 } + +pmVpwsCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmVpwsCurr15mEntry 100 } + +pmVpwsCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmVpwsCurr15mEntry 101 } + + +pmVpwsPrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVpwsPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 2 } + +pmVpwsPrev15mEntry OBJECT-TYPE + SYNTAX PMVpwsPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmVpwsPrev15mIndex } + ::= { pmVpwsPrev15mTable 1 } + +PMVpwsPrev15mEntry ::= + SEQUENCE + { + pmVpwsPrev15mIndex Integer32, + pmVpwsPrev15mId OCTET STRING, + pmVpwsPrev15mUnitType INTEGER, + pmVpwsPrev15mIngressPkts Counter64, + pmVpwsPrev15mIngressBytes Counter64, + pmVpwsPrev15mEgressPkts Counter64, + pmVpwsPrev15mEgressBytes Counter64, + pmVpwsPrev15mStartTime DateAndTime, + pmVpwsPrev15mStopTime DateAndTime + } + +pmVpwsPrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVpwsPrev15mEntry 1 } + +pmVpwsPrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmVpwsPrev15mEntry 2 } + +pmVpwsPrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVpwsPrev15mEntry 3 } + +pmVpwsPrev15mIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpws ingress packets." + ::= { pmVpwsPrev15mEntry 4 } + +pmVpwsPrev15mIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpws ingress bytes." + ::= { pmVpwsPrev15mEntry 5 } + +pmVpwsPrev15mEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpws egress packets." + ::= { pmVpwsPrev15mEntry 6 } + +pmVpwsPrev15mEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpws egress bytes." + ::= { pmVpwsPrev15mEntry 7 } + +pmVpwsPrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmVpwsPrev15mEntry 100 } + +pmVpwsPrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmVpwsPrev15mEntry 101 } + + +pmVpwsCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVpwsCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 3 } + +pmVpwsCurr1hEntry OBJECT-TYPE + SYNTAX PMVpwsCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmVpwsCurr1hIndex } + ::= { pmVpwsCurr1hTable 1 } + +PMVpwsCurr1hEntry ::= + SEQUENCE + { + pmVpwsCurr1hIndex Integer32, + pmVpwsCurr1hId OCTET STRING, + pmVpwsCurr1hUnitType INTEGER, + pmVpwsCurr1hIngressPkts Counter64, + pmVpwsCurr1hIngressBytes Counter64, + pmVpwsCurr1hEgressPkts Counter64, + pmVpwsCurr1hEgressBytes Counter64, + pmVpwsCurr1hStartTime DateAndTime, + pmVpwsCurr1hStopTime DateAndTime + } + +pmVpwsCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVpwsCurr1hEntry 1 } + +pmVpwsCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmVpwsCurr1hEntry 2 } + +pmVpwsCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVpwsCurr1hEntry 3 } + +pmVpwsCurr1hIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpws ingress packets." + ::= { pmVpwsCurr1hEntry 4 } + +pmVpwsCurr1hIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpws ingress bytes." + ::= { pmVpwsCurr1hEntry 5 } + +pmVpwsCurr1hEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpws egress packets." + ::= { pmVpwsCurr1hEntry 6 } + +pmVpwsCurr1hEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpws egress bytes." + ::= { pmVpwsCurr1hEntry 7 } + +pmVpwsCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmVpwsCurr1hEntry 100 } + +pmVpwsCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmVpwsCurr1hEntry 101 } + + +pmVpwsPrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVpwsPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 4 } + +pmVpwsPrev1hEntry OBJECT-TYPE + SYNTAX PMVpwsPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmVpwsPrev1hIndex } + ::= { pmVpwsPrev1hTable 1 } + +PMVpwsPrev1hEntry ::= + SEQUENCE + { + pmVpwsPrev1hIndex Integer32, + pmVpwsPrev1hId OCTET STRING, + pmVpwsPrev1hUnitType INTEGER, + pmVpwsPrev1hIngressPkts Counter64, + pmVpwsPrev1hIngressBytes Counter64, + pmVpwsPrev1hEgressPkts Counter64, + pmVpwsPrev1hEgressBytes Counter64, + pmVpwsPrev1hStartTime DateAndTime, + pmVpwsPrev1hStopTime DateAndTime + } + +pmVpwsPrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVpwsPrev1hEntry 1 } + +pmVpwsPrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmVpwsPrev1hEntry 2 } + +pmVpwsPrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVpwsPrev1hEntry 3 } + +pmVpwsPrev1hIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpws ingress packets." + ::= { pmVpwsPrev1hEntry 4 } + +pmVpwsPrev1hIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpws ingress bytes." + ::= { pmVpwsPrev1hEntry 5 } + +pmVpwsPrev1hEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpws egress packets." + ::= { pmVpwsPrev1hEntry 6 } + +pmVpwsPrev1hEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpws egress bytes." + ::= { pmVpwsPrev1hEntry 7 } + +pmVpwsPrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmVpwsPrev1hEntry 100 } + +pmVpwsPrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmVpwsPrev1hEntry 101 } + +pmVpwsCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVpwsCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 5 } + +pmVpwsCurr1dEntry OBJECT-TYPE + SYNTAX PMVpwsCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmVpwsCurr1dIndex } + ::= { pmVpwsCurr1dTable 1 } + +PMVpwsCurr1dEntry ::= + SEQUENCE + { + pmVpwsCurr1dIndex Integer32, + pmVpwsCurr1dId OCTET STRING, + pmVpwsCurr1dUnitType INTEGER, + pmVpwsCurr1dIngressPkts Counter64, + pmVpwsCurr1dIngressBytes Counter64, + pmVpwsCurr1dEgressPkts Counter64, + pmVpwsCurr1dEgressBytes Counter64, + pmVpwsCurr1dStartTime DateAndTime, + pmVpwsCurr1dStopTime DateAndTime + } + +pmVpwsCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVpwsCurr1dEntry 1 } + +pmVpwsCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmVpwsCurr1dEntry 2 } + +pmVpwsCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVpwsCurr1dEntry 3 } + +pmVpwsCurr1dIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpws ingress packets." + ::= { pmVpwsCurr1dEntry 4 } + +pmVpwsCurr1dIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpws ingress bytes." + ::= { pmVpwsCurr1dEntry 5 } + +pmVpwsCurr1dEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpws egress packets." + ::= { pmVpwsCurr1dEntry 6 } + +pmVpwsCurr1dEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpws egress bytes." + ::= { pmVpwsCurr1dEntry 7 } + +pmVpwsCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day start time." + ::= { pmVpwsCurr1dEntry 100 } + +pmVpwsCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day stop time." + ::= { pmVpwsCurr1dEntry 101 } + + +pmVpwsPrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVpwsPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 6 } + +pmVpwsPrev1dEntry OBJECT-TYPE + SYNTAX PMVpwsPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmVpwsPrev1dIndex } + ::= { pmVpwsPrev1dTable 1 } + +PMVpwsPrev1dEntry ::= + SEQUENCE + { + pmVpwsPrev1dIndex Integer32, + pmVpwsPrev1dId OCTET STRING, + pmVpwsPrev1dUnitType INTEGER, + pmVpwsPrev1dIngressPkts Counter64, + pmVpwsPrev1dIngressBytes Counter64, + pmVpwsPrev1dEgressPkts Counter64, + pmVpwsPrev1dEgressBytes Counter64, + pmVpwsPrev1dStartTime DateAndTime, + pmVpwsPrev1dStopTime DateAndTime + } + +pmVpwsPrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVpwsPrev1dEntry 1 } + +pmVpwsPrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmVpwsPrev1dEntry 2 } + +pmVpwsPrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVpwsPrev1dEntry 3 } + +pmVpwsPrev1dIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpws ingress packets." + ::= { pmVpwsPrev1dEntry 4 } + +pmVpwsPrev1dIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpws ingress bytes." + ::= { pmVpwsPrev1dEntry 5 } + +pmVpwsPrev1dEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpws egress packets." + ::= { pmVpwsPrev1dEntry 6 } + +pmVpwsPrev1dEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpws egress bytes." + ::= { pmVpwsPrev1dEntry 7 } + +pmVpwsPrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day start time." + ::= { pmVpwsPrev1dEntry 100 } + +pmVpwsPrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day stop time." + ::= { pmVpwsPrev1dEntry 101 } + +pmTcaVpwsIngressPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsIngressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 7 } + +pmTcaVpwsIngressPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaVpwsIngressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsIngressPkts15mIndex } + ::= { pmTcaVpwsIngressPkts15mTable 1 } + +PMTcaVpwsIngressPkts15mEntry ::= + SEQUENCE + { + pmTcaVpwsIngressPkts15mIndex Integer32, + pmTcaVpwsIngressPkts15mId OCTET STRING, + pmTcaVpwsIngressPkts15mUnitType INTEGER, + pmTcaVpwsIngressPkts15mCnt Counter64, + pmTcaVpwsIngressPkts15mThreshold Counter64, + pmTcaVpwsIngressPkts15mOccurTime DateAndTime + } + +pmTcaVpwsIngressPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsIngressPkts15mEntry 1 } + +pmTcaVpwsIngressPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsIngressPkts15mEntry 2 } + +pmTcaVpwsIngressPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsIngressPkts15mEntry 3 } + +pmTcaVpwsIngressPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpws ingress packets." + ::= { pmTcaVpwsIngressPkts15mEntry 4 } + +pmTcaVpwsIngressPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpws ingress packets." + ::= { pmTcaVpwsIngressPkts15mEntry 5 } + +pmTcaVpwsIngressPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsIngressPkts15mEntry 6 } + +pmTcaVpwsIngressPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsIngressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 8 } + +pmTcaVpwsIngressPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaVpwsIngressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsIngressPkts1hIndex } + ::= { pmTcaVpwsIngressPkts1hTable 1 } + +PMTcaVpwsIngressPkts1hEntry ::= + SEQUENCE + { + pmTcaVpwsIngressPkts1hIndex Integer32, + pmTcaVpwsIngressPkts1hId OCTET STRING, + pmTcaVpwsIngressPkts1hUnitType INTEGER, + pmTcaVpwsIngressPkts1hCnt Counter64, + pmTcaVpwsIngressPkts1hThreshold Counter64, + pmTcaVpwsIngressPkts1hOccurTime DateAndTime + } + +pmTcaVpwsIngressPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsIngressPkts1hEntry 1 } + +pmTcaVpwsIngressPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsIngressPkts1hEntry 2 } + +pmTcaVpwsIngressPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsIngressPkts1hEntry 3 } + +pmTcaVpwsIngressPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpws ingress packets." + ::= { pmTcaVpwsIngressPkts1hEntry 4 } + +pmTcaVpwsIngressPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpws ingress packets." + ::= { pmTcaVpwsIngressPkts1hEntry 5 } + +pmTcaVpwsIngressPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsIngressPkts1hEntry 6 } + +pmTcaVpwsIngressPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsIngressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 9 } + +pmTcaVpwsIngressPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaVpwsIngressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsIngressPkts1dIndex } + ::= { pmTcaVpwsIngressPkts1dTable 1 } + +PMTcaVpwsIngressPkts1dEntry ::= + SEQUENCE + { + pmTcaVpwsIngressPkts1dIndex Integer32, + pmTcaVpwsIngressPkts1dId OCTET STRING, + pmTcaVpwsIngressPkts1dUnitType INTEGER, + pmTcaVpwsIngressPkts1dCnt Counter64, + pmTcaVpwsIngressPkts1dThreshold Counter64, + pmTcaVpwsIngressPkts1dOccurTime DateAndTime + } + +pmTcaVpwsIngressPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsIngressPkts1dEntry 1 } + +pmTcaVpwsIngressPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsIngressPkts1dEntry 2 } + +pmTcaVpwsIngressPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsIngressPkts1dEntry 3 } + +pmTcaVpwsIngressPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpws ingress packets." + ::= { pmTcaVpwsIngressPkts1dEntry 4 } + +pmTcaVpwsIngressPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpws ingress packets." + ::= { pmTcaVpwsIngressPkts1dEntry 5 } + +pmTcaVpwsIngressPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsIngressPkts1dEntry 6 } + + +pmTcaVpwsIngressBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsIngressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 10 } + +pmTcaVpwsIngressBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaVpwsIngressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsIngressBytes15mIndex } + ::= { pmTcaVpwsIngressBytes15mTable 1 } + +PMTcaVpwsIngressBytes15mEntry ::= + SEQUENCE + { + pmTcaVpwsIngressBytes15mIndex Integer32, + pmTcaVpwsIngressBytes15mId OCTET STRING, + pmTcaVpwsIngressBytes15mUnitType INTEGER, + pmTcaVpwsIngressBytes15mCnt Counter64, + pmTcaVpwsIngressBytes15mThreshold Counter64, + pmTcaVpwsIngressBytes15mOccurTime DateAndTime + } + +pmTcaVpwsIngressBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsIngressBytes15mEntry 1 } + +pmTcaVpwsIngressBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsIngressBytes15mEntry 2 } + +pmTcaVpwsIngressBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsIngressBytes15mEntry 3 } + +pmTcaVpwsIngressBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpws ingress bytes." + ::= { pmTcaVpwsIngressBytes15mEntry 4 } + +pmTcaVpwsIngressBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpws ingress bytes." + ::= { pmTcaVpwsIngressBytes15mEntry 5 } + +pmTcaVpwsIngressBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsIngressBytes15mEntry 6 } + +pmTcaVpwsIngressBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsIngressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 11 } + +pmTcaVpwsIngressBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaVpwsIngressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsIngressBytes1hIndex } + ::= { pmTcaVpwsIngressBytes1hTable 1 } + +PMTcaVpwsIngressBytes1hEntry ::= + SEQUENCE + { + pmTcaVpwsIngressBytes1hIndex Integer32, + pmTcaVpwsIngressBytes1hId OCTET STRING, + pmTcaVpwsIngressBytes1hUnitType INTEGER, + pmTcaVpwsIngressBytes1hCnt Counter64, + pmTcaVpwsIngressBytes1hThreshold Counter64, + pmTcaVpwsIngressBytes1hOccurTime DateAndTime + } + +pmTcaVpwsIngressBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsIngressBytes1hEntry 1 } + +pmTcaVpwsIngressBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsIngressBytes1hEntry 2 } + +pmTcaVpwsIngressBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsIngressBytes1hEntry 3 } + +pmTcaVpwsIngressBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpws ingress bytes." + ::= { pmTcaVpwsIngressBytes1hEntry 4 } + +pmTcaVpwsIngressBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpws ingress bytes." + ::= { pmTcaVpwsIngressBytes1hEntry 5 } + +pmTcaVpwsIngressBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsIngressBytes1hEntry 6 } + + +pmTcaVpwsIngressBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsIngressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 12 } + +pmTcaVpwsIngressBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaVpwsIngressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsIngressBytes1dIndex } + ::= { pmTcaVpwsIngressBytes1dTable 1 } + +PMTcaVpwsIngressBytes1dEntry ::= + SEQUENCE + { + pmTcaVpwsIngressBytes1dIndex Integer32, + pmTcaVpwsIngressBytes1dId OCTET STRING, + pmTcaVpwsIngressBytes1dUnitType INTEGER, + pmTcaVpwsIngressBytes1dCnt Counter64, + pmTcaVpwsIngressBytes1dThreshold Counter64, + pmTcaVpwsIngressBytes1dOccurTime DateAndTime + } + +pmTcaVpwsIngressBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsIngressBytes1dEntry 1 } + +pmTcaVpwsIngressBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsIngressBytes1dEntry 2 } + +pmTcaVpwsIngressBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsIngressBytes1dEntry 3 } + +pmTcaVpwsIngressBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpws ingress bytes." + ::= { pmTcaVpwsIngressBytes1dEntry 4 } + +pmTcaVpwsIngressBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpws ingress bytes." + ::= { pmTcaVpwsIngressBytes1dEntry 5 } + +pmTcaVpwsIngressBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsIngressBytes1dEntry 6 } + + +pmTcaVpwsEgressPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsEgressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 13 } + +pmTcaVpwsEgressPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaVpwsEgressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsEgressPkts15mIndex } + ::= { pmTcaVpwsEgressPkts15mTable 1 } + +PMTcaVpwsEgressPkts15mEntry ::= + SEQUENCE + { + pmTcaVpwsEgressPkts15mIndex Integer32, + pmTcaVpwsEgressPkts15mId OCTET STRING, + pmTcaVpwsEgressPkts15mUnitType INTEGER, + pmTcaVpwsEgressPkts15mCnt Counter64, + pmTcaVpwsEgressPkts15mThreshold Counter64, + pmTcaVpwsEgressPkts15mOccurTime DateAndTime + } + +pmTcaVpwsEgressPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsEgressPkts15mEntry 1 } + +pmTcaVpwsEgressPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsEgressPkts15mEntry 2 } + +pmTcaVpwsEgressPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsEgressPkts15mEntry 3 } + +pmTcaVpwsEgressPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpws egress packets." + ::= { pmTcaVpwsEgressPkts15mEntry 4 } + +pmTcaVpwsEgressPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpws egress packets." + ::= { pmTcaVpwsEgressPkts15mEntry 5 } + +pmTcaVpwsEgressPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsEgressPkts15mEntry 6 } + +pmTcaVpwsEgressPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsEgressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 14 } + +pmTcaVpwsEgressPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaVpwsEgressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsEgressPkts1hIndex } + ::= { pmTcaVpwsEgressPkts1hTable 1 } + +PMTcaVpwsEgressPkts1hEntry ::= + SEQUENCE + { + pmTcaVpwsEgressPkts1hIndex Integer32, + pmTcaVpwsEgressPkts1hId OCTET STRING, + pmTcaVpwsEgressPkts1hUnitType INTEGER, + pmTcaVpwsEgressPkts1hCnt Counter64, + pmTcaVpwsEgressPkts1hThreshold Counter64, + pmTcaVpwsEgressPkts1hOccurTime DateAndTime + } + +pmTcaVpwsEgressPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsEgressPkts1hEntry 1 } + +pmTcaVpwsEgressPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsEgressPkts1hEntry 2 } + +pmTcaVpwsEgressPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsEgressPkts1hEntry 3 } + +pmTcaVpwsEgressPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpws egress packets." + ::= { pmTcaVpwsEgressPkts1hEntry 4 } + +pmTcaVpwsEgressPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpws egress packets." + ::= { pmTcaVpwsEgressPkts1hEntry 5 } + +pmTcaVpwsEgressPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsEgressPkts1hEntry 6 } + +pmTcaVpwsEgressPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsEgressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 15 } + +pmTcaVpwsEgressPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaVpwsEgressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsEgressPkts1dIndex } + ::= { pmTcaVpwsEgressPkts1dTable 1 } + +PMTcaVpwsEgressPkts1dEntry ::= + SEQUENCE + { + pmTcaVpwsEgressPkts1dIndex Integer32, + pmTcaVpwsEgressPkts1dId OCTET STRING, + pmTcaVpwsEgressPkts1dUnitType INTEGER, + pmTcaVpwsEgressPkts1dCnt Counter64, + pmTcaVpwsEgressPkts1dThreshold Counter64, + pmTcaVpwsEgressPkts1dOccurTime DateAndTime + } + +pmTcaVpwsEgressPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsEgressPkts1dEntry 1 } + +pmTcaVpwsEgressPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsEgressPkts1dEntry 2 } + +pmTcaVpwsEgressPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsEgressPkts1dEntry 3 } + +pmTcaVpwsEgressPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpws egress packets." + ::= { pmTcaVpwsEgressPkts1dEntry 4 } + +pmTcaVpwsEgressPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpws egress packets." + ::= { pmTcaVpwsEgressPkts1dEntry 5 } + +pmTcaVpwsEgressPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsEgressPkts1dEntry 6 } + + +pmTcaVpwsEgressBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsEgressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 16 } + +pmTcaVpwsEgressBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaVpwsEgressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsEgressBytes15mIndex } + ::= { pmTcaVpwsEgressBytes15mTable 1 } + +PMTcaVpwsEgressBytes15mEntry ::= + SEQUENCE + { + pmTcaVpwsEgressBytes15mIndex Integer32, + pmTcaVpwsEgressBytes15mId OCTET STRING, + pmTcaVpwsEgressBytes15mUnitType INTEGER, + pmTcaVpwsEgressBytes15mCnt Counter64, + pmTcaVpwsEgressBytes15mThreshold Counter64, + pmTcaVpwsEgressBytes15mOccurTime DateAndTime + } + +pmTcaVpwsEgressBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsEgressBytes15mEntry 1 } + +pmTcaVpwsEgressBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsEgressBytes15mEntry 2 } + +pmTcaVpwsEgressBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsEgressBytes15mEntry 3 } + +pmTcaVpwsEgressBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpws egress bytes." + ::= { pmTcaVpwsEgressBytes15mEntry 4 } + +pmTcaVpwsEgressBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpws egress bytes." + ::= { pmTcaVpwsEgressBytes15mEntry 5 } + +pmTcaVpwsEgressBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsEgressBytes15mEntry 6 } + +pmTcaVpwsEgressBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsEgressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 17 } + +pmTcaVpwsEgressBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaVpwsEgressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsEgressBytes1hIndex } + ::= { pmTcaVpwsEgressBytes1hTable 1 } + +PMTcaVpwsEgressBytes1hEntry ::= + SEQUENCE + { + pmTcaVpwsEgressBytes1hIndex Integer32, + pmTcaVpwsEgressBytes1hId OCTET STRING, + pmTcaVpwsEgressBytes1hUnitType INTEGER, + pmTcaVpwsEgressBytes1hCnt Counter64, + pmTcaVpwsEgressBytes1hThreshold Counter64, + pmTcaVpwsEgressBytes1hOccurTime DateAndTime + } + +pmTcaVpwsEgressBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsEgressBytes1hEntry 1 } + +pmTcaVpwsEgressBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsEgressBytes1hEntry 2 } + +pmTcaVpwsEgressBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsEgressBytes1hEntry 3 } + +pmTcaVpwsEgressBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpws egress bytes." + ::= { pmTcaVpwsEgressBytes1hEntry 4 } + +pmTcaVpwsEgressBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpws egress bytes." + ::= { pmTcaVpwsEgressBytes1hEntry 5 } + +pmTcaVpwsEgressBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsEgressBytes1hEntry 6 } + +pmTcaVpwsEgressBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVpwsEgressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpws information of all units." + ::= { pmVpws 18 } + +pmTcaVpwsEgressBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaVpwsEgressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpws information of all units." + INDEX { pmTcaVpwsEgressBytes1dIndex } + ::= { pmTcaVpwsEgressBytes1dTable 1 } + +PMTcaVpwsEgressBytes1dEntry ::= + SEQUENCE + { + pmTcaVpwsEgressBytes1dIndex Integer32, + pmTcaVpwsEgressBytes1dId OCTET STRING, + pmTcaVpwsEgressBytes1dUnitType INTEGER, + pmTcaVpwsEgressBytes1dCnt Counter64, + pmTcaVpwsEgressBytes1dThreshold Counter64, + pmTcaVpwsEgressBytes1dOccurTime DateAndTime + } + +pmTcaVpwsEgressBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVpwsEgressBytes1dEntry 1 } + +pmTcaVpwsEgressBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpws name." + ::= { pmTcaVpwsEgressBytes1dEntry 2 } + +pmTcaVpwsEgressBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVpwsEgressBytes1dEntry 3 } + +pmTcaVpwsEgressBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpws egress bytes." + ::= { pmTcaVpwsEgressBytes1dEntry 4 } + +pmTcaVpwsEgressBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpws egress bytes." + ::= { pmTcaVpwsEgressBytes1dEntry 5 } + +pmTcaVpwsEgressBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVpwsEgressBytes1dEntry 6 } + + +pmVpls OBJECT IDENTIFIER ::= { pm 106 } + +pmVplsCurr15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVplsCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 1 } + +pmVplsCurr15mEntry OBJECT-TYPE + SYNTAX PMVplsCurr15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmVplsCurr15mIndex } + ::= { pmVplsCurr15mTable 1 } + +PMVplsCurr15mEntry ::= + SEQUENCE + { + pmVplsCurr15mIndex Integer32, + pmVplsCurr15mId OCTET STRING, + pmVplsCurr15mUnitType INTEGER, + pmVplsCurr15mIngressPkts Counter64, + pmVplsCurr15mIngressBytes Counter64, + pmVplsCurr15mEgressPkts Counter64, + pmVplsCurr15mEgressBytes Counter64, + pmVplsCurr15mStartTime DateAndTime, + pmVplsCurr15mStopTime DateAndTime + } + +pmVplsCurr15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVplsCurr15mEntry 1 } + +pmVplsCurr15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls name." + ::= { pmVplsCurr15mEntry 2 } + +pmVplsCurr15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVplsCurr15mEntry 3 } + +pmVplsCurr15mIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpls ingress packets." + ::= { pmVplsCurr15mEntry 4 } + +pmVplsCurr15mIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpls ingress bytes." + ::= { pmVplsCurr15mEntry 5 } + +pmVplsCurr15mEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpls egress packets." + ::= { pmVplsCurr15mEntry 6 } + +pmVplsCurr15mEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min counter of vpls egress bytes." + ::= { pmVplsCurr15mEntry 7 } + +pmVplsCurr15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min start time." + ::= { pmVplsCurr15mEntry 100 } + +pmVplsCurr15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 15min stop time." + ::= { pmVplsCurr15mEntry 101 } + +pmVplsPrev15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVplsPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 2 } + +pmVplsPrev15mEntry OBJECT-TYPE + SYNTAX PMVplsPrev15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmVplsPrev15mIndex } + ::= { pmVplsPrev15mTable 1 } + +PMVplsPrev15mEntry ::= + SEQUENCE + { + pmVplsPrev15mIndex Integer32, + pmVplsPrev15mId OCTET STRING, + pmVplsPrev15mUnitType INTEGER, + pmVplsPrev15mIngressPkts Counter64, + pmVplsPrev15mIngressBytes Counter64, + pmVplsPrev15mEgressPkts Counter64, + pmVplsPrev15mEgressBytes Counter64, + pmVplsPrev15mStartTime DateAndTime, + pmVplsPrev15mStopTime DateAndTime + } + +pmVplsPrev15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVplsPrev15mEntry 1 } + +pmVplsPrev15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls name." + ::= { pmVplsPrev15mEntry 2 } + +pmVplsPrev15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVplsPrev15mEntry 3 } + +pmVplsPrev15mIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpls ingress packets." + ::= { pmVplsPrev15mEntry 4 } + +pmVplsPrev15mIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpls ingress bytes." + ::= { pmVplsPrev15mEntry 5 } + +pmVplsPrev15mEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpls egress packets." + ::= { pmVplsPrev15mEntry 6 } + +pmVplsPrev15mEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min counter of vpls egress bytes." + ::= { pmVplsPrev15mEntry 7 } + +pmVplsPrev15mStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min start time." + ::= { pmVplsPrev15mEntry 100 } + +pmVplsPrev15mStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 15min stop time." + ::= { pmVplsPrev15mEntry 101 } + +pmVplsCurr1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVplsCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 3 } + +pmVplsCurr1hEntry OBJECT-TYPE + SYNTAX PMVplsCurr1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmVplsCurr1hIndex } + ::= { pmVplsCurr1hTable 1 } + +PMVplsCurr1hEntry ::= + SEQUENCE + { + pmVplsCurr1hIndex Integer32, + pmVplsCurr1hId OCTET STRING, + pmVplsCurr1hUnitType INTEGER, + pmVplsCurr1hIngressPkts Counter64, + pmVplsCurr1hIngressBytes Counter64, + pmVplsCurr1hEgressPkts Counter64, + pmVplsCurr1hEgressBytes Counter64, + pmVplsCurr1hStartTime DateAndTime, + pmVplsCurr1hStopTime DateAndTime + } + +pmVplsCurr1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVplsCurr1hEntry 1 } + +pmVplsCurr1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls name." + ::= { pmVplsCurr1hEntry 2 } + +pmVplsCurr1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVplsCurr1hEntry 3 } + +pmVplsCurr1hIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpls ingress packets." + ::= { pmVplsCurr1hEntry 4 } + +pmVplsCurr1hIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpls ingress bytes." + ::= { pmVplsCurr1hEntry 5 } + +pmVplsCurr1hEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpls egress packets." + ::= { pmVplsCurr1hEntry 6 } + +pmVplsCurr1hEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour counter of vpls egress bytes." + ::= { pmVplsCurr1hEntry 7 } + +pmVplsCurr1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour start time." + ::= { pmVplsCurr1hEntry 100 } + +pmVplsCurr1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1hour stop time." + ::= { pmVplsCurr1hEntry 101 } + +pmVplsPrev1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVplsPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 4 } + +pmVplsPrev1hEntry OBJECT-TYPE + SYNTAX PMVplsPrev1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmVplsPrev1hIndex } + ::= { pmVplsPrev1hTable 1 } + +PMVplsPrev1hEntry ::= + SEQUENCE + { + pmVplsPrev1hIndex Integer32, + pmVplsPrev1hId OCTET STRING, + pmVplsPrev1hUnitType INTEGER, + pmVplsPrev1hIngressPkts Counter64, + pmVplsPrev1hIngressBytes Counter64, + pmVplsPrev1hEgressPkts Counter64, + pmVplsPrev1hEgressBytes Counter64, + pmVplsPrev1hStartTime DateAndTime, + pmVplsPrev1hStopTime DateAndTime + } + +pmVplsPrev1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVplsPrev1hEntry 1 } + +pmVplsPrev1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls name." + ::= { pmVplsPrev1hEntry 2 } + +pmVplsPrev1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVplsPrev1hEntry 3 } + +pmVplsPrev1hIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpls ingress packets." + ::= { pmVplsPrev1hEntry 4 } + +pmVplsPrev1hIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpls ingress bytes." + ::= { pmVplsPrev1hEntry 5 } + +pmVplsPrev1hEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpls egress packets." + ::= { pmVplsPrev1hEntry 6 } + +pmVplsPrev1hEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour counter of vpls egress bytes." + ::= { pmVplsPrev1hEntry 7 } + +pmVplsPrev1hStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour start time." + ::= { pmVplsPrev1hEntry 100 } + +pmVplsPrev1hStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1hour stop time." + ::= { pmVplsPrev1hEntry 101 } + +pmVplsCurr1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVplsCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 5 } + +pmVplsCurr1dEntry OBJECT-TYPE + SYNTAX PMVplsCurr1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmVplsCurr1dIndex } + ::= { pmVplsCurr1dTable 1 } + +PMVplsCurr1dEntry ::= + SEQUENCE + { + pmVplsCurr1dIndex Integer32, + pmVplsCurr1dId OCTET STRING, + pmVplsCurr1dUnitType INTEGER, + pmVplsCurr1dIngressPkts Counter64, + pmVplsCurr1dIngressBytes Counter64, + pmVplsCurr1dEgressPkts Counter64, + pmVplsCurr1dEgressBytes Counter64, + pmVplsCurr1dStartTime DateAndTime, + pmVplsCurr1dStopTime DateAndTime + } + +pmVplsCurr1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVplsCurr1dEntry 1 } + +pmVplsCurr1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls name." + ::= { pmVplsCurr1dEntry 2 } + +pmVplsCurr1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVplsCurr1dEntry 3 } + +pmVplsCurr1dIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpls ingress packets." + ::= { pmVplsCurr1dEntry 4 } + +pmVplsCurr1dIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpls ingress bytes." + ::= { pmVplsCurr1dEntry 5 } + +pmVplsCurr1dEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpls egress packets." + ::= { pmVplsCurr1dEntry 6 } + +pmVplsCurr1dEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day counter of vpls egress bytes." + ::= { pmVplsCurr1dEntry 7 } + +pmVplsCurr1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day start time." + ::= { pmVplsCurr1dEntry 100 } + +pmVplsCurr1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current 1day stop time." + ::= { pmVplsCurr1dEntry 101 } + +pmVplsPrev1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMVplsPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 6 } + +pmVplsPrev1dEntry OBJECT-TYPE + SYNTAX PMVplsPrev1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmVplsPrev1dIndex } + ::= { pmVplsPrev1dTable 1 } + +PMVplsPrev1dEntry ::= + SEQUENCE + { + pmVplsPrev1dIndex Integer32, + pmVplsPrev1dId OCTET STRING, + pmVplsPrev1dUnitType INTEGER, + pmVplsPrev1dIngressPkts Counter64, + pmVplsPrev1dIngressBytes Counter64, + pmVplsPrev1dEgressPkts Counter64, + pmVplsPrev1dEgressBytes Counter64, + pmVplsPrev1dStartTime DateAndTime, + pmVplsPrev1dStopTime DateAndTime + } + +pmVplsPrev1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmVplsPrev1dEntry 1 } + +pmVplsPrev1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vpls name." + ::= { pmVplsPrev1dEntry 2 } + +pmVplsPrev1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmVplsPrev1dEntry 3 } + +pmVplsPrev1dIngressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpls ingress packets." + ::= { pmVplsPrev1dEntry 4 } + +pmVplsPrev1dIngressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpls ingress bytes." + ::= { pmVplsPrev1dEntry 5 } + +pmVplsPrev1dEgressPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpls egress packets." + ::= { pmVplsPrev1dEntry 6 } + +pmVplsPrev1dEgressBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day counter of vpls egress bytes." + ::= { pmVplsPrev1dEntry 7 } + +pmVplsPrev1dStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day start time." + ::= { pmVplsPrev1dEntry 100 } + +pmVplsPrev1dStopTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Previous 1day stop time." + ::= { pmVplsPrev1dEntry 101 } + +pmTcaVplsIngressPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsIngressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 7 } + +pmTcaVplsIngressPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaVplsIngressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsIngressPkts15mIndex } + ::= { pmTcaVplsIngressPkts15mTable 1 } + +PMTcaVplsIngressPkts15mEntry ::= + SEQUENCE + { + pmTcaVplsIngressPkts15mIndex Integer32, + pmTcaVplsIngressPkts15mId OCTET STRING, + pmTcaVplsIngressPkts15mUnitType INTEGER, + pmTcaVplsIngressPkts15mCnt Counter64, + pmTcaVplsIngressPkts15mThreshold Counter64, + pmTcaVplsIngressPkts15mOccurTime DateAndTime + } + +pmTcaVplsIngressPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsIngressPkts15mEntry 1 } + +pmTcaVplsIngressPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsIngressPkts15mEntry 2 } + +pmTcaVplsIngressPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsIngressPkts15mEntry 3 } + +pmTcaVplsIngressPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpls ingress packets." + ::= { pmTcaVplsIngressPkts15mEntry 4 } + +pmTcaVplsIngressPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpls ingress packets." + ::= { pmTcaVplsIngressPkts15mEntry 5 } + +pmTcaVplsIngressPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsIngressPkts15mEntry 6 } + +pmTcaVplsIngressPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsIngressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 8 } + +pmTcaVplsIngressPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaVplsIngressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsIngressPkts1hIndex } + ::= { pmTcaVplsIngressPkts1hTable 1 } + +PMTcaVplsIngressPkts1hEntry ::= + SEQUENCE + { + pmTcaVplsIngressPkts1hIndex Integer32, + pmTcaVplsIngressPkts1hId OCTET STRING, + pmTcaVplsIngressPkts1hUnitType INTEGER, + pmTcaVplsIngressPkts1hCnt Counter64, + pmTcaVplsIngressPkts1hThreshold Counter64, + pmTcaVplsIngressPkts1hOccurTime DateAndTime + } + +pmTcaVplsIngressPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsIngressPkts1hEntry 1 } + +pmTcaVplsIngressPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsIngressPkts1hEntry 2 } + +pmTcaVplsIngressPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsIngressPkts1hEntry 3 } + +pmTcaVplsIngressPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpls ingress packets." + ::= { pmTcaVplsIngressPkts1hEntry 4 } + +pmTcaVplsIngressPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpls ingress packets." + ::= { pmTcaVplsIngressPkts1hEntry 5 } + +pmTcaVplsIngressPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsIngressPkts1hEntry 6 } + +pmTcaVplsIngressPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsIngressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 9 } + +pmTcaVplsIngressPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaVplsIngressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsIngressPkts1dIndex } + ::= { pmTcaVplsIngressPkts1dTable 1 } + +PMTcaVplsIngressPkts1dEntry ::= + SEQUENCE + { + pmTcaVplsIngressPkts1dIndex Integer32, + pmTcaVplsIngressPkts1dId OCTET STRING, + pmTcaVplsIngressPkts1dUnitType INTEGER, + pmTcaVplsIngressPkts1dCnt Counter64, + pmTcaVplsIngressPkts1dThreshold Counter64, + pmTcaVplsIngressPkts1dOccurTime DateAndTime + } + +pmTcaVplsIngressPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsIngressPkts1dEntry 1 } + +pmTcaVplsIngressPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsIngressPkts1dEntry 2 } + +pmTcaVplsIngressPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsIngressPkts1dEntry 3 } + +pmTcaVplsIngressPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpls ingress packets." + ::= { pmTcaVplsIngressPkts1dEntry 4 } + +pmTcaVplsIngressPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpls ingress packets." + ::= { pmTcaVplsIngressPkts1dEntry 5 } + +pmTcaVplsIngressPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsIngressPkts1dEntry 6 } + +pmTcaVplsIngressBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsIngressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 10 } + +pmTcaVplsIngressBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaVplsIngressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsIngressBytes15mIndex } + ::= { pmTcaVplsIngressBytes15mTable 1 } + +PMTcaVplsIngressBytes15mEntry ::= + SEQUENCE + { + pmTcaVplsIngressBytes15mIndex Integer32, + pmTcaVplsIngressBytes15mId OCTET STRING, + pmTcaVplsIngressBytes15mUnitType INTEGER, + pmTcaVplsIngressBytes15mCnt Counter64, + pmTcaVplsIngressBytes15mThreshold Counter64, + pmTcaVplsIngressBytes15mOccurTime DateAndTime + } + +pmTcaVplsIngressBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsIngressBytes15mEntry 1 } + +pmTcaVplsIngressBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsIngressBytes15mEntry 2 } + +pmTcaVplsIngressBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsIngressBytes15mEntry 3 } + +pmTcaVplsIngressBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpls ingress bytes." + ::= { pmTcaVplsIngressBytes15mEntry 4 } + +pmTcaVplsIngressBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpls ingress bytes." + ::= { pmTcaVplsIngressBytes15mEntry 5 } + +pmTcaVplsIngressBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsIngressBytes15mEntry 6 } + +pmTcaVplsIngressBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsIngressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 11 } + +pmTcaVplsIngressBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaVplsIngressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsIngressBytes1hIndex } + ::= { pmTcaVplsIngressBytes1hTable 1 } + +PMTcaVplsIngressBytes1hEntry ::= + SEQUENCE + { + pmTcaVplsIngressBytes1hIndex Integer32, + pmTcaVplsIngressBytes1hId OCTET STRING, + pmTcaVplsIngressBytes1hUnitType INTEGER, + pmTcaVplsIngressBytes1hCnt Counter64, + pmTcaVplsIngressBytes1hThreshold Counter64, + pmTcaVplsIngressBytes1hOccurTime DateAndTime + } + +pmTcaVplsIngressBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsIngressBytes1hEntry 1 } + +pmTcaVplsIngressBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsIngressBytes1hEntry 2 } + +pmTcaVplsIngressBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsIngressBytes1hEntry 3 } + +pmTcaVplsIngressBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpls ingress bytes." + ::= { pmTcaVplsIngressBytes1hEntry 4 } + +pmTcaVplsIngressBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpls ingress bytes." + ::= { pmTcaVplsIngressBytes1hEntry 5 } + +pmTcaVplsIngressBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsIngressBytes1hEntry 6 } + +pmTcaVplsIngressBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsIngressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 12 } + +pmTcaVplsIngressBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaVplsIngressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsIngressBytes1dIndex } + ::= { pmTcaVplsIngressBytes1dTable 1 } + +PMTcaVplsIngressBytes1dEntry ::= + SEQUENCE + { + pmTcaVplsIngressBytes1dIndex Integer32, + pmTcaVplsIngressBytes1dId OCTET STRING, + pmTcaVplsIngressBytes1dUnitType INTEGER, + pmTcaVplsIngressBytes1dCnt Counter64, + pmTcaVplsIngressBytes1dThreshold Counter64, + pmTcaVplsIngressBytes1dOccurTime DateAndTime + } + +pmTcaVplsIngressBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsIngressBytes1dEntry 1 } + +pmTcaVplsIngressBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsIngressBytes1dEntry 2 } + +pmTcaVplsIngressBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsIngressBytes1dEntry 3 } + +pmTcaVplsIngressBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpls ingress bytes." + ::= { pmTcaVplsIngressBytes1dEntry 4 } + +pmTcaVplsIngressBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpls ingress bytes." + ::= { pmTcaVplsIngressBytes1dEntry 5 } + +pmTcaVplsIngressBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsIngressBytes1dEntry 6 } + +pmTcaVplsEgressPkts15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsEgressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 13 } + +pmTcaVplsEgressPkts15mEntry OBJECT-TYPE + SYNTAX PMTcaVplsEgressPkts15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsEgressPkts15mIndex } + ::= { pmTcaVplsEgressPkts15mTable 1 } + +PMTcaVplsEgressPkts15mEntry ::= + SEQUENCE + { + pmTcaVplsEgressPkts15mIndex Integer32, + pmTcaVplsEgressPkts15mId OCTET STRING, + pmTcaVplsEgressPkts15mUnitType INTEGER, + pmTcaVplsEgressPkts15mCnt Counter64, + pmTcaVplsEgressPkts15mThreshold Counter64, + pmTcaVplsEgressPkts15mOccurTime DateAndTime + } + +pmTcaVplsEgressPkts15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsEgressPkts15mEntry 1 } + +pmTcaVplsEgressPkts15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsEgressPkts15mEntry 2 } + +pmTcaVplsEgressPkts15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsEgressPkts15mEntry 3 } + +pmTcaVplsEgressPkts15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpls egress packets." + ::= { pmTcaVplsEgressPkts15mEntry 4 } + +pmTcaVplsEgressPkts15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpls egress packets." + ::= { pmTcaVplsEgressPkts15mEntry 5 } + +pmTcaVplsEgressPkts15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsEgressPkts15mEntry 6 } + +pmTcaVplsEgressPkts1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsEgressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 14 } + +pmTcaVplsEgressPkts1hEntry OBJECT-TYPE + SYNTAX PMTcaVplsEgressPkts1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsEgressPkts1hIndex } + ::= { pmTcaVplsEgressPkts1hTable 1 } + +PMTcaVplsEgressPkts1hEntry ::= + SEQUENCE + { + pmTcaVplsEgressPkts1hIndex Integer32, + pmTcaVplsEgressPkts1hId OCTET STRING, + pmTcaVplsEgressPkts1hUnitType INTEGER, + pmTcaVplsEgressPkts1hCnt Counter64, + pmTcaVplsEgressPkts1hThreshold Counter64, + pmTcaVplsEgressPkts1hOccurTime DateAndTime + } + +pmTcaVplsEgressPkts1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsEgressPkts1hEntry 1 } + +pmTcaVplsEgressPkts1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsEgressPkts1hEntry 2 } + +pmTcaVplsEgressPkts1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsEgressPkts1hEntry 3 } + +pmTcaVplsEgressPkts1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpls egress packets." + ::= { pmTcaVplsEgressPkts1hEntry 4 } + +pmTcaVplsEgressPkts1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpls egress packets." + ::= { pmTcaVplsEgressPkts1hEntry 5 } + +pmTcaVplsEgressPkts1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsEgressPkts1hEntry 6 } + +pmTcaVplsEgressPkts1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsEgressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 15 } + +pmTcaVplsEgressPkts1dEntry OBJECT-TYPE + SYNTAX PMTcaVplsEgressPkts1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsEgressPkts1dIndex } + ::= { pmTcaVplsEgressPkts1dTable 1 } + +PMTcaVplsEgressPkts1dEntry ::= + SEQUENCE + { + pmTcaVplsEgressPkts1dIndex Integer32, + pmTcaVplsEgressPkts1dId OCTET STRING, + pmTcaVplsEgressPkts1dUnitType INTEGER, + pmTcaVplsEgressPkts1dCnt Counter64, + pmTcaVplsEgressPkts1dThreshold Counter64, + pmTcaVplsEgressPkts1dOccurTime DateAndTime + } + +pmTcaVplsEgressPkts1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsEgressPkts1dEntry 1 } + +pmTcaVplsEgressPkts1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsEgressPkts1dEntry 2 } + +pmTcaVplsEgressPkts1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsEgressPkts1dEntry 3 } + +pmTcaVplsEgressPkts1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpls egress packets." + ::= { pmTcaVplsEgressPkts1dEntry 4 } + +pmTcaVplsEgressPkts1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpls egress packets." + ::= { pmTcaVplsEgressPkts1dEntry 5 } + +pmTcaVplsEgressPkts1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsEgressPkts1dEntry 6 } + +pmTcaVplsEgressBytes15mTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsEgressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 16 } + +pmTcaVplsEgressBytes15mEntry OBJECT-TYPE + SYNTAX PMTcaVplsEgressBytes15mEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsEgressBytes15mIndex } + ::= { pmTcaVplsEgressBytes15mTable 1 } + +PMTcaVplsEgressBytes15mEntry ::= + SEQUENCE + { + pmTcaVplsEgressBytes15mIndex Integer32, + pmTcaVplsEgressBytes15mId OCTET STRING, + pmTcaVplsEgressBytes15mUnitType INTEGER, + pmTcaVplsEgressBytes15mCnt Counter64, + pmTcaVplsEgressBytes15mThreshold Counter64, + pmTcaVplsEgressBytes15mOccurTime DateAndTime + } + +pmTcaVplsEgressBytes15mIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsEgressBytes15mEntry 1 } + +pmTcaVplsEgressBytes15mId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsEgressBytes15mEntry 2 } + +pmTcaVplsEgressBytes15mUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsEgressBytes15mEntry 3 } + +pmTcaVplsEgressBytes15mCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min counter of vpls egress bytes." + ::= { pmTcaVplsEgressBytes15mEntry 4 } + +pmTcaVplsEgressBytes15mThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "15min threshold of vpls egress bytes." + ::= { pmTcaVplsEgressBytes15mEntry 5 } + +pmTcaVplsEgressBytes15mOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsEgressBytes15mEntry 6 } + +pmTcaVplsEgressBytes1hTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsEgressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 17 } + +pmTcaVplsEgressBytes1hEntry OBJECT-TYPE + SYNTAX PMTcaVplsEgressBytes1hEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsEgressBytes1hIndex } + ::= { pmTcaVplsEgressBytes1hTable 1 } + +PMTcaVplsEgressBytes1hEntry ::= + SEQUENCE + { + pmTcaVplsEgressBytes1hIndex Integer32, + pmTcaVplsEgressBytes1hId OCTET STRING, + pmTcaVplsEgressBytes1hUnitType INTEGER, + pmTcaVplsEgressBytes1hCnt Counter64, + pmTcaVplsEgressBytes1hThreshold Counter64, + pmTcaVplsEgressBytes1hOccurTime DateAndTime + } + +pmTcaVplsEgressBytes1hIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsEgressBytes1hEntry 1 } + +pmTcaVplsEgressBytes1hId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsEgressBytes1hEntry 2 } + +pmTcaVplsEgressBytes1hUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsEgressBytes1hEntry 3 } + +pmTcaVplsEgressBytes1hCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour counter of vpls egress bytes." + ::= { pmTcaVplsEgressBytes1hEntry 4 } + +pmTcaVplsEgressBytes1hThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1hour threshold of vpls egress bytes." + ::= { pmTcaVplsEgressBytes1hEntry 5 } + +pmTcaVplsEgressBytes1hOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsEgressBytes1hEntry 6 } + +pmTcaVplsEgressBytes1dTable OBJECT-TYPE + SYNTAX SEQUENCE OF PMTcaVplsEgressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains vpls information of all units." + ::= { pmVpls 18 } + +pmTcaVplsEgressBytes1dEntry OBJECT-TYPE + SYNTAX PMTcaVplsEgressBytes1dEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of vpls information of all units." + INDEX { pmTcaVplsEgressBytes1dIndex } + ::= { pmTcaVplsEgressBytes1dTable 1 } + +PMTcaVplsEgressBytes1dEntry ::= + SEQUENCE + { + pmTcaVplsEgressBytes1dIndex Integer32, + pmTcaVplsEgressBytes1dId OCTET STRING, + pmTcaVplsEgressBytes1dUnitType INTEGER, + pmTcaVplsEgressBytes1dCnt Counter64, + pmTcaVplsEgressBytes1dThreshold Counter64, + pmTcaVplsEgressBytes1dOccurTime DateAndTime + } + +pmTcaVplsEgressBytes1dIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of units." + ::= { pmTcaVplsEgressBytes1dEntry 1 } + +pmTcaVplsEgressBytes1dId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { pmTcaVplsEgressBytes1dEntry 2 } + +pmTcaVplsEgressBytes1dUnitType OBJECT-TYPE + SYNTAX INTEGER + { + mcu(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit type." + ::= { pmTcaVplsEgressBytes1dEntry 3 } + +pmTcaVplsEgressBytes1dCnt OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day counter of vpls egress bytes." + ::= { pmTcaVplsEgressBytes1dEntry 4 } + +pmTcaVplsEgressBytes1dThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1day threshold of vpls egress bytes." + ::= { pmTcaVplsEgressBytes1dEntry 5 } + +pmTcaVplsEgressBytes1dOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the tca." + ::= { pmTcaVplsEgressBytes1dEntry 6 } + + +--alarm OBJECT IDENTIFIER ::= { OID 91 } + +alarmOptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmOptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains all alarm information." + ::= { alarm 1 } + +alarmOptionEntry OBJECT-TYPE + SYNTAX AlarmOptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of all alarm information." + INDEX { alarmOptionIndex } + ::= { alarmOptionTable 1 } + +AlarmOptionEntry ::= + SEQUENCE + { + alarmOptionIndex INTEGER, + alarmOptionSeverity INTEGER, + alarmOptionServiceAffect INTEGER + } + +alarmOptionIndex OBJECT-TYPE + SYNTAX INTEGER + { + unit-out(0), + sfp-out(1), + link-down(2), + vpws-down(3), + vpls-down(4), + lsp-down(5), + mspw-down(6), + mem-usage-high(7), + mpls-tp-oam-loc(8), + mpls-tp-oam-unexp-rmepid(9), + mpls-tp-oam-unexp-interval(10), + mpls-tp-oam-unexp-megid(11), + mpls-tp-oam-unexp-level(12), + mpls-tp-oam-rdi(13), + mpls-tp-oam-rdi-tx(14), + mpls-tp-oam-ais-defect(15), + mpls-tp-oam-event-full(16), + mpls-tp-oam-1dm-full(17), + mpls-tp-oam-wait-1st-ccm(18), + mpls-tp-oam-ais-rx(19), + mpls-tp-oam-ais-tx(20), + tca-unit-temperature-min-15min(21), + tca-unit-temperature-min-1hour(22), + tca-unit-temperature-min-1day(23), + tca-unit-temperature-max-15min(24), + tca-unit-temperature-max-1hour(25), + tca-unit-temperature-max-1day(26), + tca-sfp-rx-power-min-15min(27), + tca-sfp-rx-power-min-1hour(28), + tca-sfp-rx-power-min-1day(29), + tca-sfp-rx-power-max-15min(30), + tca-sfp-rx-power-max-1hour(31), + tca-sfp-rx-power-max-1day(32), + tca-sfp-tx-power-min-15min(33), + tca-sfp-tx-power-min-1hour(34), + tca-sfp-tx-power-min-1day(35), + tca-sfp-tx-power-max-15min(36), + tca-sfp-tx-power-max-1hourn(37), + tca-sfp-tx-power-max-1day(38), + tca-if-dropped-events-15min(39), + tca-if-dropped-events-1hour(40), + tca-if-dropped-events-1day(41), + tca-if-input-packets-15min(42), + tca-if-input-packets-1hour(43), + tca-if-input-packets-1day(44), + tca-if-input-bytes-15min(45), + tca-if-input-bytes-1hour(46), + tca-if-input-bytes-1day(47), + tca-if-input-broadcasts-15min(48), + tca-if-input-broadcasts-1hour(49), + tca-if-input-broadcasts-1day(50), + tca-if-input-multicasts-15min(51), + tca-if-input-multicasts-1hour(52), + tca-if-input-multicasts-1day(53), + tca-if-crc-errors-15min(54), + tca-if-crc-errors-1hour(55), + tca-if-crc-errors-1day(56), + tca-if-collisions-15min(57), + tca-if-collisions-1hour(58), + tca-if-collisions-1day(59), + tca-if-undersized-packets-15min(60), + tca-if-undersized-packets-1hour(61), + tca-if-undersized-packets-1day(62), + tca-if-oversized-packets-15min(63), + tca-if-oversized-packets-1hour(64), + tca-if-oversized-packets-1day(65), + tca-if-fragments-15min(66), + tca-if-fragments-1hour(67), + tca-if-fragments-1day(68), + tca-if-jabbers-15min(69), + tca-if-jabbers-1hour(70), + tca-if-jabbers-1day(71), + tca-if-packet-64-15min(72), + tca-if-packet-64-1hour(73), + tca-if-packet-64-1day(74), + tca-if-packet-65-127-15min(75), + tca-if-packet-65-127-1hour(76), + tca-if-packet-65-127-1day(77), + tca-if-packet-128-255-15min(78), + tca-if-packet-128-255-1hour(79), + tca-if-packet-128-255-1day(80), + tca-if-packet-256-511-15min(81), + tca-if-packet-256-511-1hour(82), + tca-if-packet-256-511-1day(83), + tca-if-packet-512-1023-15min(84), + tca-if-packet-512-1023-1hour(85), + tca-if-packet-512-1023-1day(86), + tca-if-packet-1024-15min(87), + tca-if-packet-1024-1hour(88), + tca-if-packet-1024-1day(89), + tca-if-output-packets-15min(90), + tca-if-output-packets-1hour(91), + tca-if-output-packets-1day(92), + tca-if-output-bytes-15min(93), + tca-if-output-bytes-1hour(94), + tca-if-output-bytes-1day(95), + tca-lsp-pe-out-packets-15min(96), + tca-lsp-pe-out-packets-1hour(97), + tca-lsp-pe-out-packets-1day(98), + tca-lsp-pe-out-bytes-15min(99), + tca-lsp-pe-out-bytes-1hour(100), + tca-lsp-pe-out-bytes-1day(101), + tca-lsp-p-east-in-packets-15min(102), + tca-lsp-p-east-in-packets-1hour(103), + tca-lsp-p-east-in-packets-1day(104), + tca-lsp-p-east-in-bytes-15min(105), + tca-lsp-p-east-in-bytes-1hour(106), + tca-lsp-p-east-in-bytes-1day(107), + tca-lsp-p-west-in-packets-15min(108), + tca-lsp-p-west-in-packets-1hour(109), + tca-lsp-p-west-in-packets-1day(110), + tca-lsp-p-west-in-bytes-15min(111), + tca-lsp-p-west-in-bytes-1hour(112), + tca-lsp-p-west-in-bytes-1day(113), + tca-vpws-ingress-packets-15min(114), + tca-vpws-ingress-packets-1hour(115), + tca-vpws-ingress-packets-1day(116), + tca-vpws-ingress-bytes-15min(117), + tca-vpws-ingress-bytes-1hour(118), + tca-vpws-ingress-bytes-1day(119), + tca-vpws-egress-packets-15min(120), + tca-vpws-egress-packets-1hour(121), + tca-vpws-egress-packets-1day(122), + tca-vpws-egress-bytes-15min(123), + tca-vpws-egress-bytes-1hour(124), + tca-vpws-egress-bytes-1day(125), + tca-vpls-ingress-packets-15min(126), + tca-vpls-ingress-packets-1hour(127), + tca-vpls-ingress-packets-1day(128), + tca-vpls-ingress-bytes-15min(129), + tca-vpls-ingress-bytes-1hour(130), + tca-vpls-ingress-bytes-1day(131), + tca-vpls-egress-packets-15min(132), + tca-vpls-egress-packets-1hour(133), + tca-vpls-egress-packets-1day(134), + tca-vpls-egress-bytes-15min(135), + tca-vpls-egress-bytes-1hour(136), + tca-vpls-egress-bytes-1day(137) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of pm types." + ::= { alarmOptionEntry 1 } + +alarmOptionSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(0), + minor(1), + major(2), + critical(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Severity of the alarm." + ::= { alarmOptionEntry 2 } + +alarmOptionServiceAffect OBJECT-TYPE + SYNTAX INTEGER + { + service-affected(0), + non-service-affected(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service affted of the alarm." + ::= { alarmOptionEntry 3 } + +alarmLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains all current alarms." + ::= { alarm 2 } + +alarmLogEntry OBJECT-TYPE + SYNTAX AlarmLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { alarmLogIndex } + ::= { alarmLogTable 1 } + +AlarmLogEntry ::= + SEQUENCE + { + alarmLogIndex Integer32, + alarmLogType INTEGER, + alarmLogObject OCTET STRING, + alarmLogSeverity INTEGER, + alarmLogServiceAffect INTEGER, + alarmLogAddInfo OCTET STRING, + alarmLogOccurTime DateAndTime + } + +alarmLogIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of current alarm." + ::= { alarmLogEntry 1 } + +alarmLogType OBJECT-TYPE + SYNTAX INTEGER + { + unit-out(0), + sfp-out(1), + link-down(2), + vpws-down(3), + vpls-down(4), + lsp-down(5), + mspw-down(6), + mem-usage-high(7), + mpls-tp-oam-loc(8), + mpls-tp-oam-unexp-rmepid(9), + mpls-tp-oam-unexp-interval(10), + mpls-tp-oam-unexp-megid(11), + mpls-tp-oam-unexp-level(12), + mpls-tp-oam-rdi(13), + mpls-tp-oam-rdi-tx(14), + mpls-tp-oam-ais-defect(15), + mpls-tp-oam-event-full(16), + mpls-tp-oam-1dm-full(17), + mpls-tp-oam-wait-1st-ccm(18), + mpls-tp-oam-ais-rx(19), + mpls-tp-oam-ais-tx(20), + tca-unit-temperature-min-15min(21), + tca-unit-temperature-min-1hour(22), + tca-unit-temperature-min-1day(23), + tca-unit-temperature-max-15min(24), + tca-unit-temperature-max-1hour(25), + tca-unit-temperature-max-1day(26), + tca-sfp-rx-power-min-15min(27), + tca-sfp-rx-power-min-1hour(28), + tca-sfp-rx-power-min-1day(29), + tca-sfp-rx-power-max-15min(30), + tca-sfp-rx-power-max-1hour(31), + tca-sfp-rx-power-max-1day(32), + tca-sfp-tx-power-min-15min(33), + tca-sfp-tx-power-min-1hour(34), + tca-sfp-tx-power-min-1day(35), + tca-sfp-tx-power-max-15min(36), + tca-sfp-tx-power-max-1hourn(37), + tca-sfp-tx-power-max-1day(38), + tca-if-dropped-events-15min(39), + tca-if-dropped-events-1hour(40), + tca-if-dropped-events-1day(41), + tca-if-input-packets-15min(42), + tca-if-input-packets-1hour(43), + tca-if-input-packets-1day(44), + tca-if-input-bytes-15min(45), + tca-if-input-bytes-1hour(46), + tca-if-input-bytes-1day(47), + tca-if-input-broadcasts-15min(48), + tca-if-input-broadcasts-1hour(49), + tca-if-input-broadcasts-1day(50), + tca-if-input-multicasts-15min(51), + tca-if-input-multicasts-1hour(52), + tca-if-input-multicasts-1day(53), + tca-if-crc-errors-15min(54), + tca-if-crc-errors-1hour(55), + tca-if-crc-errors-1day(56), + tca-if-collisions-15min(57), + tca-if-collisions-1hour(58), + tca-if-collisions-1day(59), + tca-if-undersized-packets-15min(60), + tca-if-undersized-packets-1hour(61), + tca-if-undersized-packets-1day(62), + tca-if-oversized-packets-15min(63), + tca-if-oversized-packets-1hour(64), + tca-if-oversized-packets-1day(65), + tca-if-fragments-15min(66), + tca-if-fragments-1hour(67), + tca-if-fragments-1day(68), + tca-if-jabbers-15min(69), + tca-if-jabbers-1hour(70), + tca-if-jabbers-1day(71), + tca-if-packet-64-15min(72), + tca-if-packet-64-1hour(73), + tca-if-packet-64-1day(74), + tca-if-packet-65-127-15min(75), + tca-if-packet-65-127-1hour(76), + tca-if-packet-65-127-1day(77), + tca-if-packet-128-255-15min(78), + tca-if-packet-128-255-1hour(79), + tca-if-packet-128-255-1day(80), + tca-if-packet-256-511-15min(81), + tca-if-packet-256-511-1hour(82), + tca-if-packet-256-511-1day(83), + tca-if-packet-512-1023-15min(84), + tca-if-packet-512-1023-1hour(85), + tca-if-packet-512-1023-1day(86), + tca-if-packet-1024-15min(87), + tca-if-packet-1024-1hour(88), + tca-if-packet-1024-1day(89), + tca-if-output-packets-15min(90), + tca-if-output-packets-1hour(91), + tca-if-output-packets-1day(92), + tca-if-output-bytes-15min(93), + tca-if-output-bytes-1hour(94), + tca-if-output-bytes-1day(95), + tca-lsp-pe-out-packets-15min(96), + tca-lsp-pe-out-packets-1hour(97), + tca-lsp-pe-out-packets-1day(98), + tca-lsp-pe-out-bytes-15min(99), + tca-lsp-pe-out-bytes-1hour(100), + tca-lsp-pe-out-bytes-1day(101), + tca-lsp-p-east-in-packets-15min(102), + tca-lsp-p-east-in-packets-1hour(103), + tca-lsp-p-east-in-packets-1day(104), + tca-lsp-p-east-in-bytes-15min(105), + tca-lsp-p-east-in-bytes-1hour(106), + tca-lsp-p-east-in-bytes-1day(107), + tca-lsp-p-west-in-packets-15min(108), + tca-lsp-p-west-in-packets-1hour(109), + tca-lsp-p-west-in-packets-1day(110), + tca-lsp-p-west-in-bytes-15min(111), + tca-lsp-p-west-in-bytes-1hour(112), + tca-lsp-p-west-in-bytes-1day(113), + tca-vpws-ingress-packets-15min(114), + tca-vpws-ingress-packets-1hour(115), + tca-vpws-ingress-packets-1day(116), + tca-vpws-ingress-bytes-15min(117), + tca-vpws-ingress-bytes-1hour(118), + tca-vpws-ingress-bytes-1day(119), + tca-vpws-egress-packets-15min(120), + tca-vpws-egress-packets-1hour(121), + tca-vpws-egress-packets-1day(122), + tca-vpws-egress-bytes-15min(123), + tca-vpws-egress-bytes-1hour(124), + tca-vpws-egress-bytes-1day(125), + tca-vpls-ingress-packets-15min(126), + tca-vpls-ingress-packets-1hour(127), + tca-vpls-ingress-packets-1day(128), + tca-vpls-ingress-bytes-15min(129), + tca-vpls-ingress-bytes-1hour(130), + tca-vpls-ingress-bytes-1day(131), + tca-vpls-egress-packets-15min(132), + tca-vpls-egress-packets-1hour(133), + tca-vpls-egress-packets-1day(134), + tca-vpls-egress-bytes-15min(135), + tca-vpls-egress-bytes-1hour(136), + tca-vpls-egress-bytes-1day(137) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { alarmLogEntry 2 } + +alarmLogObject OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object of the alarm." + ::= { alarmLogEntry 3 } + +alarmLogSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(0), + minor(1), + major(2), + critical(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Severity of the alarm." + ::= { alarmLogEntry 4 } + +alarmLogServiceAffect OBJECT-TYPE + SYNTAX INTEGER + { + service-affected(0), + not-service-affected(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether this alarm affects service." + ::= { alarmLogEntry 5 } + +alarmLogAddInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional information of the alarm." + ::= { alarmLogEntry 6 } + +alarmLogOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the alarm." + ::= { alarmLogEntry 7 } + +alarmHistoryLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF AlarmHistoryLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains all current alarms." + ::= { alarm 3 } + +alarmHistoryLogEntry OBJECT-TYPE + SYNTAX AlarmHistoryLogEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of temperature information of all units." + INDEX { alarmHistoryLogIndex } + ::= { alarmHistoryLogTable 1 } + +AlarmHistoryLogEntry ::= + SEQUENCE + { + alarmHistoryLogIndex Integer32, + alarmHistoryLogSeq Integer32, + alarmHistoryLogType INTEGER, + alarmHistoryLogObject OCTET STRING, + alarmHistoryLogSeverity INTEGER, + alarmHistoryLogServiceAffect INTEGER, + alarmHistoryLogAddInfo OCTET STRING, + alarmHistoryLogOccurTime DateAndTime, + alarmHistoryLogReleaseTime DateAndTime + } + +alarmHistoryLogIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index of history alarms." + ::= { alarmHistoryLogEntry 1 } + +alarmHistoryLogSeq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Sequence number of the history alarm." + ::= { alarmHistoryLogEntry 2 } + +alarmHistoryLogType OBJECT-TYPE + SYNTAX INTEGER + { + unit-out(0), + sfp-out(1), + link-down(2), + vpws-down(3), + vpls-down(4), + lsp-down(5), + mspw-down(6), + mem-usage-high(7), + mpls-tp-oam-loc(8), + mpls-tp-oam-unexp-rmepid(9), + mpls-tp-oam-unexp-interval(10), + mpls-tp-oam-unexp-megid(11), + mpls-tp-oam-unexp-level(12), + mpls-tp-oam-rdi(13), + mpls-tp-oam-rdi-tx(14), + mpls-tp-oam-ais-defect(15), + mpls-tp-oam-event-full(16), + mpls-tp-oam-1dm-full(17), + mpls-tp-oam-wait-1st-ccm(18), + mpls-tp-oam-ais-rx(19), + mpls-tp-oam-ais-tx(20), + tca-unit-temperature-min-15min(21), + tca-unit-temperature-min-1hour(22), + tca-unit-temperature-min-1day(23), + tca-unit-temperature-max-15min(24), + tca-unit-temperature-max-1hour(25), + tca-unit-temperature-max-1day(26), + tca-sfp-rx-power-min-15min(27), + tca-sfp-rx-power-min-1hour(28), + tca-sfp-rx-power-min-1day(29), + tca-sfp-rx-power-max-15min(30), + tca-sfp-rx-power-max-1hour(31), + tca-sfp-rx-power-max-1day(32), + tca-sfp-tx-power-min-15min(33), + tca-sfp-tx-power-min-1hour(34), + tca-sfp-tx-power-min-1day(35), + tca-sfp-tx-power-max-15min(36), + tca-sfp-tx-power-max-1hourn(37), + tca-sfp-tx-power-max-1day(38), + tca-if-dropped-events-15min(39), + tca-if-dropped-events-1hour(40), + tca-if-dropped-events-1day(41), + tca-if-input-packets-15min(42), + tca-if-input-packets-1hour(43), + tca-if-input-packets-1day(44), + tca-if-input-bytes-15min(45), + tca-if-input-bytes-1hour(46), + tca-if-input-bytes-1day(47), + tca-if-input-broadcasts-15min(48), + tca-if-input-broadcasts-1hour(49), + tca-if-input-broadcasts-1day(50), + tca-if-input-multicasts-15min(51), + tca-if-input-multicasts-1hour(52), + tca-if-input-multicasts-1day(53), + tca-if-crc-errors-15min(54), + tca-if-crc-errors-1hour(55), + tca-if-crc-errors-1day(56), + tca-if-collisions-15min(57), + tca-if-collisions-1hour(58), + tca-if-collisions-1day(59), + tca-if-undersized-packets-15min(60), + tca-if-undersized-packets-1hour(61), + tca-if-undersized-packets-1day(62), + tca-if-oversized-packets-15min(63), + tca-if-oversized-packets-1hour(64), + tca-if-oversized-packets-1day(65), + tca-if-fragments-15min(66), + tca-if-fragments-1hour(67), + tca-if-fragments-1day(68), + tca-if-jabbers-15min(69), + tca-if-jabbers-1hour(70), + tca-if-jabbers-1day(71), + tca-if-packet-64-15min(72), + tca-if-packet-64-1hour(73), + tca-if-packet-64-1day(74), + tca-if-packet-65-127-15min(75), + tca-if-packet-65-127-1hour(76), + tca-if-packet-65-127-1day(77), + tca-if-packet-128-255-15min(78), + tca-if-packet-128-255-1hour(79), + tca-if-packet-128-255-1day(80), + tca-if-packet-256-511-15min(81), + tca-if-packet-256-511-1hour(82), + tca-if-packet-256-511-1day(83), + tca-if-packet-512-1023-15min(84), + tca-if-packet-512-1023-1hour(85), + tca-if-packet-512-1023-1day(86), + tca-if-packet-1024-15min(87), + tca-if-packet-1024-1hour(88), + tca-if-packet-1024-1day(89), + tca-if-output-packets-15min(90), + tca-if-output-packets-1hour(91), + tca-if-output-packets-1day(92), + tca-if-output-bytes-15min(93), + tca-if-output-bytes-1hour(94), + tca-if-output-bytes-1day(95), + tca-lsp-pe-out-packets-15min(96), + tca-lsp-pe-out-packets-1hour(97), + tca-lsp-pe-out-packets-1day(98), + tca-lsp-pe-out-bytes-15min(99), + tca-lsp-pe-out-bytes-1hour(100), + tca-lsp-pe-out-bytes-1day(101), + tca-lsp-p-east-in-packets-15min(102), + tca-lsp-p-east-in-packets-1hour(103), + tca-lsp-p-east-in-packets-1day(104), + tca-lsp-p-east-in-bytes-15min(105), + tca-lsp-p-east-in-bytes-1hour(106), + tca-lsp-p-east-in-bytes-1day(107), + tca-lsp-p-west-in-packets-15min(108), + tca-lsp-p-west-in-packets-1hour(109), + tca-lsp-p-west-in-packets-1day(110), + tca-lsp-p-west-in-bytes-15min(111), + tca-lsp-p-west-in-bytes-1hour(112), + tca-lsp-p-west-in-bytes-1day(113), + tca-vpws-ingress-packets-15min(114), + tca-vpws-ingress-packets-1hour(115), + tca-vpws-ingress-packets-1day(116), + tca-vpws-ingress-bytes-15min(117), + tca-vpws-ingress-bytes-1hour(118), + tca-vpws-ingress-bytes-1day(119), + tca-vpws-egress-packets-15min(120), + tca-vpws-egress-packets-1hour(121), + tca-vpws-egress-packets-1day(122), + tca-vpws-egress-bytes-15min(123), + tca-vpws-egress-bytes-1hour(124), + tca-vpws-egress-bytes-1day(125), + tca-vpls-ingress-packets-15min(126), + tca-vpls-ingress-packets-1hour(127), + tca-vpls-ingress-packets-1day(128), + tca-vpls-ingress-bytes-15min(129), + tca-vpls-ingress-bytes-1hour(130), + tca-vpls-ingress-bytes-1day(131), + tca-vpls-egress-packets-15min(132), + tca-vpls-egress-packets-1hour(133), + tca-vpls-egress-packets-1day(134), + tca-vpls-egress-bytes-15min(135), + tca-vpls-egress-bytes-1hour(136), + tca-vpls-egress-bytes-1day(137) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit name." + ::= { alarmHistoryLogEntry 3 } + +alarmHistoryLogObject OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object of the alarm." + ::= { alarmHistoryLogEntry 4 } + +alarmHistoryLogSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(0), + minor(1), + major(2), + critical(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Severity of the alarm." + ::= { alarmHistoryLogEntry 5 } + +alarmHistoryLogServiceAffect OBJECT-TYPE + SYNTAX INTEGER + { + service-affected(0), + not-service-affected(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether this alarm affects service." + ::= { alarmHistoryLogEntry 6 } + +alarmHistoryLogAddInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional information of the alarm." + ::= { alarmHistoryLogEntry 7 } + +alarmHistoryLogOccurTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the alarm." + ::= { alarmHistoryLogEntry 8 } + +alarmHistoryLogReleaseTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the occurrence of the alarm." + ::= { alarmHistoryLogEntry 9 } + +alarmSwitchAlarm OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable all alarm event traps.disable(2) enable(1)" + DEFVAL { enable } + ::= { alarm 4 } + +alarmSwitchTca OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable all tca event traps.disable(2) enable(1)" + DEFVAL { enable } + ::= { alarm 5 } + +alarmTrap OBJECT IDENTIFIER ::= { alarm 100 } + +aAlarmEventNotify NOTIFICATION-TYPE + OBJECTS { + alarmHistoryLogSeq, + alarmHistoryLogType, + alarmHistoryLogObject, + alarmHistoryLogSeverity, + alarmHistoryLogServiceAffect, + alarmHistoryLogAddInfo, + alarmHistoryLogOccurTime, + alarmHistoryLogReleaseTime + } + STATUS current + DESCRIPTION + "This trap will be generated when system fault is detected or released. + ie. unit-out, tca, etc." + ::= {alarmTrap 1} + +-- Sub Module: rsvpTe +-- rsvpTe: inteface +rsvpTeIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure mpls-te on an interface." + ::= { rsvpTe 1 } + +rsvpTeIfEntry OBJECT-TYPE + SYNTAX RsvpTeIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvpTeIfTable." + INDEX { ifIndex } + ::= { rsvpTeIfTable 1 } + +RsvpTeIfEntry ::= + SEQUENCE + { + rsvpTeIfEnable + INTEGER, + rsvpTeIfHelloInterval + Integer32, + rsvpTeIfHelloReceipt + INTEGER, + rsvpTeIfHelloTimeout + Integer32, + rsvpTeIfKeepMultiplier + Integer32, + rsvpTeIfRefreshTime + Integer32, + rsvpTeAckWaitTime + Integer32, + rsvpTeMessageAck + INTEGER, + rsvpTeRefreshReduction + INTEGER + } + +rsvpTeIfEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable RSVP on this interface" + DEFVAL { disable } + ::= { rsvpTeIfEntry 1 } + +rsvpTeIfHelloInterval OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure interval between successive Hello packets to neighbor on this interface" + DEFVAL { 2 } + ::= { rsvpTeIfEntry 2 } + +rsvpTeIfHelloReceipt OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the exchange of Hello messages on this interface" + DEFVAL { disable } + ::= { rsvpTeIfEntry 3 } + +rsvpTeIfHelloTimeout OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure Timeout for clearing up all sessions shared with a neighbor on this interface" + DEFVAL { 7 } + ::= { rsvpTeIfEntry 4 } + +rsvpTeIfKeepMultiplier OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Configure the constant to be used for calculating a valid lifetime on this interface" + DEFVAL { 3 } + ::= { rsvpTeIfEntry 5 } + +rsvpTeIfRefreshTime OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " Configure the path interval being used on this interface" + DEFVAL { 30 } + ::= { rsvpTeIfEntry 6 } + +rsvpTeAckWaitTime OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure acknowledgement wait timeout on this interface" + DEFVAL { 1 } + ::= { rsvpTeIfEntry 7 } + +rsvpTeMessageAck OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable Message Acknowledgement on this interface" + DEFVAL { disable } + ::= { rsvpTeIfEntry 8 } + +rsvpTeRefreshReduction OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable refresh reduction for this interface" + DEFVAL { enable } + ::= { rsvpTeIfEntry 9 } + + +-- rsvpTe: router rsvp +rsvpTeGlobal OBJECT IDENTIFIER + ::= { rsvpTe 2 } + +rsvpTeGlobalEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the Resource Reservation Protocol (RSVP) Globally." + DEFVAL { disable } + ::= { rsvpTeGlobal 1} + +rsvpTeGlobalExplicitNull OBJECT-TYPE + SYNTAX INTEGER {explicitNull(1), noExplicitNull(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the state of send Explicit NULL Label" + DEFVAL { noExplicitNull } + ::= { rsvpTeGlobal 2 } + +rsvpTeGlobalHelloInterval OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the interval between successive Hello packets to neighbor" + DEFVAL { 2 } + ::= { rsvpTeGlobal 3 } + +rsvpTeGlobalHelloTimeout OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the timeout for clearing up all sessions shared with a neighbor" + DEFVAL { 7 } + ::= { rsvpTeGlobal 4 } + +rsvpTeGlobalKeepMultiplier OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the constant to be used for calculating a valid lifetime" + DEFVAL { 3 } + ::= { rsvpTeGlobal 5 } + +rsvpTeGlobalNeighborTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeGlobalNeighborEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Identify a directly connected ipv4 neighbor" + ::= { rsvpTeGlobal 6 } + +rsvpTeGlobalNeighborEntry OBJECT-TYPE + SYNTAX RsvpTeGlobalNeighborEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvpTeGlobalNeighborTable" + INDEX { rsvpTeGlobalNeighborAddr } + ::= { rsvpTeGlobalNeighborTable 1 } + +RsvpTeGlobalNeighborEntry ::= + SEQUENCE + { + rsvpTeGlobalNeighborAddr + IpAddress, + rsvpTeGlobalNeighborRowStatus + RowStatus, + rsvpTeGlobalNeighborUpStrmLSP + Integer32, + rsvpTeGlobalNeighborDnStrmLSP + Integer32, + rsvpTeGlobalNeighborRefReduc + INTEGER, + rsvpTeGlobalNeighborSrefreshIn + Integer32, + rsvpTeGlobalNeighborSrefreshType + INTEGER, + rsvpTeGlobalNeighborHelloStat + INTEGER + } + +rsvpTeGlobalNeighborAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the IPv4 address of the neighbor" + ::= { rsvpTeGlobalNeighborEntry 1 } + +rsvpTeGlobalNeighborRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the rsvpTeGlobalNeighborEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { rsvpTeGlobalNeighborEntry 2 } + +rsvpTeGlobalNeighborUpStrmLSP OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the up stream LSP." + ::= { rsvpTeGlobalNeighborEntry 3 } + +rsvpTeGlobalNeighborDnStrmLSP OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the down stream LSP." + ::= { rsvpTeGlobalNeighborEntry 4 } + +rsvpTeGlobalNeighborRefReduc OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The RR(Refresh Reduction) configuration of the rsvp neighbor." + ::= { rsvpTeGlobalNeighborEntry 5 } + +rsvpTeGlobalNeighborSrefreshIn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refresh timer of the rsvp neighbor." + ::= { rsvpTeGlobalNeighborEntry 6 } + +rsvpTeGlobalNeighborSrefreshType OBJECT-TYPE + SYNTAX INTEGER {explicit(1), implicit(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refresh type of the rsvp neighbor." + ::= { rsvpTeGlobalNeighborEntry 7 } + +rsvpTeGlobalNeighborHelloStat OBJECT-TYPE + SYNTAX INTEGER {up(1), lost(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of hello keep-alive message." + ::= { rsvpTeGlobalNeighborEntry 8 } + +rsvpTeGlobalLoopDetection OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the loop detection" + DEFVAL { disable } + ::= { rsvpTeGlobal 7 } + +rsvpTeGlobalRefreshTime OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure RSVP refresh interval timer" + DEFVAL { 30 } + ::= { rsvpTeGlobal 8 } + +rsvpTeGlobalReoptimizeTime OBJECT-TYPE + SYNTAX Integer32 (0..655535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the Reoptimize timer" + DEFVAL { 3600 } + ::= { rsvpTeGlobal 9 } + +rsvpTeGlobalVersion OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Protocal version of rsvp." + ::= { rsvpTeGlobal 10 } + +rsvpTeGlobalProcessUpTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..65535)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Process up time of rsvp." + ::= { rsvpTeGlobal 11 } + +-- rsvpTe: rsvp trunk +rsvpTeTrunkTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeTrunkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of rsvp trunk." + ::= { rsvpTe 3 } + +rsvpTeTrunkEntry OBJECT-TYPE + SYNTAX RsvpTeTrunkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry of rsvpTeTrunkTable" + INDEX { rsvpTeTrunkName } + ::= { rsvpTeTrunkTable 1 } + +RsvpTeTrunkEntry ::= + SEQUENCE + { + rsvpTeTrunkName + OCTET STRING, + rsvpTeTrunkRowStatus + RowStatus, + rsvpTeTrunkExtTunnelId + IpAddress, + rsvpTeTrunkPrimaryFilter + INTEGER, + rsvpTeTrunkSecondaryFilter + INTEGER, + rsvpTeTrunkSource + IpAddress, + rsvpTeTrunkPrimaryHoldPriority + Integer32, + rsvpTeTrunkSecondaryHoldPriority + Integer32, + rsvpTeTrunkPrimaryHopLimit + Integer32, + rsvpTeTrunkSecondaryHopLimit + Integer32, + rsvpTeTrunkPrimaryCspf + INTEGER, + rsvpTeTrunkSecondaryCspf + INTEGER, + rsvpTeTrunkLspMetricType + Integer32, + rsvpTeTrunkLspMetricValue + Integer32, + rsvpTeTrunkPrimaryRecord + INTEGER, + rsvpTeTrunkSecondaryRecord + INTEGER, + rsvpTeTrunkPrimaryPathName + OCTET STRING, + rsvpTeTrunkSecondaryPathName + OCTET STRING, + rsvpTeTrunkPrimaryRetryTimer + Integer32, + rsvpTeTrunkSecondaryRetryTimer + Integer32, + rsvpTeTrunkPrimarySetupPriority + Integer32, + rsvpTeTrunkSecondarySetupPriority + Integer32, + rsvpTeTrunkdestination + IpAddress, + rsvpTeTrunkLSPCount + Integer32 + } + +rsvpTeTrunkName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..255)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Name of the RSVP trunk" + ::= { rsvpTeTrunkEntry 1 } + +rsvpTeTrunkRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Status of the rsvpTeTrunkEntry row + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { rsvpTeTrunkEntry 2 } + +rsvpTeTrunkExtTunnelId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify an extended tunnel identifier for this trunk." + ::= { rsvpTeTrunkEntry 3 } + +rsvpTeTrunkPrimaryFilter OBJECT-TYPE + SYNTAX INTEGER {fixed(1), shared-explicit(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a filter to be used for this LSP." + DEFVAL { shared-explicit } + ::= { rsvpTeTrunkEntry 4 } + +rsvpTeTrunkSecondaryFilter OBJECT-TYPE + SYNTAX INTEGER {fixed(1), shared-explicit(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a filter to be used for this LSP." + ::= { rsvpTeTrunkEntry 5 } + +rsvpTeTrunkSource OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify the IPv4 tunnel ingress." + ::= { rsvpTeTrunkEntry 6 } + +rsvpTeTrunkPrimaryHoldPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a hold priority for this LSP." + DEFVAL { 0 } + ::= { rsvpTeTrunkEntry 7 } + +rsvpTeTrunkSecondaryHoldPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a hold priority for this LSP." + ::= { rsvpTeTrunkEntry 8 } + +rsvpTeTrunkPrimaryHopLimit OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a hop limit for this LSP." + DEFVAL { 65 } + ::= { rsvpTeTrunkEntry 9 } + +rsvpTeTrunkSecondaryHopLimit OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a hop limit for this LSP." + DEFVAL { 65 } + ::= { rsvpTeTrunkEntry 10 } + +rsvpTeTrunkPrimaryCspf OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use CSPF for ERO calculation." + DEFVAL { disable } + ::= { rsvpTeTrunkEntry 11 } + +rsvpTeTrunkSecondaryCspf OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Use CSPF for ERO calculation." + DEFVAL { disable } + ::= { rsvpTeTrunkEntry 12 } + +rsvpTeTrunkPrimaryRecord OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Record route taken by PATH message in order to reach tunnel egress." + DEFVAL { disable } + ::= { rsvpTeTrunkEntry 13 } + +rsvpTeTrunkSecondaryRecord OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Record route taken by PATH message in order to reach tunnel egress." + DEFVAL { disable } + ::= { rsvpTeTrunkEntry 14 } + +rsvpTeTrunkPrimaryPathName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify an RSVP Path to be used." + ::= { rsvpTeTrunkEntry 15 } + +rsvpTeTrunkSecondaryPathName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify an RSVP Path to be used." + ::= { rsvpTeTrunkEntry 16 } + +rsvpTeTrunkPrimaryRetryTimer OBJECT-TYPE + SYNTAX Integer32 (1..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a retry interval for this LSP." + DEFVAL { 30 } + ::= { rsvpTeTrunkEntry 17 } + +rsvpTeTrunkSecondaryRetryTimer OBJECT-TYPE + SYNTAX Integer32 (1..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify a retry interval for this LSP." + DEFVAL { 30 } + ::= { rsvpTeTrunkEntry 18 } + +rsvpTeTrunkPrimarySetupPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a setup priority for this LSP." + DEFVAL { 0 } + ::= { rsvpTeTrunkEntry 19 } + +rsvpTeTrunkSecondarySetupPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure a setup priority for this LSP." + ::= { rsvpTeTrunkEntry 20} + +rsvpTeTrunkdestination OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify the IPv4 tunnel egress." + ::= { rsvpTeTrunkEntry 21} + +rsvpTeTrunkLSPCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total LSP count of the rsvp trunk." + ::= { rsvpTeTrunkEntry 22 } + +-- rsvpTe: rsvp trunk - map route +rsvpTeTrunkMapRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeTrunkMapRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of Map route entries in trunk." + ::= { rsvpTe 4} + +rsvpTeTrunkMapRouteEntry OBJECT-TYPE + SYNTAX RsvpTeTrunkMapRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of map route table" + INDEX { rsvpTeTrunkName , rsvpTeTrunkMapRouteIpAddr, rsvpTeTrunkMapRouteIpMaskLength} + ::= { rsvpTeTrunkMapRouteTable 1} + +RsvpTeTrunkMapRouteEntry ::= + SEQUENCE + { + rsvpTeTrunkMapRouteIpAddr + IpAddress, + rsvpTeTrunkMapRouteIpMaskLength + Integer32, + rsvpTeTrunkMapRouteRowStatus + RowStatus + } + +rsvpTeTrunkMapRouteIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the prefix to be mapped." + ::= { rsvpTeTrunkMapRouteEntry 1} + +rsvpTeTrunkMapRouteIpMaskLength OBJECT-TYPE + SYNTAX Integer32 (0.. 32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure the prefix length to be mapped." + ::= { rsvpTeTrunkMapRouteEntry 2} + +rsvpTeTrunkMapRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Status of the rsvpTeTrunkMapRouteEntry row + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { rsvpTeTrunkMapRouteEntry 3} + + +-- rsvpTe: rsvp path +rsvpTePathTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTePathEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of rsvp path entries." + ::= { rsvpTe 5 } + +rsvpTePathEntry OBJECT-TYPE + SYNTAX RsvpTePathEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvp path table." + INDEX { rsvpTePathName } + ::= { rsvpTePathTable 1 } + +RsvpTePathEntry ::= + SEQUENCE + { + rsvpTePathName + OCTET STRING, + rsvpTePathRowStatus + RowStatus + } + +rsvpTePathName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The name of rsvp path." + ::= { rsvpTePathEntry 1 } + +rsvpTePathRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Status of the rsvpTePathEntry row + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { rsvpTePathEntry 2 } + + +-- rsvpTe: rsvp path node +rsvpTePathHopTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTePathHopEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of rsvp path hop entries." + ::= { rsvpTe 6 } + +rsvpTePathHopEntry OBJECT-TYPE + SYNTAX RsvpTePathHopEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvp path hop table." + INDEX { rsvpTePathName, rsvpTePathHopAddrID } + ::= { rsvpTePathHopTable 1 } + +RsvpTePathHopEntry ::= + SEQUENCE + { + rsvpTePathHopAddrID + Integer32, + rsvpTePathHopAddrType + INTEGER, + rsvpTePathHopAddr + IpAddress, + rsvpTePathHopRowStatus + RowStatus + } + +rsvpTePathHopAddrID OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of a node in rsvp path. It should be unique under same path name." + ::= { rsvpTePathHopEntry 1 } + +rsvpTePathHopAddrType OBJECT-TYPE + SYNTAX INTEGER {loose(1), strict(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of a node in rsvp path." + ::= { rsvpTePathHopEntry 2 } + +rsvpTePathHopAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure IPv4 Address of Hop." + ::= { rsvpTePathHopEntry 3 } + +rsvpTePathHopRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Status of the rsvpTePathEntry row + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { rsvpTePathHopEntry 4 } + + +-- rsvpTe: show rsvp +rsvpTeSummary OBJECT IDENTIFIER + ::= { rsvpTe 7} + +rsvpTeSummarySessionTatolCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total count of the rsvp session." + ::= { rsvpTeSummary 1 } + +rsvpTeSummarySessionUpCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total count of the rsvp session which status is up." + ::= { rsvpTeSummary 2 } + +rsvpTeSummarySessionDownCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total count of the rsvp session which status is down." + ::= { rsvpTeSummary 3 } + + +rsvpTeSummarySessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeSummarySessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of rsvp session." + ::= { rsvpTeSummary 4 } + +rsvpTeSummarySessionEntry OBJECT-TYPE + SYNTAX RsvpTeSummarySessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvpTeSummarySessionTable" + INDEX { rsvpTeSummarySessionLSPId, rsvpTeSummarySessionSource, rsvpTeSummarySessionDestination, rsvpTeSummarySessionTunnelId, rsvpTeSummarySessionExtTunnelId } + ::= { rsvpTeSummarySessionTable 1 } + +RsvpTeSummarySessionEntry ::= + SEQUENCE + { + rsvpTeSummarySessionLSPId + Integer32, + rsvpTeSummarySessionSource + IpAddress, + rsvpTeSummarySessionDestination + IpAddress, + rsvpTeSummarySessionTunnelId + Integer32, + rsvpTeSummarySessionExtTunnelId + IpAddress, + rsvpTeSummarySessionTrunkName + OCTET STRING, + rsvpTeSummarySessionState + INTEGER, + rsvpTeSummarySessionIsPrimary + INTEGER, + rsvpTeSummarySessionReserve + INTEGER, + rsvpTeSummarySessionRefCount + Integer32, + rsvpTeSummarySessionLabelIn + Integer32, + rsvpTeSummarySessionLabelOut + Integer32, + rsvpTeSummarySessionType + INTEGER, + rsvpTeSummarySessionFSMState + INTEGER, + rsvpTeSummarySessionSetupPriority + Integer32, + rsvpTeSummarySessionHoldPriority + Integer32, + rsvpTeSummarySessionCspfUsage + INTEGER, + rsvpTeSummarySessionLSPMetric + Integer32, + rsvpTeSummarySessionLSPProtection + INTEGER, + rsvpTeSummarySessionUpStreamAddr + IpAddress, + rsvpTeSummarySessionUpStreamIfIndex + Integer32, + rsvpTeSummarySessionDownStreamAddr + IpAddress, + rsvpTeSummarySessionDownStreamIfIndex + Integer32, + rsvpTeSummarySessionPathRefreshSec + Integer32, + rsvpTeSummarySessionPathRefreshDue + Integer32, + rsvpTeSummarySessionPathRREnable + INTEGER, + rsvpTeSummarySessionLifeTime + Integer32, + rsvpTeSummarySessionDueTime + Integer32, + rsvpTeSummarySessionStyle + INTEGER, + rsvpTeSummarySessionTrafficType + INTEGER, + rsvpTeSummarySessionMTU + Integer32, + rsvpTeSummarySessionLastErrorCode + OCTET STRING, + rsvpTeSummarySessionLastErrorValue + OCTET STRING, + rsvpTeSummarySessionLastErrorNode + IpAddress, + rsvpTeSummarySessionTrunkType + INTEGER + } + +rsvpTeSummarySessionLSPId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Lsp id of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 1 } + +rsvpTeSummarySessionSource OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Source address of the rsvp session." + ::= { rsvpTeSummarySessionEntry 2 } + +rsvpTeSummarySessionDestination OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Destination address of the rsvp session." + ::= { rsvpTeSummarySessionEntry 3 } + +rsvpTeSummarySessionTunnelId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Tunnel id of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 4 } + +rsvpTeSummarySessionExtTunnelId OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ext-Tunnel id of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 5 } + +rsvpTeSummarySessionTrunkName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the rsvp trunk" + ::= { rsvpTeSummarySessionEntry 6 } + +rsvpTeSummarySessionState OBJECT-TYPE + SYNTAX INTEGER {up(1), down(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "state of the rsvp session." + ::= { rsvpTeSummarySessionEntry 7 } + +rsvpTeSummarySessionIsPrimary OBJECT-TYPE + SYNTAX INTEGER {primary(1), secondary(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If the rsvp session is primary or secondary." + ::= { rsvpTeSummarySessionEntry 8 } + +rsvpTeSummarySessionReserve OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If resource reserve is enabled for this session." + ::= { rsvpTeSummarySessionEntry 9 } + +rsvpTeSummarySessionRefCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reference count of the rsvp session." + ::= { rsvpTeSummarySessionEntry 10 } + +rsvpTeSummarySessionLabelIn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In lable of the rsvp session." + ::= { rsvpTeSummarySessionEntry 11 } + +rsvpTeSummarySessionLabelOut OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out lable of the rsvp session." + ::= { rsvpTeSummarySessionEntry 12 } + +rsvpTeSummarySessionType OBJECT-TYPE + SYNTAX INTEGER {ingress(1), transmit(2), egress(3)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the rsvp session" + ::= { rsvpTeSummarySessionEntry 13 } + +rsvpTeSummarySessionFSMState OBJECT-TYPE + SYNTAX INTEGER {idle(0), gmplsLabelValidateSent(1), qosResvSentforReverseDir(2), nexthopRequestSent(3), waitingforRESVmessage(4), labelRequestSent(5), mplsMessageSent(6), operational(7), usingBackup(8)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FSM state of the rsvp session" + ::= { rsvpTeSummarySessionEntry 14 } + +rsvpTeSummarySessionSetupPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Setup priority of the rsvp session" + ::= { rsvpTeSummarySessionEntry 15 } + +rsvpTeSummarySessionHoldPriority OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hold priority of the rsvp session" + ::= { rsvpTeSummarySessionEntry 16 } + +rsvpTeSummarySessionCspfUsage OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If CSPF is enabled for this session. " + ::= { rsvpTeSummarySessionEntry 17 } + +rsvpTeSummarySessionLSPMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LSP Metric of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 18 } + +rsvpTeSummarySessionLSPProtection OBJECT-TYPE + SYNTAX INTEGER {oneToOne(1), facility(2), none(3)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "LSP Protection type of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 19 } + +rsvpTeSummarySessionUpStreamAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Upstream Ip Address of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 20 } + +rsvpTeSummarySessionUpStreamIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Upstream interface index of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 21 } + +rsvpTeSummarySessionDownStreamAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DownStream Ip Address of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 22 } + +rsvpTeSummarySessionDownStreamIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Downstream interface index of the rsvp session. " + ::= { rsvpTeSummarySessionEntry 23 } + +rsvpTeSummarySessionPathRefreshSec OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The refresh time of the rsvp path in session. " + ::= { rsvpTeSummarySessionEntry 24 } + +rsvpTeSummarySessionPathRefreshDue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The due time of the rsvp path in session. " + ::= { rsvpTeSummarySessionEntry 25 } + +rsvpTeSummarySessionPathRREnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If refresh reduction is enabled for this rsvp session. " + ::= { rsvpTeSummarySessionEntry 26 } + +rsvpTeSummarySessionLifeTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The life time for this rsvp session. " + ::= { rsvpTeSummarySessionEntry 27 } + +rsvpTeSummarySessionDueTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The due time for this rsvp session. " + ::= { rsvpTeSummarySessionEntry 28 } + +rsvpTeSummarySessionStyle OBJECT-TYPE + SYNTAX INTEGER {fixedFilter(1), sharedExplicitFilter(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The style this rsvp session. " + ::= { rsvpTeSummarySessionEntry 29 } + +rsvpTeSummarySessionTrafficType OBJECT-TYPE + SYNTAX INTEGER {guaranteed(1), controlledLoad(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The traffic type this rsvp session. " + ::= { rsvpTeSummarySessionEntry 30 } + +rsvpTeSummarySessionMTU OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MTU this rsvp session. " + ::= { rsvpTeSummarySessionEntry 31 } + +rsvpTeSummarySessionLastErrorCode OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last error code this rsvp session. " + ::= { rsvpTeSummarySessionEntry 32 } + +rsvpTeSummarySessionLastErrorValue OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last error value this rsvp session. " + ::= { rsvpTeSummarySessionEntry 33 } + +rsvpTeSummarySessionLastErrorNode OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last error value this rsvp session. " + ::= { rsvpTeSummarySessionEntry 34 } + +rsvpTeSummarySessionTrunkType OBJECT-TYPE + SYNTAX INTEGER {gmpls(1), mpls(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last error value this rsvp session. " + ::= { rsvpTeSummarySessionEntry 35 } + +rsvpTeSummarySessionExplicitRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeSummarySessionExplicitRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of Explicit route in rsvp session." + ::= { rsvpTeSummary 5 } + +rsvpTeSummarySessionExplicitRouteEntry OBJECT-TYPE + SYNTAX RsvpTeSummarySessionExplicitRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvpTeSummarySessionExplicitRouteTable" + INDEX {rsvpTeSummarySessionDestination, rsvpTeSummarySessionSource, rsvpTeSummarySessionTunnelId, rsvpTeSummarySessionLSPId, rsvpTeSummarySessionExtTunnelId, rsvpTeSummarySessionExplicitRouteAddrId} + ::= { rsvpTeSummarySessionExplicitRouteTable 1 } + +RsvpTeSummarySessionExplicitRouteEntry ::= + SEQUENCE + { + rsvpTeSummarySessionExplicitRouteAddrId + Integer32, + rsvpTeSummarySessionExplicitRouteAddr + IpAddress, + rsvpTeSummarySessionExplicitRouteMaskLen + Integer32, + rsvpTeSummarySessionExplicitRouteType + INTEGER + } + +rsvpTeSummarySessionExplicitRouteAddrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The id of an explicit route entry. " + ::= { rsvpTeSummarySessionExplicitRouteEntry 1 } + +rsvpTeSummarySessionExplicitRouteAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ipv4 address of an explicit route entry. " + ::= { rsvpTeSummarySessionExplicitRouteEntry 2 } + +rsvpTeSummarySessionExplicitRouteMaskLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ipv4 mask length of an explicit route entry. " + ::= { rsvpTeSummarySessionExplicitRouteEntry 3 } + +rsvpTeSummarySessionExplicitRouteType OBJECT-TYPE + SYNTAX INTEGER {strict(1), loose(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of an explicit route entry. " + ::= { rsvpTeSummarySessionExplicitRouteEntry 4 } + +rsvpTeSummarySessionRecvRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeSummarySessionRecvRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of Recv route in rsvp session." + ::= { rsvpTeSummary 6 } + +rsvpTeSummarySessionRecvRouteEntry OBJECT-TYPE + SYNTAX RsvpTeSummarySessionRecvRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvpTeSummarySessionRecvRouteTable" + INDEX { rsvpTeSummarySessionLSPId, rsvpTeSummarySessionSource, rsvpTeSummarySessionDestination, rsvpTeSummarySessionTunnelId, rsvpTeSummarySessionExtTunnelId, rsvpTeSummarySessionRecvRouteAddrId } + ::= { rsvpTeSummarySessionRecvRouteTable 1 } + +RsvpTeSummarySessionRecvRouteEntry ::= + SEQUENCE + { + rsvpTeSummarySessionRecvRouteAddrId + Integer32, + rsvpTeSummarySessionRecvRouteAddr + IpAddress, + rsvpTeSummarySessionRecvRouteMaskLen + Integer32, + rsvpTeSummarySessionRecvRouteType + INTEGER + } + +rsvpTeSummarySessionRecvRouteAddrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ipv4 address of an Recv route entry. " + ::= { rsvpTeSummarySessionRecvRouteEntry 1 } + +rsvpTeSummarySessionRecvRouteAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ipv4 address of an Recv route entry. " + ::= { rsvpTeSummarySessionRecvRouteEntry 2 } + +rsvpTeSummarySessionRecvRouteMaskLen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ipv4 mask length of an Recv route entry. " + ::= { rsvpTeSummarySessionRecvRouteEntry 3 } + +rsvpTeSummarySessionRecvRouteType OBJECT-TYPE + SYNTAX INTEGER {strict(1), loose(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of an Recv route entry. " + ::= { rsvpTeSummarySessionRecvRouteEntry 4 } + +rsvpTeSummarySessionRecordRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF RsvpTeSummarySessionRecordRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of Record route in rsvp session." + ::= { rsvpTeSummary 7 } + +rsvpTeSummarySessionRecordRouteEntry OBJECT-TYPE + SYNTAX RsvpTeSummarySessionRecordRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of rsvpTeSummarySessionRecordRouteTable" + INDEX { rsvpTeSummarySessionLSPId, rsvpTeSummarySessionSource, rsvpTeSummarySessionDestination, rsvpTeSummarySessionTunnelId, rsvpTeSummarySessionExtTunnelId, rsvpTeSummarySessionRecordRouteAddrId } + ::= { rsvpTeSummarySessionRecordRouteTable 1 } + +RsvpTeSummarySessionRecordRouteEntry ::= + SEQUENCE + { + rsvpTeSummarySessionRecordRouteAddrId + Integer32, + rsvpTeSummarySessionRecordRouteAddr + OCTET STRING + } + +rsvpTeSummarySessionRecordRouteAddrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The id of an Record route entry. " + ::= { rsvpTeSummarySessionRecordRouteEntry 1 } + +rsvpTeSummarySessionRecordRouteAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ipv4 address of an Record route entry. " + ::= { rsvpTeSummarySessionRecordRouteEntry 2 } + +rsvpTeSummaryStatistics OBJECT IDENTIFIER + ::= { rsvpTeSummary 8} + +rsvpTeSummaryPathSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp path packet sent from this system. " + ::= { rsvpTeSummaryStatistics 1 } + +rsvpTeSummaryPathRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp path packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 2 } + +rsvpTeSummaryPathErrSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp path-err packet sent from this system. " + ::= { rsvpTeSummaryStatistics 3 } + +rsvpTeSummaryPathErrRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp path-err packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 4 } + +rsvpTeSummaryPathTearSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp path-tear packet sent from this system. " + ::= { rsvpTeSummaryStatistics 5 } + +rsvpTeSummaryPathTearRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp path-tear packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 6 } + +rsvpTeSummaryResvFFSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-FF packet sent from this system. " + ::= { rsvpTeSummaryStatistics 7 } + +rsvpTeSummaryResvFFRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-FF packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 8 } + +rsvpTeSummaryResvWFSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-WF packet sent from this system. " + ::= { rsvpTeSummaryStatistics 9 } + +rsvpTeSummaryResvWFRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-WF packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 10 } + +rsvpTeSummaryResvSESent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-SE packet sent from this system. " + ::= { rsvpTeSummaryStatistics 11 } + +rsvpTeSummaryResvSERecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-SE packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 12 } + +rsvpTeSummaryResvErrSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-Err packet sent from this system. " + ::= { rsvpTeSummaryStatistics 13 } + +rsvpTeSummaryResvErrRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-Err packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 14 } + +rsvpTeSummaryResvTearSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-Tear packet sent from this system. " + ::= { rsvpTeSummaryStatistics 15 } + +rsvpTeSummaryResvTearRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-Tear packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 16 } + +rsvpTeSummaryResvConfSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-Conf packet sent from this system. " + ::= { rsvpTeSummaryStatistics 17 } + +rsvpTeSummaryResvConfRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Resv-Conf packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 18 } + +rsvpTeSummaryHelloSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Hello packet sent from this system. " + ::= { rsvpTeSummaryStatistics 19 } + +rsvpTeSummaryHelloRecv +OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Hello packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 20 } + +rsvpTeSummaryBundleSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Bundle packet sent from this system. " + ::= { rsvpTeSummaryStatistics 21 } + +rsvpTeSummaryBundleRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp Bundle packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 22 } + +rsvpTeSummaryAckSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp ack packet sent from this system. " + ::= { rsvpTeSummaryStatistics 23 } + +rsvpTeSummaryAckRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp ack packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 24 } + +rsvpTeSummarySrefreshSent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp srefresh packet sent from this system. " + ::= { rsvpTeSummaryStatistics 25 } + +rsvpTeSummarySrefreshRecv OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total count of the rsvp srefresh packet recieved by this system. " + ::= { rsvpTeSummaryStatistics 26 } + +-- Sub Module: g.8031 +-- g8031: eps group +g8031EpsGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF G8031EpsGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of G.8031 eps group." + ::= { g8031 1 } + +g8031EpsGroupEntry OBJECT-TYPE + SYNTAX G8031EpsGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of G.8031 eps group." + INDEX { g8031EpsGroupId } + ::= { g8031EpsGroupTable 1 } + +G8031EpsGroupEntry ::= + SEQUENCE + { + g8031EpsGroupId + Integer32, + g8031EpsGroupWorkingIfindex + Integer32, + g8031EpsGroupProtectionIfindex + Integer32, + g8031EpsGroupRowStatus + RowStatus, + g8031EpsGroupWTR + Integer32, + g8031EpsGroupHoldOff + Integer32, + g8031EpsGroupMode + INTEGER, + g8031EpsGroupDomain + OCTET STRING, + g8031EpsGroupWorkingService + OCTET STRING, + g8031EpsGroupProtectionService + OCTET STRING, + g8031EpsGroupCurrentState + INTEGER, + g8031EpsGroupLastState + INTEGER, + g8031EpsGroupLastEvent + INTEGER, + g8031EpsGroupFarEndState + INTEGER, + g8031EpsGroupRequestSignal + INTEGER, + g8031EpsGroupBridgeSignal + INTEGER, + g8031EpsGroupAPSVid + Integer32, + g8031EpsGroupDFOPState + INTEGER + } + +g8031EpsGroupId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Id of G.8031 eps group." + ::= { g8031EpsGroupEntry 1 } + +g8031EpsGroupWorkingIfindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Working interface of G.8031 eps group." + ::= { g8031EpsGroupEntry 2 } + +g8031EpsGroupProtectionIfindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Protection interface of G.8031 eps group." + ::= { g8031EpsGroupEntry 3 } + +g8031EpsGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the g8031EpsGroupEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { g8031EpsGroupEntry 4 } + +g8031EpsGroupWTR OBJECT-TYPE + SYNTAX Integer32(5..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Wait to restore timer in minute" + DEFVAL { 5 } + ::= { g8031EpsGroupEntry 5 } + +g8031EpsGroupHoldOff OBJECT-TYPE + SYNTAX Integer32(0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Hold off timer in 100 ms" + DEFVAL { 0 } + ::= { g8031EpsGroupEntry 6 } + +g8031EpsGroupMode OBJECT-TYPE + SYNTAX INTEGER {revertive(1), nonRevertive(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Revertive mode of G.8031 eps group." + DEFVAL { revertive } + ::= { g8031EpsGroupEntry 7 } + +g8031EpsGroupDomain OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm domain of the G.8031 eps group." + ::= { g8031EpsGroupEntry 8} + +g8031EpsGroupWorkingService OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm service id of working entity for the G.8031 eps group." + ::= { g8031EpsGroupEntry 9} + +g8031EpsGroupProtectionService OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm service id of protection entity for the G.8031 eps group." + ::= { g8031EpsGroupEntry 10} + +g8031EpsGroupCurrentState OBJECT-TYPE + SYNTAX INTEGER{nr(0), dnr(1), rr(2), exec(4), wtr(5), ms(7), sd(9), sf-w(11), fs(13), sf-p(14), lo(15)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of the G.8031 eps group." + ::= { g8031EpsGroupEntry 11} + +g8031EpsGroupLastState OBJECT-TYPE + SYNTAX INTEGER{nr(0), dnr(1), rr(2), exec(4), wtr(5), ms(7), sd(9), sf-w(11), fs(13), sf-p(14), lo(15)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last state of the G.8031 eps group." + ::= { g8031EpsGroupEntry 12} + +g8031EpsGroupLastEvent OBJECT-TYPE + SYNTAX INTEGER{nr(0), dnr(1), rr(2), exec(4), wtr(5), ms(7), sd(9), sf-w(11), fs(13), sf-p(14), lo(15)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last event of the G.8031 eps group." + ::= { g8031EpsGroupEntry 13} + +g8031EpsGroupFarEndState OBJECT-TYPE + SYNTAX INTEGER{nr(0), dnr(1), rr(2), exec(4), wtr(5), ms(7), sd(9), sf-w(11), fs(13), sf-p(14), lo(15)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Far end state of the G.8031 eps group." + ::= { g8031EpsGroupEntry 14} + +g8031EpsGroupRequestSignal OBJECT-TYPE + SYNTAX INTEGER{null(0), normal(1)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Request signal of the G.8031 eps group." + ::= { g8031EpsGroupEntry 15} + +g8031EpsGroupBridgeSignal OBJECT-TYPE + SYNTAX INTEGER{null(0), normal(1)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bridge signal of the G.8031 eps group." + ::= { g8031EpsGroupEntry 16} + +g8031EpsGroupAPSVid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vid of aps packet for the G.8031 eps group." + ::= { g8031EpsGroupEntry 17} + +g8031EpsGroupDFOPState OBJECT-TYPE + SYNTAX INTEGER{not-in-defect(1), b-bit-mismatch(5), r-bit-mismatch(8), aps-on-working(56)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DFOP of the G.8031 eps group." + ::= { g8031EpsGroupEntry 18} + +g8031EpsGroupInstanceTable OBJECT-TYPE + SYNTAX SEQUENCE OF G8031EpsGroupInstanceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of instance proceted by G.8031 eps group." + ::= { g8031 2 } + +g8031EpsGroupInstanceEntry OBJECT-TYPE + SYNTAX G8031EpsGroupInstanceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of instance proceted by G.8031 eps group." + INDEX { g8031EpsGroupId, g8031EpsGroupInstanceId } + ::= { g8031EpsGroupInstanceTable 1 } + +G8031EpsGroupInstanceEntry ::= + SEQUENCE + { + g8031EpsGroupInstanceId + Integer32, + g8031EpsGroupInstanceRowStatus + RowStatus + } + +g8031EpsGroupInstanceId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Id of instance protected by G.8031 eps group." + ::= { g8031EpsGroupInstanceEntry 1 } + +g8031EpsGroupInstanceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the G8031EpsGroupInstanceEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { g8031EpsGroupInstanceEntry 2 } + +-- Sub Module: g.8032 +-- g8032: eps group +g8032RingTable OBJECT-TYPE + SYNTAX SEQUENCE OF G8032RingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of G.8032 ring." + ::= { g8032 1 } + +g8032RingEntry OBJECT-TYPE + SYNTAX G8032RingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of G.8032 ring." + INDEX { g8032RingId } + ::= { g8032RingTable 1 } + +G8032RingEntry ::= + SEQUENCE + { + g8032RingId + Integer32, + g8032RingMajorRingId + Integer32, + g8032RingEastIfindex + Integer32, + g8032RingWestIfindex + Integer32, + g8032RingRowStatus + RowStatus, + g8032RingDomain + OCTET STRING, + g8032RingService + OCTET STRING, + g8032RingControlVlan + Integer32, + g8032RingWTR + Integer32, + g8032RingHoldOff + Integer32, + g8032RingGuard + Integer32, + g8032RingRole + INTEGER, + g8032RingRpl + INTEGER, + g8032RingCurrentStatus + INTEGER, + g8032RingEastStatus + INTEGER, + g8032RingWestStatus + INTEGER, + g8032RingCurrentEvent + INTEGER, + g8032RingProtectInstance + OCTET STRING, + g8032RingProtectTrigger + INTEGER, + g8032RingFlushRRPPState + INTEGER, + g8032RingFlushRRPPVlan + Integer32, + g8032RingFlushRRPPCount + Integer32 + } + +g8032RingId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Id of G.8032 ring." + ::= { g8032RingEntry 1 } + +g8032RingMajorRingId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Major ring id of G.8032 ring." + ::= { g8032RingEntry 2 } + +g8032RingEastIfindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "East interface index of G.8032 ring." + ::= { g8032RingEntry 3 } + +g8032RingWestIfindex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "West interface index of G.8032 ring." + ::= { g8032RingEntry 4 } + +g8032RingRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the g8032RingEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { g8032RingEntry 5 } + +g8032RingDomain OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm domain of the G.8032 ring." + ::= { g8032RingEntry 6 } + +g8032RingService OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Cfm service id of the G.8032 ring." + ::= { g8032RingEntry 7 } + +g8032RingControlVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Control vlan of the G.8032 ring." + ::= { g8032RingEntry 8} + +g8032RingWTR OBJECT-TYPE + SYNTAX Integer32(5..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Wait to restore timer of the G.8032 ring. (minutes)" + DEFVAL {5} + ::= { g8032RingEntry 9 } + +g8032RingHoldOff OBJECT-TYPE + SYNTAX Integer32(0..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Hold off timer of the G.8032 ring. Value in multiples of 100. (milliseconds)" + DEFVAL {0} + ::= { g8032RingEntry 10 } + +g8032RingGuard OBJECT-TYPE + SYNTAX Integer32(100..2000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Guard timer of the G.8032 ring. Value in multiples of 100. (milliseconds)" + DEFVAL {500} + ::= { g8032RingEntry 11 } + +g8032RingRole OBJECT-TYPE + SYNTAX INTEGER {owner(1), non-owner(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Role of the G.8032 ring." + ::= { g8032RingEntry 12 } + +g8032RingRpl OBJECT-TYPE + SYNTAX INTEGER {none(0), east(1), west(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Rpl(ring protection link) of the G.8032 ring." + ::= { g8032RingEntry 13 } + +g8032RingCurrentStatus OBJECT-TYPE + SYNTAX INTEGER {init(0), idle(1), protection(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Current Status of the G.8032 ring." + ::= { g8032RingEntry 14 } + +g8032RingEastStatus OBJECT-TYPE + SYNTAX INTEGER {block(1), forward(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the east interface." + ::= { g8032RingEntry 15 } + +g8032RingWestStatus OBJECT-TYPE + SYNTAX INTEGER {block(1), forward(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Status of the west interface." + ::= { g8032RingEntry 16 } + +g8032RingCurrentEvent OBJECT-TYPE + SYNTAX INTEGER {nr(0), nr-rb(1), wtr(2), wtr-exp(3), remote-sf(4), local-clear-sf(5), local-sf(6)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Event of the G.8032 ring." + ::= { g8032RingEntry 17 } + +g8032RingProtectInstance OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The protect instance of the G.8032 ging." + ::= { g8032RingEntry 18 } + +g8032RingProtectTrigger OBJECT-TYPE + SYNTAX INTEGER {all(0), ccm(1), pyh(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The protect trigger of the G.8032 ging." + ::= { g8032RingEntry 19 } + + +g8032RingFlushRRPPState OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The flush RRPP state of the G.8032 ging." + ::= { g8032RingEntry 20 } + +g8032RingFlushRRPPVlan OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The flush RRPP Vlan of the G.8032 ging." + ::= { g8032RingEntry 21 } + +g8032RingFlushRRPPCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The flush RRPP count of the G.8032 ging." + ::= { g8032RingEntry 22 } + +g8032RingInstanceTable OBJECT-TYPE + SYNTAX SEQUENCE OF G8032RingInstanceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of instance proceted by G.8032 ring." + ::= { g8032 2 } + +g8032RingInstanceEntry OBJECT-TYPE + SYNTAX G8032RingInstanceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries of instance proceted by G.8032 ring." + INDEX { g8032RingId, g8032RingInstanceId } + ::= { g8032RingInstanceTable 1 } + +G8032RingInstanceEntry ::= + SEQUENCE + { + g8032RingInstanceId + Integer32, + g8032RingInstanceRowStatus + RowStatus + } + +g8032RingInstanceId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Id of instance protected by G.8032 ring." + ::= { g8032RingInstanceEntry 1 } + +g8032RingInstanceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Status of the G8032RingInstanceEntry row. + 1 means Active + 4 means CreateAndGo + 6 means Destroy." + ::= { g8032RingInstanceEntry 2 } + + +voiceVlanEnableVlan OBJECT-TYPE + SYNTAX Integer32 (0|2..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify voice VLAN from 2 to 4094. 0 means voice vlan is disabled." + DEFVAL { 0 } + ::= { voiceVlan 1 } + +voiceVlanEnableSecurity OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specify voice VLAN security mode,1 will enable it,2 will disable it." + ::= { voiceVlan 2 } + +voiceVlanCOS OBJECT-TYPE + SYNTAX Integer32(0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the COS of voice vlan." + DEFVAL { 5 } + ::= { voiceVlan 3 } + +voiceVlanEnableInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoiceVlanEnableInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The voice vlan enable interface table." + ::= { voiceVlan 4 } + +voiceVlanEnableInterfaceEntry OBJECT-TYPE + SYNTAX VoiceVlanEnableInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The voice vlan enable interface table entry." + INDEX { ifIndex } + ::= { voiceVlanEnableInterfaceTable 1 } + +VoiceVlanEnableInterfaceEntry ::= + SEQUENCE { + voiceVlanEnableInterfaceStatus + TruthValue + } + +voiceVlanEnableInterfaceStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable voice vlan on port,1 will enable it,2 will disable it." + ::= { voiceVlanEnableInterfaceEntry 1 } + +voiceVlanOuiEntryTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoiceVlanOuiEntryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table description." + ::= { voiceVlan 5 } + +voiceVlanOuiEntryEntry OBJECT-TYPE + SYNTAX VoiceVlanOuiEntryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry description." + INDEX { voiceVlanOuiEntryId } + ::= { voiceVlanOuiEntryTable 1 } + +VoiceVlanOuiEntryEntry ::= + SEQUENCE { + voiceVlanOuiEntryId + Integer32, + voiceVlanOuiEntryMac + MacAddress, + voiceVlanOuiEntryMask + MacAddress, + voiceVlanOuiEntryDescription + OCTET STRING, + voiceVlanOuiEntryRowstatus + RowStatus + } + +voiceVlanOuiEntryId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "OUI_id Desc." + ::= { voiceVlanOuiEntryEntry 1 } + +voiceVlanOuiEntryMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MAC Desc." + ::= { voiceVlanOuiEntryEntry 2 } + +voiceVlanOuiEntryMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "MASK Desc." + ::= { voiceVlanOuiEntryEntry 3 } + +voiceVlanOuiEntryDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..63)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "description description." + ::= { voiceVlanOuiEntryEntry 4 } + +voiceVlanOuiEntryRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { voiceVlanOuiEntryEntry 5 } + +iviRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IviRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table for IVI route." + ::= { ivi 1 } + +iviRouteEntry OBJECT-TYPE + SYNTAX IviRouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IVI route." + INDEX { iviRouteIndex } + ::= { iviRouteTable 1 } + +IviRouteEntry ::= + SEQUENCE { + iviRouteIndex + Integer32, + iviRouteIpv6address + OCTET STRING, + iviRouteIpv6addressMask + Integer32, + iviRouteIpv4address + IpAddress, + iviRouteIpv4addressMask + Integer32, + iviRouteRowStatus + RowStatus + } + +iviRouteIndex OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IVI entry index." + DEFVAL { 0 } + ::= { iviRouteEntry 1 } + +iviRouteIpv6address OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (16..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ipv6 address of IVI entry." + ::= { iviRouteEntry 2 } + +iviRouteIpv6addressMask OBJECT-TYPE + SYNTAX Integer32 (8..96) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ipv6 prefix length." + DEFVAL { 0 } + ::= { iviRouteEntry 3 } + +iviRouteIpv4address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ipv4 address of IVI entry" + ::= { iviRouteEntry 4 } + +iviRouteIpv4addressMask OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ipv4 prefix length." + DEFVAL { 0 } + ::= { iviRouteEntry 5 } + +iviRouteRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual row. Now only realize CreateAndGo(4) + and Destroy(6) and Active(1)." + ::= { iviRouteEntry 6 } + + +iviInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF IviInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table for IVI enable status." + ::= { ivi 2 } + +iviInterfaceEntry OBJECT-TYPE + SYNTAX IviInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry of IVI enable status." + INDEX { ifIndex } + ::= { iviInterfaceTable 1 } + +IviInterfaceEntry ::= + SEQUENCE { + iviInterfaceStatus + TruthValue + } + +iviInterfaceStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "IVI status on the interface." + ::= { iviInterfaceEntry 1 } + +-- Sub Module: L2 protocol +-- +-- L2 protocol tunnel Enable +-- + l2ProtocolTunnelEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enable/disable L2ProtocolTunnel." + ::= { l2protocol 1 } + +-- +-- L2 protocol tunnel destnation Mac set +-- + + l2ProtocolTunnelDestMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Tunnel's destination MAC address, could be 0100.0CCD.CDD0-D2 or 010F.E200.0003. + The default dest MAC address is 0100.0CCD.CDD0." + ::= { l2protocol 2 } + + l2ProtocolTunnelCOS OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This node is used to configure layer2 protocol default COS values." + DEFVAL { 0 } + ::= { l2protocol 3 } +-- +-- L2 protocol Mac set +-- + + l2ProtocolMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of the destination MAC 0180.c2xx.xxxx." + ::= { l2protocol 5 } + + l2ProtocolMacEntry OBJECT-TYPE + SYNTAX L2ProtocolMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The entry of the destination MAC table." + INDEX { l2ProtocolMacIndex } + ::= { l2ProtocolMacTable 1 } + + L2ProtocolMacEntry ::= + SEQUENCE { + l2ProtocolMacIndex Integer32, + l2ProtocolMac MacAddress, + l2ProtocolMacMask MacAddress, + l2ProtocolMacRowstatus RowStatus + } + + l2ProtocolMacIndex OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the mac entry. The value of index plus 1 equals the value in cli." + ::= { l2ProtocolMacEntry 1 } + + l2ProtocolMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "L2 protocol MAC address, should be 0180.C200.0000-0180.C2FF.FFFF." + ::= { l2ProtocolMacEntry 2 } + + l2ProtocolMacMask OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "L2 protocol MAC mask, should be FFFF.FF00.0000-FFFF.FFFF.FFFF." + ::= { l2ProtocolMacEntry 3 } + + l2ProtocolMacRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active." + ::= { l2ProtocolMacEntry 4 } + +-- +-- L2 protocol tunnel Mac set +-- + + l2ProtocolTunnelMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of mac tunnel enable or not." + ::= { l2protocol 6 } + + l2ProtocolTunnelMacEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of mac tunnel enable or not." + INDEX { interfaceIndex, l2ProtocolMacIndex} + ::= { l2ProtocolTunnelMacTable 1 } + + L2ProtocolTunnelMacEntry ::= + SEQUENCE { + l2ProtocolTunnelMacType INTEGER, + l2ProtocolTunnelMacEvcName OCTET STRING, + l2ProtocolTunnelMacRowstatus RowStatus + } + + l2ProtocolTunnelMacType OBJECT-TYPE + SYNTAX INTEGER + { + peer(0), + tunnel(1), + discard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of l2 protocol action. + 0 peer. + 1 tunnel. + 2 discard." + DEFVAL { peer } + ::= { l2ProtocolTunnelMacEntry 1 } + + l2ProtocolTunnelMacEvcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the evc entry." + ::= { l2ProtocolTunnelMacEntry 2 } + + l2ProtocolTunnelMacRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelMacEntry 3 } + +-- +-- L2 protocol tunnel dot1x set +-- + + l2ProtocolTunnelDot1xTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelDot1xEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of Dot1x tunnel enable or not." + ::= { l2protocol 7 } + + l2ProtocolTunnelDot1xEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelDot1xEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of Dot1x tunnel enable or not." + INDEX { interfaceIndex} + ::= { l2ProtocolTunnelDot1xTable 1 } + + L2ProtocolTunnelDot1xEntry ::= + SEQUENCE { + l2ProtocolTunnelDot1xType INTEGER, + l2ProtocolTunnelDot1xEvcName OCTET STRING, + l2ProtocolTunnelDot1xRowstatus RowStatus + } + + l2ProtocolTunnelDot1xType OBJECT-TYPE + SYNTAX INTEGER + { + peer(0), + tunnel(1), + discard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of l2 protocol action. + 0 peer. + 1 tunnel. + 2 discard." + DEFVAL { peer } + ::= { l2ProtocolTunnelDot1xEntry 1 } + + l2ProtocolTunnelDot1xEvcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the evc entry." + ::= { l2ProtocolTunnelDot1xEntry 2 } + + l2ProtocolTunnelDot1xRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelDot1xEntry 3 } + +-- +-- L2 protocol tunnel Slow Proto set +-- + + l2ProtocolTunnelSlowProtoTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelSlowProtoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of slow protocol tunnel enable or not." + ::= { l2protocol 8 } + + l2ProtocolTunnelSlowProtoEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelSlowProtoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of slow proto tunnel enable or not." + INDEX { interfaceIndex} + ::= { l2ProtocolTunnelSlowProtoTable 1 } + + L2ProtocolTunnelSlowProtoEntry ::= + SEQUENCE { + l2ProtocolTunnelSlowProtoType INTEGER, + l2ProtocolTunnelSlowProtoEvcName OCTET STRING, + l2ProtocolTunnelSlowProtoRowstatus RowStatus + } + + l2ProtocolTunnelSlowProtoType OBJECT-TYPE + SYNTAX INTEGER + { + peer(0), + tunnel(1), + discard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of l2 protocol action. + 0 peer. + 1 tunnel. + 2 discard." + DEFVAL { peer } + ::= { l2ProtocolTunnelSlowProtoEntry 1 } + + l2ProtocolTunnelSlowProtoEvcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the evc entry." + ::= { l2ProtocolTunnelSlowProtoEntry 2 } + + l2ProtocolTunnelSlowProtoRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelSlowProtoEntry 3 } + +-- +-- L2 protocol tunnel Stp set +-- + + l2ProtocolTunnelStpTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelStpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of Stp tunnel enable or not." + ::= { l2protocol 9 } + + l2ProtocolTunnelStpEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelStpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of Stp tunnel enable or not." + INDEX { interfaceIndex} + ::= { l2ProtocolTunnelStpTable 1 } + + L2ProtocolTunnelStpEntry ::= + SEQUENCE { + l2ProtocolTunnelStpType INTEGER, + l2ProtocolTunnelStpEvcName OCTET STRING, + l2ProtocolTunnelStpRowstatus RowStatus + } + + l2ProtocolTunnelStpType OBJECT-TYPE + SYNTAX INTEGER + { + peer(0), + tunnel(1), + discard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of l2 protocol action. + 0 peer. + 1 tunnel. + 2 discard." + DEFVAL { peer } + ::= { l2ProtocolTunnelStpEntry 1 } + + l2ProtocolTunnelStpEvcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the evc entry." + ::= { l2ProtocolTunnelStpEntry 2 } + + l2ProtocolTunnelStpRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelStpEntry 3 } + +-- +-- L2 protocol tunnel Cfm set +-- + + l2ProtocolTunnelCfmTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelCfmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of Cfm tunnel enable or not." + ::= { l2protocol 10 } + + l2ProtocolTunnelCfmEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelCfmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of Cfm tunnel enable or not." + INDEX { interfaceIndex} + ::= { l2ProtocolTunnelCfmTable 1 } + + L2ProtocolTunnelCfmEntry ::= + SEQUENCE { + l2ProtocolTunnelCfmType INTEGER, + l2ProtocolTunnelCfmEvcName OCTET STRING, + l2ProtocolTunnelCfmRowstatus RowStatus + } + + l2ProtocolTunnelCfmType OBJECT-TYPE + SYNTAX INTEGER + { + peer(0), + tunnel(1), + discard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of l2 protocol action. + 0 peer. + 1 tunnel. + 2 discard." + DEFVAL { peer } + ::= { l2ProtocolTunnelCfmEntry 1 } + + l2ProtocolTunnelCfmEvcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the evc entry." + ::= { l2ProtocolTunnelCfmEntry 2 } + + l2ProtocolTunnelCfmRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelCfmEntry 3 } + +-- +-- L2 protocol tunnel uplink enable +-- + + l2ProtocolTunnelUplinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelUplinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of uplink enable or not." + ::= { l2protocol 11 } + + l2ProtocolTunnelUplinkEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelUplinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The information of uplink enable or not." + INDEX { interfaceIndex} + ::= { l2ProtocolTunnelUplinkTable 1 } + + L2ProtocolTunnelUplinkEntry ::= + SEQUENCE { + l2ProtocolTunnelUplinkEnable INTEGER, + l2ProtocolTunnelUplinkRowstatus RowStatus + } + + l2ProtocolTunnelUplinkEnable OBJECT-TYPE + SYNTAX INTEGER + { + enable(1), + disable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "l2protocol uplink enable or not." + DEFVAL { disable } + ::= { l2ProtocolTunnelUplinkEntry 1 } + + l2ProtocolTunnelUplinkRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row. Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelUplinkEntry 2 } + +-- +-- L2 protocol Full-Mac set +-- + + l2ProtocolFullMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolFullMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of the all destination MAC." + ::= { l2protocol 12 } + + l2ProtocolFullMacEntry OBJECT-TYPE + SYNTAX L2ProtocolFullMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The entry of the destination MAC table." + INDEX { l2ProtocolFullMacIndex } + ::= { l2ProtocolFullMacTable 1 } + + L2ProtocolFullMacEntry ::= + SEQUENCE { + l2ProtocolFullMacIndex Integer32, + l2ProtocolFullMac MacAddress, + l2ProtocolFullMacRowstatus RowStatus + } + + l2ProtocolFullMacIndex OBJECT-TYPE + SYNTAX Integer32 (0) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The index of the full-mac entry. The value is 0 always" + ::= { l2ProtocolFullMacEntry 1 } + + l2ProtocolFullMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "L2 protocol MAC address, including all MAC addresses." + ::= { l2ProtocolFullMacEntry 2 } + + l2ProtocolFullMacRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active." + ::= { l2ProtocolFullMacEntry 3 } + +-- +-- L2 protocol tunnel Full-Mac set +-- + + l2ProtocolTunnelFullMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF L2ProtocolTunnelFullMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of full-mac tunnel enable or not." + ::= { l2protocol 13 } + + l2ProtocolTunnelFullMacEntry OBJECT-TYPE + SYNTAX L2ProtocolTunnelFullMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The infomation of full-mac tunnel enable or not." + INDEX { interfaceIndex } + ::= { l2ProtocolTunnelFullMacTable 1 } + + L2ProtocolTunnelFullMacEntry ::= + SEQUENCE { + l2ProtocolTunnelFullMacType INTEGER, + l2ProtocolTunnelFullMacEvcName OCTET STRING, + l2ProtocolTunnelFullMacRowstatus RowStatus + } + + l2ProtocolTunnelFullMacType OBJECT-TYPE + SYNTAX INTEGER + { + peer(0), + tunnel(1), + discard(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of l2 protocol action. + 0 peer. + 1 tunnel. + 2 discard." + DEFVAL { peer } + ::= { l2ProtocolTunnelFullMacEntry 1 } + + l2ProtocolTunnelFullMacEvcName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the evc entry." + ::= { l2ProtocolTunnelFullMacEntry 2 } + + l2ProtocolTunnelFullMacRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this conceptual row.Now only realize CreateAndGo and Destroy and Active. + In this node when Destroy the entry the default type peer will be used." + ::= { l2ProtocolTunnelFullMacEntry 3 } + + +-- Sub Module: loopback detect + +loopbackDetectIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF LoopbackDetectIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure loopback detection on an interface." + ::= { loopbackDetect 1 } + +loopbackDetectIfEntry OBJECT-TYPE + SYNTAX LoopbackDetectIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry of loopbackDetectIfTable." + INDEX { loopbackDetectIfIndex } + ::= { loopbackDetectIfTable 1 } + +LoopbackDetectIfEntry ::= + SEQUENCE { + loopbackDetectIfIndex Integer32, + loopbackDetectEnable INTEGER, + loopbackDetectAction INTEGER, + loopbackDetectStatus INTEGER + } + +loopbackDetectIfIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Interface index." + ::= { loopbackDetectIfEntry 1 } + +loopbackDetectEnable OBJECT-TYPE + SYNTAX INTEGER {enable(1), disable(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable the loopback detect on a port.The meanings of the values are: + enable(1);disable(2)." + DEFVAL { disable } + ::= { loopbackDetectIfEntry 2 } + +loopbackDetectAction OBJECT-TYPE + SYNTAX INTEGER {shutdown(1), trap(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the action of the loopback detection.The meanings of the values are: + shutdown(1);trap(2)." + DEFVAL { trap } + ::= { loopbackDetectIfEntry 3 } + +loopbackDetectStatus OBJECT-TYPE + SYNTAX INTEGER {trap(1), shutdown(2), normal(3)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the status of the loopback detection.The meanings of the values are: + trap(1);shutdown(2);normal(3)." + DEFVAL { normal } + ::= { loopbackDetectIfEntry 4 } + +loopbackDetectPktInterval OBJECT-TYPE + SYNTAX Integer32 (1..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This node is used to configure loopback detection packet interval." + DEFVAL { 5 } + ::= { loopbackDetect 2 } + +loopbackDetectTrap OBJECT IDENTIFIER ::= { loopbackDetect 1000 } + +loopbackDetectStatusNotify NOTIFICATION-TYPE + OBJECTS { loopbackDetectIfIndex, loopbackDetectStatus } + STATUS current + DESCRIPTION + "This trap will be generated when loopback status changed on an interface." + ::= {loopbackDetectTrap 1} + +-- Ipsla MIB Objects + +ipslaCtrlAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpslaCtrlAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Basic configuration for ipsla" + ::= { ipsla 1 } + +ipslaCtrlAdminEntry OBJECT-TYPE + SYNTAX IpslaCtrlAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A base list of objects that define an ipsla object" + INDEX { ipslaCtrlAdminIndex } + ::= { ipslaCtrlAdminTable 1 } + +IpslaCtrlAdminEntry ::= SEQUENCE { + ipslaCtrlAdminIndex Integer32, + ipslaCtrlAdminDesc DisplayString, + ipslaCtrlAdminType Integer32, + ipslaCtrlAdminThreshold Integer32, + ipslaCtrlAdminFrequency Integer32, + ipslaCtrlAdminTimeout Integer32, + ipslaCtrlAdminInterval Integer32, + ipslaCtrlAdminPktsPerTest Integer32, + ipslaCtrlAdminTargetAddress OCTET STRING, + ipslaCtrlAdminSourceAddress OCTET STRING, + ipslaCtrlAdminSourceInterface OCTET STRING, + ipslaCtrlAdminStatus RowStatus +} + +ipslaCtrlAdminIndex OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ID of ipsla entry" + ::= { ipslaCtrlAdminEntry 1 } + +ipslaCtrlAdminDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which is used to describe an ipsla entry. + and will be inserted into trap notifications." + DEFVAL { "" } + ::= { ipslaCtrlAdminEntry 2 } + +ipslaCtrlAdminThreshold OBJECT-TYPE + SYNTAX Integer32 (1..4800000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the threshold value in millisecond for each icmp response" + DEFVAL { 5000 } + ::= { ipslaCtrlAdminEntry 4 } + +ipslaCtrlAdminFrequency OBJECT-TYPE + SYNTAX Integer32 (1..4800) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the frequency value in second for each test" + DEFVAL { 60 } + ::= { ipslaCtrlAdminEntry 5 } + +ipslaCtrlAdminTimeout OBJECT-TYPE + SYNTAX Integer32 (1..4800) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the timeout value in second for each icmp response" + DEFVAL { 5 } + ::= { ipslaCtrlAdminEntry 6 } + +ipslaCtrlAdminInterval OBJECT-TYPE + SYNTAX Integer32 (1..4800) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the interval value in second for two icmp request in a test" + DEFVAL { 6 } + ::= { ipslaCtrlAdminEntry 7 } + +ipslaCtrlAdminPktsPerTest OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the number of trasmitted icmp request in a test" + DEFVAL { 3 } + ::= { ipslaCtrlAdminEntry 8 } + +ipslaCtrlAdminTargetAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the destination address for icmp request" + ::= { ipslaCtrlAdminEntry 9 } + +ipslaCtrlAdminSourceAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the source address for icmp request" + ::= { ipslaCtrlAdminEntry 10 } + +ipslaCtrlAdminSourceInterface OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Configure the source interface for icmp request" + ::= { ipslaCtrlAdminEntry 11 } + +ipslaCtrlAdminStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Description: The status of this conceptual row. Now only realize CreateAndGo + and Destroy and Active. + 1 means Active + 4 means CreateAndGo + 6 means Destroy" + ::= { ipslaCtrlAdminEntry 12 } + + +-- ipsla icmp-echo Table + +ipslaEchoAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpslaEchoAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains icmp-echo specific definitions." + ::= { ipsla 2 } + +ipslaEchoAdminEntry OBJECT-TYPE + SYNTAX IpslaEchoAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define specific configuration for icmp-echo." + INDEX { ipslaCtrlAdminIndex } + ::= { ipslaEchoAdminTable 1 } + +IpslaEchoAdminEntry ::= SEQUENCE { + ipslaEchoAdminDataSize Integer32, + ipslaEchoAdminDataPattern OCTET STRING, + ipslaEchoAdminTOS Integer32, + ipslaEchoAdminTTL Integer32, + ipslaEchoAdminFailPercent Integer32, + ipslaEchoAdminVrfName DisplayString, + ipslaEchoAdminTestStatsNum Integer32, + ipslaEchoAdminPktStatsNum Integer32 +} + +ipslaEchoAdminDataSize OBJECT-TYPE + SYNTAX Integer32 (0..8100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure size of payload in icmp packet" + DEFVAL { 28 } + ::= { ipslaEchoAdminEntry 1 } + +ipslaEchoAdminDataPattern OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the pattern (hex string) of content in icmp payload" + DEFVAL { "ABCDABCD" } + ::= { ipslaEchoAdminEntry 2 } + +ipslaEchoAdminTOS OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the value of tos in icmp packet" + DEFVAL { 0 } + ::= { ipslaEchoAdminEntry 3 } + +ipslaEchoAdminTTL OBJECT-TYPE + SYNTAX Integer32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the value of ttl in icmp packet" + DEFVAL { 64 } + ::= { ipslaEchoAdminEntry 4 } + +ipslaEchoAdminFailPercent OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the failure percent for a test" + DEFVAL { 100 } + ::= { ipslaEchoAdminEntry 5 } + +ipslaEchoAdminVrfName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the vrf for ipsla entry" + DEFVAL { "" } + ::= { ipslaEchoAdminEntry 6 } + +ipslaEchoAdminTestStatsNum OBJECT-TYPE + SYNTAX Integer32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the recorded number of test statistics for a ipsla entry" + DEFVAL { 5 } + ::= { ipslaEchoAdminEntry 7 } + +ipslaEchoAdminPktStatsNum OBJECT-TYPE + SYNTAX Integer32 (0..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure the recorded number of packet statistics for a ipsla entry" + DEFVAL { 50 } + ::= { ipslaEchoAdminEntry 8 } + +-- Schedule Administration Table + +ipslaScheduleAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpslaScheduleAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ipsla scheduling specific definitions." + ::= { ipsla 3 } + +ipslaScheduleAdminEntry OBJECT-TYPE + SYNTAX IpslaScheduleAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define specific configuration for + the scheduling of ipsla." + INDEX { ipslaCtrlAdminIndex } + ::= { ipslaScheduleAdminTable 1 } + +IpslaScheduleAdminEntry ::= SEQUENCE { + ipslaScheduleAdminStatus Integer32 +} + +ipslaScheduleAdminStatus OBJECT-TYPE + SYNTAX Integer32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configure to enable the ipsla entry: + 0 means disable + 1 means enable" + DEFVAL{0} + ::= { ipslaScheduleAdminEntry 1 } + +-- Test show Table + +ipslaTestStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpslaTestStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The test statistics table" + ::= { ipsla 4 } + +ipslaTestStatsEntry OBJECT-TYPE + SYNTAX IpslaTestStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that describe results for + test statistics rows." + INDEX { ipslaTestEntryId, + ipslaTestStatsIndex } + ::= { ipslaTestStatsTable 1 } + +IpslaTestStatsEntry ::= SEQUENCE { + ipslaTestEntryId Integer32, + ipslaTestStatsIndex Integer32, + ipslaTestTransmitted Counter32, + ipslaTestReceived Counter32, + ipslaTestOverthreshold Counter32, + ipslaTestRttMax Integer32, + ipslaTestRttMin Integer32, + ipslaTestRttAvg Integer32, + ipslaTestLastTransmitted DateAndTime, + ipslaTestPktLossRatio Integer32, + ipslaTestResult Integer32 +} + +ipslaTestEntryId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ID of ipsla entry" + ::= { ipslaTestStatsEntry 1 } + +ipslaTestStatsIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of the test in the results" + ::= { ipslaTestStatsEntry 2 } + +ipslaTestTransmitted OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the number of packets transmitted in the test" + ::= { ipslaTestStatsEntry 3 } + +ipslaTestReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the number of packets received in the test" + ::= { ipslaTestStatsEntry 4 } + +ipslaTestOverthreshold OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the number of overthreshold packets received in the test" + ::= { ipslaTestStatsEntry 5 } + +ipslaTestRttMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the max value of RTT (Round Trip Time) among all received packet in a test" + ::= { ipslaTestStatsEntry 6 } + +ipslaTestRttMin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the minimum value of RTT (Round Trip Time) among all received packet in a test" + ::= { ipslaTestStatsEntry 7 } + +ipslaTestRttAvg OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the average value of RTT (Round Trip Time) among all received packet in a test" + ::= { ipslaTestStatsEntry 8 } + +ipslaTestLastTransmitted OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show send time of last packet in a test" + ::= { ipslaTestStatsEntry 9 } + +ipslaTestPktLossRatio OBJECT-TYPE + SYNTAX Integer32(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show packet loss ratio of a test" + ::= { ipslaTestStatsEntry 10 } + +ipslaTestResult OBJECT-TYPE + SYNTAX Integer32(1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the result of a test: + 1 means success + 2 means failure" + ::= { ipslaTestStatsEntry 11 } + +-- pkt show Table + +ipslaPktStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpslaPktStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The packet statistics table " + ::= { ipsla 5 } + +ipslaPktStatsEntry OBJECT-TYPE + SYNTAX IpslaPktStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that describe results for + packet statistics rows." + INDEX { ipslaPktEntryId, + ipslaPktStatsIndex } + ::= { ipslaPktStatsTable 1 } + +IpslaPktStatsEntry ::= SEQUENCE { + ipslaPktEntryId Integer32, + ipslaPktStatsIndex Integer32, + ipslaPktTestId Integer32, + ipslaPktIndex Integer32, + ipslaPktRtt Integer32, + ipslaPktResult Integer32, + ipslaPktSendTime DateAndTime +} + +ipslaPktEntryId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ID of ipsla entry" + ::= { ipslaPktStatsEntry 1 } + +ipslaPktStatsIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the packet in the results" + ::= { ipslaPktStatsEntry 2 } + +ipslaPktTestId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the ID of test which the packet is belong to " + ::= { ipslaPktStatsEntry 3 } + +ipslaPktIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the index of packet in the test" + ::= { ipslaPktStatsEntry 4 } + +ipslaPktRtt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the RTT of the packet" + ::= { ipslaPktStatsEntry 5 } + +ipslaPktResult OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the result of the packet: + 0 means timeout + 1 means success + 3 means sendfail" + ::= { ipslaPktStatsEntry 6 } + +ipslaPktSendTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Show the time of the packet transmitted" + ::= { ipslaPktStatsEntry 7 } + + +ipslaTrapEnable OBJECT-TYPE + SYNTAX BITS { + testfailure(0), + packettimeout(1), + testsuccess(2), + overthreshold(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable the trap of special type" + ::= { ipsla 6 } + +-- trap Table + +ipslaTrap OBJECT IDENTIFIER + ::= { ipsla 7 } + +ipslaTestFailure NOTIFICATION-TYPE + OBJECTS { + ipslaCtrlAdminIndex, + ipslaCtrlAdminDesc, + ipslaCtrlAdminTargetAddress, + ipslaPktTestId, + ipslaTestTransmitted, + ipslaTestReceived, + ipslaTestOverthreshold, + ipslaTestRttMax, + ipslaTestRttMin, + ipslaTestRttAvg, + ipslaTestLastTransmitted, + ipslaTestPktLossRatio, + ipslaEchoAdminFailPercent + } + STATUS current + DESCRIPTION + "Trap for a failed test" + ::= { ipslaTrap 1 } + +ipslaPktTimeout NOTIFICATION-TYPE + OBJECTS { + ipslaCtrlAdminIndex, + ipslaCtrlAdminDesc, + ipslaCtrlAdminTargetAddress, + ipslaPktTestId, + ipslaPktIndex, + ipslaCtrlAdminTimeout + } + STATUS current + DESCRIPTION + "Trap for a timeout icmp request" + ::= { ipslaTrap 2 } + +ipslaTestSuccess NOTIFICATION-TYPE + OBJECTS { + ipslaCtrlAdminIndex, + ipslaCtrlAdminDesc, + ipslaCtrlAdminTargetAddress, + ipslaPktTestId, + ipslaTestTransmitted, + ipslaTestReceived, + ipslaTestOverthreshold, + ipslaTestRttMax, + ipslaTestRttMin, + ipslaTestRttAvg, + ipslaTestLastTransmitted, + ipslaTestPktLossRatio, + ipslaEchoAdminFailPercent + } + STATUS current + DESCRIPTION + "Trap for a successful test" + ::= { ipslaTrap 3 } + +ipslaPktOverthreshold NOTIFICATION-TYPE + OBJECTS { + ipslaCtrlAdminIndex, + ipslaCtrlAdminDesc, + ipslaCtrlAdminTargetAddress, + ipslaPktTestId, + ipslaPktIndex, + ipslaCtrlAdminThreshold, + ipslaPktRtt + } + STATUS current + DESCRIPTION + "Trap for a overthreshold icmp response" + ::= { ipslaTrap 4 } + +END diff --git a/tests/data/fs-gbn_2800.json b/tests/data/fs-gbn_2800.json new file mode 100644 index 0000000000..1b28104e8f --- /dev/null +++ b/tests/data/fs-gbn_2800.json @@ -0,0 +1,6982 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.13464.1.3.32.1", + "sysDescr": "FS Switch", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "fs-gbn", + "type": "network", + "serial": null, + "icon": "fs.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.13464.1.3.32.1", + "sysDescr": "FS Switch", + "sysContact": "", + "version": "S2800-24T4F V100R001B01D001P003SP9", + "hardware": "S2800-24T4F Switch Product", + "features": null, + "os": "fs-gbn", + "type": "network", + "serial": "T180321D200", + "icon": "fs.svg", + "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": "e0/0/1", + "ifName": "e0/0/1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Router 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": "e0/0/2", + "ifName": "e0/0/2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "OOB Router", + "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": "e0/0/3", + "ifName": "e0/0/3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Server 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": "e0/0/4", + "ifName": "e0/0/4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Server 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": "e0/0/5", + "ifName": "e0/0/5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Server 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": "e0/0/6", + "ifName": "e0/0/6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Server 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": "e0/0/7", + "ifName": "e0/0/7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Server 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": "e0/0/8", + "ifName": "e0/0/8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/9", + "ifName": "e0/0/9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/10", + "ifName": "e0/0/10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/11", + "ifName": "e0/0/11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/12", + "ifName": "e0/0/12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/13", + "ifName": "e0/0/13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/14", + "ifName": "e0/0/14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/15", + "ifName": "e0/0/15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/16", + "ifName": "e0/0/16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/17", + "ifName": "e0/0/17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/17", + "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": "e0/0/18", + "ifName": "e0/0/18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/18", + "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": "e0/0/19", + "ifName": "e0/0/19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/19", + "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": "e0/0/20", + "ifName": "e0/0/20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/20", + "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": "e0/0/21", + "ifName": "e0/0/21", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/21", + "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": "e0/0/22", + "ifName": "e0/0/22", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Switch Crosslink", + "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": "e0/0/23", + "ifName": "e0/0/23", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Spare", + "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": "e0/0/24", + "ifName": "e0/0/24", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "Spare", + "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": "e0/1/1", + "ifName": "e0/1/1", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/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": "e0/1/2", + "ifName": "e0/1/2", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/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": "e0/1/3", + "ifName": "e0/1/3", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/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": "e0/1/4", + "ifName": "e0/1/4", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/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": "system", + "ifName": "system", + "portName": null, + "ifIndex": 17825793, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "system", + "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": "e0/0/1", + "ifName": "e0/0/1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Router 2", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 645817669, + "ifVlan": "100", + "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": 298396690, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11413382, + "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": 254456896864, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13745802322, + "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": 6545, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 340667, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3523433, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 45569134, + "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": "e0/0/2", + "ifName": "e0/0/2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "OOB Router", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 85618, + "ifVlan": "1", + "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": 23408, + "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": 924, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 468819528, + "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": 1934, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 11, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 4071663, + "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": "e0/0/3", + "ifName": "e0/0/3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Server 1", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 554543484, + "ifVlan": "100", + "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": 2759101, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 10115398, + "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": 928685427, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 19229375680, + "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": 3, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 342828, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 267190, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 24672218, + "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": "e0/0/4", + "ifName": "e0/0/4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Server 2", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 674275465, + "ifVlan": "100", + "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": 1403387, + "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": 472, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 9348353585, + "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": 126123, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 5, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 17371001, + "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": "e0/0/5", + "ifName": "e0/0/5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Server 3", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 559683064, + "ifVlan": "100", + "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": 5561933, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 21051107, + "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": 2075897901, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 34559312534, + "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": 9, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 346756, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 144163, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 24980782, + "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": "e0/0/6", + "ifName": "e0/0/6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Server 4", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 555171665, + "ifVlan": "100", + "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": 1290862, + "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": 8890411867, + "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": 123690, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 15292262, + "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": "e0/0/7", + "ifName": "e0/0/7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Server 5", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 562896316, + "ifVlan": "100", + "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": 1290861, + "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": 8890409363, + "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": 123671, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 15292030, + "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": "e0/0/8", + "ifName": "e0/0/8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/8", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/9", + "ifName": "e0/0/9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/9", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/10", + "ifName": "e0/0/10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/10", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/11", + "ifName": "e0/0/11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/11", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/12", + "ifName": "e0/0/12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/12", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/13", + "ifName": "e0/0/13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/13", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/14", + "ifName": "e0/0/14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/14", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/15", + "ifName": "e0/0/15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/15", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/16", + "ifName": "e0/0/16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/16", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/17", + "ifName": "e0/0/17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/17", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/18", + "ifName": "e0/0/18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/18", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/19", + "ifName": "e0/0/19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/19", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/20", + "ifName": "e0/0/20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/20", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/21", + "ifName": "e0/0/21", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/21", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/0/22", + "ifName": "e0/0/22", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Switch Crosslink", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 629014322, + "ifVlan": "1", + "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": 559505, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 35356970, + "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": 3480956456, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 29527119580, + "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": 85540, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 3524, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 6945648, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 249309, + "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": "e0/0/23", + "ifName": "e0/0/23", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Spare", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 629010005, + "ifVlan": "1", + "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": 14218491, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 184372897, + "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": 6486055157, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 213599135649, + "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": 188091, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 41507, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 24602841, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 11559542, + "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": "e0/0/24", + "ifName": "e0/0/24", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "Spare", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 629010257, + "ifVlan": "1", + "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": 17897476, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 93410496, + "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": 22431316400, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 18675108217, + "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": 35262, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 35200, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 19234866, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 8030936, + "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": "e0/1/1", + "ifName": "e0/1/1", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/1", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/1/2", + "ifName": "e0/1/2", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/2", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/1/3", + "ifName": "e0/1/3", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/3", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "e0/1/4", + "ifName": "e0/1/4", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/1/4", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "1", + "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": "system", + "ifName": "system", + "portName": null, + "ifIndex": 17825793, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "system", + "ifPhysAddress": "303a613a3561", + "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": 334356062, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 355269610, + "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": 287934176561, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 354185054545, + "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": 314892, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1483312, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 48691309, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 157176689, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.13464.1.2.1.1.2.11.0", + "processor_index": "0", + "processor_type": "fs-gbn", + "processor_usage": 23, + "processor_descr": "MIPS-4KEc, 500MHz", + "processor_precision": -1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fs-gbn", + "mempool_precision": 1, + "mempool_descr": "MIPS-4KEc, 500MHz 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": 75 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fs-gbn", + "mempool_precision": 1, + "mempool_descr": "MIPS-4KEc, 500MHz Memory", + "mempool_perc": 58, + "mempool_used": 77594624, + "mempool_free": 56623104, + "mempool_total": 134217728, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "Default", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 100, + "vlan_domain": 1, + "vlan_name": "Infra", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 110, + "vlan_domain": 1, + "vlan_name": "Public", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 120, + "vlan_domain": 1, + "vlan_name": "Private", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 130, + "vlan_domain": 1, + "vlan_name": "3rd Party", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 140, + "vlan_domain": 1, + "vlan_name": "Router crosslink", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 141, + "vlan_domain": 1, + "vlan_name": "OOB-Router 1", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 142, + "vlan_domain": 1, + "vlan_name": "OOB-Router 2", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 150, + "vlan_domain": 1, + "vlan_name": "Lab", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 999, + "vlan_domain": 1, + "vlan_name": "Route Exchange", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 1, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 8, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 9, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 10, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 11, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 12, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 13, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 14, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 15, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 16, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 17, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 18, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 19, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 20, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 21, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 25, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 26, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 27, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 28, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 100, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 100, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 110, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 120, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 130, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 140, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 140, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 140, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 140, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 141, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 141, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 141, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 141, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 142, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 142, + "baseport": 2, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 142, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 142, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 142, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 150, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 1, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 3, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 4, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 5, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 6, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 7, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 22, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 23, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + }, + { + "vlan": 999, + "baseport": 24, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 0 + } + ] + } + } +} diff --git a/tests/data/fs-gbn_3800.json b/tests/data/fs-gbn_3800.json new file mode 100644 index 0000000000..e9ab357a62 --- /dev/null +++ b/tests/data/fs-gbn_3800.json @@ -0,0 +1,23420 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.13464.1.3.38.3", + "sysDescr": "FS Switch", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "fs-gbn", + "type": "network", + "serial": null, + "icon": "fs.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.13464.1.3.38.3", + "sysDescr": "FS Switch", + "sysContact": "", + "version": "S3800-24F4S V100R001B01D001P004SP3", + "hardware": "S3800-24F4S Switch Product", + "features": null, + "os": "fs-gbn", + "type": "network", + "serial": "F170823DN051", + "icon": "fs.svg", + "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": "e0/0/1", + "ifName": "e0/0/1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/2", + "ifName": "e0/0/2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/3", + "ifName": "e0/0/3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/4", + "ifName": "e0/0/4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/5", + "ifName": "e0/0/5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/6", + "ifName": "e0/0/6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/7", + "ifName": "e0/0/7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/8", + "ifName": "e0/0/8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/9", + "ifName": "e0/0/9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/10", + "ifName": "e0/0/10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/11", + "ifName": "e0/0/11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/12", + "ifName": "e0/0/12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/13", + "ifName": "e0/0/13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/14", + "ifName": "e0/0/14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/15", + "ifName": "e0/0/15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/16", + "ifName": "e0/0/16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/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": "e0/0/17", + "ifName": "e0/0/17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/17", + "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": "e0/0/18", + "ifName": "e0/0/18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/18", + "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": "e0/0/19", + "ifName": "e0/0/19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/19", + "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": "e0/0/20", + "ifName": "e0/0/20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/20", + "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": "e0/0/21", + "ifName": "e0/0/21", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/21", + "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": "e0/0/22", + "ifName": "e0/0/22", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/22", + "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": "e0/0/23", + "ifName": "e0/0/23", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/23", + "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": "e0/0/24", + "ifName": "e0/0/24", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/24", + "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": "e0/1/3", + "ifName": "e0/1/3", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "e0/1/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": "e0/1/4", + "ifName": "e0/1/4", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "e0/1/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": "e1/0/1", + "ifName": "e1/0/1", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/2", + "ifName": "e1/0/2", + "portName": null, + "ifIndex": 30, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/3", + "ifName": "e1/0/3", + "portName": null, + "ifIndex": 31, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/4", + "ifName": "e1/0/4", + "portName": null, + "ifIndex": 32, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/5", + "ifName": "e1/0/5", + "portName": null, + "ifIndex": 33, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/6", + "ifName": "e1/0/6", + "portName": null, + "ifIndex": 34, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/7", + "ifName": "e1/0/7", + "portName": null, + "ifIndex": 35, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/8", + "ifName": "e1/0/8", + "portName": null, + "ifIndex": 36, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/9", + "ifName": "e1/0/9", + "portName": null, + "ifIndex": 37, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/10", + "ifName": "e1/0/10", + "portName": null, + "ifIndex": 38, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/11", + "ifName": "e1/0/11", + "portName": null, + "ifIndex": 39, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/12", + "ifName": "e1/0/12", + "portName": null, + "ifIndex": 40, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/13", + "ifName": "e1/0/13", + "portName": null, + "ifIndex": 41, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/14", + "ifName": "e1/0/14", + "portName": null, + "ifIndex": 42, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/15", + "ifName": "e1/0/15", + "portName": null, + "ifIndex": 43, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/16", + "ifName": "e1/0/16", + "portName": null, + "ifIndex": 44, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/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": "e1/0/17", + "ifName": "e1/0/17", + "portName": null, + "ifIndex": 45, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/17", + "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": "e1/0/18", + "ifName": "e1/0/18", + "portName": null, + "ifIndex": 46, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/18", + "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": "e1/0/19", + "ifName": "e1/0/19", + "portName": null, + "ifIndex": 47, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/19", + "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": "e1/0/20", + "ifName": "e1/0/20", + "portName": null, + "ifIndex": 48, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/20", + "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": "e1/0/21", + "ifName": "e1/0/21", + "portName": null, + "ifIndex": 49, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/21", + "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": "e1/0/22", + "ifName": "e1/0/22", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/22", + "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": "e1/0/23", + "ifName": "e1/0/23", + "portName": null, + "ifIndex": 51, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/23", + "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": "e1/0/24", + "ifName": "e1/0/24", + "portName": null, + "ifIndex": 52, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/0/24", + "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": "e1/1/1", + "ifName": "e1/1/1", + "portName": null, + "ifIndex": 53, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/1/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": "e1/1/2", + "ifName": "e1/1/2", + "portName": null, + "ifIndex": 54, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/1/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": "e1/1/3", + "ifName": "e1/1/3", + "portName": null, + "ifIndex": 55, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/1/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": "e1/1/4", + "ifName": "e1/1/4", + "portName": null, + "ifIndex": 56, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e1/1/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": "e2/0/1", + "ifName": "e2/0/1", + "portName": null, + "ifIndex": 57, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/2", + "ifName": "e2/0/2", + "portName": null, + "ifIndex": 58, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/3", + "ifName": "e2/0/3", + "portName": null, + "ifIndex": 59, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/4", + "ifName": "e2/0/4", + "portName": null, + "ifIndex": 60, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/5", + "ifName": "e2/0/5", + "portName": null, + "ifIndex": 61, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/6", + "ifName": "e2/0/6", + "portName": null, + "ifIndex": 62, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/7", + "ifName": "e2/0/7", + "portName": null, + "ifIndex": 63, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/8", + "ifName": "e2/0/8", + "portName": null, + "ifIndex": 64, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/9", + "ifName": "e2/0/9", + "portName": null, + "ifIndex": 65, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/10", + "ifName": "e2/0/10", + "portName": null, + "ifIndex": 66, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/11", + "ifName": "e2/0/11", + "portName": null, + "ifIndex": 67, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/12", + "ifName": "e2/0/12", + "portName": null, + "ifIndex": 68, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/13", + "ifName": "e2/0/13", + "portName": null, + "ifIndex": 69, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/14", + "ifName": "e2/0/14", + "portName": null, + "ifIndex": 70, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/15", + "ifName": "e2/0/15", + "portName": null, + "ifIndex": 71, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/16", + "ifName": "e2/0/16", + "portName": null, + "ifIndex": 72, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/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": "e2/0/17", + "ifName": "e2/0/17", + "portName": null, + "ifIndex": 73, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/17", + "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": "e2/0/18", + "ifName": "e2/0/18", + "portName": null, + "ifIndex": 74, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/18", + "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": "e2/0/19", + "ifName": "e2/0/19", + "portName": null, + "ifIndex": 75, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/19", + "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": "e2/0/20", + "ifName": "e2/0/20", + "portName": null, + "ifIndex": 76, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/20", + "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": "e2/0/21", + "ifName": "e2/0/21", + "portName": null, + "ifIndex": 77, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/21", + "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": "e2/0/22", + "ifName": "e2/0/22", + "portName": null, + "ifIndex": 78, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/22", + "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": "e2/0/23", + "ifName": "e2/0/23", + "portName": null, + "ifIndex": 79, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/23", + "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": "e2/0/24", + "ifName": "e2/0/24", + "portName": null, + "ifIndex": 80, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/0/24", + "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": "e2/1/1", + "ifName": "e2/1/1", + "portName": null, + "ifIndex": 81, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/1/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": "e2/1/2", + "ifName": "e2/1/2", + "portName": null, + "ifIndex": 82, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/1/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": "e2/1/3", + "ifName": "e2/1/3", + "portName": null, + "ifIndex": 83, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/1/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": "e2/1/4", + "ifName": "e2/1/4", + "portName": null, + "ifIndex": 84, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e2/1/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": "e3/0/1", + "ifName": "e3/0/1", + "portName": null, + "ifIndex": 85, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/2", + "ifName": "e3/0/2", + "portName": null, + "ifIndex": 86, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/3", + "ifName": "e3/0/3", + "portName": null, + "ifIndex": 87, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/4", + "ifName": "e3/0/4", + "portName": null, + "ifIndex": 88, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/5", + "ifName": "e3/0/5", + "portName": null, + "ifIndex": 89, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/6", + "ifName": "e3/0/6", + "portName": null, + "ifIndex": 90, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/7", + "ifName": "e3/0/7", + "portName": null, + "ifIndex": 91, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/8", + "ifName": "e3/0/8", + "portName": null, + "ifIndex": 92, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/9", + "ifName": "e3/0/9", + "portName": null, + "ifIndex": 93, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/10", + "ifName": "e3/0/10", + "portName": null, + "ifIndex": 94, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/11", + "ifName": "e3/0/11", + "portName": null, + "ifIndex": 95, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/12", + "ifName": "e3/0/12", + "portName": null, + "ifIndex": 96, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/13", + "ifName": "e3/0/13", + "portName": null, + "ifIndex": 97, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/14", + "ifName": "e3/0/14", + "portName": null, + "ifIndex": 98, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/15", + "ifName": "e3/0/15", + "portName": null, + "ifIndex": 99, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/16", + "ifName": "e3/0/16", + "portName": null, + "ifIndex": 100, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/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": "e3/0/17", + "ifName": "e3/0/17", + "portName": null, + "ifIndex": 101, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/17", + "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": "e3/0/18", + "ifName": "e3/0/18", + "portName": null, + "ifIndex": 102, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/18", + "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": "e3/0/19", + "ifName": "e3/0/19", + "portName": null, + "ifIndex": 103, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/19", + "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": "e3/0/20", + "ifName": "e3/0/20", + "portName": null, + "ifIndex": 104, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/20", + "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": "e3/0/21", + "ifName": "e3/0/21", + "portName": null, + "ifIndex": 105, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/21", + "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": "e3/0/22", + "ifName": "e3/0/22", + "portName": null, + "ifIndex": 106, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/22", + "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": "e3/0/23", + "ifName": "e3/0/23", + "portName": null, + "ifIndex": 107, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/23", + "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": "e3/0/24", + "ifName": "e3/0/24", + "portName": null, + "ifIndex": 108, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/0/24", + "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": "e3/1/1", + "ifName": "e3/1/1", + "portName": null, + "ifIndex": 109, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/1/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": "e3/1/2", + "ifName": "e3/1/2", + "portName": null, + "ifIndex": 110, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/1/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": "e3/1/3", + "ifName": "e3/1/3", + "portName": null, + "ifIndex": 111, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/1/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": "e3/1/4", + "ifName": "e3/1/4", + "portName": null, + "ifIndex": 112, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fastEther", + "ifAlias": "e3/1/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": "VLAN-IF82", + "ifName": "VLAN-IF82", + "portName": null, + "ifIndex": 17825793, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "VLAN-IF82", + "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": "e0/0/1", + "ifName": "e0/0/1", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/1", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 29271, + "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": "e0/0/2", + "ifName": "e0/0/2", + "portName": null, + "ifIndex": 2, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/2", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/3", + "ifName": "e0/0/3", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/4", + "ifName": "e0/0/4", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/4", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/5", + "ifName": "e0/0/5", + "portName": null, + "ifIndex": 5, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/5", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/6", + "ifName": "e0/0/6", + "portName": null, + "ifIndex": 6, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/6", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/7", + "ifName": "e0/0/7", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/7", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/8", + "ifName": "e0/0/8", + "portName": null, + "ifIndex": 8, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/8", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 87578493, + "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": 47193, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 45952, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 160, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 718, + "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": "e0/0/9", + "ifName": "e0/0/9", + "portName": null, + "ifIndex": 9, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/9", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 14671, + "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": 1813652, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1784168, + "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": 376524142, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 390380025, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 114, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 782810, + "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": "e0/0/10", + "ifName": "e0/0/10", + "portName": null, + "ifIndex": 10, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/10", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/11", + "ifName": "e0/0/11", + "portName": null, + "ifIndex": 11, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/11", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/12", + "ifName": "e0/0/12", + "portName": null, + "ifIndex": 12, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/12", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/13", + "ifName": "e0/0/13", + "portName": null, + "ifIndex": 13, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/13", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/14", + "ifName": "e0/0/14", + "portName": null, + "ifIndex": 14, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/14", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/15", + "ifName": "e0/0/15", + "portName": null, + "ifIndex": 15, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/15", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/16", + "ifName": "e0/0/16", + "portName": null, + "ifIndex": 16, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/16", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/17", + "ifName": "e0/0/17", + "portName": null, + "ifIndex": 17, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/17", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/18", + "ifName": "e0/0/18", + "portName": null, + "ifIndex": 18, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/18", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 14674, + "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": 26518031, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 35680665, + "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": 3607882495, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3701769832, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 55594, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 2355090, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 1, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 2, + "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": "e0/0/19", + "ifName": "e0/0/19", + "portName": null, + "ifIndex": 19, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/19", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/20", + "ifName": "e0/0/20", + "portName": null, + "ifIndex": 20, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/20", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/21", + "ifName": "e0/0/21", + "portName": null, + "ifIndex": 21, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/21", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/22", + "ifName": "e0/0/22", + "portName": null, + "ifIndex": 22, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/22", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/23", + "ifName": "e0/0/23", + "portName": null, + "ifIndex": 23, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/23", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/0/24", + "ifName": "e0/0/24", + "portName": null, + "ifIndex": 24, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "e0/0/24", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/1/3", + "ifName": "e0/1/3", + "portName": null, + "ifIndex": 27, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "e0/1/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e0/1/4", + "ifName": "e0/1/4", + "portName": null, + "ifIndex": 28, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "e0/1/4", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 29271, + "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": 1601365, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4627149, + "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": 194967412, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1132008911, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 52178, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 52354, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 1, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 1, + "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": "e1/0/1", + "ifName": "e1/0/1", + "portName": null, + "ifIndex": 29, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/1", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/2", + "ifName": "e1/0/2", + "portName": null, + "ifIndex": 30, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/2", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/3", + "ifName": "e1/0/3", + "portName": null, + "ifIndex": 31, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/4", + "ifName": "e1/0/4", + "portName": null, + "ifIndex": 32, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/4", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/5", + "ifName": "e1/0/5", + "portName": null, + "ifIndex": 33, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/5", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 8697, + "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": 258, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 87302, + "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": 72730437, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 116744440, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 732071, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 895814, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 22, + "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": "e1/0/6", + "ifName": "e1/0/6", + "portName": null, + "ifIndex": 34, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/6", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/7", + "ifName": "e1/0/7", + "portName": null, + "ifIndex": 35, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/7", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/8", + "ifName": "e1/0/8", + "portName": null, + "ifIndex": 36, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/8", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/9", + "ifName": "e1/0/9", + "portName": null, + "ifIndex": 37, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/9", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/10", + "ifName": "e1/0/10", + "portName": null, + "ifIndex": 38, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/10", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/11", + "ifName": "e1/0/11", + "portName": null, + "ifIndex": 39, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/11", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/12", + "ifName": "e1/0/12", + "portName": null, + "ifIndex": 40, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/12", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/13", + "ifName": "e1/0/13", + "portName": null, + "ifIndex": 41, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/13", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/14", + "ifName": "e1/0/14", + "portName": null, + "ifIndex": 42, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/14", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/15", + "ifName": "e1/0/15", + "portName": null, + "ifIndex": 43, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/15", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/16", + "ifName": "e1/0/16", + "portName": null, + "ifIndex": 44, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/16", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/17", + "ifName": "e1/0/17", + "portName": null, + "ifIndex": 45, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/17", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/18", + "ifName": "e1/0/18", + "portName": null, + "ifIndex": 46, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/18", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 87326860, + "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": 35767655, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 26518266, + "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": 3584581358, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3655182870, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 840247, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 698099, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 2, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 7, + "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": "e1/0/19", + "ifName": "e1/0/19", + "portName": null, + "ifIndex": 47, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/19", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/20", + "ifName": "e1/0/20", + "portName": null, + "ifIndex": 48, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/20", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/21", + "ifName": "e1/0/21", + "portName": null, + "ifIndex": 49, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/21", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/22", + "ifName": "e1/0/22", + "portName": null, + "ifIndex": 50, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/22", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/23", + "ifName": "e1/0/23", + "portName": null, + "ifIndex": 51, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/23", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/0/24", + "ifName": "e1/0/24", + "portName": null, + "ifIndex": 52, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/0/24", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/1/1", + "ifName": "e1/1/1", + "portName": null, + "ifIndex": 53, + "ifSpeed": 10000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/1/1", + "ifPhysAddress": "303a613a3561", + "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": 26525136, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13350076, + "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": 4023479850, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 828482804, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 40222, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 3511026, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 7114, + "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": "e1/1/2", + "ifName": "e1/1/2", + "portName": null, + "ifIndex": 54, + "ifSpeed": 10000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/1/2", + "ifPhysAddress": "303a613a3561", + "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": 13347681, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 38686822, + "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": 850572325, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 356491066, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 3725432, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 1343074, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 1495065, + "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": "e1/1/3", + "ifName": "e1/1/3", + "portName": null, + "ifIndex": 55, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/1/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e1/1/4", + "ifName": "e1/1/4", + "portName": null, + "ifIndex": 56, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e1/1/4", + "ifPhysAddress": "303a613a3561", + "ifHardType": null, + "ifLastChange": 29443, + "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": 3006163, + "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": 439247729, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6687104, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 52175, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 52243, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 5213, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 2, + "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": "e2/0/1", + "ifName": "e2/0/1", + "portName": null, + "ifIndex": 57, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/1", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/2", + "ifName": "e2/0/2", + "portName": null, + "ifIndex": 58, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/2", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/3", + "ifName": "e2/0/3", + "portName": null, + "ifIndex": 59, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/4", + "ifName": "e2/0/4", + "portName": null, + "ifIndex": 60, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/4", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/5", + "ifName": "e2/0/5", + "portName": null, + "ifIndex": 61, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/5", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/6", + "ifName": "e2/0/6", + "portName": null, + "ifIndex": 62, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/6", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/7", + "ifName": "e2/0/7", + "portName": null, + "ifIndex": 63, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/7", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/8", + "ifName": "e2/0/8", + "portName": null, + "ifIndex": 64, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/8", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/9", + "ifName": "e2/0/9", + "portName": null, + "ifIndex": 65, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/9", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/10", + "ifName": "e2/0/10", + "portName": null, + "ifIndex": 66, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/10", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/11", + "ifName": "e2/0/11", + "portName": null, + "ifIndex": 67, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/11", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/12", + "ifName": "e2/0/12", + "portName": null, + "ifIndex": 68, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/12", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/13", + "ifName": "e2/0/13", + "portName": null, + "ifIndex": 69, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/13", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/14", + "ifName": "e2/0/14", + "portName": null, + "ifIndex": 70, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/14", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/15", + "ifName": "e2/0/15", + "portName": null, + "ifIndex": 71, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/15", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/16", + "ifName": "e2/0/16", + "portName": null, + "ifIndex": 72, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/16", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/17", + "ifName": "e2/0/17", + "portName": null, + "ifIndex": 73, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/17", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/18", + "ifName": "e2/0/18", + "portName": null, + "ifIndex": 74, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/18", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/19", + "ifName": "e2/0/19", + "portName": null, + "ifIndex": 75, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/19", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/20", + "ifName": "e2/0/20", + "portName": null, + "ifIndex": 76, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/20", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/21", + "ifName": "e2/0/21", + "portName": null, + "ifIndex": 77, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/21", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/22", + "ifName": "e2/0/22", + "portName": null, + "ifIndex": 78, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/22", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/23", + "ifName": "e2/0/23", + "portName": null, + "ifIndex": 79, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/23", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/0/24", + "ifName": "e2/0/24", + "portName": null, + "ifIndex": 80, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/0/24", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/1/1", + "ifName": "e2/1/1", + "portName": null, + "ifIndex": 81, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/1/1", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/1/2", + "ifName": "e2/1/2", + "portName": null, + "ifIndex": 82, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/1/2", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/1/3", + "ifName": "e2/1/3", + "portName": null, + "ifIndex": 83, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/1/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e2/1/4", + "ifName": "e2/1/4", + "portName": null, + "ifIndex": 84, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e2/1/4", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/1", + "ifName": "e3/0/1", + "portName": null, + "ifIndex": 85, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/1", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/2", + "ifName": "e3/0/2", + "portName": null, + "ifIndex": 86, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/2", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/3", + "ifName": "e3/0/3", + "portName": null, + "ifIndex": 87, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/4", + "ifName": "e3/0/4", + "portName": null, + "ifIndex": 88, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/4", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/5", + "ifName": "e3/0/5", + "portName": null, + "ifIndex": 89, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/5", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/6", + "ifName": "e3/0/6", + "portName": null, + "ifIndex": 90, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/6", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/7", + "ifName": "e3/0/7", + "portName": null, + "ifIndex": 91, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/7", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/8", + "ifName": "e3/0/8", + "portName": null, + "ifIndex": 92, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/8", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/9", + "ifName": "e3/0/9", + "portName": null, + "ifIndex": 93, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/9", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/10", + "ifName": "e3/0/10", + "portName": null, + "ifIndex": 94, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/10", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/11", + "ifName": "e3/0/11", + "portName": null, + "ifIndex": 95, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/11", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/12", + "ifName": "e3/0/12", + "portName": null, + "ifIndex": 96, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/12", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/13", + "ifName": "e3/0/13", + "portName": null, + "ifIndex": 97, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/13", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/14", + "ifName": "e3/0/14", + "portName": null, + "ifIndex": 98, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/14", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/15", + "ifName": "e3/0/15", + "portName": null, + "ifIndex": 99, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/15", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/16", + "ifName": "e3/0/16", + "portName": null, + "ifIndex": 100, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/16", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/17", + "ifName": "e3/0/17", + "portName": null, + "ifIndex": 101, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/17", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/18", + "ifName": "e3/0/18", + "portName": null, + "ifIndex": 102, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/18", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/19", + "ifName": "e3/0/19", + "portName": null, + "ifIndex": 103, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/19", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/20", + "ifName": "e3/0/20", + "portName": null, + "ifIndex": 104, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/20", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/21", + "ifName": "e3/0/21", + "portName": null, + "ifIndex": 105, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/21", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/22", + "ifName": "e3/0/22", + "portName": null, + "ifIndex": 106, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/22", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/23", + "ifName": "e3/0/23", + "portName": null, + "ifIndex": 107, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/23", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/0/24", + "ifName": "e3/0/24", + "portName": null, + "ifIndex": 108, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/0/24", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/1/1", + "ifName": "e3/1/1", + "portName": null, + "ifIndex": 109, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/1/1", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/1/2", + "ifName": "e3/1/2", + "portName": null, + "ifIndex": 110, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/1/2", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/1/3", + "ifName": "e3/1/3", + "portName": null, + "ifIndex": 111, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/1/3", + "ifPhysAddress": "303a613a3561", + "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": 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": "e3/1/4", + "ifName": "e3/1/4", + "portName": null, + "ifIndex": 112, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "fastEther", + "ifAlias": "e3/1/4", + "ifPhysAddress": "303a613a3561", + "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": 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": "VLAN-IF82", + "ifName": "VLAN-IF82", + "portName": null, + "ifIndex": 17825793, + "ifSpeed": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "VLAN-IF82", + "ifPhysAddress": "303a613a3561", + "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": 4607528, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4627149, + "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": 634215141, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1138681295, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 104353, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 104482, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 5214, + "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.13464.1.2.1.1.2.11.0", + "processor_index": "0", + "processor_type": "fs-gbn", + "processor_usage": 5, + "processor_descr": "ARM Cortex-A9, 400MHz", + "processor_precision": -1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fs-gbn", + "mempool_precision": 1, + "mempool_descr": "ARM Cortex-A9, 400MHz 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": 75 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fs-gbn", + "mempool_precision": 1, + "mempool_descr": "ARM Cortex-A9, 400MHz Memory", + "mempool_perc": 44, + "mempool_used": 234881024, + "mempool_free": 301989888, + "mempool_total": 536870912, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + } + } +} diff --git a/tests/data/fs-switch_5800.json b/tests/data/fs-switch_5800.json new file mode 100644 index 0000000000..56b700fcc1 --- /dev/null +++ b/tests/data/fs-switch_5800.json @@ -0,0 +1,5178 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.27975.99.263", + "sysDescr": "FSOS software, S5800 software (S5800 8TF12S), Version 5.3.7", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "fs-switch", + "type": "network", + "serial": null, + "icon": "fs.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.27975.99.263", + "sysDescr": "FSOS software, S5800 software (S5800 8TF12S), Version 5.3.7", + "sysContact": "", + "version": "FSOS Software, Version 5.3.7", + "hardware": "8TF12S", + "features": null, + "os": "fs-switch", + "type": "network", + "serial": "CG1805255992N013", + "icon": "fs.svg", + "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": "eth-0-1", + "ifName": "eth-0-1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Core: cr1-mlm-cr1-vxo port 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": "eth-0-2", + "ifName": "eth-0-2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Core: cr1-mlm-cr1-vxo port 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": "eth-0-3", + "ifName": "eth-0-3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-4", + "ifName": "eth-0-4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-5", + "ifName": "eth-0-5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-6", + "ifName": "eth-0-6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-7", + "ifName": "eth-0-7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-8", + "ifName": "eth-0-8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-9", + "ifName": "eth-0-9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-10", + "ifName": "eth-0-10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-11", + "ifName": "eth-0-11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-12", + "ifName": "eth-0-12", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-13", + "ifName": "eth-0-13", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-14", + "ifName": "eth-0-14", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-15", + "ifName": "eth-0-15", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-16", + "ifName": "eth-0-16", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-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": "eth-0-17", + "ifName": "eth-0-17", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-17", + "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": "eth-0-18", + "ifName": "eth-0-18", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-18", + "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": "eth-0-19", + "ifName": "eth-0-19", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-19", + "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": "eth-0-20", + "ifName": "eth-0-20", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-20", + "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": "agg1", + "ifName": "agg1", + "portName": null, + "ifIndex": 2049, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "description Core: cr1-mlm-vg4 to cr1-vxo", + "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": "vlan1", + "ifName": "vlan1", + "portName": null, + "ifIndex": 4097, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l3ipvlan", + "ifAlias": "vlan1", + "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": "vlan797", + "ifName": "vlan797", + "portName": null, + "ifIndex": 4893, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l3ipvlan", + "ifAlias": "vlan797", + "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": "vlan800", + "ifName": "vlan800", + "portName": null, + "ifIndex": 4896, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l3ipvlan", + "ifAlias": "vlan800", + "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": "core", + "port_descr_descr": "cr1-mlm-cr1-vxo port 1", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth-0-1", + "ifName": "eth-0-1", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Core: cr1-mlm-cr1-vxo port 1", + "ifPhysAddress": "001e081042d3", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": 4755088, + "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": 1414521434, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1202611200, + "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": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 11579173, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 9395400, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": "core", + "port_descr_descr": "cr1-mlm-cr1-vxo port 2", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth-0-2", + "ifName": "eth-0-2", + "portName": null, + "ifIndex": 2, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "Core: cr1-mlm-cr1-vxo port 2", + "ifPhysAddress": "001e081042d4", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": 4780346, + "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": 132515542, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2421087797, + "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": 65, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 658477, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 10356788, + "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": "eth-0-3", + "ifName": "eth-0-3", + "portName": null, + "ifIndex": 3, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-3", + "ifPhysAddress": "001e081042d5", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-4", + "ifName": "eth-0-4", + "portName": null, + "ifIndex": 4, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-4", + "ifPhysAddress": "001e081042d6", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-5", + "ifName": "eth-0-5", + "portName": null, + "ifIndex": 5, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-5", + "ifPhysAddress": "001e081042d7", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-6", + "ifName": "eth-0-6", + "portName": null, + "ifIndex": 6, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-6", + "ifPhysAddress": "001e081042d8", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-7", + "ifName": "eth-0-7", + "portName": null, + "ifIndex": 7, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-7", + "ifPhysAddress": "001e081042d9", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-8", + "ifName": "eth-0-8", + "portName": null, + "ifIndex": 8, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-8", + "ifPhysAddress": "001e081042da", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-9", + "ifName": "eth-0-9", + "portName": null, + "ifIndex": 9, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-9", + "ifPhysAddress": "001e081042db", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-10", + "ifName": "eth-0-10", + "portName": null, + "ifIndex": 10, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-10", + "ifPhysAddress": "001e081042dc", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-11", + "ifName": "eth-0-11", + "portName": null, + "ifIndex": 11, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-11", + "ifPhysAddress": "001e081042dd", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-12", + "ifName": "eth-0-12", + "portName": null, + "ifIndex": 12, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-12", + "ifPhysAddress": "001e081042de", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-13", + "ifName": "eth-0-13", + "portName": null, + "ifIndex": 13, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-13", + "ifPhysAddress": "001e081042df", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-14", + "ifName": "eth-0-14", + "portName": null, + "ifIndex": 14, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-14", + "ifPhysAddress": "001e081042e0", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-15", + "ifName": "eth-0-15", + "portName": null, + "ifIndex": 15, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-15", + "ifPhysAddress": "001e081042e1", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-16", + "ifName": "eth-0-16", + "portName": null, + "ifIndex": 16, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-16", + "ifPhysAddress": "001e081042e2", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-17", + "ifName": "eth-0-17", + "portName": null, + "ifIndex": 17, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-17", + "ifPhysAddress": "001e081042e3", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-18", + "ifName": "eth-0-18", + "portName": null, + "ifIndex": 18, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-18", + "ifPhysAddress": "001e081042e4", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-19", + "ifName": "eth-0-19", + "portName": null, + "ifIndex": 19, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-19", + "ifPhysAddress": "001e081042e5", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "eth-0-20", + "ifName": "eth-0-20", + "portName": null, + "ifIndex": 20, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 10, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth-0-20", + "ifPhysAddress": "001e081042e6", + "ifHardType": null, + "ifLastChange": 5800, + "ifVlan": "1", + "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": "description core", + "port_descr_descr": "cr1-mlm-vg4 to cr1-vxo", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "agg1", + "ifName": "agg1", + "portName": null, + "ifIndex": 2049, + "ifSpeed": 2000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 2000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ieee8023adLag", + "ifAlias": "description Core: cr1-mlm-vg4 to cr1-vxo", + "ifPhysAddress": "001e081042d3", + "ifHardType": null, + "ifLastChange": 6200, + "ifVlan": "1", + "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": 4755281, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4780346, + "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": 1547034889, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3623696693, + "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": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 65, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 12237637, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 19752170, + "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": "vlan1", + "ifName": "vlan1", + "portName": null, + "ifIndex": 4097, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l3ipvlan", + "ifAlias": "vlan1", + "ifPhysAddress": "001e081042d2", + "ifHardType": null, + "ifLastChange": 6200, + "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": "vlan797", + "ifName": "vlan797", + "portName": null, + "ifIndex": 4893, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l3ipvlan", + "ifAlias": "vlan797", + "ifPhysAddress": "001e081042d2", + "ifHardType": null, + "ifLastChange": 6200, + "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": "vlan800", + "ifName": "vlan800", + "portName": null, + "ifIndex": 4896, + "ifSpeed": 1000000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l3ipvlan", + "ifAlias": "vlan800", + "ifPhysAddress": "001e081042d2", + "ifHardType": null, + "ifLastChange": 50791300, + "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 + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.27975.1.2.11.0", + "processor_index": "0", + "processor_type": "fs-SWITCHMIB", + "processor_usage": 6, + "processor_descr": "CPU", + "processor_precision": -1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fs-switch", + "mempool_precision": 1, + "mempool_descr": "Chassis 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": 75 + } + ] + }, + "poller": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "fs-switch", + "mempool_precision": 1, + "mempool_descr": "Chassis Memory", + "mempool_perc": 21, + "mempool_used": 196792320, + "mempool_free": 747798528, + "mempool_total": 944590848, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "default", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 797, + "vlan_domain": 1, + "vlan_name": "INT-Link-VXO-MLM", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 800, + "vlan_domain": 1, + "vlan_name": "Link-VXO-MLM", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [] + } + } +} diff --git a/tests/snmpsim/fs-gbn_2800.snmprec b/tests/snmpsim/fs-gbn_2800.snmprec new file mode 100644 index 0000000000..379db8202b --- /dev/null +++ b/tests/snmpsim/fs-gbn_2800.snmprec @@ -0,0 +1,1529 @@ +1.3.6.1.2.1.1.1.0|4|FS Switch +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.13464.1.3.32.1 +1.3.6.1.2.1.1.3.0|67|688306647 +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.1|4|e0/0/1 +1.3.6.1.2.1.2.2.1.2.2|4|e0/0/2 +1.3.6.1.2.1.2.2.1.2.3|4|e0/0/3 +1.3.6.1.2.1.2.2.1.2.4|4|e0/0/4 +1.3.6.1.2.1.2.2.1.2.5|4|e0/0/5 +1.3.6.1.2.1.2.2.1.2.6|4|e0/0/6 +1.3.6.1.2.1.2.2.1.2.7|4|e0/0/7 +1.3.6.1.2.1.2.2.1.2.8|4|e0/0/8 +1.3.6.1.2.1.2.2.1.2.9|4|e0/0/9 +1.3.6.1.2.1.2.2.1.2.10|4|e0/0/10 +1.3.6.1.2.1.2.2.1.2.11|4|e0/0/11 +1.3.6.1.2.1.2.2.1.2.12|4|e0/0/12 +1.3.6.1.2.1.2.2.1.2.13|4|e0/0/13 +1.3.6.1.2.1.2.2.1.2.14|4|e0/0/14 +1.3.6.1.2.1.2.2.1.2.15|4|e0/0/15 +1.3.6.1.2.1.2.2.1.2.16|4|e0/0/16 +1.3.6.1.2.1.2.2.1.2.17|4|e0/0/17 +1.3.6.1.2.1.2.2.1.2.18|4|e0/0/18 +1.3.6.1.2.1.2.2.1.2.19|4|e0/0/19 +1.3.6.1.2.1.2.2.1.2.20|4|e0/0/20 +1.3.6.1.2.1.2.2.1.2.21|4|e0/0/21 +1.3.6.1.2.1.2.2.1.2.22|4|e0/0/22 +1.3.6.1.2.1.2.2.1.2.23|4|e0/0/23 +1.3.6.1.2.1.2.2.1.2.24|4|e0/0/24 +1.3.6.1.2.1.2.2.1.2.25|4|e0/1/1 +1.3.6.1.2.1.2.2.1.2.26|4|e0/1/2 +1.3.6.1.2.1.2.2.1.2.27|4|e0/1/3 +1.3.6.1.2.1.2.2.1.2.28|4|e0/1/4 +1.3.6.1.2.1.2.2.1.2.17825793|4|system +1.3.6.1.2.1.2.2.1.3.1|2|117 +1.3.6.1.2.1.2.2.1.3.2|2|117 +1.3.6.1.2.1.2.2.1.3.3|2|117 +1.3.6.1.2.1.2.2.1.3.4|2|117 +1.3.6.1.2.1.2.2.1.3.5|2|117 +1.3.6.1.2.1.2.2.1.3.6|2|117 +1.3.6.1.2.1.2.2.1.3.7|2|117 +1.3.6.1.2.1.2.2.1.3.8|2|117 +1.3.6.1.2.1.2.2.1.3.9|2|117 +1.3.6.1.2.1.2.2.1.3.10|2|117 +1.3.6.1.2.1.2.2.1.3.11|2|117 +1.3.6.1.2.1.2.2.1.3.12|2|117 +1.3.6.1.2.1.2.2.1.3.13|2|117 +1.3.6.1.2.1.2.2.1.3.14|2|117 +1.3.6.1.2.1.2.2.1.3.15|2|117 +1.3.6.1.2.1.2.2.1.3.16|2|117 +1.3.6.1.2.1.2.2.1.3.17|2|117 +1.3.6.1.2.1.2.2.1.3.18|2|117 +1.3.6.1.2.1.2.2.1.3.19|2|117 +1.3.6.1.2.1.2.2.1.3.20|2|117 +1.3.6.1.2.1.2.2.1.3.21|2|117 +1.3.6.1.2.1.2.2.1.3.22|2|117 +1.3.6.1.2.1.2.2.1.3.23|2|117 +1.3.6.1.2.1.2.2.1.3.24|2|117 +1.3.6.1.2.1.2.2.1.3.25|2|117 +1.3.6.1.2.1.2.2.1.3.26|2|117 +1.3.6.1.2.1.2.2.1.3.27|2|117 +1.3.6.1.2.1.2.2.1.3.28|2|117 +1.3.6.1.2.1.2.2.1.3.17825793|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|1500 +1.3.6.1.2.1.2.2.1.4.22|2|1500 +1.3.6.1.2.1.2.2.1.4.23|2|1500 +1.3.6.1.2.1.2.2.1.4.24|2|1500 +1.3.6.1.2.1.2.2.1.4.25|2|1500 +1.3.6.1.2.1.2.2.1.4.26|2|1500 +1.3.6.1.2.1.2.2.1.4.27|2|1500 +1.3.6.1.2.1.2.2.1.4.28|2|1500 +1.3.6.1.2.1.2.2.1.4.17825793|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.2|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.3|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.4|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.5|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.6|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.7|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.8|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.9|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.10|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.11|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.12|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.13|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.14|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.15|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.16|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.17|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.18|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.19|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.20|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.21|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.22|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.23|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.24|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.25|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.26|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.27|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.28|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.6.17825793|4|0:a:5a:94:17:e3 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|2 +1.3.6.1.2.1.2.2.1.7.9|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|2 +1.3.6.1.2.1.2.2.1.7.12|2|2 +1.3.6.1.2.1.2.2.1.7.13|2|2 +1.3.6.1.2.1.2.2.1.7.14|2|2 +1.3.6.1.2.1.2.2.1.7.15|2|2 +1.3.6.1.2.1.2.2.1.7.16|2|2 +1.3.6.1.2.1.2.2.1.7.17|2|2 +1.3.6.1.2.1.2.2.1.7.18|2|2 +1.3.6.1.2.1.2.2.1.7.19|2|2 +1.3.6.1.2.1.2.2.1.7.20|2|2 +1.3.6.1.2.1.2.2.1.7.21|2|2 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.23|2|2 +1.3.6.1.2.1.2.2.1.7.24|2|2 +1.3.6.1.2.1.2.2.1.7.25|2|2 +1.3.6.1.2.1.2.2.1.7.26|2|2 +1.3.6.1.2.1.2.2.1.7.27|2|2 +1.3.6.1.2.1.2.2.1.7.28|2|2 +1.3.6.1.2.1.2.2.1.7.17825793|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|1 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|1 +1.3.6.1.2.1.2.2.1.8.23|2|2 +1.3.6.1.2.1.2.2.1.8.24|2|2 +1.3.6.1.2.1.2.2.1.8.25|2|2 +1.3.6.1.2.1.2.2.1.8.26|2|2 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|2 +1.3.6.1.2.1.2.2.1.8.17825793|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|645817669 +1.3.6.1.2.1.2.2.1.9.2|67|85618 +1.3.6.1.2.1.2.2.1.9.3|67|554543484 +1.3.6.1.2.1.2.2.1.9.4|67|674275465 +1.3.6.1.2.1.2.2.1.9.5|67|559683064 +1.3.6.1.2.1.2.2.1.9.6|67|555171665 +1.3.6.1.2.1.2.2.1.9.7|67|562896316 +1.3.6.1.2.1.2.2.1.9.8|67|0 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.14|67|0 +1.3.6.1.2.1.2.2.1.9.15|67|0 +1.3.6.1.2.1.2.2.1.9.16|67|0 +1.3.6.1.2.1.2.2.1.9.17|67|0 +1.3.6.1.2.1.2.2.1.9.18|67|0 +1.3.6.1.2.1.2.2.1.9.19|67|0 +1.3.6.1.2.1.2.2.1.9.20|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|0 +1.3.6.1.2.1.2.2.1.9.22|67|629014322 +1.3.6.1.2.1.2.2.1.9.23|67|629010005 +1.3.6.1.2.1.2.2.1.9.24|67|629010257 +1.3.6.1.2.1.2.2.1.9.25|67|0 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.9.27|67|0 +1.3.6.1.2.1.2.2.1.9.28|67|0 +1.3.6.1.2.1.2.2.1.9.17825793|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.25|65|0 +1.3.6.1.2.1.2.2.1.13.26|65|0 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|0 +1.3.6.1.2.1.2.2.1.13.17825793|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.17825793|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|0 +1.3.6.1.2.1.2.2.1.19.17825793|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.17825793|65|0 +1.3.6.1.2.1.4.3.0|65|161421812 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|143822298 +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|1480685 +1.3.6.1.2.1.4.10.0|65|1321698 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|2 +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.192.168.1.5|2|17825793 +1.3.6.1.2.1.4.20.1.3.192.168.1.5|64|255.255.255.240 +1.3.6.1.2.1.5.1.0|65|0 +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|0 +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|0 +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|0 +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|0 +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|0 +1.3.6.1.2.1.6.11.0|65|0 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|0 +1.3.6.1.2.1.7.1.0|65|0 +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|0 +1.3.6.1.2.1.10.7.2.1.1.1|2|1 +1.3.6.1.2.1.10.7.2.1.1.2|2|2 +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.4|2|4 +1.3.6.1.2.1.10.7.2.1.1.5|2|5 +1.3.6.1.2.1.10.7.2.1.1.6|2|6 +1.3.6.1.2.1.10.7.2.1.1.7|2|7 +1.3.6.1.2.1.10.7.2.1.1.8|2|8 +1.3.6.1.2.1.10.7.2.1.1.9|2|9 +1.3.6.1.2.1.10.7.2.1.1.10|2|10 +1.3.6.1.2.1.10.7.2.1.1.11|2|11 +1.3.6.1.2.1.10.7.2.1.1.12|2|12 +1.3.6.1.2.1.10.7.2.1.1.13|2|13 +1.3.6.1.2.1.10.7.2.1.1.14|2|14 +1.3.6.1.2.1.10.7.2.1.1.15|2|15 +1.3.6.1.2.1.10.7.2.1.1.16|2|16 +1.3.6.1.2.1.10.7.2.1.1.17|2|17 +1.3.6.1.2.1.10.7.2.1.1.18|2|18 +1.3.6.1.2.1.10.7.2.1.1.19|2|19 +1.3.6.1.2.1.10.7.2.1.1.20|2|20 +1.3.6.1.2.1.10.7.2.1.1.21|2|21 +1.3.6.1.2.1.10.7.2.1.1.22|2|22 +1.3.6.1.2.1.10.7.2.1.1.23|2|23 +1.3.6.1.2.1.10.7.2.1.1.24|2|24 +1.3.6.1.2.1.10.7.2.1.1.25|2|25 +1.3.6.1.2.1.10.7.2.1.1.26|2|26 +1.3.6.1.2.1.10.7.2.1.1.27|2|27 +1.3.6.1.2.1.10.7.2.1.1.28|2|28 +1.3.6.1.2.1.10.7.2.1.1.17825793|2|17825793 +1.3.6.1.2.1.10.7.2.1.1.34603009|2|34603009 +1.3.6.1.2.1.10.7.2.1.1.34603010|2|34603010 +1.3.6.1.2.1.10.7.2.1.1.34603011|2|34603011 +1.3.6.1.2.1.10.7.2.1.1.34603012|2|34603012 +1.3.6.1.2.1.10.7.2.1.1.34603013|2|34603013 +1.3.6.1.2.1.10.7.2.1.1.34603014|2|34603014 +1.3.6.1.2.1.10.7.2.1.1.34603015|2|34603015 +1.3.6.1.2.1.10.7.2.1.1.34603016|2|34603016 +1.3.6.1.2.1.10.7.2.1.1.34603017|2|34603017 +1.3.6.1.2.1.10.7.2.1.1.34603018|2|34603018 +1.3.6.1.2.1.10.7.2.1.1.34603019|2|34603019 +1.3.6.1.2.1.10.7.2.1.1.34603020|2|34603020 +1.3.6.1.2.1.10.7.2.1.1.34603021|2|34603021 +1.3.6.1.2.1.10.7.2.1.1.34603022|2|34603022 +1.3.6.1.2.1.10.7.2.1.1.34603023|2|34603023 +1.3.6.1.2.1.10.7.2.1.1.34603024|2|34603024 +1.3.6.1.2.1.10.7.2.1.1.34603025|2|34603025 +1.3.6.1.2.1.10.7.2.1.1.34603026|2|34603026 +1.3.6.1.2.1.10.7.2.1.1.34603027|2|34603027 +1.3.6.1.2.1.10.7.2.1.1.34603028|2|34603028 +1.3.6.1.2.1.10.7.2.1.1.34603029|2|34603029 +1.3.6.1.2.1.10.7.2.1.1.34603030|2|34603030 +1.3.6.1.2.1.10.7.2.1.1.34603031|2|34603031 +1.3.6.1.2.1.10.7.2.1.1.34603032|2|34603032 +1.3.6.1.2.1.10.7.2.1.1.34603033|2|34603033 +1.3.6.1.2.1.10.7.2.1.1.34603034|2|34603034 +1.3.6.1.2.1.10.7.2.1.1.34603035|2|34603035 +1.3.6.1.2.1.10.7.2.1.1.34603036|2|34603036 +1.3.6.1.2.1.10.7.2.1.1.51380225|2|51380225 +1.3.6.1.2.1.10.7.2.1.1.51380226|2|51380226 +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|1 +1.3.6.1.2.1.10.7.2.1.19.9|2|1 +1.3.6.1.2.1.10.7.2.1.19.10|2|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.10.7.2.1.19.12|2|1 +1.3.6.1.2.1.10.7.2.1.19.13|2|1 +1.3.6.1.2.1.10.7.2.1.19.14|2|1 +1.3.6.1.2.1.10.7.2.1.19.15|2|1 +1.3.6.1.2.1.10.7.2.1.19.16|2|1 +1.3.6.1.2.1.10.7.2.1.19.17|2|1 +1.3.6.1.2.1.10.7.2.1.19.18|2|1 +1.3.6.1.2.1.10.7.2.1.19.19|2|1 +1.3.6.1.2.1.10.7.2.1.19.20|2|1 +1.3.6.1.2.1.10.7.2.1.19.21|2|1 +1.3.6.1.2.1.10.7.2.1.19.22|2|3 +1.3.6.1.2.1.10.7.2.1.19.23|2|1 +1.3.6.1.2.1.10.7.2.1.19.24|2|1 +1.3.6.1.2.1.10.7.2.1.19.25|2|1 +1.3.6.1.2.1.10.7.2.1.19.26|2|1 +1.3.6.1.2.1.10.7.2.1.19.27|2|1 +1.3.6.1.2.1.10.7.2.1.19.28|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825793|2|1 +1.3.6.1.2.1.11.1.0|65|1351434 +1.3.6.1.2.1.11.2.0|65|1351433 +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|42958752 +1.3.6.1.2.1.11.14.0|65|3 +1.3.6.1.2.1.11.15.0|65|443662 +1.3.6.1.2.1.11.16.0|65|30822 +1.3.6.1.2.1.11.17.0|65|3 +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|1351436 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.17.1.1.0|4x|000A5A9417E3 +1.3.6.1.2.1.17.1.4.1.2.1|2|1 +1.3.6.1.2.1.17.1.4.1.2.2|2|2 +1.3.6.1.2.1.17.1.4.1.2.3|2|3 +1.3.6.1.2.1.17.1.4.1.2.4|2|4 +1.3.6.1.2.1.17.1.4.1.2.5|2|5 +1.3.6.1.2.1.17.1.4.1.2.6|2|6 +1.3.6.1.2.1.17.1.4.1.2.7|2|7 +1.3.6.1.2.1.17.1.4.1.2.8|2|8 +1.3.6.1.2.1.17.1.4.1.2.9|2|9 +1.3.6.1.2.1.17.1.4.1.2.10|2|10 +1.3.6.1.2.1.17.1.4.1.2.11|2|11 +1.3.6.1.2.1.17.1.4.1.2.12|2|12 +1.3.6.1.2.1.17.1.4.1.2.13|2|13 +1.3.6.1.2.1.17.1.4.1.2.14|2|14 +1.3.6.1.2.1.17.1.4.1.2.15|2|15 +1.3.6.1.2.1.17.1.4.1.2.16|2|16 +1.3.6.1.2.1.17.1.4.1.2.17|2|17 +1.3.6.1.2.1.17.1.4.1.2.18|2|18 +1.3.6.1.2.1.17.1.4.1.2.19|2|19 +1.3.6.1.2.1.17.1.4.1.2.20|2|20 +1.3.6.1.2.1.17.1.4.1.2.21|2|21 +1.3.6.1.2.1.17.1.4.1.2.22|2|22 +1.3.6.1.2.1.17.1.4.1.2.23|2|23 +1.3.6.1.2.1.17.1.4.1.2.24|2|24 +1.3.6.1.2.1.17.1.4.1.2.25|2|25 +1.3.6.1.2.1.17.1.4.1.2.26|2|26 +1.3.6.1.2.1.17.1.4.1.2.27|2|27 +1.3.6.1.2.1.17.1.4.1.2.28|2|28 +1.3.6.1.2.1.17.2.1.0|2|3 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.3.0|67|0 +1.3.6.1.2.1.17.2.4.0|65|0 +1.3.6.1.2.1.17.2.5.0|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.6.0|2|0 +1.3.6.1.2.1.17.2.7.0|2|0 +1.3.6.1.2.1.17.2.8.0|2|0 +1.3.6.1.2.1.17.2.9.0|2|0 +1.3.6.1.2.1.17.2.10.0|2|100 +1.3.6.1.2.1.17.2.11.0|2|0 +1.3.6.1.2.1.17.2.12.0|2|2000 +1.3.6.1.2.1.17.2.13.0|2|200 +1.3.6.1.2.1.17.2.14.0|2|1500 +1.3.6.1.2.1.17.2.15.1.1.1|2|1 +1.3.6.1.2.1.17.2.15.1.1.2|2|2 +1.3.6.1.2.1.17.2.15.1.1.3|2|3 +1.3.6.1.2.1.17.2.15.1.1.4|2|4 +1.3.6.1.2.1.17.2.15.1.1.5|2|5 +1.3.6.1.2.1.17.2.15.1.1.6|2|6 +1.3.6.1.2.1.17.2.15.1.1.7|2|7 +1.3.6.1.2.1.17.2.15.1.1.8|2|8 +1.3.6.1.2.1.17.2.15.1.1.9|2|9 +1.3.6.1.2.1.17.2.15.1.1.10|2|10 +1.3.6.1.2.1.17.2.15.1.1.11|2|11 +1.3.6.1.2.1.17.2.15.1.1.12|2|12 +1.3.6.1.2.1.17.2.15.1.1.13|2|13 +1.3.6.1.2.1.17.2.15.1.1.14|2|14 +1.3.6.1.2.1.17.2.15.1.1.15|2|15 +1.3.6.1.2.1.17.2.15.1.1.16|2|16 +1.3.6.1.2.1.17.2.15.1.1.17|2|17 +1.3.6.1.2.1.17.2.15.1.1.18|2|18 +1.3.6.1.2.1.17.2.15.1.1.19|2|19 +1.3.6.1.2.1.17.2.15.1.1.20|2|20 +1.3.6.1.2.1.17.2.15.1.1.21|2|21 +1.3.6.1.2.1.17.2.15.1.1.22|2|22 +1.3.6.1.2.1.17.2.15.1.1.23|2|23 +1.3.6.1.2.1.17.2.15.1.1.24|2|24 +1.3.6.1.2.1.17.2.15.1.1.25|2|25 +1.3.6.1.2.1.17.2.15.1.1.26|2|26 +1.3.6.1.2.1.17.2.15.1.1.27|2|27 +1.3.6.1.2.1.17.2.15.1.1.28|2|28 +1.3.6.1.2.1.17.2.15.1.2.1|2|128 +1.3.6.1.2.1.17.2.15.1.2.2|2|128 +1.3.6.1.2.1.17.2.15.1.2.3|2|128 +1.3.6.1.2.1.17.2.15.1.2.4|2|128 +1.3.6.1.2.1.17.2.15.1.2.5|2|128 +1.3.6.1.2.1.17.2.15.1.2.6|2|128 +1.3.6.1.2.1.17.2.15.1.2.7|2|128 +1.3.6.1.2.1.17.2.15.1.2.8|2|128 +1.3.6.1.2.1.17.2.15.1.2.9|2|128 +1.3.6.1.2.1.17.2.15.1.2.10|2|128 +1.3.6.1.2.1.17.2.15.1.2.11|2|128 +1.3.6.1.2.1.17.2.15.1.2.12|2|128 +1.3.6.1.2.1.17.2.15.1.2.13|2|128 +1.3.6.1.2.1.17.2.15.1.2.14|2|128 +1.3.6.1.2.1.17.2.15.1.2.15|2|128 +1.3.6.1.2.1.17.2.15.1.2.16|2|128 +1.3.6.1.2.1.17.2.15.1.2.17|2|128 +1.3.6.1.2.1.17.2.15.1.2.18|2|128 +1.3.6.1.2.1.17.2.15.1.2.19|2|128 +1.3.6.1.2.1.17.2.15.1.2.20|2|128 +1.3.6.1.2.1.17.2.15.1.2.21|2|128 +1.3.6.1.2.1.17.2.15.1.2.22|2|128 +1.3.6.1.2.1.17.2.15.1.2.23|2|128 +1.3.6.1.2.1.17.2.15.1.2.24|2|128 +1.3.6.1.2.1.17.2.15.1.2.25|2|128 +1.3.6.1.2.1.17.2.15.1.2.26|2|128 +1.3.6.1.2.1.17.2.15.1.2.27|2|128 +1.3.6.1.2.1.17.2.15.1.2.28|2|128 +1.3.6.1.2.1.17.2.15.1.3.1|2|5 +1.3.6.1.2.1.17.2.15.1.3.2|2|5 +1.3.6.1.2.1.17.2.15.1.3.3|2|5 +1.3.6.1.2.1.17.2.15.1.3.4|2|5 +1.3.6.1.2.1.17.2.15.1.3.5|2|5 +1.3.6.1.2.1.17.2.15.1.3.6|2|5 +1.3.6.1.2.1.17.2.15.1.3.7|2|5 +1.3.6.1.2.1.17.2.15.1.3.8|2|1 +1.3.6.1.2.1.17.2.15.1.3.9|2|1 +1.3.6.1.2.1.17.2.15.1.3.10|2|1 +1.3.6.1.2.1.17.2.15.1.3.11|2|1 +1.3.6.1.2.1.17.2.15.1.3.12|2|1 +1.3.6.1.2.1.17.2.15.1.3.13|2|1 +1.3.6.1.2.1.17.2.15.1.3.14|2|1 +1.3.6.1.2.1.17.2.15.1.3.15|2|1 +1.3.6.1.2.1.17.2.15.1.3.16|2|1 +1.3.6.1.2.1.17.2.15.1.3.17|2|1 +1.3.6.1.2.1.17.2.15.1.3.18|2|1 +1.3.6.1.2.1.17.2.15.1.3.19|2|1 +1.3.6.1.2.1.17.2.15.1.3.20|2|1 +1.3.6.1.2.1.17.2.15.1.3.21|2|1 +1.3.6.1.2.1.17.2.15.1.3.22|2|5 +1.3.6.1.2.1.17.2.15.1.3.23|2|1 +1.3.6.1.2.1.17.2.15.1.3.24|2|1 +1.3.6.1.2.1.17.2.15.1.3.25|2|1 +1.3.6.1.2.1.17.2.15.1.3.26|2|1 +1.3.6.1.2.1.17.2.15.1.3.27|2|1 +1.3.6.1.2.1.17.2.15.1.3.28|2|1 +1.3.6.1.2.1.17.2.15.1.4.1|2|1 +1.3.6.1.2.1.17.2.15.1.4.2|2|1 +1.3.6.1.2.1.17.2.15.1.4.3|2|1 +1.3.6.1.2.1.17.2.15.1.4.4|2|1 +1.3.6.1.2.1.17.2.15.1.4.5|2|1 +1.3.6.1.2.1.17.2.15.1.4.6|2|1 +1.3.6.1.2.1.17.2.15.1.4.7|2|1 +1.3.6.1.2.1.17.2.15.1.4.8|2|1 +1.3.6.1.2.1.17.2.15.1.4.9|2|1 +1.3.6.1.2.1.17.2.15.1.4.10|2|1 +1.3.6.1.2.1.17.2.15.1.4.11|2|1 +1.3.6.1.2.1.17.2.15.1.4.12|2|1 +1.3.6.1.2.1.17.2.15.1.4.13|2|1 +1.3.6.1.2.1.17.2.15.1.4.14|2|1 +1.3.6.1.2.1.17.2.15.1.4.15|2|1 +1.3.6.1.2.1.17.2.15.1.4.16|2|1 +1.3.6.1.2.1.17.2.15.1.4.17|2|1 +1.3.6.1.2.1.17.2.15.1.4.18|2|1 +1.3.6.1.2.1.17.2.15.1.4.19|2|1 +1.3.6.1.2.1.17.2.15.1.4.20|2|1 +1.3.6.1.2.1.17.2.15.1.4.21|2|1 +1.3.6.1.2.1.17.2.15.1.4.22|2|1 +1.3.6.1.2.1.17.2.15.1.4.23|2|1 +1.3.6.1.2.1.17.2.15.1.4.24|2|1 +1.3.6.1.2.1.17.2.15.1.4.25|2|1 +1.3.6.1.2.1.17.2.15.1.4.26|2|1 +1.3.6.1.2.1.17.2.15.1.4.27|2|1 +1.3.6.1.2.1.17.2.15.1.4.28|2|1 +1.3.6.1.2.1.17.2.15.1.5.1|2|20000 +1.3.6.1.2.1.17.2.15.1.5.2|2|20000 +1.3.6.1.2.1.17.2.15.1.5.3|2|20000 +1.3.6.1.2.1.17.2.15.1.5.4|2|20000 +1.3.6.1.2.1.17.2.15.1.5.5|2|20000 +1.3.6.1.2.1.17.2.15.1.5.6|2|200000 +1.3.6.1.2.1.17.2.15.1.5.7|2|200000 +1.3.6.1.2.1.17.2.15.1.5.8|2|200000 +1.3.6.1.2.1.17.2.15.1.5.9|2|200000 +1.3.6.1.2.1.17.2.15.1.5.10|2|200000 +1.3.6.1.2.1.17.2.15.1.5.11|2|200000 +1.3.6.1.2.1.17.2.15.1.5.12|2|200000 +1.3.6.1.2.1.17.2.15.1.5.13|2|200000 +1.3.6.1.2.1.17.2.15.1.5.14|2|200000 +1.3.6.1.2.1.17.2.15.1.5.15|2|200000 +1.3.6.1.2.1.17.2.15.1.5.16|2|200000 +1.3.6.1.2.1.17.2.15.1.5.17|2|200000 +1.3.6.1.2.1.17.2.15.1.5.18|2|200000 +1.3.6.1.2.1.17.2.15.1.5.19|2|200000 +1.3.6.1.2.1.17.2.15.1.5.20|2|200000 +1.3.6.1.2.1.17.2.15.1.5.21|2|200000 +1.3.6.1.2.1.17.2.15.1.5.22|2|20000 +1.3.6.1.2.1.17.2.15.1.5.23|2|200000 +1.3.6.1.2.1.17.2.15.1.5.24|2|200000 +1.3.6.1.2.1.17.2.15.1.5.25|2|200000 +1.3.6.1.2.1.17.2.15.1.5.26|2|200000 +1.3.6.1.2.1.17.2.15.1.5.27|2|200000 +1.3.6.1.2.1.17.2.15.1.5.28|2|200000 +1.3.6.1.2.1.17.2.15.1.6.1|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.2|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.3|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.4|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.5|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.6|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.7|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.8|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.9|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.10|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.11|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.12|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.13|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.14|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.15|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.16|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.17|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.18|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.19|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.20|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.21|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.22|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.23|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.24|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.25|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.26|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.27|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.6.28|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.7.1|2|0 +1.3.6.1.2.1.17.2.15.1.7.2|2|0 +1.3.6.1.2.1.17.2.15.1.7.3|2|0 +1.3.6.1.2.1.17.2.15.1.7.4|2|0 +1.3.6.1.2.1.17.2.15.1.7.5|2|0 +1.3.6.1.2.1.17.2.15.1.7.6|2|0 +1.3.6.1.2.1.17.2.15.1.7.7|2|0 +1.3.6.1.2.1.17.2.15.1.7.8|2|0 +1.3.6.1.2.1.17.2.15.1.7.9|2|0 +1.3.6.1.2.1.17.2.15.1.7.10|2|0 +1.3.6.1.2.1.17.2.15.1.7.11|2|0 +1.3.6.1.2.1.17.2.15.1.7.12|2|0 +1.3.6.1.2.1.17.2.15.1.7.13|2|0 +1.3.6.1.2.1.17.2.15.1.7.14|2|0 +1.3.6.1.2.1.17.2.15.1.7.15|2|0 +1.3.6.1.2.1.17.2.15.1.7.16|2|0 +1.3.6.1.2.1.17.2.15.1.7.17|2|0 +1.3.6.1.2.1.17.2.15.1.7.18|2|0 +1.3.6.1.2.1.17.2.15.1.7.19|2|0 +1.3.6.1.2.1.17.2.15.1.7.20|2|0 +1.3.6.1.2.1.17.2.15.1.7.21|2|0 +1.3.6.1.2.1.17.2.15.1.7.22|2|0 +1.3.6.1.2.1.17.2.15.1.7.23|2|0 +1.3.6.1.2.1.17.2.15.1.7.24|2|0 +1.3.6.1.2.1.17.2.15.1.7.25|2|0 +1.3.6.1.2.1.17.2.15.1.7.26|2|0 +1.3.6.1.2.1.17.2.15.1.7.27|2|0 +1.3.6.1.2.1.17.2.15.1.7.28|2|0 +1.3.6.1.2.1.17.2.15.1.8.1|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.2|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.3|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.4|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.5|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.6|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.7|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.8|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.9|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.10|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.11|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.12|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.13|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.14|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.15|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.16|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.17|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.18|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.19|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.20|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.21|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.22|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.23|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.24|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.25|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.26|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.27|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.8.28|4x|8000000A5A9417E3 +1.3.6.1.2.1.17.2.15.1.9.1|4x|8001 +1.3.6.1.2.1.17.2.15.1.9.2|4x|8002 +1.3.6.1.2.1.17.2.15.1.9.3|4x|8003 +1.3.6.1.2.1.17.2.15.1.9.4|4x|8004 +1.3.6.1.2.1.17.2.15.1.9.5|4x|8005 +1.3.6.1.2.1.17.2.15.1.9.6|4x|8006 +1.3.6.1.2.1.17.2.15.1.9.7|4x|8007 +1.3.6.1.2.1.17.2.15.1.9.8|4x|8008 +1.3.6.1.2.1.17.2.15.1.9.9|4x|8009 +1.3.6.1.2.1.17.2.15.1.9.10|4x|800A +1.3.6.1.2.1.17.2.15.1.9.11|4x|800B +1.3.6.1.2.1.17.2.15.1.9.12|4x|800C +1.3.6.1.2.1.17.2.15.1.9.13|4x|800D +1.3.6.1.2.1.17.2.15.1.9.14|4x|800E +1.3.6.1.2.1.17.2.15.1.9.15|4x|800F +1.3.6.1.2.1.17.2.15.1.9.16|4x|8010 +1.3.6.1.2.1.17.2.15.1.9.17|4x|8011 +1.3.6.1.2.1.17.2.15.1.9.18|4x|8012 +1.3.6.1.2.1.17.2.15.1.9.19|4x|8013 +1.3.6.1.2.1.17.2.15.1.9.20|4x|8014 +1.3.6.1.2.1.17.2.15.1.9.21|4x|8015 +1.3.6.1.2.1.17.2.15.1.9.22|4x|8016 +1.3.6.1.2.1.17.2.15.1.9.23|4x|8017 +1.3.6.1.2.1.17.2.15.1.9.24|4x|8018 +1.3.6.1.2.1.17.2.15.1.9.25|4x|8019 +1.3.6.1.2.1.17.2.15.1.9.26|4x|801A +1.3.6.1.2.1.17.2.15.1.9.27|4x|801B +1.3.6.1.2.1.17.2.15.1.9.28|4x|801C +1.3.6.1.2.1.17.2.15.1.10.1|65|0 +1.3.6.1.2.1.17.2.15.1.10.2|65|0 +1.3.6.1.2.1.17.2.15.1.10.3|65|0 +1.3.6.1.2.1.17.2.15.1.10.4|65|0 +1.3.6.1.2.1.17.2.15.1.10.5|65|0 +1.3.6.1.2.1.17.2.15.1.10.6|65|0 +1.3.6.1.2.1.17.2.15.1.10.7|65|0 +1.3.6.1.2.1.17.2.15.1.10.8|65|0 +1.3.6.1.2.1.17.2.15.1.10.9|65|0 +1.3.6.1.2.1.17.2.15.1.10.10|65|0 +1.3.6.1.2.1.17.2.15.1.10.11|65|0 +1.3.6.1.2.1.17.2.15.1.10.12|65|0 +1.3.6.1.2.1.17.2.15.1.10.13|65|0 +1.3.6.1.2.1.17.2.15.1.10.14|65|0 +1.3.6.1.2.1.17.2.15.1.10.15|65|0 +1.3.6.1.2.1.17.2.15.1.10.16|65|0 +1.3.6.1.2.1.17.2.15.1.10.17|65|0 +1.3.6.1.2.1.17.2.15.1.10.18|65|0 +1.3.6.1.2.1.17.2.15.1.10.19|65|0 +1.3.6.1.2.1.17.2.15.1.10.20|65|0 +1.3.6.1.2.1.17.2.15.1.10.21|65|0 +1.3.6.1.2.1.17.2.15.1.10.22|65|0 +1.3.6.1.2.1.17.2.15.1.10.23|65|0 +1.3.6.1.2.1.17.2.15.1.10.24|65|0 +1.3.6.1.2.1.17.2.15.1.10.25|65|0 +1.3.6.1.2.1.17.2.15.1.10.26|65|0 +1.3.6.1.2.1.17.2.15.1.10.27|65|0 +1.3.6.1.2.1.17.2.15.1.10.28|65|0 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.0.10.90.148.23.82|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.0.10.90.148.23.227|2|29 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.0.34.25.101.82.142|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.212.190.217.173.199.137|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.240.77.162.12.35.65|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.252.236.218.68.16.168|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.100.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.110.0.34.25.101.82.142|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.110.54.50.56.97.55.101|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.110.58.100.100.100.50.53|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.110.98.51.50.100.101.51|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.110.252.236.218.68.16.168|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.110.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.120.54.100.98.50.54.101|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.120.102.53.98.48.57.102|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.120.102.56.97.55.57.53|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.120.252.236.218.68.16.168|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.120.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.130.240.77.162.12.35.65|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.130.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.140.252.236.218.68.16.168|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.140.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.141.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.141.252.236.218.123.59.72|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.142.252.236.218.68.16.168|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.142.252.236.218.123.59.72|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.150.166.119.253.90.214.174|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.999.162.108.79.12.111.170|2|22 +1.3.6.1.2.1.17.7.1.2.2.1.2.999.252.236.218.68.16.168|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.999.252.236.218.68.33.20|2|22 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.1|4x|41FFFFF0 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.100|4x|BE000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.110|4x|BE000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.120|4x|BE000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.130|4x|BE000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.140|4x|80000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.141|4x|40000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.142|4x|C0000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.150|4x|3E000700 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.999|4x|BE000700 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.1|4x|41FFFFF0 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.100|4x|BE000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.110|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.120|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.130|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.140|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.141|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.142|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.150|4x|00000000 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.999|4x|00000000 +1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|Default +1.3.6.1.2.1.17.7.1.4.3.1.1.100|4|Infra +1.3.6.1.2.1.17.7.1.4.3.1.1.110|4|Public +1.3.6.1.2.1.17.7.1.4.3.1.1.120|4|Private +1.3.6.1.2.1.17.7.1.4.3.1.1.130|4|3rd Party +1.3.6.1.2.1.17.7.1.4.3.1.1.140|4|Router crosslink +1.3.6.1.2.1.17.7.1.4.3.1.1.141|4|OOB-Router 1 +1.3.6.1.2.1.17.7.1.4.3.1.1.142|4|OOB-Router 2 +1.3.6.1.2.1.17.7.1.4.3.1.1.150|4|Lab +1.3.6.1.2.1.17.7.1.4.3.1.1.999|4|Route Exchange +1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|100 +1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|100 +1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|100 +1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|100 +1.3.6.1.2.1.17.7.1.4.5.1.1.6|66|100 +1.3.6.1.2.1.17.7.1.4.5.1.1.7|66|100 +1.3.6.1.2.1.17.7.1.4.5.1.1.8|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.9|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.10|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.11|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.12|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.13|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.14|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.15|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.16|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.17|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.18|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.19|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.20|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.21|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.22|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.23|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.24|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.25|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.26|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.27|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.28|66|1 +1.3.6.1.2.1.31.1.1.1.1.1|4|e0/0/1 +1.3.6.1.2.1.31.1.1.1.1.2|4|e0/0/2 +1.3.6.1.2.1.31.1.1.1.1.3|4|e0/0/3 +1.3.6.1.2.1.31.1.1.1.1.4|4|e0/0/4 +1.3.6.1.2.1.31.1.1.1.1.5|4|e0/0/5 +1.3.6.1.2.1.31.1.1.1.1.6|4|e0/0/6 +1.3.6.1.2.1.31.1.1.1.1.7|4|e0/0/7 +1.3.6.1.2.1.31.1.1.1.1.8|4|e0/0/8 +1.3.6.1.2.1.31.1.1.1.1.9|4|e0/0/9 +1.3.6.1.2.1.31.1.1.1.1.10|4|e0/0/10 +1.3.6.1.2.1.31.1.1.1.1.11|4|e0/0/11 +1.3.6.1.2.1.31.1.1.1.1.12|4|e0/0/12 +1.3.6.1.2.1.31.1.1.1.1.13|4|e0/0/13 +1.3.6.1.2.1.31.1.1.1.1.14|4|e0/0/14 +1.3.6.1.2.1.31.1.1.1.1.15|4|e0/0/15 +1.3.6.1.2.1.31.1.1.1.1.16|4|e0/0/16 +1.3.6.1.2.1.31.1.1.1.1.17|4|e0/0/17 +1.3.6.1.2.1.31.1.1.1.1.18|4|e0/0/18 +1.3.6.1.2.1.31.1.1.1.1.19|4|e0/0/19 +1.3.6.1.2.1.31.1.1.1.1.20|4|e0/0/20 +1.3.6.1.2.1.31.1.1.1.1.21|4|e0/0/21 +1.3.6.1.2.1.31.1.1.1.1.22|4|e0/0/22 +1.3.6.1.2.1.31.1.1.1.1.23|4|e0/0/23 +1.3.6.1.2.1.31.1.1.1.1.24|4|e0/0/24 +1.3.6.1.2.1.31.1.1.1.1.25|4|e0/1/1 +1.3.6.1.2.1.31.1.1.1.1.26|4|e0/1/2 +1.3.6.1.2.1.31.1.1.1.1.27|4|e0/1/3 +1.3.6.1.2.1.31.1.1.1.1.28|4|e0/1/4 +1.3.6.1.2.1.31.1.1.1.1.17825793|4|system +1.3.6.1.2.1.31.1.1.1.2.1|65|3523433 +1.3.6.1.2.1.31.1.1.1.2.2|65|11 +1.3.6.1.2.1.31.1.1.1.2.3|65|267190 +1.3.6.1.2.1.31.1.1.1.2.4|65|5 +1.3.6.1.2.1.31.1.1.1.2.5|65|144163 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|6945648 +1.3.6.1.2.1.31.1.1.1.2.23|65|24602841 +1.3.6.1.2.1.31.1.1.1.2.24|65|19234866 +1.3.6.1.2.1.31.1.1.1.2.25|65|0 +1.3.6.1.2.1.31.1.1.1.2.26|65|0 +1.3.6.1.2.1.31.1.1.1.2.27|65|0 +1.3.6.1.2.1.31.1.1.1.2.28|65|0 +1.3.6.1.2.1.31.1.1.1.2.17825793|65|48691309 +1.3.6.1.2.1.31.1.1.1.3.1|65|6545 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|3 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|9 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|85540 +1.3.6.1.2.1.31.1.1.1.3.23|65|188091 +1.3.6.1.2.1.31.1.1.1.3.24|65|35262 +1.3.6.1.2.1.31.1.1.1.3.25|65|0 +1.3.6.1.2.1.31.1.1.1.3.26|65|0 +1.3.6.1.2.1.31.1.1.1.3.27|65|0 +1.3.6.1.2.1.31.1.1.1.3.28|65|0 +1.3.6.1.2.1.31.1.1.1.3.17825793|65|314892 +1.3.6.1.2.1.31.1.1.1.4.1|65|45569134 +1.3.6.1.2.1.31.1.1.1.4.2|65|4071663 +1.3.6.1.2.1.31.1.1.1.4.3|65|24672218 +1.3.6.1.2.1.31.1.1.1.4.4|65|17371001 +1.3.6.1.2.1.31.1.1.1.4.5|65|24980782 +1.3.6.1.2.1.31.1.1.1.4.6|65|15292262 +1.3.6.1.2.1.31.1.1.1.4.7|65|15292030 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|249309 +1.3.6.1.2.1.31.1.1.1.4.23|65|11559542 +1.3.6.1.2.1.31.1.1.1.4.24|65|8030936 +1.3.6.1.2.1.31.1.1.1.4.25|65|0 +1.3.6.1.2.1.31.1.1.1.4.26|65|0 +1.3.6.1.2.1.31.1.1.1.4.27|65|0 +1.3.6.1.2.1.31.1.1.1.4.28|65|0 +1.3.6.1.2.1.31.1.1.1.4.17825793|65|157176689 +1.3.6.1.2.1.31.1.1.1.5.1|65|340667 +1.3.6.1.2.1.31.1.1.1.5.2|65|1934 +1.3.6.1.2.1.31.1.1.1.5.3|65|342828 +1.3.6.1.2.1.31.1.1.1.5.4|65|126123 +1.3.6.1.2.1.31.1.1.1.5.5|65|346756 +1.3.6.1.2.1.31.1.1.1.5.6|65|123690 +1.3.6.1.2.1.31.1.1.1.5.7|65|123671 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.14|65|0 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|0 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.5.19|65|0 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|3524 +1.3.6.1.2.1.31.1.1.1.5.23|65|41507 +1.3.6.1.2.1.31.1.1.1.5.24|65|35200 +1.3.6.1.2.1.31.1.1.1.5.25|65|0 +1.3.6.1.2.1.31.1.1.1.5.26|65|0 +1.3.6.1.2.1.31.1.1.1.5.27|65|0 +1.3.6.1.2.1.31.1.1.1.5.28|65|0 +1.3.6.1.2.1.31.1.1.1.5.17825793|65|1483312 +1.3.6.1.2.1.31.1.1.1.6.1|70|254456896864 +1.3.6.1.2.1.31.1.1.1.6.2|70|924 +1.3.6.1.2.1.31.1.1.1.6.3|70|928685427 +1.3.6.1.2.1.31.1.1.1.6.4|70|472 +1.3.6.1.2.1.31.1.1.1.6.5|70|2075897901 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|0 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|3480956456 +1.3.6.1.2.1.31.1.1.1.6.23|70|6486055157 +1.3.6.1.2.1.31.1.1.1.6.24|70|22431316400 +1.3.6.1.2.1.31.1.1.1.6.25|70|0 +1.3.6.1.2.1.31.1.1.1.6.26|70|0 +1.3.6.1.2.1.31.1.1.1.6.27|70|0 +1.3.6.1.2.1.31.1.1.1.6.28|70|0 +1.3.6.1.2.1.31.1.1.1.6.17825793|70|287934176561 +1.3.6.1.2.1.31.1.1.1.7.1|70|298396690 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|2759101 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|5561933 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|0 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|559505 +1.3.6.1.2.1.31.1.1.1.7.23|70|14218491 +1.3.6.1.2.1.31.1.1.1.7.24|70|17897476 +1.3.6.1.2.1.31.1.1.1.7.25|70|0 +1.3.6.1.2.1.31.1.1.1.7.26|70|0 +1.3.6.1.2.1.31.1.1.1.7.27|70|0 +1.3.6.1.2.1.31.1.1.1.7.28|70|0 +1.3.6.1.2.1.31.1.1.1.7.17825793|70|334356062 +1.3.6.1.2.1.31.1.1.1.8.1|70|3523433 +1.3.6.1.2.1.31.1.1.1.8.2|70|11 +1.3.6.1.2.1.31.1.1.1.8.3|70|267190 +1.3.6.1.2.1.31.1.1.1.8.4|70|5 +1.3.6.1.2.1.31.1.1.1.8.5|70|144163 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|6945648 +1.3.6.1.2.1.31.1.1.1.8.23|70|24602841 +1.3.6.1.2.1.31.1.1.1.8.24|70|19234866 +1.3.6.1.2.1.31.1.1.1.8.25|70|0 +1.3.6.1.2.1.31.1.1.1.8.26|70|0 +1.3.6.1.2.1.31.1.1.1.8.27|70|0 +1.3.6.1.2.1.31.1.1.1.8.28|70|0 +1.3.6.1.2.1.31.1.1.1.8.17825793|70|48691309 +1.3.6.1.2.1.31.1.1.1.9.1|70|6545 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|3 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|9 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|85540 +1.3.6.1.2.1.31.1.1.1.9.23|70|188091 +1.3.6.1.2.1.31.1.1.1.9.24|70|35262 +1.3.6.1.2.1.31.1.1.1.9.25|70|0 +1.3.6.1.2.1.31.1.1.1.9.26|70|0 +1.3.6.1.2.1.31.1.1.1.9.27|70|0 +1.3.6.1.2.1.31.1.1.1.9.28|70|0 +1.3.6.1.2.1.31.1.1.1.9.17825793|70|314892 +1.3.6.1.2.1.31.1.1.1.10.1|70|13745802322 +1.3.6.1.2.1.31.1.1.1.10.2|70|468819528 +1.3.6.1.2.1.31.1.1.1.10.3|70|19229375680 +1.3.6.1.2.1.31.1.1.1.10.4|70|9348353585 +1.3.6.1.2.1.31.1.1.1.10.5|70|34559312534 +1.3.6.1.2.1.31.1.1.1.10.6|70|8890411867 +1.3.6.1.2.1.31.1.1.1.10.7|70|8890409363 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|0 +1.3.6.1.2.1.31.1.1.1.10.14|70|0 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|0 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.19|70|0 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|0 +1.3.6.1.2.1.31.1.1.1.10.22|70|29527119580 +1.3.6.1.2.1.31.1.1.1.10.23|70|213599135649 +1.3.6.1.2.1.31.1.1.1.10.24|70|18675108217 +1.3.6.1.2.1.31.1.1.1.10.25|70|0 +1.3.6.1.2.1.31.1.1.1.10.26|70|0 +1.3.6.1.2.1.31.1.1.1.10.27|70|0 +1.3.6.1.2.1.31.1.1.1.10.28|70|0 +1.3.6.1.2.1.31.1.1.1.10.17825793|70|354185054545 +1.3.6.1.2.1.31.1.1.1.11.1|70|11413382 +1.3.6.1.2.1.31.1.1.1.11.2|70|23408 +1.3.6.1.2.1.31.1.1.1.11.3|70|10115398 +1.3.6.1.2.1.31.1.1.1.11.4|70|1403387 +1.3.6.1.2.1.31.1.1.1.11.5|70|21051107 +1.3.6.1.2.1.31.1.1.1.11.6|70|1290862 +1.3.6.1.2.1.31.1.1.1.11.7|70|1290861 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|0 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|35356970 +1.3.6.1.2.1.31.1.1.1.11.23|70|184372897 +1.3.6.1.2.1.31.1.1.1.11.24|70|93410496 +1.3.6.1.2.1.31.1.1.1.11.25|70|0 +1.3.6.1.2.1.31.1.1.1.11.26|70|0 +1.3.6.1.2.1.31.1.1.1.11.27|70|0 +1.3.6.1.2.1.31.1.1.1.11.28|70|0 +1.3.6.1.2.1.31.1.1.1.11.17825793|70|355269610 +1.3.6.1.2.1.31.1.1.1.12.1|70|45569134 +1.3.6.1.2.1.31.1.1.1.12.2|70|4071663 +1.3.6.1.2.1.31.1.1.1.12.3|70|24672218 +1.3.6.1.2.1.31.1.1.1.12.4|70|17371001 +1.3.6.1.2.1.31.1.1.1.12.5|70|24980782 +1.3.6.1.2.1.31.1.1.1.12.6|70|15292262 +1.3.6.1.2.1.31.1.1.1.12.7|70|15292030 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|249309 +1.3.6.1.2.1.31.1.1.1.12.23|70|11559542 +1.3.6.1.2.1.31.1.1.1.12.24|70|8030936 +1.3.6.1.2.1.31.1.1.1.12.25|70|0 +1.3.6.1.2.1.31.1.1.1.12.26|70|0 +1.3.6.1.2.1.31.1.1.1.12.27|70|0 +1.3.6.1.2.1.31.1.1.1.12.28|70|0 +1.3.6.1.2.1.31.1.1.1.12.17825793|70|157176689 +1.3.6.1.2.1.31.1.1.1.13.1|70|340667 +1.3.6.1.2.1.31.1.1.1.13.2|70|1934 +1.3.6.1.2.1.31.1.1.1.13.3|70|342828 +1.3.6.1.2.1.31.1.1.1.13.4|70|126123 +1.3.6.1.2.1.31.1.1.1.13.5|70|346756 +1.3.6.1.2.1.31.1.1.1.13.6|70|123690 +1.3.6.1.2.1.31.1.1.1.13.7|70|123671 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.14|70|0 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|0 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.13.19|70|0 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|3524 +1.3.6.1.2.1.31.1.1.1.13.23|70|41507 +1.3.6.1.2.1.31.1.1.1.13.24|70|35200 +1.3.6.1.2.1.31.1.1.1.13.25|70|0 +1.3.6.1.2.1.31.1.1.1.13.26|70|0 +1.3.6.1.2.1.31.1.1.1.13.27|70|0 +1.3.6.1.2.1.31.1.1.1.13.28|70|0 +1.3.6.1.2.1.31.1.1.1.13.17825793|70|1483312 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|1 +1.3.6.1.2.1.31.1.1.1.14.5|2|1 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.25|2|1 +1.3.6.1.2.1.31.1.1.1.14.26|2|1 +1.3.6.1.2.1.31.1.1.1.14.27|2|1 +1.3.6.1.2.1.31.1.1.1.14.28|2|1 +1.3.6.1.2.1.31.1.1.1.14.17825793|2|2 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|0 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +1.3.6.1.2.1.31.1.1.1.15.13|66|0 +1.3.6.1.2.1.31.1.1.1.15.14|66|0 +1.3.6.1.2.1.31.1.1.1.15.15|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.17|66|0 +1.3.6.1.2.1.31.1.1.1.15.18|66|0 +1.3.6.1.2.1.31.1.1.1.15.19|66|0 +1.3.6.1.2.1.31.1.1.1.15.20|66|0 +1.3.6.1.2.1.31.1.1.1.15.21|66|0 +1.3.6.1.2.1.31.1.1.1.15.22|66|0 +1.3.6.1.2.1.31.1.1.1.15.23|66|0 +1.3.6.1.2.1.31.1.1.1.15.24|66|0 +1.3.6.1.2.1.31.1.1.1.15.25|66|0 +1.3.6.1.2.1.31.1.1.1.15.26|66|0 +1.3.6.1.2.1.31.1.1.1.15.27|66|0 +1.3.6.1.2.1.31.1.1.1.15.28|66|0 +1.3.6.1.2.1.31.1.1.1.15.17825793|66|0 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.25|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.27|2|2 +1.3.6.1.2.1.31.1.1.1.16.28|2|2 +1.3.6.1.2.1.31.1.1.1.16.17825793|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|1 +1.3.6.1.2.1.31.1.1.1.17.2|2|1 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.17.6|2|1 +1.3.6.1.2.1.31.1.1.1.17.7|2|1 +1.3.6.1.2.1.31.1.1.1.17.8|2|1 +1.3.6.1.2.1.31.1.1.1.17.9|2|1 +1.3.6.1.2.1.31.1.1.1.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.12|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.17.14|2|1 +1.3.6.1.2.1.31.1.1.1.17.15|2|1 +1.3.6.1.2.1.31.1.1.1.17.16|2|1 +1.3.6.1.2.1.31.1.1.1.17.17|2|1 +1.3.6.1.2.1.31.1.1.1.17.18|2|1 +1.3.6.1.2.1.31.1.1.1.17.19|2|1 +1.3.6.1.2.1.31.1.1.1.17.20|2|1 +1.3.6.1.2.1.31.1.1.1.17.21|2|1 +1.3.6.1.2.1.31.1.1.1.17.22|2|1 +1.3.6.1.2.1.31.1.1.1.17.23|2|1 +1.3.6.1.2.1.31.1.1.1.17.24|2|1 +1.3.6.1.2.1.31.1.1.1.17.25|2|1 +1.3.6.1.2.1.31.1.1.1.17.26|2|1 +1.3.6.1.2.1.31.1.1.1.17.27|2|1 +1.3.6.1.2.1.31.1.1.1.17.28|2|1 +1.3.6.1.2.1.31.1.1.1.17.17825793|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4|Router 2 +1.3.6.1.2.1.31.1.1.1.18.2|4|OOB Router +1.3.6.1.2.1.31.1.1.1.18.3|4|Server 1 +1.3.6.1.2.1.31.1.1.1.18.4|4|Server 2 +1.3.6.1.2.1.31.1.1.1.18.5|4|Server 3 +1.3.6.1.2.1.31.1.1.1.18.6|4|Server 4 +1.3.6.1.2.1.31.1.1.1.18.7|4|Server 5 +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.2.1.31.1.1.1.18.18|4| +1.3.6.1.2.1.31.1.1.1.18.19|4| +1.3.6.1.2.1.31.1.1.1.18.20|4| +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4|Switch Crosslink +1.3.6.1.2.1.31.1.1.1.18.23|4|Spare +1.3.6.1.2.1.31.1.1.1.18.24|4|Spare +1.3.6.1.2.1.31.1.1.1.18.25|4| +1.3.6.1.2.1.31.1.1.1.18.26|4| +1.3.6.1.2.1.31.1.1.1.18.27|4| +1.3.6.1.2.1.31.1.1.1.18.28|4| +1.3.6.1.2.1.31.1.1.1.18.17825793|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.20|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.23|67|0 +1.3.6.1.2.1.31.1.1.1.19.24|67|0 +1.3.6.1.2.1.31.1.1.1.19.25|67|0 +1.3.6.1.2.1.31.1.1.1.19.26|67|0 +1.3.6.1.2.1.31.1.1.1.19.27|67|0 +1.3.6.1.2.1.31.1.1.1.19.28|67|0 +1.3.6.1.2.1.31.1.1.1.19.17825793|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.2|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.3|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.5|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.7|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.8|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.9|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.10|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.11|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.13|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.14|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.15|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.17|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.18|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.19|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.20|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.21|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.22|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.23|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.24|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.25|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.26|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.27|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.28|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.17825793|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.2.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.3.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.5.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.6.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.8.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.9.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.13.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.14.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.15.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.16.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.17.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.18.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.19.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.20.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.21.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.22.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.23.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.24.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.25.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.26.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.27.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.28.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.29.0|2|1 +1.3.6.1.4.1.13464.1.2.1.1.2.2.0|4|S2800-24T4F V100R001B01D001P003SP9 +1.3.6.1.4.1.13464.1.2.1.1.2.5.0|4|MIPS-4KEc, 500MHz +1.3.6.1.4.1.13464.1.2.1.1.2.11.0|2|77 +1.3.6.1.4.1.13464.1.2.1.1.2.12.0|2|128 +1.3.6.1.4.1.13464.1.2.1.1.2.13.0|2|54 +1.3.6.1.4.1.13464.1.2.1.1.2.15.0|4|S2800-24T4F Switch Product +1.3.6.1.4.1.13464.1.2.1.1.2.19.0|4|T180321D200 diff --git a/tests/snmpsim/fs-gbn_3800.snmprec b/tests/snmpsim/fs-gbn_3800.snmprec new file mode 100644 index 0000000000..0797777719 --- /dev/null +++ b/tests/snmpsim/fs-gbn_3800.snmprec @@ -0,0 +1,4594 @@ +1.3.6.1.2.1.1.1.0|4|FS Switch +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.13464.1.3.38.3 +1.3.6.1.2.1.1.3.0|67|156575934 +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.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.1.3|2|3 +1.3.6.1.2.1.2.2.1.1.4|2|4 +1.3.6.1.2.1.2.2.1.1.5|2|5 +1.3.6.1.2.1.2.2.1.1.6|2|6 +1.3.6.1.2.1.2.2.1.1.7|2|7 +1.3.6.1.2.1.2.2.1.1.8|2|8 +1.3.6.1.2.1.2.2.1.1.9|2|9 +1.3.6.1.2.1.2.2.1.1.10|2|10 +1.3.6.1.2.1.2.2.1.1.11|2|11 +1.3.6.1.2.1.2.2.1.1.12|2|12 +1.3.6.1.2.1.2.2.1.1.13|2|13 +1.3.6.1.2.1.2.2.1.1.14|2|14 +1.3.6.1.2.1.2.2.1.1.15|2|15 +1.3.6.1.2.1.2.2.1.1.16|2|16 +1.3.6.1.2.1.2.2.1.1.17|2|17 +1.3.6.1.2.1.2.2.1.1.18|2|18 +1.3.6.1.2.1.2.2.1.1.19|2|19 +1.3.6.1.2.1.2.2.1.1.20|2|20 +1.3.6.1.2.1.2.2.1.1.21|2|21 +1.3.6.1.2.1.2.2.1.1.22|2|22 +1.3.6.1.2.1.2.2.1.1.23|2|23 +1.3.6.1.2.1.2.2.1.1.24|2|24 +1.3.6.1.2.1.2.2.1.1.25|2|25 +1.3.6.1.2.1.2.2.1.1.26|2|26 +1.3.6.1.2.1.2.2.1.1.27|2|27 +1.3.6.1.2.1.2.2.1.1.28|2|28 +1.3.6.1.2.1.2.2.1.1.29|2|29 +1.3.6.1.2.1.2.2.1.1.30|2|30 +1.3.6.1.2.1.2.2.1.1.31|2|31 +1.3.6.1.2.1.2.2.1.1.32|2|32 +1.3.6.1.2.1.2.2.1.1.33|2|33 +1.3.6.1.2.1.2.2.1.1.34|2|34 +1.3.6.1.2.1.2.2.1.1.35|2|35 +1.3.6.1.2.1.2.2.1.1.36|2|36 +1.3.6.1.2.1.2.2.1.1.37|2|37 +1.3.6.1.2.1.2.2.1.1.38|2|38 +1.3.6.1.2.1.2.2.1.1.39|2|39 +1.3.6.1.2.1.2.2.1.1.40|2|40 +1.3.6.1.2.1.2.2.1.1.41|2|41 +1.3.6.1.2.1.2.2.1.1.42|2|42 +1.3.6.1.2.1.2.2.1.1.43|2|43 +1.3.6.1.2.1.2.2.1.1.44|2|44 +1.3.6.1.2.1.2.2.1.1.45|2|45 +1.3.6.1.2.1.2.2.1.1.46|2|46 +1.3.6.1.2.1.2.2.1.1.47|2|47 +1.3.6.1.2.1.2.2.1.1.48|2|48 +1.3.6.1.2.1.2.2.1.1.49|2|49 +1.3.6.1.2.1.2.2.1.1.50|2|50 +1.3.6.1.2.1.2.2.1.1.51|2|51 +1.3.6.1.2.1.2.2.1.1.52|2|52 +1.3.6.1.2.1.2.2.1.1.53|2|53 +1.3.6.1.2.1.2.2.1.1.54|2|54 +1.3.6.1.2.1.2.2.1.1.55|2|55 +1.3.6.1.2.1.2.2.1.1.56|2|56 +1.3.6.1.2.1.2.2.1.1.57|2|57 +1.3.6.1.2.1.2.2.1.1.58|2|58 +1.3.6.1.2.1.2.2.1.1.59|2|59 +1.3.6.1.2.1.2.2.1.1.60|2|60 +1.3.6.1.2.1.2.2.1.1.61|2|61 +1.3.6.1.2.1.2.2.1.1.62|2|62 +1.3.6.1.2.1.2.2.1.1.63|2|63 +1.3.6.1.2.1.2.2.1.1.64|2|64 +1.3.6.1.2.1.2.2.1.1.65|2|65 +1.3.6.1.2.1.2.2.1.1.66|2|66 +1.3.6.1.2.1.2.2.1.1.67|2|67 +1.3.6.1.2.1.2.2.1.1.68|2|68 +1.3.6.1.2.1.2.2.1.1.69|2|69 +1.3.6.1.2.1.2.2.1.1.70|2|70 +1.3.6.1.2.1.2.2.1.1.71|2|71 +1.3.6.1.2.1.2.2.1.1.72|2|72 +1.3.6.1.2.1.2.2.1.1.73|2|73 +1.3.6.1.2.1.2.2.1.1.74|2|74 +1.3.6.1.2.1.2.2.1.1.75|2|75 +1.3.6.1.2.1.2.2.1.1.76|2|76 +1.3.6.1.2.1.2.2.1.1.77|2|77 +1.3.6.1.2.1.2.2.1.1.78|2|78 +1.3.6.1.2.1.2.2.1.1.79|2|79 +1.3.6.1.2.1.2.2.1.1.80|2|80 +1.3.6.1.2.1.2.2.1.1.81|2|81 +1.3.6.1.2.1.2.2.1.1.82|2|82 +1.3.6.1.2.1.2.2.1.1.83|2|83 +1.3.6.1.2.1.2.2.1.1.84|2|84 +1.3.6.1.2.1.2.2.1.1.85|2|85 +1.3.6.1.2.1.2.2.1.1.86|2|86 +1.3.6.1.2.1.2.2.1.1.87|2|87 +1.3.6.1.2.1.2.2.1.1.88|2|88 +1.3.6.1.2.1.2.2.1.1.89|2|89 +1.3.6.1.2.1.2.2.1.1.90|2|90 +1.3.6.1.2.1.2.2.1.1.91|2|91 +1.3.6.1.2.1.2.2.1.1.92|2|92 +1.3.6.1.2.1.2.2.1.1.93|2|93 +1.3.6.1.2.1.2.2.1.1.94|2|94 +1.3.6.1.2.1.2.2.1.1.95|2|95 +1.3.6.1.2.1.2.2.1.1.96|2|96 +1.3.6.1.2.1.2.2.1.1.97|2|97 +1.3.6.1.2.1.2.2.1.1.98|2|98 +1.3.6.1.2.1.2.2.1.1.99|2|99 +1.3.6.1.2.1.2.2.1.1.100|2|100 +1.3.6.1.2.1.2.2.1.1.101|2|101 +1.3.6.1.2.1.2.2.1.1.102|2|102 +1.3.6.1.2.1.2.2.1.1.103|2|103 +1.3.6.1.2.1.2.2.1.1.104|2|104 +1.3.6.1.2.1.2.2.1.1.105|2|105 +1.3.6.1.2.1.2.2.1.1.106|2|106 +1.3.6.1.2.1.2.2.1.1.107|2|107 +1.3.6.1.2.1.2.2.1.1.108|2|108 +1.3.6.1.2.1.2.2.1.1.109|2|109 +1.3.6.1.2.1.2.2.1.1.110|2|110 +1.3.6.1.2.1.2.2.1.1.111|2|111 +1.3.6.1.2.1.2.2.1.1.112|2|112 +1.3.6.1.2.1.2.2.1.1.17825793|2|17825793 +1.3.6.1.2.1.2.2.1.2.1|4|e0/0/1 +1.3.6.1.2.1.2.2.1.2.2|4|e0/0/2 +1.3.6.1.2.1.2.2.1.2.3|4|e0/0/3 +1.3.6.1.2.1.2.2.1.2.4|4|e0/0/4 +1.3.6.1.2.1.2.2.1.2.5|4|e0/0/5 +1.3.6.1.2.1.2.2.1.2.6|4|e0/0/6 +1.3.6.1.2.1.2.2.1.2.7|4|e0/0/7 +1.3.6.1.2.1.2.2.1.2.8|4|e0/0/8 +1.3.6.1.2.1.2.2.1.2.9|4|e0/0/9 +1.3.6.1.2.1.2.2.1.2.10|4|e0/0/10 +1.3.6.1.2.1.2.2.1.2.11|4|e0/0/11 +1.3.6.1.2.1.2.2.1.2.12|4|e0/0/12 +1.3.6.1.2.1.2.2.1.2.13|4|e0/0/13 +1.3.6.1.2.1.2.2.1.2.14|4|e0/0/14 +1.3.6.1.2.1.2.2.1.2.15|4|e0/0/15 +1.3.6.1.2.1.2.2.1.2.16|4|e0/0/16 +1.3.6.1.2.1.2.2.1.2.17|4|e0/0/17 +1.3.6.1.2.1.2.2.1.2.18|4|e0/0/18 +1.3.6.1.2.1.2.2.1.2.19|4|e0/0/19 +1.3.6.1.2.1.2.2.1.2.20|4|e0/0/20 +1.3.6.1.2.1.2.2.1.2.21|4|e0/0/21 +1.3.6.1.2.1.2.2.1.2.22|4|e0/0/22 +1.3.6.1.2.1.2.2.1.2.23|4|e0/0/23 +1.3.6.1.2.1.2.2.1.2.24|4|e0/0/24 +1.3.6.1.2.1.2.2.1.2.25|4| +1.3.6.1.2.1.2.2.1.2.26|4| +1.3.6.1.2.1.2.2.1.2.27|4|e0/1/3 +1.3.6.1.2.1.2.2.1.2.28|4|e0/1/4 +1.3.6.1.2.1.2.2.1.2.29|4|e1/0/1 +1.3.6.1.2.1.2.2.1.2.30|4|e1/0/2 +1.3.6.1.2.1.2.2.1.2.31|4|e1/0/3 +1.3.6.1.2.1.2.2.1.2.32|4|e1/0/4 +1.3.6.1.2.1.2.2.1.2.33|4|e1/0/5 +1.3.6.1.2.1.2.2.1.2.34|4|e1/0/6 +1.3.6.1.2.1.2.2.1.2.35|4|e1/0/7 +1.3.6.1.2.1.2.2.1.2.36|4|e1/0/8 +1.3.6.1.2.1.2.2.1.2.37|4|e1/0/9 +1.3.6.1.2.1.2.2.1.2.38|4|e1/0/10 +1.3.6.1.2.1.2.2.1.2.39|4|e1/0/11 +1.3.6.1.2.1.2.2.1.2.40|4|e1/0/12 +1.3.6.1.2.1.2.2.1.2.41|4|e1/0/13 +1.3.6.1.2.1.2.2.1.2.42|4|e1/0/14 +1.3.6.1.2.1.2.2.1.2.43|4|e1/0/15 +1.3.6.1.2.1.2.2.1.2.44|4|e1/0/16 +1.3.6.1.2.1.2.2.1.2.45|4|e1/0/17 +1.3.6.1.2.1.2.2.1.2.46|4|e1/0/18 +1.3.6.1.2.1.2.2.1.2.47|4|e1/0/19 +1.3.6.1.2.1.2.2.1.2.48|4|e1/0/20 +1.3.6.1.2.1.2.2.1.2.49|4|e1/0/21 +1.3.6.1.2.1.2.2.1.2.50|4|e1/0/22 +1.3.6.1.2.1.2.2.1.2.51|4|e1/0/23 +1.3.6.1.2.1.2.2.1.2.52|4|e1/0/24 +1.3.6.1.2.1.2.2.1.2.53|4|e1/1/1 +1.3.6.1.2.1.2.2.1.2.54|4|e1/1/2 +1.3.6.1.2.1.2.2.1.2.55|4|e1/1/3 +1.3.6.1.2.1.2.2.1.2.56|4|e1/1/4 +1.3.6.1.2.1.2.2.1.2.57|4|e2/0/1 +1.3.6.1.2.1.2.2.1.2.58|4|e2/0/2 +1.3.6.1.2.1.2.2.1.2.59|4|e2/0/3 +1.3.6.1.2.1.2.2.1.2.60|4|e2/0/4 +1.3.6.1.2.1.2.2.1.2.61|4|e2/0/5 +1.3.6.1.2.1.2.2.1.2.62|4|e2/0/6 +1.3.6.1.2.1.2.2.1.2.63|4|e2/0/7 +1.3.6.1.2.1.2.2.1.2.64|4|e2/0/8 +1.3.6.1.2.1.2.2.1.2.65|4|e2/0/9 +1.3.6.1.2.1.2.2.1.2.66|4|e2/0/10 +1.3.6.1.2.1.2.2.1.2.67|4|e2/0/11 +1.3.6.1.2.1.2.2.1.2.68|4|e2/0/12 +1.3.6.1.2.1.2.2.1.2.69|4|e2/0/13 +1.3.6.1.2.1.2.2.1.2.70|4|e2/0/14 +1.3.6.1.2.1.2.2.1.2.71|4|e2/0/15 +1.3.6.1.2.1.2.2.1.2.72|4|e2/0/16 +1.3.6.1.2.1.2.2.1.2.73|4|e2/0/17 +1.3.6.1.2.1.2.2.1.2.74|4|e2/0/18 +1.3.6.1.2.1.2.2.1.2.75|4|e2/0/19 +1.3.6.1.2.1.2.2.1.2.76|4|e2/0/20 +1.3.6.1.2.1.2.2.1.2.77|4|e2/0/21 +1.3.6.1.2.1.2.2.1.2.78|4|e2/0/22 +1.3.6.1.2.1.2.2.1.2.79|4|e2/0/23 +1.3.6.1.2.1.2.2.1.2.80|4|e2/0/24 +1.3.6.1.2.1.2.2.1.2.81|4|e2/1/1 +1.3.6.1.2.1.2.2.1.2.82|4|e2/1/2 +1.3.6.1.2.1.2.2.1.2.83|4|e2/1/3 +1.3.6.1.2.1.2.2.1.2.84|4|e2/1/4 +1.3.6.1.2.1.2.2.1.2.85|4|e3/0/1 +1.3.6.1.2.1.2.2.1.2.86|4|e3/0/2 +1.3.6.1.2.1.2.2.1.2.87|4|e3/0/3 +1.3.6.1.2.1.2.2.1.2.88|4|e3/0/4 +1.3.6.1.2.1.2.2.1.2.89|4|e3/0/5 +1.3.6.1.2.1.2.2.1.2.90|4|e3/0/6 +1.3.6.1.2.1.2.2.1.2.91|4|e3/0/7 +1.3.6.1.2.1.2.2.1.2.92|4|e3/0/8 +1.3.6.1.2.1.2.2.1.2.93|4|e3/0/9 +1.3.6.1.2.1.2.2.1.2.94|4|e3/0/10 +1.3.6.1.2.1.2.2.1.2.95|4|e3/0/11 +1.3.6.1.2.1.2.2.1.2.96|4|e3/0/12 +1.3.6.1.2.1.2.2.1.2.97|4|e3/0/13 +1.3.6.1.2.1.2.2.1.2.98|4|e3/0/14 +1.3.6.1.2.1.2.2.1.2.99|4|e3/0/15 +1.3.6.1.2.1.2.2.1.2.100|4|e3/0/16 +1.3.6.1.2.1.2.2.1.2.101|4|e3/0/17 +1.3.6.1.2.1.2.2.1.2.102|4|e3/0/18 +1.3.6.1.2.1.2.2.1.2.103|4|e3/0/19 +1.3.6.1.2.1.2.2.1.2.104|4|e3/0/20 +1.3.6.1.2.1.2.2.1.2.105|4|e3/0/21 +1.3.6.1.2.1.2.2.1.2.106|4|e3/0/22 +1.3.6.1.2.1.2.2.1.2.107|4|e3/0/23 +1.3.6.1.2.1.2.2.1.2.108|4|e3/0/24 +1.3.6.1.2.1.2.2.1.2.109|4|e3/1/1 +1.3.6.1.2.1.2.2.1.2.110|4|e3/1/2 +1.3.6.1.2.1.2.2.1.2.111|4|e3/1/3 +1.3.6.1.2.1.2.2.1.2.112|4|e3/1/4 +1.3.6.1.2.1.2.2.1.2.17825793|4|VLAN-IF82 +1.3.6.1.2.1.2.2.1.3.1|2|117 +1.3.6.1.2.1.2.2.1.3.2|2|117 +1.3.6.1.2.1.2.2.1.3.3|2|117 +1.3.6.1.2.1.2.2.1.3.4|2|117 +1.3.6.1.2.1.2.2.1.3.5|2|117 +1.3.6.1.2.1.2.2.1.3.6|2|117 +1.3.6.1.2.1.2.2.1.3.7|2|117 +1.3.6.1.2.1.2.2.1.3.8|2|117 +1.3.6.1.2.1.2.2.1.3.9|2|117 +1.3.6.1.2.1.2.2.1.3.10|2|117 +1.3.6.1.2.1.2.2.1.3.11|2|117 +1.3.6.1.2.1.2.2.1.3.12|2|117 +1.3.6.1.2.1.2.2.1.3.13|2|117 +1.3.6.1.2.1.2.2.1.3.14|2|117 +1.3.6.1.2.1.2.2.1.3.15|2|117 +1.3.6.1.2.1.2.2.1.3.16|2|117 +1.3.6.1.2.1.2.2.1.3.17|2|117 +1.3.6.1.2.1.2.2.1.3.18|2|117 +1.3.6.1.2.1.2.2.1.3.19|2|117 +1.3.6.1.2.1.2.2.1.3.20|2|117 +1.3.6.1.2.1.2.2.1.3.21|2|117 +1.3.6.1.2.1.2.2.1.3.22|2|117 +1.3.6.1.2.1.2.2.1.3.23|2|117 +1.3.6.1.2.1.2.2.1.3.24|2|117 +1.3.6.1.2.1.2.2.1.3.25|2|62 +1.3.6.1.2.1.2.2.1.3.26|2|62 +1.3.6.1.2.1.2.2.1.3.27|2|1 +1.3.6.1.2.1.2.2.1.3.28|2|1 +1.3.6.1.2.1.2.2.1.3.29|2|62 +1.3.6.1.2.1.2.2.1.3.30|2|62 +1.3.6.1.2.1.2.2.1.3.31|2|62 +1.3.6.1.2.1.2.2.1.3.32|2|62 +1.3.6.1.2.1.2.2.1.3.33|2|62 +1.3.6.1.2.1.2.2.1.3.34|2|62 +1.3.6.1.2.1.2.2.1.3.35|2|62 +1.3.6.1.2.1.2.2.1.3.36|2|62 +1.3.6.1.2.1.2.2.1.3.37|2|62 +1.3.6.1.2.1.2.2.1.3.38|2|62 +1.3.6.1.2.1.2.2.1.3.39|2|62 +1.3.6.1.2.1.2.2.1.3.40|2|62 +1.3.6.1.2.1.2.2.1.3.41|2|62 +1.3.6.1.2.1.2.2.1.3.42|2|62 +1.3.6.1.2.1.2.2.1.3.43|2|62 +1.3.6.1.2.1.2.2.1.3.44|2|62 +1.3.6.1.2.1.2.2.1.3.45|2|62 +1.3.6.1.2.1.2.2.1.3.46|2|62 +1.3.6.1.2.1.2.2.1.3.47|2|62 +1.3.6.1.2.1.2.2.1.3.48|2|62 +1.3.6.1.2.1.2.2.1.3.49|2|62 +1.3.6.1.2.1.2.2.1.3.50|2|62 +1.3.6.1.2.1.2.2.1.3.51|2|62 +1.3.6.1.2.1.2.2.1.3.52|2|62 +1.3.6.1.2.1.2.2.1.3.53|2|62 +1.3.6.1.2.1.2.2.1.3.54|2|62 +1.3.6.1.2.1.2.2.1.3.55|2|62 +1.3.6.1.2.1.2.2.1.3.56|2|62 +1.3.6.1.2.1.2.2.1.3.57|2|62 +1.3.6.1.2.1.2.2.1.3.58|2|62 +1.3.6.1.2.1.2.2.1.3.59|2|62 +1.3.6.1.2.1.2.2.1.3.60|2|62 +1.3.6.1.2.1.2.2.1.3.61|2|62 +1.3.6.1.2.1.2.2.1.3.62|2|62 +1.3.6.1.2.1.2.2.1.3.63|2|62 +1.3.6.1.2.1.2.2.1.3.64|2|62 +1.3.6.1.2.1.2.2.1.3.65|2|62 +1.3.6.1.2.1.2.2.1.3.66|2|62 +1.3.6.1.2.1.2.2.1.3.67|2|62 +1.3.6.1.2.1.2.2.1.3.68|2|62 +1.3.6.1.2.1.2.2.1.3.69|2|62 +1.3.6.1.2.1.2.2.1.3.70|2|62 +1.3.6.1.2.1.2.2.1.3.71|2|62 +1.3.6.1.2.1.2.2.1.3.72|2|62 +1.3.6.1.2.1.2.2.1.3.73|2|62 +1.3.6.1.2.1.2.2.1.3.74|2|62 +1.3.6.1.2.1.2.2.1.3.75|2|62 +1.3.6.1.2.1.2.2.1.3.76|2|62 +1.3.6.1.2.1.2.2.1.3.77|2|62 +1.3.6.1.2.1.2.2.1.3.78|2|62 +1.3.6.1.2.1.2.2.1.3.79|2|62 +1.3.6.1.2.1.2.2.1.3.80|2|62 +1.3.6.1.2.1.2.2.1.3.81|2|62 +1.3.6.1.2.1.2.2.1.3.82|2|62 +1.3.6.1.2.1.2.2.1.3.83|2|62 +1.3.6.1.2.1.2.2.1.3.84|2|62 +1.3.6.1.2.1.2.2.1.3.85|2|62 +1.3.6.1.2.1.2.2.1.3.86|2|62 +1.3.6.1.2.1.2.2.1.3.87|2|62 +1.3.6.1.2.1.2.2.1.3.88|2|62 +1.3.6.1.2.1.2.2.1.3.89|2|62 +1.3.6.1.2.1.2.2.1.3.90|2|62 +1.3.6.1.2.1.2.2.1.3.91|2|62 +1.3.6.1.2.1.2.2.1.3.92|2|62 +1.3.6.1.2.1.2.2.1.3.93|2|62 +1.3.6.1.2.1.2.2.1.3.94|2|62 +1.3.6.1.2.1.2.2.1.3.95|2|62 +1.3.6.1.2.1.2.2.1.3.96|2|62 +1.3.6.1.2.1.2.2.1.3.97|2|62 +1.3.6.1.2.1.2.2.1.3.98|2|62 +1.3.6.1.2.1.2.2.1.3.99|2|62 +1.3.6.1.2.1.2.2.1.3.100|2|62 +1.3.6.1.2.1.2.2.1.3.101|2|62 +1.3.6.1.2.1.2.2.1.3.102|2|62 +1.3.6.1.2.1.2.2.1.3.103|2|62 +1.3.6.1.2.1.2.2.1.3.104|2|62 +1.3.6.1.2.1.2.2.1.3.105|2|62 +1.3.6.1.2.1.2.2.1.3.106|2|62 +1.3.6.1.2.1.2.2.1.3.107|2|62 +1.3.6.1.2.1.2.2.1.3.108|2|62 +1.3.6.1.2.1.2.2.1.3.109|2|62 +1.3.6.1.2.1.2.2.1.3.110|2|62 +1.3.6.1.2.1.2.2.1.3.111|2|62 +1.3.6.1.2.1.2.2.1.3.112|2|62 +1.3.6.1.2.1.2.2.1.3.17825793|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|1500 +1.3.6.1.2.1.2.2.1.4.22|2|1500 +1.3.6.1.2.1.2.2.1.4.23|2|1500 +1.3.6.1.2.1.2.2.1.4.24|2|1500 +1.3.6.1.2.1.2.2.1.4.25|2|1500 +1.3.6.1.2.1.2.2.1.4.26|2|1500 +1.3.6.1.2.1.2.2.1.4.27|2|1500 +1.3.6.1.2.1.2.2.1.4.28|2|1500 +1.3.6.1.2.1.2.2.1.4.29|2|1500 +1.3.6.1.2.1.2.2.1.4.30|2|1500 +1.3.6.1.2.1.2.2.1.4.31|2|1500 +1.3.6.1.2.1.2.2.1.4.32|2|1500 +1.3.6.1.2.1.2.2.1.4.33|2|1500 +1.3.6.1.2.1.2.2.1.4.34|2|1500 +1.3.6.1.2.1.2.2.1.4.35|2|1500 +1.3.6.1.2.1.2.2.1.4.36|2|1500 +1.3.6.1.2.1.2.2.1.4.37|2|1500 +1.3.6.1.2.1.2.2.1.4.38|2|1500 +1.3.6.1.2.1.2.2.1.4.39|2|1500 +1.3.6.1.2.1.2.2.1.4.40|2|1500 +1.3.6.1.2.1.2.2.1.4.41|2|1500 +1.3.6.1.2.1.2.2.1.4.42|2|1500 +1.3.6.1.2.1.2.2.1.4.43|2|1500 +1.3.6.1.2.1.2.2.1.4.44|2|1500 +1.3.6.1.2.1.2.2.1.4.45|2|1500 +1.3.6.1.2.1.2.2.1.4.46|2|1500 +1.3.6.1.2.1.2.2.1.4.47|2|1500 +1.3.6.1.2.1.2.2.1.4.48|2|1500 +1.3.6.1.2.1.2.2.1.4.49|2|1500 +1.3.6.1.2.1.2.2.1.4.50|2|1500 +1.3.6.1.2.1.2.2.1.4.51|2|1500 +1.3.6.1.2.1.2.2.1.4.52|2|1500 +1.3.6.1.2.1.2.2.1.4.53|2|1500 +1.3.6.1.2.1.2.2.1.4.54|2|1500 +1.3.6.1.2.1.2.2.1.4.55|2|1500 +1.3.6.1.2.1.2.2.1.4.56|2|1500 +1.3.6.1.2.1.2.2.1.4.57|2|1500 +1.3.6.1.2.1.2.2.1.4.58|2|1500 +1.3.6.1.2.1.2.2.1.4.59|2|1500 +1.3.6.1.2.1.2.2.1.4.60|2|1500 +1.3.6.1.2.1.2.2.1.4.61|2|1500 +1.3.6.1.2.1.2.2.1.4.62|2|1500 +1.3.6.1.2.1.2.2.1.4.63|2|1500 +1.3.6.1.2.1.2.2.1.4.64|2|1500 +1.3.6.1.2.1.2.2.1.4.65|2|1500 +1.3.6.1.2.1.2.2.1.4.66|2|1500 +1.3.6.1.2.1.2.2.1.4.67|2|1500 +1.3.6.1.2.1.2.2.1.4.68|2|1500 +1.3.6.1.2.1.2.2.1.4.69|2|1500 +1.3.6.1.2.1.2.2.1.4.70|2|1500 +1.3.6.1.2.1.2.2.1.4.71|2|1500 +1.3.6.1.2.1.2.2.1.4.72|2|1500 +1.3.6.1.2.1.2.2.1.4.73|2|1500 +1.3.6.1.2.1.2.2.1.4.74|2|1500 +1.3.6.1.2.1.2.2.1.4.75|2|1500 +1.3.6.1.2.1.2.2.1.4.76|2|1500 +1.3.6.1.2.1.2.2.1.4.77|2|1500 +1.3.6.1.2.1.2.2.1.4.78|2|1500 +1.3.6.1.2.1.2.2.1.4.79|2|1500 +1.3.6.1.2.1.2.2.1.4.80|2|1500 +1.3.6.1.2.1.2.2.1.4.81|2|1500 +1.3.6.1.2.1.2.2.1.4.82|2|1500 +1.3.6.1.2.1.2.2.1.4.83|2|1500 +1.3.6.1.2.1.2.2.1.4.84|2|1500 +1.3.6.1.2.1.2.2.1.4.85|2|1500 +1.3.6.1.2.1.2.2.1.4.86|2|1500 +1.3.6.1.2.1.2.2.1.4.87|2|1500 +1.3.6.1.2.1.2.2.1.4.88|2|1500 +1.3.6.1.2.1.2.2.1.4.89|2|1500 +1.3.6.1.2.1.2.2.1.4.90|2|1500 +1.3.6.1.2.1.2.2.1.4.91|2|1500 +1.3.6.1.2.1.2.2.1.4.92|2|1500 +1.3.6.1.2.1.2.2.1.4.93|2|1500 +1.3.6.1.2.1.2.2.1.4.94|2|1500 +1.3.6.1.2.1.2.2.1.4.95|2|1500 +1.3.6.1.2.1.2.2.1.4.96|2|1500 +1.3.6.1.2.1.2.2.1.4.97|2|1500 +1.3.6.1.2.1.2.2.1.4.98|2|1500 +1.3.6.1.2.1.2.2.1.4.99|2|1500 +1.3.6.1.2.1.2.2.1.4.100|2|1500 +1.3.6.1.2.1.2.2.1.4.101|2|1500 +1.3.6.1.2.1.2.2.1.4.102|2|1500 +1.3.6.1.2.1.2.2.1.4.103|2|1500 +1.3.6.1.2.1.2.2.1.4.104|2|1500 +1.3.6.1.2.1.2.2.1.4.105|2|1500 +1.3.6.1.2.1.2.2.1.4.106|2|1500 +1.3.6.1.2.1.2.2.1.4.107|2|1500 +1.3.6.1.2.1.2.2.1.4.108|2|1500 +1.3.6.1.2.1.2.2.1.4.109|2|1500 +1.3.6.1.2.1.2.2.1.4.110|2|1500 +1.3.6.1.2.1.2.2.1.4.111|2|1500 +1.3.6.1.2.1.2.2.1.4.112|2|1500 +1.3.6.1.2.1.2.2.1.4.17825793|2|1500 +1.3.6.1.2.1.2.2.1.5.1|4|1000000000 +1.3.6.1.2.1.2.2.1.5.2|4|1000000000 +1.3.6.1.2.1.2.2.1.5.3|4|1000000000 +1.3.6.1.2.1.2.2.1.5.4|4|1000000000 +1.3.6.1.2.1.2.2.1.5.5|4|1000000000 +1.3.6.1.2.1.2.2.1.5.6|4|1000000000 +1.3.6.1.2.1.2.2.1.5.7|4|1000000000 +1.3.6.1.2.1.2.2.1.5.8|4|1000000000 +1.3.6.1.2.1.2.2.1.5.9|4|1000000000 +1.3.6.1.2.1.2.2.1.5.10|4|1000000000 +1.3.6.1.2.1.2.2.1.5.11|4|1000000000 +1.3.6.1.2.1.2.2.1.5.12|4|1000000000 +1.3.6.1.2.1.2.2.1.5.13|4|1000000000 +1.3.6.1.2.1.2.2.1.5.14|4|1000000000 +1.3.6.1.2.1.2.2.1.5.15|4|1000000000 +1.3.6.1.2.1.2.2.1.5.16|4|1000000000 +1.3.6.1.2.1.2.2.1.5.17|4|1000000000 +1.3.6.1.2.1.2.2.1.5.18|4|1000000000 +1.3.6.1.2.1.2.2.1.5.19|4|1000000000 +1.3.6.1.2.1.2.2.1.5.20|4|1000000000 +1.3.6.1.2.1.2.2.1.5.21|4|1000000000 +1.3.6.1.2.1.2.2.1.5.22|4|1000000000 +1.3.6.1.2.1.2.2.1.5.23|4|1000000000 +1.3.6.1.2.1.2.2.1.5.24|4|1000000000 +1.3.6.1.2.1.2.2.1.5.25|4|1000000000 +1.3.6.1.2.1.2.2.1.5.26|4|1000000000 +1.3.6.1.2.1.2.2.1.5.27|4|1000000000 +1.3.6.1.2.1.2.2.1.5.28|4|1000000000 +1.3.6.1.2.1.2.2.1.5.29|4|1000000000 +1.3.6.1.2.1.2.2.1.5.30|4|1000000000 +1.3.6.1.2.1.2.2.1.5.31|4|1000000000 +1.3.6.1.2.1.2.2.1.5.32|4|1000000000 +1.3.6.1.2.1.2.2.1.5.33|4|1000000000 +1.3.6.1.2.1.2.2.1.5.34|4|1000000000 +1.3.6.1.2.1.2.2.1.5.35|4|1000000000 +1.3.6.1.2.1.2.2.1.5.36|4|1000000000 +1.3.6.1.2.1.2.2.1.5.37|4|1000000000 +1.3.6.1.2.1.2.2.1.5.38|4|1000000000 +1.3.6.1.2.1.2.2.1.5.39|4|1000000000 +1.3.6.1.2.1.2.2.1.5.40|4|1000000000 +1.3.6.1.2.1.2.2.1.5.41|4|1000000000 +1.3.6.1.2.1.2.2.1.5.42|4|1000000000 +1.3.6.1.2.1.2.2.1.5.43|4|1000000000 +1.3.6.1.2.1.2.2.1.5.44|4|1000000000 +1.3.6.1.2.1.2.2.1.5.45|4|1000000000 +1.3.6.1.2.1.2.2.1.5.46|4|1000000000 +1.3.6.1.2.1.2.2.1.5.47|4|1000000000 +1.3.6.1.2.1.2.2.1.5.48|4|1000000000 +1.3.6.1.2.1.2.2.1.5.49|4|1000000000 +1.3.6.1.2.1.2.2.1.5.50|4|1000000000 +1.3.6.1.2.1.2.2.1.5.51|4|1000000000 +1.3.6.1.2.1.2.2.1.5.52|4|1000000000 +1.3.6.1.2.1.2.2.1.5.53|4|10000000000 +1.3.6.1.2.1.2.2.1.5.54|4|10000000000 +1.3.6.1.2.1.2.2.1.5.55|4|1000000000 +1.3.6.1.2.1.2.2.1.5.56|4|1000000000 +1.3.6.1.2.1.2.2.1.5.57|4|1000000000 +1.3.6.1.2.1.2.2.1.5.58|4|1000000000 +1.3.6.1.2.1.2.2.1.5.59|4|1000000000 +1.3.6.1.2.1.2.2.1.5.60|4|1000000000 +1.3.6.1.2.1.2.2.1.5.61|4|1000000000 +1.3.6.1.2.1.2.2.1.5.62|4|1000000000 +1.3.6.1.2.1.2.2.1.5.63|4|1000000000 +1.3.6.1.2.1.2.2.1.5.64|4|1000000000 +1.3.6.1.2.1.2.2.1.5.65|4|1000000000 +1.3.6.1.2.1.2.2.1.5.66|4|1000000000 +1.3.6.1.2.1.2.2.1.5.67|4|1000000000 +1.3.6.1.2.1.2.2.1.5.68|4|1000000000 +1.3.6.1.2.1.2.2.1.5.69|4|1000000000 +1.3.6.1.2.1.2.2.1.5.70|4|1000000000 +1.3.6.1.2.1.2.2.1.5.71|4|1000000000 +1.3.6.1.2.1.2.2.1.5.72|4|1000000000 +1.3.6.1.2.1.2.2.1.5.73|4|1000000000 +1.3.6.1.2.1.2.2.1.5.74|4|1000000000 +1.3.6.1.2.1.2.2.1.5.75|4|1000000000 +1.3.6.1.2.1.2.2.1.5.76|4|1000000000 +1.3.6.1.2.1.2.2.1.5.77|4|1000000000 +1.3.6.1.2.1.2.2.1.5.78|4|1000000000 +1.3.6.1.2.1.2.2.1.5.79|4|1000000000 +1.3.6.1.2.1.2.2.1.5.80|4|1000000000 +1.3.6.1.2.1.2.2.1.5.81|4|1000000000 +1.3.6.1.2.1.2.2.1.5.82|4|1000000000 +1.3.6.1.2.1.2.2.1.5.83|4|1000000000 +1.3.6.1.2.1.2.2.1.5.84|4|1000000000 +1.3.6.1.2.1.2.2.1.5.85|4|1000000000 +1.3.6.1.2.1.2.2.1.5.86|4|1000000000 +1.3.6.1.2.1.2.2.1.5.87|4|1000000000 +1.3.6.1.2.1.2.2.1.5.88|4|1000000000 +1.3.6.1.2.1.2.2.1.5.89|4|1000000000 +1.3.6.1.2.1.2.2.1.5.90|4|1000000000 +1.3.6.1.2.1.2.2.1.5.91|4|1000000000 +1.3.6.1.2.1.2.2.1.5.92|4|1000000000 +1.3.6.1.2.1.2.2.1.5.93|4|1000000000 +1.3.6.1.2.1.2.2.1.5.94|4|1000000000 +1.3.6.1.2.1.2.2.1.5.95|4|1000000000 +1.3.6.1.2.1.2.2.1.5.96|4|1000000000 +1.3.6.1.2.1.2.2.1.5.97|4|1000000000 +1.3.6.1.2.1.2.2.1.5.98|4|1000000000 +1.3.6.1.2.1.2.2.1.5.99|4|1000000000 +1.3.6.1.2.1.2.2.1.5.100|4|1000000000 +1.3.6.1.2.1.2.2.1.5.101|4|1000000000 +1.3.6.1.2.1.2.2.1.5.102|4|1000000000 +1.3.6.1.2.1.2.2.1.5.103|4|1000000000 +1.3.6.1.2.1.2.2.1.5.104|4|1000000000 +1.3.6.1.2.1.2.2.1.5.105|4|1000000000 +1.3.6.1.2.1.2.2.1.5.106|4|1000000000 +1.3.6.1.2.1.2.2.1.5.107|4|1000000000 +1.3.6.1.2.1.2.2.1.5.108|4|1000000000 +1.3.6.1.2.1.2.2.1.5.109|4|1000000000 +1.3.6.1.2.1.2.2.1.5.110|4|1000000000 +1.3.6.1.2.1.2.2.1.5.111|4|1000000000 +1.3.6.1.2.1.2.2.1.5.112|4|1000000000 +1.3.6.1.2.1.2.2.1.5.17825793|4|0 +1.3.6.1.2.1.2.2.1.6.1|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.2|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.3|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.4|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.5|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.6|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.7|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.8|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.9|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.10|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.11|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.12|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.13|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.14|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.15|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.16|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.17|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.18|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.19|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.20|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.21|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.22|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.23|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.24|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.25|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.26|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.27|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.28|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.29|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.30|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.31|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.32|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.33|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.34|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.35|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.36|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.37|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.38|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.39|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.40|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.41|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.42|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.43|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.44|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.45|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.46|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.47|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.48|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.49|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.50|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.51|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.52|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.53|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.54|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.55|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.56|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.57|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.58|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.59|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.60|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.61|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.62|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.63|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.64|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.65|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.66|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.67|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.68|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.69|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.70|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.71|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.72|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.73|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.74|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.75|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.76|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.77|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.78|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.79|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.80|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.81|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.82|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.83|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.84|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.85|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.86|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.87|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.88|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.89|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.90|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.91|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.92|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.93|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.94|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.95|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.96|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.97|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.98|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.99|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.100|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.101|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.102|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.103|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.104|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.105|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.106|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.107|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.108|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.109|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.110|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.111|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.112|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.6.17825793|4|0:a:5a:64:de:f2 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.23|2|1 +1.3.6.1.2.1.2.2.1.7.24|2|1 +1.3.6.1.2.1.2.2.1.7.25|2|1 +1.3.6.1.2.1.2.2.1.7.26|2|1 +1.3.6.1.2.1.2.2.1.7.27|2|1 +1.3.6.1.2.1.2.2.1.7.28|2|1 +1.3.6.1.2.1.2.2.1.7.29|2|1 +1.3.6.1.2.1.2.2.1.7.30|2|1 +1.3.6.1.2.1.2.2.1.7.31|2|1 +1.3.6.1.2.1.2.2.1.7.32|2|1 +1.3.6.1.2.1.2.2.1.7.33|2|1 +1.3.6.1.2.1.2.2.1.7.34|2|1 +1.3.6.1.2.1.2.2.1.7.35|2|1 +1.3.6.1.2.1.2.2.1.7.36|2|1 +1.3.6.1.2.1.2.2.1.7.37|2|1 +1.3.6.1.2.1.2.2.1.7.38|2|1 +1.3.6.1.2.1.2.2.1.7.39|2|1 +1.3.6.1.2.1.2.2.1.7.40|2|1 +1.3.6.1.2.1.2.2.1.7.41|2|1 +1.3.6.1.2.1.2.2.1.7.42|2|1 +1.3.6.1.2.1.2.2.1.7.43|2|1 +1.3.6.1.2.1.2.2.1.7.44|2|1 +1.3.6.1.2.1.2.2.1.7.45|2|1 +1.3.6.1.2.1.2.2.1.7.46|2|1 +1.3.6.1.2.1.2.2.1.7.47|2|1 +1.3.6.1.2.1.2.2.1.7.48|2|1 +1.3.6.1.2.1.2.2.1.7.49|2|1 +1.3.6.1.2.1.2.2.1.7.50|2|1 +1.3.6.1.2.1.2.2.1.7.51|2|1 +1.3.6.1.2.1.2.2.1.7.52|2|1 +1.3.6.1.2.1.2.2.1.7.53|2|1 +1.3.6.1.2.1.2.2.1.7.54|2|1 +1.3.6.1.2.1.2.2.1.7.55|2|1 +1.3.6.1.2.1.2.2.1.7.56|2|1 +1.3.6.1.2.1.2.2.1.7.57|2|1 +1.3.6.1.2.1.2.2.1.7.58|2|1 +1.3.6.1.2.1.2.2.1.7.59|2|1 +1.3.6.1.2.1.2.2.1.7.60|2|1 +1.3.6.1.2.1.2.2.1.7.61|2|1 +1.3.6.1.2.1.2.2.1.7.62|2|1 +1.3.6.1.2.1.2.2.1.7.63|2|1 +1.3.6.1.2.1.2.2.1.7.64|2|1 +1.3.6.1.2.1.2.2.1.7.65|2|1 +1.3.6.1.2.1.2.2.1.7.66|2|1 +1.3.6.1.2.1.2.2.1.7.67|2|1 +1.3.6.1.2.1.2.2.1.7.68|2|1 +1.3.6.1.2.1.2.2.1.7.69|2|1 +1.3.6.1.2.1.2.2.1.7.70|2|1 +1.3.6.1.2.1.2.2.1.7.71|2|1 +1.3.6.1.2.1.2.2.1.7.72|2|1 +1.3.6.1.2.1.2.2.1.7.73|2|1 +1.3.6.1.2.1.2.2.1.7.74|2|1 +1.3.6.1.2.1.2.2.1.7.75|2|1 +1.3.6.1.2.1.2.2.1.7.76|2|1 +1.3.6.1.2.1.2.2.1.7.77|2|1 +1.3.6.1.2.1.2.2.1.7.78|2|1 +1.3.6.1.2.1.2.2.1.7.79|2|1 +1.3.6.1.2.1.2.2.1.7.80|2|1 +1.3.6.1.2.1.2.2.1.7.81|2|1 +1.3.6.1.2.1.2.2.1.7.82|2|1 +1.3.6.1.2.1.2.2.1.7.83|2|1 +1.3.6.1.2.1.2.2.1.7.84|2|1 +1.3.6.1.2.1.2.2.1.7.85|2|1 +1.3.6.1.2.1.2.2.1.7.86|2|1 +1.3.6.1.2.1.2.2.1.7.87|2|1 +1.3.6.1.2.1.2.2.1.7.88|2|1 +1.3.6.1.2.1.2.2.1.7.89|2|1 +1.3.6.1.2.1.2.2.1.7.90|2|1 +1.3.6.1.2.1.2.2.1.7.91|2|1 +1.3.6.1.2.1.2.2.1.7.92|2|1 +1.3.6.1.2.1.2.2.1.7.93|2|1 +1.3.6.1.2.1.2.2.1.7.94|2|1 +1.3.6.1.2.1.2.2.1.7.95|2|1 +1.3.6.1.2.1.2.2.1.7.96|2|1 +1.3.6.1.2.1.2.2.1.7.97|2|1 +1.3.6.1.2.1.2.2.1.7.98|2|1 +1.3.6.1.2.1.2.2.1.7.99|2|1 +1.3.6.1.2.1.2.2.1.7.100|2|1 +1.3.6.1.2.1.2.2.1.7.101|2|1 +1.3.6.1.2.1.2.2.1.7.102|2|1 +1.3.6.1.2.1.2.2.1.7.103|2|1 +1.3.6.1.2.1.2.2.1.7.104|2|1 +1.3.6.1.2.1.2.2.1.7.105|2|1 +1.3.6.1.2.1.2.2.1.7.106|2|1 +1.3.6.1.2.1.2.2.1.7.107|2|1 +1.3.6.1.2.1.2.2.1.7.108|2|1 +1.3.6.1.2.1.2.2.1.7.109|2|1 +1.3.6.1.2.1.2.2.1.7.110|2|1 +1.3.6.1.2.1.2.2.1.7.111|2|1 +1.3.6.1.2.1.2.2.1.7.112|2|1 +1.3.6.1.2.1.2.2.1.7.17825793|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|2 +1.3.6.1.2.1.2.2.1.8.2|2|2 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|2 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|1 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.23|2|2 +1.3.6.1.2.1.2.2.1.8.24|2|2 +1.3.6.1.2.1.2.2.1.8.25|2|2 +1.3.6.1.2.1.2.2.1.8.26|2|2 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|1 +1.3.6.1.2.1.2.2.1.8.29|2|2 +1.3.6.1.2.1.2.2.1.8.30|2|2 +1.3.6.1.2.1.2.2.1.8.31|2|2 +1.3.6.1.2.1.2.2.1.8.32|2|2 +1.3.6.1.2.1.2.2.1.8.33|2|1 +1.3.6.1.2.1.2.2.1.8.34|2|2 +1.3.6.1.2.1.2.2.1.8.35|2|2 +1.3.6.1.2.1.2.2.1.8.36|2|2 +1.3.6.1.2.1.2.2.1.8.37|2|2 +1.3.6.1.2.1.2.2.1.8.38|2|2 +1.3.6.1.2.1.2.2.1.8.39|2|2 +1.3.6.1.2.1.2.2.1.8.40|2|2 +1.3.6.1.2.1.2.2.1.8.41|2|2 +1.3.6.1.2.1.2.2.1.8.42|2|2 +1.3.6.1.2.1.2.2.1.8.43|2|2 +1.3.6.1.2.1.2.2.1.8.44|2|2 +1.3.6.1.2.1.2.2.1.8.45|2|2 +1.3.6.1.2.1.2.2.1.8.46|2|1 +1.3.6.1.2.1.2.2.1.8.47|2|2 +1.3.6.1.2.1.2.2.1.8.48|2|2 +1.3.6.1.2.1.2.2.1.8.49|2|2 +1.3.6.1.2.1.2.2.1.8.50|2|2 +1.3.6.1.2.1.2.2.1.8.51|2|2 +1.3.6.1.2.1.2.2.1.8.52|2|2 +1.3.6.1.2.1.2.2.1.8.53|2|2 +1.3.6.1.2.1.2.2.1.8.54|2|2 +1.3.6.1.2.1.2.2.1.8.55|2|2 +1.3.6.1.2.1.2.2.1.8.56|2|1 +1.3.6.1.2.1.2.2.1.8.57|2|2 +1.3.6.1.2.1.2.2.1.8.58|2|2 +1.3.6.1.2.1.2.2.1.8.59|2|2 +1.3.6.1.2.1.2.2.1.8.60|2|2 +1.3.6.1.2.1.2.2.1.8.61|2|2 +1.3.6.1.2.1.2.2.1.8.62|2|2 +1.3.6.1.2.1.2.2.1.8.63|2|2 +1.3.6.1.2.1.2.2.1.8.64|2|2 +1.3.6.1.2.1.2.2.1.8.65|2|2 +1.3.6.1.2.1.2.2.1.8.66|2|2 +1.3.6.1.2.1.2.2.1.8.67|2|2 +1.3.6.1.2.1.2.2.1.8.68|2|2 +1.3.6.1.2.1.2.2.1.8.69|2|2 +1.3.6.1.2.1.2.2.1.8.70|2|2 +1.3.6.1.2.1.2.2.1.8.71|2|2 +1.3.6.1.2.1.2.2.1.8.72|2|2 +1.3.6.1.2.1.2.2.1.8.73|2|2 +1.3.6.1.2.1.2.2.1.8.74|2|2 +1.3.6.1.2.1.2.2.1.8.75|2|2 +1.3.6.1.2.1.2.2.1.8.76|2|2 +1.3.6.1.2.1.2.2.1.8.77|2|2 +1.3.6.1.2.1.2.2.1.8.78|2|2 +1.3.6.1.2.1.2.2.1.8.79|2|2 +1.3.6.1.2.1.2.2.1.8.80|2|2 +1.3.6.1.2.1.2.2.1.8.81|2|2 +1.3.6.1.2.1.2.2.1.8.82|2|2 +1.3.6.1.2.1.2.2.1.8.83|2|2 +1.3.6.1.2.1.2.2.1.8.84|2|2 +1.3.6.1.2.1.2.2.1.8.85|2|2 +1.3.6.1.2.1.2.2.1.8.86|2|2 +1.3.6.1.2.1.2.2.1.8.87|2|2 +1.3.6.1.2.1.2.2.1.8.88|2|2 +1.3.6.1.2.1.2.2.1.8.89|2|2 +1.3.6.1.2.1.2.2.1.8.90|2|2 +1.3.6.1.2.1.2.2.1.8.91|2|2 +1.3.6.1.2.1.2.2.1.8.92|2|2 +1.3.6.1.2.1.2.2.1.8.93|2|2 +1.3.6.1.2.1.2.2.1.8.94|2|2 +1.3.6.1.2.1.2.2.1.8.95|2|2 +1.3.6.1.2.1.2.2.1.8.96|2|2 +1.3.6.1.2.1.2.2.1.8.97|2|2 +1.3.6.1.2.1.2.2.1.8.98|2|2 +1.3.6.1.2.1.2.2.1.8.99|2|2 +1.3.6.1.2.1.2.2.1.8.100|2|2 +1.3.6.1.2.1.2.2.1.8.101|2|2 +1.3.6.1.2.1.2.2.1.8.102|2|2 +1.3.6.1.2.1.2.2.1.8.103|2|2 +1.3.6.1.2.1.2.2.1.8.104|2|2 +1.3.6.1.2.1.2.2.1.8.105|2|2 +1.3.6.1.2.1.2.2.1.8.106|2|2 +1.3.6.1.2.1.2.2.1.8.107|2|2 +1.3.6.1.2.1.2.2.1.8.108|2|2 +1.3.6.1.2.1.2.2.1.8.109|2|2 +1.3.6.1.2.1.2.2.1.8.110|2|2 +1.3.6.1.2.1.2.2.1.8.111|2|2 +1.3.6.1.2.1.2.2.1.8.112|2|2 +1.3.6.1.2.1.2.2.1.8.17825793|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|29271 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +1.3.6.1.2.1.2.2.1.9.8|67|87578493 +1.3.6.1.2.1.2.2.1.9.9|67|14671 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.14|67|0 +1.3.6.1.2.1.2.2.1.9.15|67|0 +1.3.6.1.2.1.2.2.1.9.16|67|0 +1.3.6.1.2.1.2.2.1.9.17|67|0 +1.3.6.1.2.1.2.2.1.9.18|67|14674 +1.3.6.1.2.1.2.2.1.9.19|67|0 +1.3.6.1.2.1.2.2.1.9.20|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|0 +1.3.6.1.2.1.2.2.1.9.22|67|0 +1.3.6.1.2.1.2.2.1.9.23|67|0 +1.3.6.1.2.1.2.2.1.9.24|67|0 +1.3.6.1.2.1.2.2.1.9.25|67|0 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.9.27|67|0 +1.3.6.1.2.1.2.2.1.9.28|67|29271 +1.3.6.1.2.1.2.2.1.9.29|67|0 +1.3.6.1.2.1.2.2.1.9.30|67|0 +1.3.6.1.2.1.2.2.1.9.31|67|0 +1.3.6.1.2.1.2.2.1.9.32|67|0 +1.3.6.1.2.1.2.2.1.9.33|67|8697 +1.3.6.1.2.1.2.2.1.9.34|67|0 +1.3.6.1.2.1.2.2.1.9.35|67|0 +1.3.6.1.2.1.2.2.1.9.36|67|0 +1.3.6.1.2.1.2.2.1.9.37|67|0 +1.3.6.1.2.1.2.2.1.9.38|67|0 +1.3.6.1.2.1.2.2.1.9.39|67|0 +1.3.6.1.2.1.2.2.1.9.40|67|0 +1.3.6.1.2.1.2.2.1.9.41|67|0 +1.3.6.1.2.1.2.2.1.9.42|67|0 +1.3.6.1.2.1.2.2.1.9.43|67|0 +1.3.6.1.2.1.2.2.1.9.44|67|0 +1.3.6.1.2.1.2.2.1.9.45|67|0 +1.3.6.1.2.1.2.2.1.9.46|67|87326860 +1.3.6.1.2.1.2.2.1.9.47|67|0 +1.3.6.1.2.1.2.2.1.9.48|67|0 +1.3.6.1.2.1.2.2.1.9.49|67|0 +1.3.6.1.2.1.2.2.1.9.50|67|0 +1.3.6.1.2.1.2.2.1.9.51|67|0 +1.3.6.1.2.1.2.2.1.9.52|67|0 +1.3.6.1.2.1.2.2.1.9.53|67|0 +1.3.6.1.2.1.2.2.1.9.54|67|0 +1.3.6.1.2.1.2.2.1.9.55|67|0 +1.3.6.1.2.1.2.2.1.9.56|67|29443 +1.3.6.1.2.1.2.2.1.9.57|67|0 +1.3.6.1.2.1.2.2.1.9.58|67|0 +1.3.6.1.2.1.2.2.1.9.59|67|0 +1.3.6.1.2.1.2.2.1.9.60|67|0 +1.3.6.1.2.1.2.2.1.9.61|67|0 +1.3.6.1.2.1.2.2.1.9.62|67|0 +1.3.6.1.2.1.2.2.1.9.63|67|0 +1.3.6.1.2.1.2.2.1.9.64|67|0 +1.3.6.1.2.1.2.2.1.9.65|67|0 +1.3.6.1.2.1.2.2.1.9.66|67|0 +1.3.6.1.2.1.2.2.1.9.67|67|0 +1.3.6.1.2.1.2.2.1.9.68|67|0 +1.3.6.1.2.1.2.2.1.9.69|67|0 +1.3.6.1.2.1.2.2.1.9.70|67|0 +1.3.6.1.2.1.2.2.1.9.71|67|0 +1.3.6.1.2.1.2.2.1.9.72|67|0 +1.3.6.1.2.1.2.2.1.9.73|67|0 +1.3.6.1.2.1.2.2.1.9.74|67|0 +1.3.6.1.2.1.2.2.1.9.75|67|0 +1.3.6.1.2.1.2.2.1.9.76|67|0 +1.3.6.1.2.1.2.2.1.9.77|67|0 +1.3.6.1.2.1.2.2.1.9.78|67|0 +1.3.6.1.2.1.2.2.1.9.79|67|0 +1.3.6.1.2.1.2.2.1.9.80|67|0 +1.3.6.1.2.1.2.2.1.9.81|67|0 +1.3.6.1.2.1.2.2.1.9.82|67|0 +1.3.6.1.2.1.2.2.1.9.83|67|0 +1.3.6.1.2.1.2.2.1.9.84|67|0 +1.3.6.1.2.1.2.2.1.9.85|67|0 +1.3.6.1.2.1.2.2.1.9.86|67|0 +1.3.6.1.2.1.2.2.1.9.87|67|0 +1.3.6.1.2.1.2.2.1.9.88|67|0 +1.3.6.1.2.1.2.2.1.9.89|67|0 +1.3.6.1.2.1.2.2.1.9.90|67|0 +1.3.6.1.2.1.2.2.1.9.91|67|0 +1.3.6.1.2.1.2.2.1.9.92|67|0 +1.3.6.1.2.1.2.2.1.9.93|67|0 +1.3.6.1.2.1.2.2.1.9.94|67|0 +1.3.6.1.2.1.2.2.1.9.95|67|0 +1.3.6.1.2.1.2.2.1.9.96|67|0 +1.3.6.1.2.1.2.2.1.9.97|67|0 +1.3.6.1.2.1.2.2.1.9.98|67|0 +1.3.6.1.2.1.2.2.1.9.99|67|0 +1.3.6.1.2.1.2.2.1.9.100|67|0 +1.3.6.1.2.1.2.2.1.9.101|67|0 +1.3.6.1.2.1.2.2.1.9.102|67|0 +1.3.6.1.2.1.2.2.1.9.103|67|0 +1.3.6.1.2.1.2.2.1.9.104|67|0 +1.3.6.1.2.1.2.2.1.9.105|67|0 +1.3.6.1.2.1.2.2.1.9.106|67|0 +1.3.6.1.2.1.2.2.1.9.107|67|0 +1.3.6.1.2.1.2.2.1.9.108|67|0 +1.3.6.1.2.1.2.2.1.9.109|67|0 +1.3.6.1.2.1.2.2.1.9.110|67|0 +1.3.6.1.2.1.2.2.1.9.111|67|0 +1.3.6.1.2.1.2.2.1.9.112|67|0 +1.3.6.1.2.1.2.2.1.9.17825793|67|0 +1.3.6.1.2.1.2.2.1.10.1|65|0 +1.3.6.1.2.1.2.2.1.10.2|65|0 +1.3.6.1.2.1.2.2.1.10.3|65|0 +1.3.6.1.2.1.2.2.1.10.4|65|0 +1.3.6.1.2.1.2.2.1.10.5|65|0 +1.3.6.1.2.1.2.2.1.10.6|65|0 +1.3.6.1.2.1.2.2.1.10.7|65|0 +1.3.6.1.2.1.2.2.1.10.8|65|47193 +1.3.6.1.2.1.2.2.1.10.9|65|376524142 +1.3.6.1.2.1.2.2.1.10.10|65|0 +1.3.6.1.2.1.2.2.1.10.11|65|0 +1.3.6.1.2.1.2.2.1.10.12|65|0 +1.3.6.1.2.1.2.2.1.10.13|65|0 +1.3.6.1.2.1.2.2.1.10.14|65|0 +1.3.6.1.2.1.2.2.1.10.15|65|0 +1.3.6.1.2.1.2.2.1.10.16|65|0 +1.3.6.1.2.1.2.2.1.10.17|65|0 +1.3.6.1.2.1.2.2.1.10.18|65|3607882495 +1.3.6.1.2.1.2.2.1.10.19|65|0 +1.3.6.1.2.1.2.2.1.10.20|65|0 +1.3.6.1.2.1.2.2.1.10.21|65|0 +1.3.6.1.2.1.2.2.1.10.22|65|0 +1.3.6.1.2.1.2.2.1.10.23|65|0 +1.3.6.1.2.1.2.2.1.10.24|65|0 +1.3.6.1.2.1.2.2.1.10.25|65|356491066 +1.3.6.1.2.1.2.2.1.10.26|65|828482804 +1.3.6.1.2.1.2.2.1.10.27|65|0 +1.3.6.1.2.1.2.2.1.10.28|65|194967412 +1.3.6.1.2.1.2.2.1.10.29|65|0 +1.3.6.1.2.1.2.2.1.10.30|65|0 +1.3.6.1.2.1.2.2.1.10.31|65|0 +1.3.6.1.2.1.2.2.1.10.32|65|0 +1.3.6.1.2.1.2.2.1.10.33|65|72730437 +1.3.6.1.2.1.2.2.1.10.34|65|0 +1.3.6.1.2.1.2.2.1.10.35|65|0 +1.3.6.1.2.1.2.2.1.10.36|65|0 +1.3.6.1.2.1.2.2.1.10.37|65|0 +1.3.6.1.2.1.2.2.1.10.38|65|0 +1.3.6.1.2.1.2.2.1.10.39|65|0 +1.3.6.1.2.1.2.2.1.10.40|65|0 +1.3.6.1.2.1.2.2.1.10.41|65|0 +1.3.6.1.2.1.2.2.1.10.42|65|0 +1.3.6.1.2.1.2.2.1.10.43|65|0 +1.3.6.1.2.1.2.2.1.10.44|65|0 +1.3.6.1.2.1.2.2.1.10.45|65|0 +1.3.6.1.2.1.2.2.1.10.46|65|3584581358 +1.3.6.1.2.1.2.2.1.10.47|65|0 +1.3.6.1.2.1.2.2.1.10.48|65|0 +1.3.6.1.2.1.2.2.1.10.49|65|0 +1.3.6.1.2.1.2.2.1.10.50|65|0 +1.3.6.1.2.1.2.2.1.10.51|65|0 +1.3.6.1.2.1.2.2.1.10.52|65|0 +1.3.6.1.2.1.2.2.1.10.53|65|4023479850 +1.3.6.1.2.1.2.2.1.10.54|65|850572325 +1.3.6.1.2.1.2.2.1.10.55|65|0 +1.3.6.1.2.1.2.2.1.10.56|65|439247729 +1.3.6.1.2.1.2.2.1.10.57|65|0 +1.3.6.1.2.1.2.2.1.10.58|65|0 +1.3.6.1.2.1.2.2.1.10.59|65|0 +1.3.6.1.2.1.2.2.1.10.60|65|0 +1.3.6.1.2.1.2.2.1.10.61|65|0 +1.3.6.1.2.1.2.2.1.10.62|65|0 +1.3.6.1.2.1.2.2.1.10.63|65|0 +1.3.6.1.2.1.2.2.1.10.64|65|0 +1.3.6.1.2.1.2.2.1.10.65|65|0 +1.3.6.1.2.1.2.2.1.10.66|65|0 +1.3.6.1.2.1.2.2.1.10.67|65|0 +1.3.6.1.2.1.2.2.1.10.68|65|0 +1.3.6.1.2.1.2.2.1.10.69|65|0 +1.3.6.1.2.1.2.2.1.10.70|65|0 +1.3.6.1.2.1.2.2.1.10.71|65|0 +1.3.6.1.2.1.2.2.1.10.72|65|0 +1.3.6.1.2.1.2.2.1.10.73|65|0 +1.3.6.1.2.1.2.2.1.10.74|65|0 +1.3.6.1.2.1.2.2.1.10.75|65|0 +1.3.6.1.2.1.2.2.1.10.76|65|0 +1.3.6.1.2.1.2.2.1.10.77|65|0 +1.3.6.1.2.1.2.2.1.10.78|65|0 +1.3.6.1.2.1.2.2.1.10.79|65|0 +1.3.6.1.2.1.2.2.1.10.80|65|0 +1.3.6.1.2.1.2.2.1.10.81|65|0 +1.3.6.1.2.1.2.2.1.10.82|65|0 +1.3.6.1.2.1.2.2.1.10.83|65|0 +1.3.6.1.2.1.2.2.1.10.84|65|0 +1.3.6.1.2.1.2.2.1.10.85|65|0 +1.3.6.1.2.1.2.2.1.10.86|65|0 +1.3.6.1.2.1.2.2.1.10.87|65|0 +1.3.6.1.2.1.2.2.1.10.88|65|0 +1.3.6.1.2.1.2.2.1.10.89|65|0 +1.3.6.1.2.1.2.2.1.10.90|65|0 +1.3.6.1.2.1.2.2.1.10.91|65|0 +1.3.6.1.2.1.2.2.1.10.92|65|0 +1.3.6.1.2.1.2.2.1.10.93|65|0 +1.3.6.1.2.1.2.2.1.10.94|65|0 +1.3.6.1.2.1.2.2.1.10.95|65|0 +1.3.6.1.2.1.2.2.1.10.96|65|0 +1.3.6.1.2.1.2.2.1.10.97|65|0 +1.3.6.1.2.1.2.2.1.10.98|65|0 +1.3.6.1.2.1.2.2.1.10.99|65|0 +1.3.6.1.2.1.2.2.1.10.100|65|0 +1.3.6.1.2.1.2.2.1.10.101|65|0 +1.3.6.1.2.1.2.2.1.10.102|65|0 +1.3.6.1.2.1.2.2.1.10.103|65|0 +1.3.6.1.2.1.2.2.1.10.104|65|0 +1.3.6.1.2.1.2.2.1.10.105|65|0 +1.3.6.1.2.1.2.2.1.10.106|65|0 +1.3.6.1.2.1.2.2.1.10.107|65|0 +1.3.6.1.2.1.2.2.1.10.108|65|0 +1.3.6.1.2.1.2.2.1.10.109|65|0 +1.3.6.1.2.1.2.2.1.10.110|65|0 +1.3.6.1.2.1.2.2.1.10.111|65|0 +1.3.6.1.2.1.2.2.1.10.112|65|0 +1.3.6.1.2.1.2.2.1.10.17825793|65|634215141 +1.3.6.1.2.1.2.2.1.11.1|65|0 +1.3.6.1.2.1.2.2.1.11.2|65|0 +1.3.6.1.2.1.2.2.1.11.3|65|0 +1.3.6.1.2.1.2.2.1.11.4|65|0 +1.3.6.1.2.1.2.2.1.11.5|65|0 +1.3.6.1.2.1.2.2.1.11.6|65|0 +1.3.6.1.2.1.2.2.1.11.7|65|0 +1.3.6.1.2.1.2.2.1.11.8|65|0 +1.3.6.1.2.1.2.2.1.11.9|65|1813652 +1.3.6.1.2.1.2.2.1.11.10|65|0 +1.3.6.1.2.1.2.2.1.11.11|65|0 +1.3.6.1.2.1.2.2.1.11.12|65|0 +1.3.6.1.2.1.2.2.1.11.13|65|0 +1.3.6.1.2.1.2.2.1.11.14|65|0 +1.3.6.1.2.1.2.2.1.11.15|65|0 +1.3.6.1.2.1.2.2.1.11.16|65|0 +1.3.6.1.2.1.2.2.1.11.17|65|0 +1.3.6.1.2.1.2.2.1.11.18|65|26518031 +1.3.6.1.2.1.2.2.1.11.19|65|0 +1.3.6.1.2.1.2.2.1.11.20|65|0 +1.3.6.1.2.1.2.2.1.11.21|65|0 +1.3.6.1.2.1.2.2.1.11.22|65|0 +1.3.6.1.2.1.2.2.1.11.23|65|0 +1.3.6.1.2.1.2.2.1.11.24|65|0 +1.3.6.1.2.1.2.2.1.11.25|65|38686827 +1.3.6.1.2.1.2.2.1.11.26|65|13350076 +1.3.6.1.2.1.2.2.1.11.27|65|0 +1.3.6.1.2.1.2.2.1.11.28|65|1601365 +1.3.6.1.2.1.2.2.1.11.29|65|0 +1.3.6.1.2.1.2.2.1.11.30|65|0 +1.3.6.1.2.1.2.2.1.11.31|65|0 +1.3.6.1.2.1.2.2.1.11.32|65|0 +1.3.6.1.2.1.2.2.1.11.33|65|258 +1.3.6.1.2.1.2.2.1.11.34|65|0 +1.3.6.1.2.1.2.2.1.11.35|65|0 +1.3.6.1.2.1.2.2.1.11.36|65|0 +1.3.6.1.2.1.2.2.1.11.37|65|0 +1.3.6.1.2.1.2.2.1.11.38|65|0 +1.3.6.1.2.1.2.2.1.11.39|65|0 +1.3.6.1.2.1.2.2.1.11.40|65|0 +1.3.6.1.2.1.2.2.1.11.41|65|0 +1.3.6.1.2.1.2.2.1.11.42|65|0 +1.3.6.1.2.1.2.2.1.11.43|65|0 +1.3.6.1.2.1.2.2.1.11.44|65|0 +1.3.6.1.2.1.2.2.1.11.45|65|0 +1.3.6.1.2.1.2.2.1.11.46|65|35767655 +1.3.6.1.2.1.2.2.1.11.47|65|0 +1.3.6.1.2.1.2.2.1.11.48|65|0 +1.3.6.1.2.1.2.2.1.11.49|65|0 +1.3.6.1.2.1.2.2.1.11.50|65|0 +1.3.6.1.2.1.2.2.1.11.51|65|0 +1.3.6.1.2.1.2.2.1.11.52|65|0 +1.3.6.1.2.1.2.2.1.11.53|65|26525136 +1.3.6.1.2.1.2.2.1.11.54|65|13347681 +1.3.6.1.2.1.2.2.1.11.55|65|0 +1.3.6.1.2.1.2.2.1.11.56|65|3006163 +1.3.6.1.2.1.2.2.1.11.57|65|0 +1.3.6.1.2.1.2.2.1.11.58|65|0 +1.3.6.1.2.1.2.2.1.11.59|65|0 +1.3.6.1.2.1.2.2.1.11.60|65|0 +1.3.6.1.2.1.2.2.1.11.61|65|0 +1.3.6.1.2.1.2.2.1.11.62|65|0 +1.3.6.1.2.1.2.2.1.11.63|65|0 +1.3.6.1.2.1.2.2.1.11.64|65|0 +1.3.6.1.2.1.2.2.1.11.65|65|0 +1.3.6.1.2.1.2.2.1.11.66|65|0 +1.3.6.1.2.1.2.2.1.11.67|65|0 +1.3.6.1.2.1.2.2.1.11.68|65|0 +1.3.6.1.2.1.2.2.1.11.69|65|0 +1.3.6.1.2.1.2.2.1.11.70|65|0 +1.3.6.1.2.1.2.2.1.11.71|65|0 +1.3.6.1.2.1.2.2.1.11.72|65|0 +1.3.6.1.2.1.2.2.1.11.73|65|0 +1.3.6.1.2.1.2.2.1.11.74|65|0 +1.3.6.1.2.1.2.2.1.11.75|65|0 +1.3.6.1.2.1.2.2.1.11.76|65|0 +1.3.6.1.2.1.2.2.1.11.77|65|0 +1.3.6.1.2.1.2.2.1.11.78|65|0 +1.3.6.1.2.1.2.2.1.11.79|65|0 +1.3.6.1.2.1.2.2.1.11.80|65|0 +1.3.6.1.2.1.2.2.1.11.81|65|0 +1.3.6.1.2.1.2.2.1.11.82|65|0 +1.3.6.1.2.1.2.2.1.11.83|65|0 +1.3.6.1.2.1.2.2.1.11.84|65|0 +1.3.6.1.2.1.2.2.1.11.85|65|0 +1.3.6.1.2.1.2.2.1.11.86|65|0 +1.3.6.1.2.1.2.2.1.11.87|65|0 +1.3.6.1.2.1.2.2.1.11.88|65|0 +1.3.6.1.2.1.2.2.1.11.89|65|0 +1.3.6.1.2.1.2.2.1.11.90|65|0 +1.3.6.1.2.1.2.2.1.11.91|65|0 +1.3.6.1.2.1.2.2.1.11.92|65|0 +1.3.6.1.2.1.2.2.1.11.93|65|0 +1.3.6.1.2.1.2.2.1.11.94|65|0 +1.3.6.1.2.1.2.2.1.11.95|65|0 +1.3.6.1.2.1.2.2.1.11.96|65|0 +1.3.6.1.2.1.2.2.1.11.97|65|0 +1.3.6.1.2.1.2.2.1.11.98|65|0 +1.3.6.1.2.1.2.2.1.11.99|65|0 +1.3.6.1.2.1.2.2.1.11.100|65|0 +1.3.6.1.2.1.2.2.1.11.101|65|0 +1.3.6.1.2.1.2.2.1.11.102|65|0 +1.3.6.1.2.1.2.2.1.11.103|65|0 +1.3.6.1.2.1.2.2.1.11.104|65|0 +1.3.6.1.2.1.2.2.1.11.105|65|0 +1.3.6.1.2.1.2.2.1.11.106|65|0 +1.3.6.1.2.1.2.2.1.11.107|65|0 +1.3.6.1.2.1.2.2.1.11.108|65|0 +1.3.6.1.2.1.2.2.1.11.109|65|0 +1.3.6.1.2.1.2.2.1.11.110|65|0 +1.3.6.1.2.1.2.2.1.11.111|65|0 +1.3.6.1.2.1.2.2.1.11.112|65|0 +1.3.6.1.2.1.2.2.1.11.17825793|65|4607528 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|0 +1.3.6.1.2.1.2.2.1.12.3|65|0 +1.3.6.1.2.1.2.2.1.12.4|65|0 +1.3.6.1.2.1.2.2.1.12.5|65|0 +1.3.6.1.2.1.2.2.1.12.6|65|0 +1.3.6.1.2.1.2.2.1.12.7|65|0 +1.3.6.1.2.1.2.2.1.12.8|65|160 +1.3.6.1.2.1.2.2.1.12.9|65|114 +1.3.6.1.2.1.2.2.1.12.10|65|0 +1.3.6.1.2.1.2.2.1.12.11|65|0 +1.3.6.1.2.1.2.2.1.12.12|65|0 +1.3.6.1.2.1.2.2.1.12.13|65|0 +1.3.6.1.2.1.2.2.1.12.14|65|0 +1.3.6.1.2.1.2.2.1.12.15|65|0 +1.3.6.1.2.1.2.2.1.12.16|65|0 +1.3.6.1.2.1.2.2.1.12.17|65|0 +1.3.6.1.2.1.2.2.1.12.18|65|55594 +1.3.6.1.2.1.2.2.1.12.19|65|0 +1.3.6.1.2.1.2.2.1.12.20|65|0 +1.3.6.1.2.1.2.2.1.12.21|65|0 +1.3.6.1.2.1.2.2.1.12.22|65|0 +1.3.6.1.2.1.2.2.1.12.23|65|0 +1.3.6.1.2.1.2.2.1.12.24|65|0 +1.3.6.1.2.1.2.2.1.12.25|65|1343074 +1.3.6.1.2.1.2.2.1.12.26|65|3511026 +1.3.6.1.2.1.2.2.1.12.27|65|0 +1.3.6.1.2.1.2.2.1.12.28|65|52178 +1.3.6.1.2.1.2.2.1.12.29|65|0 +1.3.6.1.2.1.2.2.1.12.30|65|0 +1.3.6.1.2.1.2.2.1.12.31|65|0 +1.3.6.1.2.1.2.2.1.12.32|65|0 +1.3.6.1.2.1.2.2.1.12.33|65|732071 +1.3.6.1.2.1.2.2.1.12.34|65|0 +1.3.6.1.2.1.2.2.1.12.35|65|0 +1.3.6.1.2.1.2.2.1.12.36|65|0 +1.3.6.1.2.1.2.2.1.12.37|65|0 +1.3.6.1.2.1.2.2.1.12.38|65|0 +1.3.6.1.2.1.2.2.1.12.39|65|0 +1.3.6.1.2.1.2.2.1.12.40|65|0 +1.3.6.1.2.1.2.2.1.12.41|65|0 +1.3.6.1.2.1.2.2.1.12.42|65|0 +1.3.6.1.2.1.2.2.1.12.43|65|0 +1.3.6.1.2.1.2.2.1.12.44|65|0 +1.3.6.1.2.1.2.2.1.12.45|65|0 +1.3.6.1.2.1.2.2.1.12.46|65|840247 +1.3.6.1.2.1.2.2.1.12.47|65|0 +1.3.6.1.2.1.2.2.1.12.48|65|0 +1.3.6.1.2.1.2.2.1.12.49|65|0 +1.3.6.1.2.1.2.2.1.12.50|65|0 +1.3.6.1.2.1.2.2.1.12.51|65|0 +1.3.6.1.2.1.2.2.1.12.52|65|0 +1.3.6.1.2.1.2.2.1.12.53|65|40222 +1.3.6.1.2.1.2.2.1.12.54|65|3725432 +1.3.6.1.2.1.2.2.1.12.55|65|0 +1.3.6.1.2.1.2.2.1.12.56|65|52175 +1.3.6.1.2.1.2.2.1.12.57|65|0 +1.3.6.1.2.1.2.2.1.12.58|65|0 +1.3.6.1.2.1.2.2.1.12.59|65|0 +1.3.6.1.2.1.2.2.1.12.60|65|0 +1.3.6.1.2.1.2.2.1.12.61|65|0 +1.3.6.1.2.1.2.2.1.12.62|65|0 +1.3.6.1.2.1.2.2.1.12.63|65|0 +1.3.6.1.2.1.2.2.1.12.64|65|0 +1.3.6.1.2.1.2.2.1.12.65|65|0 +1.3.6.1.2.1.2.2.1.12.66|65|0 +1.3.6.1.2.1.2.2.1.12.67|65|0 +1.3.6.1.2.1.2.2.1.12.68|65|0 +1.3.6.1.2.1.2.2.1.12.69|65|0 +1.3.6.1.2.1.2.2.1.12.70|65|0 +1.3.6.1.2.1.2.2.1.12.71|65|0 +1.3.6.1.2.1.2.2.1.12.72|65|0 +1.3.6.1.2.1.2.2.1.12.73|65|0 +1.3.6.1.2.1.2.2.1.12.74|65|0 +1.3.6.1.2.1.2.2.1.12.75|65|0 +1.3.6.1.2.1.2.2.1.12.76|65|0 +1.3.6.1.2.1.2.2.1.12.77|65|0 +1.3.6.1.2.1.2.2.1.12.78|65|0 +1.3.6.1.2.1.2.2.1.12.79|65|0 +1.3.6.1.2.1.2.2.1.12.80|65|0 +1.3.6.1.2.1.2.2.1.12.81|65|0 +1.3.6.1.2.1.2.2.1.12.82|65|0 +1.3.6.1.2.1.2.2.1.12.83|65|0 +1.3.6.1.2.1.2.2.1.12.84|65|0 +1.3.6.1.2.1.2.2.1.12.85|65|0 +1.3.6.1.2.1.2.2.1.12.86|65|0 +1.3.6.1.2.1.2.2.1.12.87|65|0 +1.3.6.1.2.1.2.2.1.12.88|65|0 +1.3.6.1.2.1.2.2.1.12.89|65|0 +1.3.6.1.2.1.2.2.1.12.90|65|0 +1.3.6.1.2.1.2.2.1.12.91|65|0 +1.3.6.1.2.1.2.2.1.12.92|65|0 +1.3.6.1.2.1.2.2.1.12.93|65|0 +1.3.6.1.2.1.2.2.1.12.94|65|0 +1.3.6.1.2.1.2.2.1.12.95|65|0 +1.3.6.1.2.1.2.2.1.12.96|65|0 +1.3.6.1.2.1.2.2.1.12.97|65|0 +1.3.6.1.2.1.2.2.1.12.98|65|0 +1.3.6.1.2.1.2.2.1.12.99|65|0 +1.3.6.1.2.1.2.2.1.12.100|65|0 +1.3.6.1.2.1.2.2.1.12.101|65|0 +1.3.6.1.2.1.2.2.1.12.102|65|0 +1.3.6.1.2.1.2.2.1.12.103|65|0 +1.3.6.1.2.1.2.2.1.12.104|65|0 +1.3.6.1.2.1.2.2.1.12.105|65|0 +1.3.6.1.2.1.2.2.1.12.106|65|0 +1.3.6.1.2.1.2.2.1.12.107|65|0 +1.3.6.1.2.1.2.2.1.12.108|65|0 +1.3.6.1.2.1.2.2.1.12.109|65|0 +1.3.6.1.2.1.2.2.1.12.110|65|0 +1.3.6.1.2.1.2.2.1.12.111|65|0 +1.3.6.1.2.1.2.2.1.12.112|65|0 +1.3.6.1.2.1.2.2.1.12.17825793|65|104353 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|1 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.25|65|10 +1.3.6.1.2.1.2.2.1.13.26|65|25 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|1 +1.3.6.1.2.1.2.2.1.13.29|65|0 +1.3.6.1.2.1.2.2.1.13.30|65|0 +1.3.6.1.2.1.2.2.1.13.31|65|0 +1.3.6.1.2.1.2.2.1.13.32|65|0 +1.3.6.1.2.1.2.2.1.13.33|65|0 +1.3.6.1.2.1.2.2.1.13.34|65|0 +1.3.6.1.2.1.2.2.1.13.35|65|0 +1.3.6.1.2.1.2.2.1.13.36|65|0 +1.3.6.1.2.1.2.2.1.13.37|65|0 +1.3.6.1.2.1.2.2.1.13.38|65|0 +1.3.6.1.2.1.2.2.1.13.39|65|0 +1.3.6.1.2.1.2.2.1.13.40|65|0 +1.3.6.1.2.1.2.2.1.13.41|65|0 +1.3.6.1.2.1.2.2.1.13.42|65|0 +1.3.6.1.2.1.2.2.1.13.43|65|0 +1.3.6.1.2.1.2.2.1.13.44|65|0 +1.3.6.1.2.1.2.2.1.13.45|65|0 +1.3.6.1.2.1.2.2.1.13.46|65|2 +1.3.6.1.2.1.2.2.1.13.47|65|0 +1.3.6.1.2.1.2.2.1.13.48|65|0 +1.3.6.1.2.1.2.2.1.13.49|65|0 +1.3.6.1.2.1.2.2.1.13.50|65|0 +1.3.6.1.2.1.2.2.1.13.51|65|0 +1.3.6.1.2.1.2.2.1.13.52|65|0 +1.3.6.1.2.1.2.2.1.13.53|65|7114 +1.3.6.1.2.1.2.2.1.13.54|65|1495065 +1.3.6.1.2.1.2.2.1.13.55|65|0 +1.3.6.1.2.1.2.2.1.13.56|65|5213 +1.3.6.1.2.1.2.2.1.13.57|65|0 +1.3.6.1.2.1.2.2.1.13.58|65|0 +1.3.6.1.2.1.2.2.1.13.59|65|0 +1.3.6.1.2.1.2.2.1.13.60|65|0 +1.3.6.1.2.1.2.2.1.13.61|65|0 +1.3.6.1.2.1.2.2.1.13.62|65|0 +1.3.6.1.2.1.2.2.1.13.63|65|0 +1.3.6.1.2.1.2.2.1.13.64|65|0 +1.3.6.1.2.1.2.2.1.13.65|65|0 +1.3.6.1.2.1.2.2.1.13.66|65|0 +1.3.6.1.2.1.2.2.1.13.67|65|0 +1.3.6.1.2.1.2.2.1.13.68|65|0 +1.3.6.1.2.1.2.2.1.13.69|65|0 +1.3.6.1.2.1.2.2.1.13.70|65|0 +1.3.6.1.2.1.2.2.1.13.71|65|0 +1.3.6.1.2.1.2.2.1.13.72|65|0 +1.3.6.1.2.1.2.2.1.13.73|65|0 +1.3.6.1.2.1.2.2.1.13.74|65|0 +1.3.6.1.2.1.2.2.1.13.75|65|0 +1.3.6.1.2.1.2.2.1.13.76|65|0 +1.3.6.1.2.1.2.2.1.13.77|65|0 +1.3.6.1.2.1.2.2.1.13.78|65|0 +1.3.6.1.2.1.2.2.1.13.79|65|0 +1.3.6.1.2.1.2.2.1.13.80|65|0 +1.3.6.1.2.1.2.2.1.13.81|65|0 +1.3.6.1.2.1.2.2.1.13.82|65|0 +1.3.6.1.2.1.2.2.1.13.83|65|0 +1.3.6.1.2.1.2.2.1.13.84|65|0 +1.3.6.1.2.1.2.2.1.13.85|65|0 +1.3.6.1.2.1.2.2.1.13.86|65|0 +1.3.6.1.2.1.2.2.1.13.87|65|0 +1.3.6.1.2.1.2.2.1.13.88|65|0 +1.3.6.1.2.1.2.2.1.13.89|65|0 +1.3.6.1.2.1.2.2.1.13.90|65|0 +1.3.6.1.2.1.2.2.1.13.91|65|0 +1.3.6.1.2.1.2.2.1.13.92|65|0 +1.3.6.1.2.1.2.2.1.13.93|65|0 +1.3.6.1.2.1.2.2.1.13.94|65|0 +1.3.6.1.2.1.2.2.1.13.95|65|0 +1.3.6.1.2.1.2.2.1.13.96|65|0 +1.3.6.1.2.1.2.2.1.13.97|65|0 +1.3.6.1.2.1.2.2.1.13.98|65|0 +1.3.6.1.2.1.2.2.1.13.99|65|0 +1.3.6.1.2.1.2.2.1.13.100|65|0 +1.3.6.1.2.1.2.2.1.13.101|65|0 +1.3.6.1.2.1.2.2.1.13.102|65|0 +1.3.6.1.2.1.2.2.1.13.103|65|0 +1.3.6.1.2.1.2.2.1.13.104|65|0 +1.3.6.1.2.1.2.2.1.13.105|65|0 +1.3.6.1.2.1.2.2.1.13.106|65|0 +1.3.6.1.2.1.2.2.1.13.107|65|0 +1.3.6.1.2.1.2.2.1.13.108|65|0 +1.3.6.1.2.1.2.2.1.13.109|65|0 +1.3.6.1.2.1.2.2.1.13.110|65|0 +1.3.6.1.2.1.2.2.1.13.111|65|0 +1.3.6.1.2.1.2.2.1.13.112|65|0 +1.3.6.1.2.1.2.2.1.13.17825793|65|5214 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.29|65|0 +1.3.6.1.2.1.2.2.1.14.30|65|0 +1.3.6.1.2.1.2.2.1.14.31|65|0 +1.3.6.1.2.1.2.2.1.14.32|65|0 +1.3.6.1.2.1.2.2.1.14.33|65|0 +1.3.6.1.2.1.2.2.1.14.34|65|0 +1.3.6.1.2.1.2.2.1.14.35|65|0 +1.3.6.1.2.1.2.2.1.14.36|65|0 +1.3.6.1.2.1.2.2.1.14.37|65|0 +1.3.6.1.2.1.2.2.1.14.38|65|0 +1.3.6.1.2.1.2.2.1.14.39|65|0 +1.3.6.1.2.1.2.2.1.14.40|65|0 +1.3.6.1.2.1.2.2.1.14.41|65|0 +1.3.6.1.2.1.2.2.1.14.42|65|0 +1.3.6.1.2.1.2.2.1.14.43|65|0 +1.3.6.1.2.1.2.2.1.14.44|65|0 +1.3.6.1.2.1.2.2.1.14.45|65|0 +1.3.6.1.2.1.2.2.1.14.46|65|0 +1.3.6.1.2.1.2.2.1.14.47|65|0 +1.3.6.1.2.1.2.2.1.14.48|65|0 +1.3.6.1.2.1.2.2.1.14.49|65|0 +1.3.6.1.2.1.2.2.1.14.50|65|0 +1.3.6.1.2.1.2.2.1.14.51|65|0 +1.3.6.1.2.1.2.2.1.14.52|65|0 +1.3.6.1.2.1.2.2.1.14.53|65|0 +1.3.6.1.2.1.2.2.1.14.54|65|0 +1.3.6.1.2.1.2.2.1.14.55|65|0 +1.3.6.1.2.1.2.2.1.14.56|65|0 +1.3.6.1.2.1.2.2.1.14.57|65|0 +1.3.6.1.2.1.2.2.1.14.58|65|0 +1.3.6.1.2.1.2.2.1.14.59|65|0 +1.3.6.1.2.1.2.2.1.14.60|65|0 +1.3.6.1.2.1.2.2.1.14.61|65|0 +1.3.6.1.2.1.2.2.1.14.62|65|0 +1.3.6.1.2.1.2.2.1.14.63|65|0 +1.3.6.1.2.1.2.2.1.14.64|65|0 +1.3.6.1.2.1.2.2.1.14.65|65|0 +1.3.6.1.2.1.2.2.1.14.66|65|0 +1.3.6.1.2.1.2.2.1.14.67|65|0 +1.3.6.1.2.1.2.2.1.14.68|65|0 +1.3.6.1.2.1.2.2.1.14.69|65|0 +1.3.6.1.2.1.2.2.1.14.70|65|0 +1.3.6.1.2.1.2.2.1.14.71|65|0 +1.3.6.1.2.1.2.2.1.14.72|65|0 +1.3.6.1.2.1.2.2.1.14.73|65|0 +1.3.6.1.2.1.2.2.1.14.74|65|0 +1.3.6.1.2.1.2.2.1.14.75|65|0 +1.3.6.1.2.1.2.2.1.14.76|65|0 +1.3.6.1.2.1.2.2.1.14.77|65|0 +1.3.6.1.2.1.2.2.1.14.78|65|0 +1.3.6.1.2.1.2.2.1.14.79|65|0 +1.3.6.1.2.1.2.2.1.14.80|65|0 +1.3.6.1.2.1.2.2.1.14.81|65|0 +1.3.6.1.2.1.2.2.1.14.82|65|0 +1.3.6.1.2.1.2.2.1.14.83|65|0 +1.3.6.1.2.1.2.2.1.14.84|65|0 +1.3.6.1.2.1.2.2.1.14.85|65|0 +1.3.6.1.2.1.2.2.1.14.86|65|0 +1.3.6.1.2.1.2.2.1.14.87|65|0 +1.3.6.1.2.1.2.2.1.14.88|65|0 +1.3.6.1.2.1.2.2.1.14.89|65|0 +1.3.6.1.2.1.2.2.1.14.90|65|0 +1.3.6.1.2.1.2.2.1.14.91|65|0 +1.3.6.1.2.1.2.2.1.14.92|65|0 +1.3.6.1.2.1.2.2.1.14.93|65|0 +1.3.6.1.2.1.2.2.1.14.94|65|0 +1.3.6.1.2.1.2.2.1.14.95|65|0 +1.3.6.1.2.1.2.2.1.14.96|65|0 +1.3.6.1.2.1.2.2.1.14.97|65|0 +1.3.6.1.2.1.2.2.1.14.98|65|0 +1.3.6.1.2.1.2.2.1.14.99|65|0 +1.3.6.1.2.1.2.2.1.14.100|65|0 +1.3.6.1.2.1.2.2.1.14.101|65|0 +1.3.6.1.2.1.2.2.1.14.102|65|0 +1.3.6.1.2.1.2.2.1.14.103|65|0 +1.3.6.1.2.1.2.2.1.14.104|65|0 +1.3.6.1.2.1.2.2.1.14.105|65|0 +1.3.6.1.2.1.2.2.1.14.106|65|0 +1.3.6.1.2.1.2.2.1.14.107|65|0 +1.3.6.1.2.1.2.2.1.14.108|65|0 +1.3.6.1.2.1.2.2.1.14.109|65|0 +1.3.6.1.2.1.2.2.1.14.110|65|0 +1.3.6.1.2.1.2.2.1.14.111|65|0 +1.3.6.1.2.1.2.2.1.14.112|65|0 +1.3.6.1.2.1.2.2.1.14.17825793|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.15.3|65|0 +1.3.6.1.2.1.2.2.1.15.4|65|0 +1.3.6.1.2.1.2.2.1.15.5|65|0 +1.3.6.1.2.1.2.2.1.15.6|65|0 +1.3.6.1.2.1.2.2.1.15.7|65|0 +1.3.6.1.2.1.2.2.1.15.8|65|0 +1.3.6.1.2.1.2.2.1.15.9|65|0 +1.3.6.1.2.1.2.2.1.15.10|65|0 +1.3.6.1.2.1.2.2.1.15.11|65|0 +1.3.6.1.2.1.2.2.1.15.12|65|0 +1.3.6.1.2.1.2.2.1.15.13|65|0 +1.3.6.1.2.1.2.2.1.15.14|65|0 +1.3.6.1.2.1.2.2.1.15.15|65|0 +1.3.6.1.2.1.2.2.1.15.16|65|0 +1.3.6.1.2.1.2.2.1.15.17|65|0 +1.3.6.1.2.1.2.2.1.15.18|65|0 +1.3.6.1.2.1.2.2.1.15.19|65|0 +1.3.6.1.2.1.2.2.1.15.20|65|0 +1.3.6.1.2.1.2.2.1.15.21|65|0 +1.3.6.1.2.1.2.2.1.15.22|65|0 +1.3.6.1.2.1.2.2.1.15.23|65|0 +1.3.6.1.2.1.2.2.1.15.24|65|0 +1.3.6.1.2.1.2.2.1.15.25|65|0 +1.3.6.1.2.1.2.2.1.15.26|65|0 +1.3.6.1.2.1.2.2.1.15.27|65|0 +1.3.6.1.2.1.2.2.1.15.28|65|0 +1.3.6.1.2.1.2.2.1.15.29|65|0 +1.3.6.1.2.1.2.2.1.15.30|65|0 +1.3.6.1.2.1.2.2.1.15.31|65|0 +1.3.6.1.2.1.2.2.1.15.32|65|0 +1.3.6.1.2.1.2.2.1.15.33|65|0 +1.3.6.1.2.1.2.2.1.15.34|65|0 +1.3.6.1.2.1.2.2.1.15.35|65|0 +1.3.6.1.2.1.2.2.1.15.36|65|0 +1.3.6.1.2.1.2.2.1.15.37|65|0 +1.3.6.1.2.1.2.2.1.15.38|65|0 +1.3.6.1.2.1.2.2.1.15.39|65|0 +1.3.6.1.2.1.2.2.1.15.40|65|0 +1.3.6.1.2.1.2.2.1.15.41|65|0 +1.3.6.1.2.1.2.2.1.15.42|65|0 +1.3.6.1.2.1.2.2.1.15.43|65|0 +1.3.6.1.2.1.2.2.1.15.44|65|0 +1.3.6.1.2.1.2.2.1.15.45|65|0 +1.3.6.1.2.1.2.2.1.15.46|65|0 +1.3.6.1.2.1.2.2.1.15.47|65|0 +1.3.6.1.2.1.2.2.1.15.48|65|0 +1.3.6.1.2.1.2.2.1.15.49|65|0 +1.3.6.1.2.1.2.2.1.15.50|65|0 +1.3.6.1.2.1.2.2.1.15.51|65|0 +1.3.6.1.2.1.2.2.1.15.52|65|0 +1.3.6.1.2.1.2.2.1.15.53|65|0 +1.3.6.1.2.1.2.2.1.15.54|65|0 +1.3.6.1.2.1.2.2.1.15.55|65|0 +1.3.6.1.2.1.2.2.1.15.56|65|0 +1.3.6.1.2.1.2.2.1.15.57|65|0 +1.3.6.1.2.1.2.2.1.15.58|65|0 +1.3.6.1.2.1.2.2.1.15.59|65|0 +1.3.6.1.2.1.2.2.1.15.60|65|0 +1.3.6.1.2.1.2.2.1.15.61|65|0 +1.3.6.1.2.1.2.2.1.15.62|65|0 +1.3.6.1.2.1.2.2.1.15.63|65|0 +1.3.6.1.2.1.2.2.1.15.64|65|0 +1.3.6.1.2.1.2.2.1.15.65|65|0 +1.3.6.1.2.1.2.2.1.15.66|65|0 +1.3.6.1.2.1.2.2.1.15.67|65|0 +1.3.6.1.2.1.2.2.1.15.68|65|0 +1.3.6.1.2.1.2.2.1.15.69|65|0 +1.3.6.1.2.1.2.2.1.15.70|65|0 +1.3.6.1.2.1.2.2.1.15.71|65|0 +1.3.6.1.2.1.2.2.1.15.72|65|0 +1.3.6.1.2.1.2.2.1.15.73|65|0 +1.3.6.1.2.1.2.2.1.15.74|65|0 +1.3.6.1.2.1.2.2.1.15.75|65|0 +1.3.6.1.2.1.2.2.1.15.76|65|0 +1.3.6.1.2.1.2.2.1.15.77|65|0 +1.3.6.1.2.1.2.2.1.15.78|65|0 +1.3.6.1.2.1.2.2.1.15.79|65|0 +1.3.6.1.2.1.2.2.1.15.80|65|0 +1.3.6.1.2.1.2.2.1.15.81|65|0 +1.3.6.1.2.1.2.2.1.15.82|65|0 +1.3.6.1.2.1.2.2.1.15.83|65|0 +1.3.6.1.2.1.2.2.1.15.84|65|0 +1.3.6.1.2.1.2.2.1.15.85|65|0 +1.3.6.1.2.1.2.2.1.15.86|65|0 +1.3.6.1.2.1.2.2.1.15.87|65|0 +1.3.6.1.2.1.2.2.1.15.88|65|0 +1.3.6.1.2.1.2.2.1.15.89|65|0 +1.3.6.1.2.1.2.2.1.15.90|65|0 +1.3.6.1.2.1.2.2.1.15.91|65|0 +1.3.6.1.2.1.2.2.1.15.92|65|0 +1.3.6.1.2.1.2.2.1.15.93|65|0 +1.3.6.1.2.1.2.2.1.15.94|65|0 +1.3.6.1.2.1.2.2.1.15.95|65|0 +1.3.6.1.2.1.2.2.1.15.96|65|0 +1.3.6.1.2.1.2.2.1.15.97|65|0 +1.3.6.1.2.1.2.2.1.15.98|65|0 +1.3.6.1.2.1.2.2.1.15.99|65|0 +1.3.6.1.2.1.2.2.1.15.100|65|0 +1.3.6.1.2.1.2.2.1.15.101|65|0 +1.3.6.1.2.1.2.2.1.15.102|65|0 +1.3.6.1.2.1.2.2.1.15.103|65|0 +1.3.6.1.2.1.2.2.1.15.104|65|0 +1.3.6.1.2.1.2.2.1.15.105|65|0 +1.3.6.1.2.1.2.2.1.15.106|65|0 +1.3.6.1.2.1.2.2.1.15.107|65|0 +1.3.6.1.2.1.2.2.1.15.108|65|0 +1.3.6.1.2.1.2.2.1.15.109|65|0 +1.3.6.1.2.1.2.2.1.15.110|65|0 +1.3.6.1.2.1.2.2.1.15.111|65|0 +1.3.6.1.2.1.2.2.1.15.112|65|0 +1.3.6.1.2.1.2.2.1.15.17825793|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|0 +1.3.6.1.2.1.2.2.1.16.2|65|0 +1.3.6.1.2.1.2.2.1.16.3|65|0 +1.3.6.1.2.1.2.2.1.16.4|65|0 +1.3.6.1.2.1.2.2.1.16.5|65|0 +1.3.6.1.2.1.2.2.1.16.6|65|0 +1.3.6.1.2.1.2.2.1.16.7|65|0 +1.3.6.1.2.1.2.2.1.16.8|65|45952 +1.3.6.1.2.1.2.2.1.16.9|65|390380025 +1.3.6.1.2.1.2.2.1.16.10|65|0 +1.3.6.1.2.1.2.2.1.16.11|65|0 +1.3.6.1.2.1.2.2.1.16.12|65|0 +1.3.6.1.2.1.2.2.1.16.13|65|0 +1.3.6.1.2.1.2.2.1.16.14|65|0 +1.3.6.1.2.1.2.2.1.16.15|65|0 +1.3.6.1.2.1.2.2.1.16.16|65|0 +1.3.6.1.2.1.2.2.1.16.17|65|0 +1.3.6.1.2.1.2.2.1.16.18|65|3701769832 +1.3.6.1.2.1.2.2.1.16.19|65|0 +1.3.6.1.2.1.2.2.1.16.20|65|0 +1.3.6.1.2.1.2.2.1.16.21|65|0 +1.3.6.1.2.1.2.2.1.16.22|65|0 +1.3.6.1.2.1.2.2.1.16.23|65|0 +1.3.6.1.2.1.2.2.1.16.24|65|0 +1.3.6.1.2.1.2.2.1.16.25|65|850572325 +1.3.6.1.2.1.2.2.1.16.26|65|4023479850 +1.3.6.1.2.1.2.2.1.16.27|65|0 +1.3.6.1.2.1.2.2.1.16.28|65|1132008911 +1.3.6.1.2.1.2.2.1.16.29|65|0 +1.3.6.1.2.1.2.2.1.16.30|65|0 +1.3.6.1.2.1.2.2.1.16.31|65|0 +1.3.6.1.2.1.2.2.1.16.32|65|0 +1.3.6.1.2.1.2.2.1.16.33|65|116744440 +1.3.6.1.2.1.2.2.1.16.34|65|0 +1.3.6.1.2.1.2.2.1.16.35|65|0 +1.3.6.1.2.1.2.2.1.16.36|65|0 +1.3.6.1.2.1.2.2.1.16.37|65|0 +1.3.6.1.2.1.2.2.1.16.38|65|0 +1.3.6.1.2.1.2.2.1.16.39|65|0 +1.3.6.1.2.1.2.2.1.16.40|65|0 +1.3.6.1.2.1.2.2.1.16.41|65|0 +1.3.6.1.2.1.2.2.1.16.42|65|0 +1.3.6.1.2.1.2.2.1.16.43|65|0 +1.3.6.1.2.1.2.2.1.16.44|65|0 +1.3.6.1.2.1.2.2.1.16.45|65|0 +1.3.6.1.2.1.2.2.1.16.46|65|3655182870 +1.3.6.1.2.1.2.2.1.16.47|65|0 +1.3.6.1.2.1.2.2.1.16.48|65|0 +1.3.6.1.2.1.2.2.1.16.49|65|0 +1.3.6.1.2.1.2.2.1.16.50|65|0 +1.3.6.1.2.1.2.2.1.16.51|65|0 +1.3.6.1.2.1.2.2.1.16.52|65|0 +1.3.6.1.2.1.2.2.1.16.53|65|828482804 +1.3.6.1.2.1.2.2.1.16.54|65|356491066 +1.3.6.1.2.1.2.2.1.16.55|65|0 +1.3.6.1.2.1.2.2.1.16.56|65|6687104 +1.3.6.1.2.1.2.2.1.16.57|65|0 +1.3.6.1.2.1.2.2.1.16.58|65|0 +1.3.6.1.2.1.2.2.1.16.59|65|0 +1.3.6.1.2.1.2.2.1.16.60|65|0 +1.3.6.1.2.1.2.2.1.16.61|65|0 +1.3.6.1.2.1.2.2.1.16.62|65|0 +1.3.6.1.2.1.2.2.1.16.63|65|0 +1.3.6.1.2.1.2.2.1.16.64|65|0 +1.3.6.1.2.1.2.2.1.16.65|65|0 +1.3.6.1.2.1.2.2.1.16.66|65|0 +1.3.6.1.2.1.2.2.1.16.67|65|0 +1.3.6.1.2.1.2.2.1.16.68|65|0 +1.3.6.1.2.1.2.2.1.16.69|65|0 +1.3.6.1.2.1.2.2.1.16.70|65|0 +1.3.6.1.2.1.2.2.1.16.71|65|0 +1.3.6.1.2.1.2.2.1.16.72|65|0 +1.3.6.1.2.1.2.2.1.16.73|65|0 +1.3.6.1.2.1.2.2.1.16.74|65|0 +1.3.6.1.2.1.2.2.1.16.75|65|0 +1.3.6.1.2.1.2.2.1.16.76|65|0 +1.3.6.1.2.1.2.2.1.16.77|65|0 +1.3.6.1.2.1.2.2.1.16.78|65|0 +1.3.6.1.2.1.2.2.1.16.79|65|0 +1.3.6.1.2.1.2.2.1.16.80|65|0 +1.3.6.1.2.1.2.2.1.16.81|65|0 +1.3.6.1.2.1.2.2.1.16.82|65|0 +1.3.6.1.2.1.2.2.1.16.83|65|0 +1.3.6.1.2.1.2.2.1.16.84|65|0 +1.3.6.1.2.1.2.2.1.16.85|65|0 +1.3.6.1.2.1.2.2.1.16.86|65|0 +1.3.6.1.2.1.2.2.1.16.87|65|0 +1.3.6.1.2.1.2.2.1.16.88|65|0 +1.3.6.1.2.1.2.2.1.16.89|65|0 +1.3.6.1.2.1.2.2.1.16.90|65|0 +1.3.6.1.2.1.2.2.1.16.91|65|0 +1.3.6.1.2.1.2.2.1.16.92|65|0 +1.3.6.1.2.1.2.2.1.16.93|65|0 +1.3.6.1.2.1.2.2.1.16.94|65|0 +1.3.6.1.2.1.2.2.1.16.95|65|0 +1.3.6.1.2.1.2.2.1.16.96|65|0 +1.3.6.1.2.1.2.2.1.16.97|65|0 +1.3.6.1.2.1.2.2.1.16.98|65|0 +1.3.6.1.2.1.2.2.1.16.99|65|0 +1.3.6.1.2.1.2.2.1.16.100|65|0 +1.3.6.1.2.1.2.2.1.16.101|65|0 +1.3.6.1.2.1.2.2.1.16.102|65|0 +1.3.6.1.2.1.2.2.1.16.103|65|0 +1.3.6.1.2.1.2.2.1.16.104|65|0 +1.3.6.1.2.1.2.2.1.16.105|65|0 +1.3.6.1.2.1.2.2.1.16.106|65|0 +1.3.6.1.2.1.2.2.1.16.107|65|0 +1.3.6.1.2.1.2.2.1.16.108|65|0 +1.3.6.1.2.1.2.2.1.16.109|65|0 +1.3.6.1.2.1.2.2.1.16.110|65|0 +1.3.6.1.2.1.2.2.1.16.111|65|0 +1.3.6.1.2.1.2.2.1.16.112|65|0 +1.3.6.1.2.1.2.2.1.16.17825793|65|1138681295 +1.3.6.1.2.1.2.2.1.17.1|65|0 +1.3.6.1.2.1.2.2.1.17.2|65|0 +1.3.6.1.2.1.2.2.1.17.3|65|0 +1.3.6.1.2.1.2.2.1.17.4|65|0 +1.3.6.1.2.1.2.2.1.17.5|65|0 +1.3.6.1.2.1.2.2.1.17.6|65|0 +1.3.6.1.2.1.2.2.1.17.7|65|0 +1.3.6.1.2.1.2.2.1.17.8|65|0 +1.3.6.1.2.1.2.2.1.17.9|65|1784168 +1.3.6.1.2.1.2.2.1.17.10|65|0 +1.3.6.1.2.1.2.2.1.17.11|65|0 +1.3.6.1.2.1.2.2.1.17.12|65|0 +1.3.6.1.2.1.2.2.1.17.13|65|0 +1.3.6.1.2.1.2.2.1.17.14|65|0 +1.3.6.1.2.1.2.2.1.17.15|65|0 +1.3.6.1.2.1.2.2.1.17.16|65|0 +1.3.6.1.2.1.2.2.1.17.17|65|0 +1.3.6.1.2.1.2.2.1.17.18|65|35680665 +1.3.6.1.2.1.2.2.1.17.19|65|0 +1.3.6.1.2.1.2.2.1.17.20|65|0 +1.3.6.1.2.1.2.2.1.17.21|65|0 +1.3.6.1.2.1.2.2.1.17.22|65|0 +1.3.6.1.2.1.2.2.1.17.23|65|0 +1.3.6.1.2.1.2.2.1.17.24|65|0 +1.3.6.1.2.1.2.2.1.17.25|65|13347681 +1.3.6.1.2.1.2.2.1.17.26|65|26525136 +1.3.6.1.2.1.2.2.1.17.27|65|0 +1.3.6.1.2.1.2.2.1.17.28|65|4627149 +1.3.6.1.2.1.2.2.1.17.29|65|0 +1.3.6.1.2.1.2.2.1.17.30|65|0 +1.3.6.1.2.1.2.2.1.17.31|65|0 +1.3.6.1.2.1.2.2.1.17.32|65|0 +1.3.6.1.2.1.2.2.1.17.33|65|87302 +1.3.6.1.2.1.2.2.1.17.34|65|0 +1.3.6.1.2.1.2.2.1.17.35|65|0 +1.3.6.1.2.1.2.2.1.17.36|65|0 +1.3.6.1.2.1.2.2.1.17.37|65|0 +1.3.6.1.2.1.2.2.1.17.38|65|0 +1.3.6.1.2.1.2.2.1.17.39|65|0 +1.3.6.1.2.1.2.2.1.17.40|65|0 +1.3.6.1.2.1.2.2.1.17.41|65|0 +1.3.6.1.2.1.2.2.1.17.42|65|0 +1.3.6.1.2.1.2.2.1.17.43|65|0 +1.3.6.1.2.1.2.2.1.17.44|65|0 +1.3.6.1.2.1.2.2.1.17.45|65|0 +1.3.6.1.2.1.2.2.1.17.46|65|26518266 +1.3.6.1.2.1.2.2.1.17.47|65|0 +1.3.6.1.2.1.2.2.1.17.48|65|0 +1.3.6.1.2.1.2.2.1.17.49|65|0 +1.3.6.1.2.1.2.2.1.17.50|65|0 +1.3.6.1.2.1.2.2.1.17.51|65|0 +1.3.6.1.2.1.2.2.1.17.52|65|0 +1.3.6.1.2.1.2.2.1.17.53|65|13350076 +1.3.6.1.2.1.2.2.1.17.54|65|38686822 +1.3.6.1.2.1.2.2.1.17.55|65|0 +1.3.6.1.2.1.2.2.1.17.56|65|0 +1.3.6.1.2.1.2.2.1.17.57|65|0 +1.3.6.1.2.1.2.2.1.17.58|65|0 +1.3.6.1.2.1.2.2.1.17.59|65|0 +1.3.6.1.2.1.2.2.1.17.60|65|0 +1.3.6.1.2.1.2.2.1.17.61|65|0 +1.3.6.1.2.1.2.2.1.17.62|65|0 +1.3.6.1.2.1.2.2.1.17.63|65|0 +1.3.6.1.2.1.2.2.1.17.64|65|0 +1.3.6.1.2.1.2.2.1.17.65|65|0 +1.3.6.1.2.1.2.2.1.17.66|65|0 +1.3.6.1.2.1.2.2.1.17.67|65|0 +1.3.6.1.2.1.2.2.1.17.68|65|0 +1.3.6.1.2.1.2.2.1.17.69|65|0 +1.3.6.1.2.1.2.2.1.17.70|65|0 +1.3.6.1.2.1.2.2.1.17.71|65|0 +1.3.6.1.2.1.2.2.1.17.72|65|0 +1.3.6.1.2.1.2.2.1.17.73|65|0 +1.3.6.1.2.1.2.2.1.17.74|65|0 +1.3.6.1.2.1.2.2.1.17.75|65|0 +1.3.6.1.2.1.2.2.1.17.76|65|0 +1.3.6.1.2.1.2.2.1.17.77|65|0 +1.3.6.1.2.1.2.2.1.17.78|65|0 +1.3.6.1.2.1.2.2.1.17.79|65|0 +1.3.6.1.2.1.2.2.1.17.80|65|0 +1.3.6.1.2.1.2.2.1.17.81|65|0 +1.3.6.1.2.1.2.2.1.17.82|65|0 +1.3.6.1.2.1.2.2.1.17.83|65|0 +1.3.6.1.2.1.2.2.1.17.84|65|0 +1.3.6.1.2.1.2.2.1.17.85|65|0 +1.3.6.1.2.1.2.2.1.17.86|65|0 +1.3.6.1.2.1.2.2.1.17.87|65|0 +1.3.6.1.2.1.2.2.1.17.88|65|0 +1.3.6.1.2.1.2.2.1.17.89|65|0 +1.3.6.1.2.1.2.2.1.17.90|65|0 +1.3.6.1.2.1.2.2.1.17.91|65|0 +1.3.6.1.2.1.2.2.1.17.92|65|0 +1.3.6.1.2.1.2.2.1.17.93|65|0 +1.3.6.1.2.1.2.2.1.17.94|65|0 +1.3.6.1.2.1.2.2.1.17.95|65|0 +1.3.6.1.2.1.2.2.1.17.96|65|0 +1.3.6.1.2.1.2.2.1.17.97|65|0 +1.3.6.1.2.1.2.2.1.17.98|65|0 +1.3.6.1.2.1.2.2.1.17.99|65|0 +1.3.6.1.2.1.2.2.1.17.100|65|0 +1.3.6.1.2.1.2.2.1.17.101|65|0 +1.3.6.1.2.1.2.2.1.17.102|65|0 +1.3.6.1.2.1.2.2.1.17.103|65|0 +1.3.6.1.2.1.2.2.1.17.104|65|0 +1.3.6.1.2.1.2.2.1.17.105|65|0 +1.3.6.1.2.1.2.2.1.17.106|65|0 +1.3.6.1.2.1.2.2.1.17.107|65|0 +1.3.6.1.2.1.2.2.1.17.108|65|0 +1.3.6.1.2.1.2.2.1.17.109|65|0 +1.3.6.1.2.1.2.2.1.17.110|65|0 +1.3.6.1.2.1.2.2.1.17.111|65|0 +1.3.6.1.2.1.2.2.1.17.112|65|0 +1.3.6.1.2.1.2.2.1.17.17825793|65|4627149 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|0 +1.3.6.1.2.1.2.2.1.18.3|65|0 +1.3.6.1.2.1.2.2.1.18.4|65|0 +1.3.6.1.2.1.2.2.1.18.5|65|0 +1.3.6.1.2.1.2.2.1.18.6|65|0 +1.3.6.1.2.1.2.2.1.18.7|65|0 +1.3.6.1.2.1.2.2.1.18.8|65|718 +1.3.6.1.2.1.2.2.1.18.9|65|782810 +1.3.6.1.2.1.2.2.1.18.10|65|0 +1.3.6.1.2.1.2.2.1.18.11|65|0 +1.3.6.1.2.1.2.2.1.18.12|65|0 +1.3.6.1.2.1.2.2.1.18.13|65|0 +1.3.6.1.2.1.2.2.1.18.14|65|0 +1.3.6.1.2.1.2.2.1.18.15|65|0 +1.3.6.1.2.1.2.2.1.18.16|65|0 +1.3.6.1.2.1.2.2.1.18.17|65|0 +1.3.6.1.2.1.2.2.1.18.18|65|2355090 +1.3.6.1.2.1.2.2.1.18.19|65|0 +1.3.6.1.2.1.2.2.1.18.20|65|0 +1.3.6.1.2.1.2.2.1.18.21|65|0 +1.3.6.1.2.1.2.2.1.18.22|65|0 +1.3.6.1.2.1.2.2.1.18.23|65|0 +1.3.6.1.2.1.2.2.1.18.24|65|0 +1.3.6.1.2.1.2.2.1.18.25|65|3725432 +1.3.6.1.2.1.2.2.1.18.26|65|40222 +1.3.6.1.2.1.2.2.1.18.27|65|0 +1.3.6.1.2.1.2.2.1.18.28|65|52354 +1.3.6.1.2.1.2.2.1.18.29|65|0 +1.3.6.1.2.1.2.2.1.18.30|65|0 +1.3.6.1.2.1.2.2.1.18.31|65|0 +1.3.6.1.2.1.2.2.1.18.32|65|0 +1.3.6.1.2.1.2.2.1.18.33|65|895814 +1.3.6.1.2.1.2.2.1.18.34|65|0 +1.3.6.1.2.1.2.2.1.18.35|65|0 +1.3.6.1.2.1.2.2.1.18.36|65|0 +1.3.6.1.2.1.2.2.1.18.37|65|0 +1.3.6.1.2.1.2.2.1.18.38|65|0 +1.3.6.1.2.1.2.2.1.18.39|65|0 +1.3.6.1.2.1.2.2.1.18.40|65|0 +1.3.6.1.2.1.2.2.1.18.41|65|0 +1.3.6.1.2.1.2.2.1.18.42|65|0 +1.3.6.1.2.1.2.2.1.18.43|65|0 +1.3.6.1.2.1.2.2.1.18.44|65|0 +1.3.6.1.2.1.2.2.1.18.45|65|0 +1.3.6.1.2.1.2.2.1.18.46|65|698099 +1.3.6.1.2.1.2.2.1.18.47|65|0 +1.3.6.1.2.1.2.2.1.18.48|65|0 +1.3.6.1.2.1.2.2.1.18.49|65|0 +1.3.6.1.2.1.2.2.1.18.50|65|0 +1.3.6.1.2.1.2.2.1.18.51|65|0 +1.3.6.1.2.1.2.2.1.18.52|65|0 +1.3.6.1.2.1.2.2.1.18.53|65|3511026 +1.3.6.1.2.1.2.2.1.18.54|65|1343074 +1.3.6.1.2.1.2.2.1.18.55|65|0 +1.3.6.1.2.1.2.2.1.18.56|65|52243 +1.3.6.1.2.1.2.2.1.18.57|65|0 +1.3.6.1.2.1.2.2.1.18.58|65|0 +1.3.6.1.2.1.2.2.1.18.59|65|0 +1.3.6.1.2.1.2.2.1.18.60|65|0 +1.3.6.1.2.1.2.2.1.18.61|65|0 +1.3.6.1.2.1.2.2.1.18.62|65|0 +1.3.6.1.2.1.2.2.1.18.63|65|0 +1.3.6.1.2.1.2.2.1.18.64|65|0 +1.3.6.1.2.1.2.2.1.18.65|65|0 +1.3.6.1.2.1.2.2.1.18.66|65|0 +1.3.6.1.2.1.2.2.1.18.67|65|0 +1.3.6.1.2.1.2.2.1.18.68|65|0 +1.3.6.1.2.1.2.2.1.18.69|65|0 +1.3.6.1.2.1.2.2.1.18.70|65|0 +1.3.6.1.2.1.2.2.1.18.71|65|0 +1.3.6.1.2.1.2.2.1.18.72|65|0 +1.3.6.1.2.1.2.2.1.18.73|65|0 +1.3.6.1.2.1.2.2.1.18.74|65|0 +1.3.6.1.2.1.2.2.1.18.75|65|0 +1.3.6.1.2.1.2.2.1.18.76|65|0 +1.3.6.1.2.1.2.2.1.18.77|65|0 +1.3.6.1.2.1.2.2.1.18.78|65|0 +1.3.6.1.2.1.2.2.1.18.79|65|0 +1.3.6.1.2.1.2.2.1.18.80|65|0 +1.3.6.1.2.1.2.2.1.18.81|65|0 +1.3.6.1.2.1.2.2.1.18.82|65|0 +1.3.6.1.2.1.2.2.1.18.83|65|0 +1.3.6.1.2.1.2.2.1.18.84|65|0 +1.3.6.1.2.1.2.2.1.18.85|65|0 +1.3.6.1.2.1.2.2.1.18.86|65|0 +1.3.6.1.2.1.2.2.1.18.87|65|0 +1.3.6.1.2.1.2.2.1.18.88|65|0 +1.3.6.1.2.1.2.2.1.18.89|65|0 +1.3.6.1.2.1.2.2.1.18.90|65|0 +1.3.6.1.2.1.2.2.1.18.91|65|0 +1.3.6.1.2.1.2.2.1.18.92|65|0 +1.3.6.1.2.1.2.2.1.18.93|65|0 +1.3.6.1.2.1.2.2.1.18.94|65|0 +1.3.6.1.2.1.2.2.1.18.95|65|0 +1.3.6.1.2.1.2.2.1.18.96|65|0 +1.3.6.1.2.1.2.2.1.18.97|65|0 +1.3.6.1.2.1.2.2.1.18.98|65|0 +1.3.6.1.2.1.2.2.1.18.99|65|0 +1.3.6.1.2.1.2.2.1.18.100|65|0 +1.3.6.1.2.1.2.2.1.18.101|65|0 +1.3.6.1.2.1.2.2.1.18.102|65|0 +1.3.6.1.2.1.2.2.1.18.103|65|0 +1.3.6.1.2.1.2.2.1.18.104|65|0 +1.3.6.1.2.1.2.2.1.18.105|65|0 +1.3.6.1.2.1.2.2.1.18.106|65|0 +1.3.6.1.2.1.2.2.1.18.107|65|0 +1.3.6.1.2.1.2.2.1.18.108|65|0 +1.3.6.1.2.1.2.2.1.18.109|65|0 +1.3.6.1.2.1.2.2.1.18.110|65|0 +1.3.6.1.2.1.2.2.1.18.111|65|0 +1.3.6.1.2.1.2.2.1.18.112|65|0 +1.3.6.1.2.1.2.2.1.18.17825793|65|104482 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|2 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|1 +1.3.6.1.2.1.2.2.1.19.29|65|0 +1.3.6.1.2.1.2.2.1.19.30|65|0 +1.3.6.1.2.1.2.2.1.19.31|65|0 +1.3.6.1.2.1.2.2.1.19.32|65|0 +1.3.6.1.2.1.2.2.1.19.33|65|22 +1.3.6.1.2.1.2.2.1.19.34|65|0 +1.3.6.1.2.1.2.2.1.19.35|65|0 +1.3.6.1.2.1.2.2.1.19.36|65|0 +1.3.6.1.2.1.2.2.1.19.37|65|0 +1.3.6.1.2.1.2.2.1.19.38|65|0 +1.3.6.1.2.1.2.2.1.19.39|65|0 +1.3.6.1.2.1.2.2.1.19.40|65|0 +1.3.6.1.2.1.2.2.1.19.41|65|0 +1.3.6.1.2.1.2.2.1.19.42|65|0 +1.3.6.1.2.1.2.2.1.19.43|65|0 +1.3.6.1.2.1.2.2.1.19.44|65|0 +1.3.6.1.2.1.2.2.1.19.45|65|0 +1.3.6.1.2.1.2.2.1.19.46|65|7 +1.3.6.1.2.1.2.2.1.19.47|65|0 +1.3.6.1.2.1.2.2.1.19.48|65|0 +1.3.6.1.2.1.2.2.1.19.49|65|0 +1.3.6.1.2.1.2.2.1.19.50|65|0 +1.3.6.1.2.1.2.2.1.19.51|65|0 +1.3.6.1.2.1.2.2.1.19.52|65|0 +1.3.6.1.2.1.2.2.1.19.53|65|0 +1.3.6.1.2.1.2.2.1.19.54|65|0 +1.3.6.1.2.1.2.2.1.19.55|65|0 +1.3.6.1.2.1.2.2.1.19.56|65|2 +1.3.6.1.2.1.2.2.1.19.57|65|0 +1.3.6.1.2.1.2.2.1.19.58|65|0 +1.3.6.1.2.1.2.2.1.19.59|65|0 +1.3.6.1.2.1.2.2.1.19.60|65|0 +1.3.6.1.2.1.2.2.1.19.61|65|0 +1.3.6.1.2.1.2.2.1.19.62|65|0 +1.3.6.1.2.1.2.2.1.19.63|65|0 +1.3.6.1.2.1.2.2.1.19.64|65|0 +1.3.6.1.2.1.2.2.1.19.65|65|0 +1.3.6.1.2.1.2.2.1.19.66|65|0 +1.3.6.1.2.1.2.2.1.19.67|65|0 +1.3.6.1.2.1.2.2.1.19.68|65|0 +1.3.6.1.2.1.2.2.1.19.69|65|0 +1.3.6.1.2.1.2.2.1.19.70|65|0 +1.3.6.1.2.1.2.2.1.19.71|65|0 +1.3.6.1.2.1.2.2.1.19.72|65|0 +1.3.6.1.2.1.2.2.1.19.73|65|0 +1.3.6.1.2.1.2.2.1.19.74|65|0 +1.3.6.1.2.1.2.2.1.19.75|65|0 +1.3.6.1.2.1.2.2.1.19.76|65|0 +1.3.6.1.2.1.2.2.1.19.77|65|0 +1.3.6.1.2.1.2.2.1.19.78|65|0 +1.3.6.1.2.1.2.2.1.19.79|65|0 +1.3.6.1.2.1.2.2.1.19.80|65|0 +1.3.6.1.2.1.2.2.1.19.81|65|0 +1.3.6.1.2.1.2.2.1.19.82|65|0 +1.3.6.1.2.1.2.2.1.19.83|65|0 +1.3.6.1.2.1.2.2.1.19.84|65|0 +1.3.6.1.2.1.2.2.1.19.85|65|0 +1.3.6.1.2.1.2.2.1.19.86|65|0 +1.3.6.1.2.1.2.2.1.19.87|65|0 +1.3.6.1.2.1.2.2.1.19.88|65|0 +1.3.6.1.2.1.2.2.1.19.89|65|0 +1.3.6.1.2.1.2.2.1.19.90|65|0 +1.3.6.1.2.1.2.2.1.19.91|65|0 +1.3.6.1.2.1.2.2.1.19.92|65|0 +1.3.6.1.2.1.2.2.1.19.93|65|0 +1.3.6.1.2.1.2.2.1.19.94|65|0 +1.3.6.1.2.1.2.2.1.19.95|65|0 +1.3.6.1.2.1.2.2.1.19.96|65|0 +1.3.6.1.2.1.2.2.1.19.97|65|0 +1.3.6.1.2.1.2.2.1.19.98|65|0 +1.3.6.1.2.1.2.2.1.19.99|65|0 +1.3.6.1.2.1.2.2.1.19.100|65|0 +1.3.6.1.2.1.2.2.1.19.101|65|0 +1.3.6.1.2.1.2.2.1.19.102|65|0 +1.3.6.1.2.1.2.2.1.19.103|65|0 +1.3.6.1.2.1.2.2.1.19.104|65|0 +1.3.6.1.2.1.2.2.1.19.105|65|0 +1.3.6.1.2.1.2.2.1.19.106|65|0 +1.3.6.1.2.1.2.2.1.19.107|65|0 +1.3.6.1.2.1.2.2.1.19.108|65|0 +1.3.6.1.2.1.2.2.1.19.109|65|0 +1.3.6.1.2.1.2.2.1.19.110|65|0 +1.3.6.1.2.1.2.2.1.19.111|65|0 +1.3.6.1.2.1.2.2.1.19.112|65|0 +1.3.6.1.2.1.2.2.1.19.17825793|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.29|65|0 +1.3.6.1.2.1.2.2.1.20.30|65|0 +1.3.6.1.2.1.2.2.1.20.31|65|0 +1.3.6.1.2.1.2.2.1.20.32|65|0 +1.3.6.1.2.1.2.2.1.20.33|65|0 +1.3.6.1.2.1.2.2.1.20.34|65|0 +1.3.6.1.2.1.2.2.1.20.35|65|0 +1.3.6.1.2.1.2.2.1.20.36|65|0 +1.3.6.1.2.1.2.2.1.20.37|65|0 +1.3.6.1.2.1.2.2.1.20.38|65|0 +1.3.6.1.2.1.2.2.1.20.39|65|0 +1.3.6.1.2.1.2.2.1.20.40|65|0 +1.3.6.1.2.1.2.2.1.20.41|65|0 +1.3.6.1.2.1.2.2.1.20.42|65|0 +1.3.6.1.2.1.2.2.1.20.43|65|0 +1.3.6.1.2.1.2.2.1.20.44|65|0 +1.3.6.1.2.1.2.2.1.20.45|65|0 +1.3.6.1.2.1.2.2.1.20.46|65|0 +1.3.6.1.2.1.2.2.1.20.47|65|0 +1.3.6.1.2.1.2.2.1.20.48|65|0 +1.3.6.1.2.1.2.2.1.20.49|65|0 +1.3.6.1.2.1.2.2.1.20.50|65|0 +1.3.6.1.2.1.2.2.1.20.51|65|0 +1.3.6.1.2.1.2.2.1.20.52|65|0 +1.3.6.1.2.1.2.2.1.20.53|65|0 +1.3.6.1.2.1.2.2.1.20.54|65|0 +1.3.6.1.2.1.2.2.1.20.55|65|0 +1.3.6.1.2.1.2.2.1.20.56|65|0 +1.3.6.1.2.1.2.2.1.20.57|65|0 +1.3.6.1.2.1.2.2.1.20.58|65|0 +1.3.6.1.2.1.2.2.1.20.59|65|0 +1.3.6.1.2.1.2.2.1.20.60|65|0 +1.3.6.1.2.1.2.2.1.20.61|65|0 +1.3.6.1.2.1.2.2.1.20.62|65|0 +1.3.6.1.2.1.2.2.1.20.63|65|0 +1.3.6.1.2.1.2.2.1.20.64|65|0 +1.3.6.1.2.1.2.2.1.20.65|65|0 +1.3.6.1.2.1.2.2.1.20.66|65|0 +1.3.6.1.2.1.2.2.1.20.67|65|0 +1.3.6.1.2.1.2.2.1.20.68|65|0 +1.3.6.1.2.1.2.2.1.20.69|65|0 +1.3.6.1.2.1.2.2.1.20.70|65|0 +1.3.6.1.2.1.2.2.1.20.71|65|0 +1.3.6.1.2.1.2.2.1.20.72|65|0 +1.3.6.1.2.1.2.2.1.20.73|65|0 +1.3.6.1.2.1.2.2.1.20.74|65|0 +1.3.6.1.2.1.2.2.1.20.75|65|0 +1.3.6.1.2.1.2.2.1.20.76|65|0 +1.3.6.1.2.1.2.2.1.20.77|65|0 +1.3.6.1.2.1.2.2.1.20.78|65|0 +1.3.6.1.2.1.2.2.1.20.79|65|0 +1.3.6.1.2.1.2.2.1.20.80|65|0 +1.3.6.1.2.1.2.2.1.20.81|65|0 +1.3.6.1.2.1.2.2.1.20.82|65|0 +1.3.6.1.2.1.2.2.1.20.83|65|0 +1.3.6.1.2.1.2.2.1.20.84|65|0 +1.3.6.1.2.1.2.2.1.20.85|65|0 +1.3.6.1.2.1.2.2.1.20.86|65|0 +1.3.6.1.2.1.2.2.1.20.87|65|0 +1.3.6.1.2.1.2.2.1.20.88|65|0 +1.3.6.1.2.1.2.2.1.20.89|65|0 +1.3.6.1.2.1.2.2.1.20.90|65|0 +1.3.6.1.2.1.2.2.1.20.91|65|0 +1.3.6.1.2.1.2.2.1.20.92|65|0 +1.3.6.1.2.1.2.2.1.20.93|65|0 +1.3.6.1.2.1.2.2.1.20.94|65|0 +1.3.6.1.2.1.2.2.1.20.95|65|0 +1.3.6.1.2.1.2.2.1.20.96|65|0 +1.3.6.1.2.1.2.2.1.20.97|65|0 +1.3.6.1.2.1.2.2.1.20.98|65|0 +1.3.6.1.2.1.2.2.1.20.99|65|0 +1.3.6.1.2.1.2.2.1.20.100|65|0 +1.3.6.1.2.1.2.2.1.20.101|65|0 +1.3.6.1.2.1.2.2.1.20.102|65|0 +1.3.6.1.2.1.2.2.1.20.103|65|0 +1.3.6.1.2.1.2.2.1.20.104|65|0 +1.3.6.1.2.1.2.2.1.20.105|65|0 +1.3.6.1.2.1.2.2.1.20.106|65|0 +1.3.6.1.2.1.2.2.1.20.107|65|0 +1.3.6.1.2.1.2.2.1.20.108|65|0 +1.3.6.1.2.1.2.2.1.20.109|65|0 +1.3.6.1.2.1.2.2.1.20.110|65|0 +1.3.6.1.2.1.2.2.1.20.111|65|0 +1.3.6.1.2.1.2.2.1.20.112|65|0 +1.3.6.1.2.1.2.2.1.20.17825793|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|0 +1.3.6.1.2.1.2.2.1.21.3|66|0 +1.3.6.1.2.1.2.2.1.21.4|66|0 +1.3.6.1.2.1.2.2.1.21.5|66|0 +1.3.6.1.2.1.2.2.1.21.6|66|0 +1.3.6.1.2.1.2.2.1.21.7|66|0 +1.3.6.1.2.1.2.2.1.21.8|66|0 +1.3.6.1.2.1.2.2.1.21.9|66|0 +1.3.6.1.2.1.2.2.1.21.10|66|0 +1.3.6.1.2.1.2.2.1.21.11|66|0 +1.3.6.1.2.1.2.2.1.21.12|66|0 +1.3.6.1.2.1.2.2.1.21.13|66|0 +1.3.6.1.2.1.2.2.1.21.14|66|0 +1.3.6.1.2.1.2.2.1.21.15|66|0 +1.3.6.1.2.1.2.2.1.21.16|66|0 +1.3.6.1.2.1.2.2.1.21.17|66|0 +1.3.6.1.2.1.2.2.1.21.18|66|0 +1.3.6.1.2.1.2.2.1.21.19|66|0 +1.3.6.1.2.1.2.2.1.21.20|66|0 +1.3.6.1.2.1.2.2.1.21.21|66|0 +1.3.6.1.2.1.2.2.1.21.22|66|0 +1.3.6.1.2.1.2.2.1.21.23|66|0 +1.3.6.1.2.1.2.2.1.21.24|66|0 +1.3.6.1.2.1.2.2.1.21.25|66|0 +1.3.6.1.2.1.2.2.1.21.26|66|0 +1.3.6.1.2.1.2.2.1.21.27|66|0 +1.3.6.1.2.1.2.2.1.21.28|66|0 +1.3.6.1.2.1.2.2.1.21.29|66|0 +1.3.6.1.2.1.2.2.1.21.30|66|0 +1.3.6.1.2.1.2.2.1.21.31|66|0 +1.3.6.1.2.1.2.2.1.21.32|66|0 +1.3.6.1.2.1.2.2.1.21.33|66|0 +1.3.6.1.2.1.2.2.1.21.34|66|0 +1.3.6.1.2.1.2.2.1.21.35|66|0 +1.3.6.1.2.1.2.2.1.21.36|66|0 +1.3.6.1.2.1.2.2.1.21.37|66|0 +1.3.6.1.2.1.2.2.1.21.38|66|0 +1.3.6.1.2.1.2.2.1.21.39|66|0 +1.3.6.1.2.1.2.2.1.21.40|66|0 +1.3.6.1.2.1.2.2.1.21.41|66|0 +1.3.6.1.2.1.2.2.1.21.42|66|0 +1.3.6.1.2.1.2.2.1.21.43|66|0 +1.3.6.1.2.1.2.2.1.21.44|66|0 +1.3.6.1.2.1.2.2.1.21.45|66|0 +1.3.6.1.2.1.2.2.1.21.46|66|0 +1.3.6.1.2.1.2.2.1.21.47|66|0 +1.3.6.1.2.1.2.2.1.21.48|66|0 +1.3.6.1.2.1.2.2.1.21.49|66|0 +1.3.6.1.2.1.2.2.1.21.50|66|0 +1.3.6.1.2.1.2.2.1.21.51|66|0 +1.3.6.1.2.1.2.2.1.21.52|66|0 +1.3.6.1.2.1.2.2.1.21.53|66|0 +1.3.6.1.2.1.2.2.1.21.54|66|0 +1.3.6.1.2.1.2.2.1.21.55|66|0 +1.3.6.1.2.1.2.2.1.21.56|66|0 +1.3.6.1.2.1.2.2.1.21.57|66|0 +1.3.6.1.2.1.2.2.1.21.58|66|0 +1.3.6.1.2.1.2.2.1.21.59|66|0 +1.3.6.1.2.1.2.2.1.21.60|66|0 +1.3.6.1.2.1.2.2.1.21.61|66|0 +1.3.6.1.2.1.2.2.1.21.62|66|0 +1.3.6.1.2.1.2.2.1.21.63|66|0 +1.3.6.1.2.1.2.2.1.21.64|66|0 +1.3.6.1.2.1.2.2.1.21.65|66|0 +1.3.6.1.2.1.2.2.1.21.66|66|0 +1.3.6.1.2.1.2.2.1.21.67|66|0 +1.3.6.1.2.1.2.2.1.21.68|66|0 +1.3.6.1.2.1.2.2.1.21.69|66|0 +1.3.6.1.2.1.2.2.1.21.70|66|0 +1.3.6.1.2.1.2.2.1.21.71|66|0 +1.3.6.1.2.1.2.2.1.21.72|66|0 +1.3.6.1.2.1.2.2.1.21.73|66|0 +1.3.6.1.2.1.2.2.1.21.74|66|0 +1.3.6.1.2.1.2.2.1.21.75|66|0 +1.3.6.1.2.1.2.2.1.21.76|66|0 +1.3.6.1.2.1.2.2.1.21.77|66|0 +1.3.6.1.2.1.2.2.1.21.78|66|0 +1.3.6.1.2.1.2.2.1.21.79|66|0 +1.3.6.1.2.1.2.2.1.21.80|66|0 +1.3.6.1.2.1.2.2.1.21.81|66|0 +1.3.6.1.2.1.2.2.1.21.82|66|0 +1.3.6.1.2.1.2.2.1.21.83|66|0 +1.3.6.1.2.1.2.2.1.21.84|66|0 +1.3.6.1.2.1.2.2.1.21.85|66|0 +1.3.6.1.2.1.2.2.1.21.86|66|0 +1.3.6.1.2.1.2.2.1.21.87|66|0 +1.3.6.1.2.1.2.2.1.21.88|66|0 +1.3.6.1.2.1.2.2.1.21.89|66|0 +1.3.6.1.2.1.2.2.1.21.90|66|0 +1.3.6.1.2.1.2.2.1.21.91|66|0 +1.3.6.1.2.1.2.2.1.21.92|66|0 +1.3.6.1.2.1.2.2.1.21.93|66|0 +1.3.6.1.2.1.2.2.1.21.94|66|0 +1.3.6.1.2.1.2.2.1.21.95|66|0 +1.3.6.1.2.1.2.2.1.21.96|66|0 +1.3.6.1.2.1.2.2.1.21.97|66|0 +1.3.6.1.2.1.2.2.1.21.98|66|0 +1.3.6.1.2.1.2.2.1.21.99|66|0 +1.3.6.1.2.1.2.2.1.21.100|66|0 +1.3.6.1.2.1.2.2.1.21.101|66|0 +1.3.6.1.2.1.2.2.1.21.102|66|0 +1.3.6.1.2.1.2.2.1.21.103|66|0 +1.3.6.1.2.1.2.2.1.21.104|66|0 +1.3.6.1.2.1.2.2.1.21.105|66|0 +1.3.6.1.2.1.2.2.1.21.106|66|0 +1.3.6.1.2.1.2.2.1.21.107|66|0 +1.3.6.1.2.1.2.2.1.21.108|66|0 +1.3.6.1.2.1.2.2.1.21.109|66|0 +1.3.6.1.2.1.2.2.1.21.110|66|0 +1.3.6.1.2.1.4.3.0|65|2818296 +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|2844554 +1.3.6.1.2.1.4.10.0|65|2808433 +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.1.0.0.127|2|1 +1.3.6.1.2.1.4.20.1.2.2.82.168.192|2|17825793 +1.3.6.1.2.1.4.20.1.3.1.0.0.127|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.2.82.168.192|64|255.255.255.0 +1.3.6.1.2.1.5.1.0|65|0 +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|0 +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|0 +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|0 +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|0 +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|0 +1.3.6.1.2.1.6.11.0|65|0 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|0 +1.3.6.1.2.1.7.1.0|65|0 +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|0 +1.3.6.1.2.1.10.7.2.1.1.1|2|1 +1.3.6.1.2.1.10.7.2.1.1.2|2|2 +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.4|2|4 +1.3.6.1.2.1.10.7.2.1.1.5|2|5 +1.3.6.1.2.1.10.7.2.1.1.6|2|6 +1.3.6.1.2.1.10.7.2.1.1.7|2|7 +1.3.6.1.2.1.10.7.2.1.1.8|2|8 +1.3.6.1.2.1.10.7.2.1.1.9|2|9 +1.3.6.1.2.1.10.7.2.1.1.10|2|10 +1.3.6.1.2.1.10.7.2.1.1.11|2|11 +1.3.6.1.2.1.10.7.2.1.1.12|2|12 +1.3.6.1.2.1.10.7.2.1.1.13|2|13 +1.3.6.1.2.1.10.7.2.1.1.14|2|14 +1.3.6.1.2.1.10.7.2.1.1.15|2|15 +1.3.6.1.2.1.10.7.2.1.1.16|2|16 +1.3.6.1.2.1.10.7.2.1.1.17|2|17 +1.3.6.1.2.1.10.7.2.1.1.18|2|18 +1.3.6.1.2.1.10.7.2.1.1.19|2|19 +1.3.6.1.2.1.10.7.2.1.1.20|2|20 +1.3.6.1.2.1.10.7.2.1.1.21|2|21 +1.3.6.1.2.1.10.7.2.1.1.22|2|22 +1.3.6.1.2.1.10.7.2.1.1.23|2|23 +1.3.6.1.2.1.10.7.2.1.1.24|2|24 +1.3.6.1.2.1.10.7.2.1.1.25|2|25 +1.3.6.1.2.1.10.7.2.1.1.26|2|26 +1.3.6.1.2.1.10.7.2.1.1.27|2|27 +1.3.6.1.2.1.10.7.2.1.1.28|2|28 +1.3.6.1.2.1.10.7.2.1.1.29|2|29 +1.3.6.1.2.1.10.7.2.1.1.30|2|30 +1.3.6.1.2.1.10.7.2.1.1.31|2|31 +1.3.6.1.2.1.10.7.2.1.1.32|2|32 +1.3.6.1.2.1.10.7.2.1.1.33|2|33 +1.3.6.1.2.1.10.7.2.1.1.34|2|34 +1.3.6.1.2.1.10.7.2.1.1.35|2|35 +1.3.6.1.2.1.10.7.2.1.1.36|2|36 +1.3.6.1.2.1.10.7.2.1.1.37|2|37 +1.3.6.1.2.1.10.7.2.1.1.38|2|38 +1.3.6.1.2.1.10.7.2.1.1.39|2|39 +1.3.6.1.2.1.10.7.2.1.1.40|2|40 +1.3.6.1.2.1.10.7.2.1.1.41|2|41 +1.3.6.1.2.1.10.7.2.1.1.42|2|42 +1.3.6.1.2.1.10.7.2.1.1.43|2|43 +1.3.6.1.2.1.10.7.2.1.1.44|2|44 +1.3.6.1.2.1.10.7.2.1.1.45|2|45 +1.3.6.1.2.1.10.7.2.1.1.46|2|46 +1.3.6.1.2.1.10.7.2.1.1.47|2|47 +1.3.6.1.2.1.10.7.2.1.1.48|2|48 +1.3.6.1.2.1.10.7.2.1.1.49|2|49 +1.3.6.1.2.1.10.7.2.1.1.50|2|50 +1.3.6.1.2.1.10.7.2.1.1.51|2|51 +1.3.6.1.2.1.10.7.2.1.1.52|2|52 +1.3.6.1.2.1.10.7.2.1.1.53|2|53 +1.3.6.1.2.1.10.7.2.1.1.54|2|54 +1.3.6.1.2.1.10.7.2.1.1.55|2|55 +1.3.6.1.2.1.10.7.2.1.1.56|2|56 +1.3.6.1.2.1.10.7.2.1.1.57|2|57 +1.3.6.1.2.1.10.7.2.1.1.58|2|58 +1.3.6.1.2.1.10.7.2.1.1.59|2|59 +1.3.6.1.2.1.10.7.2.1.1.60|2|60 +1.3.6.1.2.1.10.7.2.1.1.61|2|61 +1.3.6.1.2.1.10.7.2.1.1.62|2|62 +1.3.6.1.2.1.10.7.2.1.1.63|2|63 +1.3.6.1.2.1.10.7.2.1.1.64|2|64 +1.3.6.1.2.1.10.7.2.1.1.65|2|65 +1.3.6.1.2.1.10.7.2.1.1.66|2|66 +1.3.6.1.2.1.10.7.2.1.1.67|2|67 +1.3.6.1.2.1.10.7.2.1.1.68|2|68 +1.3.6.1.2.1.10.7.2.1.1.69|2|69 +1.3.6.1.2.1.10.7.2.1.1.70|2|70 +1.3.6.1.2.1.10.7.2.1.1.71|2|71 +1.3.6.1.2.1.10.7.2.1.1.72|2|72 +1.3.6.1.2.1.10.7.2.1.1.73|2|73 +1.3.6.1.2.1.10.7.2.1.1.74|2|74 +1.3.6.1.2.1.10.7.2.1.1.75|2|75 +1.3.6.1.2.1.10.7.2.1.1.76|2|76 +1.3.6.1.2.1.10.7.2.1.1.77|2|77 +1.3.6.1.2.1.10.7.2.1.1.78|2|78 +1.3.6.1.2.1.10.7.2.1.1.79|2|79 +1.3.6.1.2.1.10.7.2.1.1.80|2|80 +1.3.6.1.2.1.10.7.2.1.1.81|2|81 +1.3.6.1.2.1.10.7.2.1.1.82|2|82 +1.3.6.1.2.1.10.7.2.1.1.83|2|83 +1.3.6.1.2.1.10.7.2.1.1.84|2|84 +1.3.6.1.2.1.10.7.2.1.1.85|2|85 +1.3.6.1.2.1.10.7.2.1.1.86|2|86 +1.3.6.1.2.1.10.7.2.1.1.87|2|87 +1.3.6.1.2.1.10.7.2.1.1.88|2|88 +1.3.6.1.2.1.10.7.2.1.1.89|2|89 +1.3.6.1.2.1.10.7.2.1.1.90|2|90 +1.3.6.1.2.1.10.7.2.1.1.91|2|91 +1.3.6.1.2.1.10.7.2.1.1.92|2|92 +1.3.6.1.2.1.10.7.2.1.1.93|2|93 +1.3.6.1.2.1.10.7.2.1.1.94|2|94 +1.3.6.1.2.1.10.7.2.1.1.95|2|95 +1.3.6.1.2.1.10.7.2.1.1.96|2|96 +1.3.6.1.2.1.10.7.2.1.1.97|2|97 +1.3.6.1.2.1.10.7.2.1.1.98|2|98 +1.3.6.1.2.1.10.7.2.1.1.99|2|99 +1.3.6.1.2.1.10.7.2.1.1.100|2|100 +1.3.6.1.2.1.10.7.2.1.1.101|2|101 +1.3.6.1.2.1.10.7.2.1.1.102|2|102 +1.3.6.1.2.1.10.7.2.1.1.103|2|103 +1.3.6.1.2.1.10.7.2.1.1.104|2|104 +1.3.6.1.2.1.10.7.2.1.1.105|2|105 +1.3.6.1.2.1.10.7.2.1.1.106|2|106 +1.3.6.1.2.1.10.7.2.1.1.107|2|107 +1.3.6.1.2.1.10.7.2.1.1.108|2|108 +1.3.6.1.2.1.10.7.2.1.1.109|2|109 +1.3.6.1.2.1.10.7.2.1.1.110|2|110 +1.3.6.1.2.1.10.7.2.1.1.111|2|111 +1.3.6.1.2.1.10.7.2.1.1.112|2|112 +1.3.6.1.2.1.10.7.2.1.1.17825793|2|17825793 +1.3.6.1.2.1.10.7.2.1.1.17825794|2|17825794 +1.3.6.1.2.1.10.7.2.1.1.17825795|2|17825795 +1.3.6.1.2.1.10.7.2.1.1.17825796|2|17825796 +1.3.6.1.2.1.10.7.2.1.1.17825797|2|17825797 +1.3.6.1.2.1.10.7.2.1.1.17825798|2|17825798 +1.3.6.1.2.1.10.7.2.1.1.17825799|2|17825799 +1.3.6.1.2.1.10.7.2.1.1.17825800|2|17825800 +1.3.6.1.2.1.10.7.2.1.1.17825801|2|17825801 +1.3.6.1.2.1.10.7.2.1.1.17825802|2|17825802 +1.3.6.1.2.1.10.7.2.1.1.17825803|2|17825803 +1.3.6.1.2.1.10.7.2.1.1.17825804|2|17825804 +1.3.6.1.2.1.10.7.2.1.1.17825805|2|17825805 +1.3.6.1.2.1.10.7.2.1.1.17825806|2|17825806 +1.3.6.1.2.1.10.7.2.1.1.17825807|2|17825807 +1.3.6.1.2.1.10.7.2.1.1.17825808|2|17825808 +1.3.6.1.2.1.10.7.2.1.1.17825809|2|17825809 +1.3.6.1.2.1.10.7.2.1.1.17825810|2|17825810 +1.3.6.1.2.1.10.7.2.1.1.17825811|2|17825811 +1.3.6.1.2.1.10.7.2.1.1.17825812|2|17825812 +1.3.6.1.2.1.10.7.2.1.1.17825813|2|17825813 +1.3.6.1.2.1.10.7.2.1.1.17825814|2|17825814 +1.3.6.1.2.1.10.7.2.1.1.17825815|2|17825815 +1.3.6.1.2.1.10.7.2.1.1.17825816|2|17825816 +1.3.6.1.2.1.10.7.2.1.1.17825817|2|17825817 +1.3.6.1.2.1.10.7.2.1.1.17825818|2|17825818 +1.3.6.1.2.1.10.7.2.1.1.17825819|2|17825819 +1.3.6.1.2.1.10.7.2.1.1.17825820|2|17825820 +1.3.6.1.2.1.10.7.2.1.1.17825821|2|17825821 +1.3.6.1.2.1.10.7.2.1.1.17825822|2|17825822 +1.3.6.1.2.1.10.7.2.1.1.17825823|2|17825823 +1.3.6.1.2.1.10.7.2.1.1.17825824|2|17825824 +1.3.6.1.2.1.10.7.2.1.1.17825825|2|17825825 +1.3.6.1.2.1.10.7.2.1.1.17825826|2|17825826 +1.3.6.1.2.1.10.7.2.1.1.17825827|2|17825827 +1.3.6.1.2.1.10.7.2.1.1.17825828|2|17825828 +1.3.6.1.2.1.10.7.2.1.1.17825829|2|17825829 +1.3.6.1.2.1.10.7.2.1.1.17825830|2|17825830 +1.3.6.1.2.1.10.7.2.1.1.17825831|2|17825831 +1.3.6.1.2.1.10.7.2.1.1.17825832|2|17825832 +1.3.6.1.2.1.10.7.2.1.1.17825833|2|17825833 +1.3.6.1.2.1.10.7.2.1.1.17825834|2|17825834 +1.3.6.1.2.1.10.7.2.1.1.17825835|2|17825835 +1.3.6.1.2.1.10.7.2.1.1.17825836|2|17825836 +1.3.6.1.2.1.10.7.2.1.1.17825837|2|17825837 +1.3.6.1.2.1.10.7.2.1.1.17825838|2|17825838 +1.3.6.1.2.1.10.7.2.1.1.17825839|2|17825839 +1.3.6.1.2.1.10.7.2.1.1.17825840|2|17825840 +1.3.6.1.2.1.10.7.2.1.1.17825841|2|17825841 +1.3.6.1.2.1.10.7.2.1.1.17825842|2|17825842 +1.3.6.1.2.1.10.7.2.1.1.17825843|2|17825843 +1.3.6.1.2.1.10.7.2.1.1.17825844|2|17825844 +1.3.6.1.2.1.10.7.2.1.1.17825845|2|17825845 +1.3.6.1.2.1.10.7.2.1.1.17825846|2|17825846 +1.3.6.1.2.1.10.7.2.1.1.17825847|2|17825847 +1.3.6.1.2.1.10.7.2.1.1.17825848|2|17825848 +1.3.6.1.2.1.10.7.2.1.1.17825849|2|17825849 +1.3.6.1.2.1.10.7.2.1.1.17825850|2|17825850 +1.3.6.1.2.1.10.7.2.1.1.17825851|2|17825851 +1.3.6.1.2.1.10.7.2.1.1.17825852|2|17825852 +1.3.6.1.2.1.10.7.2.1.1.17825853|2|17825853 +1.3.6.1.2.1.10.7.2.1.1.17825854|2|17825854 +1.3.6.1.2.1.10.7.2.1.1.17825855|2|17825855 +1.3.6.1.2.1.10.7.2.1.1.17825856|2|17825856 +1.3.6.1.2.1.10.7.2.1.1.17825857|2|17825857 +1.3.6.1.2.1.10.7.2.1.1.17825858|2|17825858 +1.3.6.1.2.1.10.7.2.1.1.17825859|2|17825859 +1.3.6.1.2.1.10.7.2.1.1.17825860|2|17825860 +1.3.6.1.2.1.10.7.2.1.1.17825861|2|17825861 +1.3.6.1.2.1.10.7.2.1.1.17825862|2|17825862 +1.3.6.1.2.1.10.7.2.1.1.17825863|2|17825863 +1.3.6.1.2.1.10.7.2.1.1.17825864|2|17825864 +1.3.6.1.2.1.10.7.2.1.1.17825865|2|17825865 +1.3.6.1.2.1.10.7.2.1.1.17825866|2|17825866 +1.3.6.1.2.1.10.7.2.1.1.17825867|2|17825867 +1.3.6.1.2.1.10.7.2.1.1.17825868|2|17825868 +1.3.6.1.2.1.10.7.2.1.1.17825869|2|17825869 +1.3.6.1.2.1.10.7.2.1.1.17825870|2|17825870 +1.3.6.1.2.1.10.7.2.1.1.17825871|2|17825871 +1.3.6.1.2.1.10.7.2.1.1.17825872|2|17825872 +1.3.6.1.2.1.10.7.2.1.1.17825873|2|17825873 +1.3.6.1.2.1.10.7.2.1.1.17825874|2|17825874 +1.3.6.1.2.1.10.7.2.1.1.17825875|2|17825875 +1.3.6.1.2.1.10.7.2.1.1.17825876|2|17825876 +1.3.6.1.2.1.10.7.2.1.1.17825877|2|17825877 +1.3.6.1.2.1.10.7.2.1.1.17825878|2|17825878 +1.3.6.1.2.1.10.7.2.1.1.17825879|2|17825879 +1.3.6.1.2.1.10.7.2.1.1.17825880|2|17825880 +1.3.6.1.2.1.10.7.2.1.1.17825881|2|17825881 +1.3.6.1.2.1.10.7.2.1.1.17825882|2|17825882 +1.3.6.1.2.1.10.7.2.1.1.17825883|2|17825883 +1.3.6.1.2.1.10.7.2.1.1.17825884|2|17825884 +1.3.6.1.2.1.10.7.2.1.1.17825885|2|17825885 +1.3.6.1.2.1.10.7.2.1.1.17825886|2|17825886 +1.3.6.1.2.1.10.7.2.1.1.17825887|2|17825887 +1.3.6.1.2.1.10.7.2.1.1.17825888|2|17825888 +1.3.6.1.2.1.10.7.2.1.1.17825889|2|17825889 +1.3.6.1.2.1.10.7.2.1.1.17825890|2|17825890 +1.3.6.1.2.1.10.7.2.1.1.17825891|2|17825891 +1.3.6.1.2.1.10.7.2.1.1.17825892|2|17825892 +1.3.6.1.2.1.10.7.2.1.1.17825893|2|17825893 +1.3.6.1.2.1.10.7.2.1.1.17825894|2|17825894 +1.3.6.1.2.1.10.7.2.1.1.17825895|2|17825895 +1.3.6.1.2.1.10.7.2.1.1.17825896|2|17825896 +1.3.6.1.2.1.10.7.2.1.1.17825897|2|17825897 +1.3.6.1.2.1.10.7.2.1.1.17825898|2|17825898 +1.3.6.1.2.1.10.7.2.1.1.17825899|2|17825899 +1.3.6.1.2.1.10.7.2.1.1.17825900|2|17825900 +1.3.6.1.2.1.10.7.2.1.1.17825901|2|17825901 +1.3.6.1.2.1.10.7.2.1.1.17825902|2|17825902 +1.3.6.1.2.1.10.7.2.1.1.17825903|2|17825903 +1.3.6.1.2.1.10.7.2.1.1.17825904|2|17825904 +1.3.6.1.2.1.10.7.2.1.1.17825905|2|17825905 +1.3.6.1.2.1.10.7.2.1.1.17825906|2|17825906 +1.3.6.1.2.1.10.7.2.1.1.17825907|2|17825907 +1.3.6.1.2.1.10.7.2.1.1.17825908|2|17825908 +1.3.6.1.2.1.10.7.2.1.1.17825909|2|17825909 +1.3.6.1.2.1.10.7.2.1.1.17825910|2|17825910 +1.3.6.1.2.1.10.7.2.1.1.17825911|2|17825911 +1.3.6.1.2.1.10.7.2.1.1.17825912|2|17825912 +1.3.6.1.2.1.10.7.2.1.1.17825913|2|17825913 +1.3.6.1.2.1.10.7.2.1.1.17825914|2|17825914 +1.3.6.1.2.1.10.7.2.1.1.17825915|2|17825915 +1.3.6.1.2.1.10.7.2.1.1.17825916|2|17825916 +1.3.6.1.2.1.10.7.2.1.1.17825917|2|17825917 +1.3.6.1.2.1.10.7.2.1.1.17825918|2|17825918 +1.3.6.1.2.1.10.7.2.1.1.17825919|2|17825919 +1.3.6.1.2.1.10.7.2.1.1.17825920|2|17825920 +1.3.6.1.2.1.10.7.2.1.1.17825921|2|17825921 +1.3.6.1.2.1.10.7.2.1.1.17825922|2|17825922 +1.3.6.1.2.1.10.7.2.1.1.17825923|2|17825923 +1.3.6.1.2.1.10.7.2.1.1.17825924|2|17825924 +1.3.6.1.2.1.10.7.2.1.1.17825925|2|17825925 +1.3.6.1.2.1.10.7.2.1.1.17825926|2|17825926 +1.3.6.1.2.1.10.7.2.1.1.17825927|2|17825927 +1.3.6.1.2.1.10.7.2.1.1.17825928|2|17825928 +1.3.6.1.2.1.10.7.2.1.1.17825929|2|17825929 +1.3.6.1.2.1.10.7.2.1.1.17825930|2|17825930 +1.3.6.1.2.1.10.7.2.1.1.17825931|2|17825931 +1.3.6.1.2.1.10.7.2.1.1.17825932|2|17825932 +1.3.6.1.2.1.10.7.2.1.1.17825933|2|17825933 +1.3.6.1.2.1.10.7.2.1.1.17825934|2|17825934 +1.3.6.1.2.1.10.7.2.1.1.17825935|2|17825935 +1.3.6.1.2.1.10.7.2.1.1.17825936|2|17825936 +1.3.6.1.2.1.10.7.2.1.1.17825937|2|17825937 +1.3.6.1.2.1.10.7.2.1.1.17825938|2|17825938 +1.3.6.1.2.1.10.7.2.1.1.17825939|2|17825939 +1.3.6.1.2.1.10.7.2.1.1.17825940|2|17825940 +1.3.6.1.2.1.10.7.2.1.1.17825941|2|17825941 +1.3.6.1.2.1.10.7.2.1.1.17825942|2|17825942 +1.3.6.1.2.1.10.7.2.1.1.17825943|2|17825943 +1.3.6.1.2.1.10.7.2.1.1.17825944|2|17825944 +1.3.6.1.2.1.10.7.2.1.1.17825945|2|17825945 +1.3.6.1.2.1.10.7.2.1.1.17825946|2|17825946 +1.3.6.1.2.1.10.7.2.1.1.17825947|2|17825947 +1.3.6.1.2.1.10.7.2.1.1.17825948|2|17825948 +1.3.6.1.2.1.10.7.2.1.1.17825949|2|17825949 +1.3.6.1.2.1.10.7.2.1.1.17825950|2|17825950 +1.3.6.1.2.1.10.7.2.1.1.17825951|2|17825951 +1.3.6.1.2.1.10.7.2.1.1.17825952|2|17825952 +1.3.6.1.2.1.10.7.2.1.1.17825953|2|17825953 +1.3.6.1.2.1.10.7.2.1.1.17825954|2|17825954 +1.3.6.1.2.1.10.7.2.1.1.17825955|2|17825955 +1.3.6.1.2.1.10.7.2.1.1.17825956|2|17825956 +1.3.6.1.2.1.10.7.2.1.1.17825957|2|17825957 +1.3.6.1.2.1.10.7.2.1.1.17825958|2|17825958 +1.3.6.1.2.1.10.7.2.1.1.17825959|2|17825959 +1.3.6.1.2.1.10.7.2.1.1.17825960|2|17825960 +1.3.6.1.2.1.10.7.2.1.1.17825961|2|17825961 +1.3.6.1.2.1.10.7.2.1.1.17825962|2|17825962 +1.3.6.1.2.1.10.7.2.1.1.17825963|2|17825963 +1.3.6.1.2.1.10.7.2.1.1.17825964|2|17825964 +1.3.6.1.2.1.10.7.2.1.1.17825965|2|17825965 +1.3.6.1.2.1.10.7.2.1.1.17825966|2|17825966 +1.3.6.1.2.1.10.7.2.1.1.17825967|2|17825967 +1.3.6.1.2.1.10.7.2.1.1.17825968|2|17825968 +1.3.6.1.2.1.10.7.2.1.1.17825969|2|17825969 +1.3.6.1.2.1.10.7.2.1.1.17825970|2|17825970 +1.3.6.1.2.1.10.7.2.1.1.17825971|2|17825971 +1.3.6.1.2.1.10.7.2.1.1.17825972|2|17825972 +1.3.6.1.2.1.10.7.2.1.1.17825973|2|17825973 +1.3.6.1.2.1.10.7.2.1.1.17825974|2|17825974 +1.3.6.1.2.1.10.7.2.1.1.17825975|2|17825975 +1.3.6.1.2.1.10.7.2.1.1.17825976|2|17825976 +1.3.6.1.2.1.10.7.2.1.1.17825977|2|17825977 +1.3.6.1.2.1.10.7.2.1.1.17825978|2|17825978 +1.3.6.1.2.1.10.7.2.1.1.17825979|2|17825979 +1.3.6.1.2.1.10.7.2.1.1.17825980|2|17825980 +1.3.6.1.2.1.10.7.2.1.1.17825981|2|17825981 +1.3.6.1.2.1.10.7.2.1.1.17825982|2|17825982 +1.3.6.1.2.1.10.7.2.1.1.17825983|2|17825983 +1.3.6.1.2.1.10.7.2.1.1.17825984|2|17825984 +1.3.6.1.2.1.10.7.2.1.1.17825985|2|17825985 +1.3.6.1.2.1.10.7.2.1.1.17825986|2|17825986 +1.3.6.1.2.1.10.7.2.1.1.17825987|2|17825987 +1.3.6.1.2.1.10.7.2.1.1.17825988|2|17825988 +1.3.6.1.2.1.10.7.2.1.1.17825989|2|17825989 +1.3.6.1.2.1.10.7.2.1.1.17825990|2|17825990 +1.3.6.1.2.1.10.7.2.1.1.17825991|2|17825991 +1.3.6.1.2.1.10.7.2.1.1.17825992|2|17825992 +1.3.6.1.2.1.10.7.2.1.1.17825993|2|17825993 +1.3.6.1.2.1.10.7.2.1.1.17825994|2|17825994 +1.3.6.1.2.1.10.7.2.1.1.17825995|2|17825995 +1.3.6.1.2.1.10.7.2.1.1.17825996|2|17825996 +1.3.6.1.2.1.10.7.2.1.1.17825997|2|17825997 +1.3.6.1.2.1.10.7.2.1.1.17825998|2|17825998 +1.3.6.1.2.1.10.7.2.1.1.17825999|2|17825999 +1.3.6.1.2.1.10.7.2.1.1.17826000|2|17826000 +1.3.6.1.2.1.10.7.2.1.1.17826001|2|17826001 +1.3.6.1.2.1.10.7.2.1.1.17826002|2|17826002 +1.3.6.1.2.1.10.7.2.1.1.17826003|2|17826003 +1.3.6.1.2.1.10.7.2.1.1.17826004|2|17826004 +1.3.6.1.2.1.10.7.2.1.1.17826005|2|17826005 +1.3.6.1.2.1.10.7.2.1.1.17826006|2|17826006 +1.3.6.1.2.1.10.7.2.1.1.17826007|2|17826007 +1.3.6.1.2.1.10.7.2.1.1.17826008|2|17826008 +1.3.6.1.2.1.10.7.2.1.1.17826009|2|17826009 +1.3.6.1.2.1.10.7.2.1.1.17826010|2|17826010 +1.3.6.1.2.1.10.7.2.1.1.17826011|2|17826011 +1.3.6.1.2.1.10.7.2.1.1.17826012|2|17826012 +1.3.6.1.2.1.10.7.2.1.1.17826013|2|17826013 +1.3.6.1.2.1.10.7.2.1.1.17826014|2|17826014 +1.3.6.1.2.1.10.7.2.1.1.17826015|2|17826015 +1.3.6.1.2.1.10.7.2.1.1.17826016|2|17826016 +1.3.6.1.2.1.10.7.2.1.1.17826017|2|17826017 +1.3.6.1.2.1.10.7.2.1.1.17826018|2|17826018 +1.3.6.1.2.1.10.7.2.1.1.17826019|2|17826019 +1.3.6.1.2.1.10.7.2.1.1.17826020|2|17826020 +1.3.6.1.2.1.10.7.2.1.1.17826021|2|17826021 +1.3.6.1.2.1.10.7.2.1.1.17826022|2|17826022 +1.3.6.1.2.1.10.7.2.1.1.17826023|2|17826023 +1.3.6.1.2.1.10.7.2.1.1.17826024|2|17826024 +1.3.6.1.2.1.10.7.2.1.1.17826025|2|17826025 +1.3.6.1.2.1.10.7.2.1.1.17826026|2|17826026 +1.3.6.1.2.1.10.7.2.1.1.17826027|2|17826027 +1.3.6.1.2.1.10.7.2.1.1.17826028|2|17826028 +1.3.6.1.2.1.10.7.2.1.1.17826029|2|17826029 +1.3.6.1.2.1.10.7.2.1.1.17826030|2|17826030 +1.3.6.1.2.1.10.7.2.1.1.17826031|2|17826031 +1.3.6.1.2.1.10.7.2.1.1.17826032|2|17826032 +1.3.6.1.2.1.10.7.2.1.1.17826033|2|17826033 +1.3.6.1.2.1.10.7.2.1.1.17826034|2|17826034 +1.3.6.1.2.1.10.7.2.1.1.17826035|2|17826035 +1.3.6.1.2.1.10.7.2.1.1.17826036|2|17826036 +1.3.6.1.2.1.10.7.2.1.1.17826037|2|17826037 +1.3.6.1.2.1.10.7.2.1.1.17826038|2|17826038 +1.3.6.1.2.1.10.7.2.1.1.17826039|2|17826039 +1.3.6.1.2.1.10.7.2.1.1.17826040|2|17826040 +1.3.6.1.2.1.10.7.2.1.1.17826041|2|17826041 +1.3.6.1.2.1.10.7.2.1.1.17826042|2|17826042 +1.3.6.1.2.1.10.7.2.1.1.17826043|2|17826043 +1.3.6.1.2.1.10.7.2.1.1.17826044|2|17826044 +1.3.6.1.2.1.10.7.2.1.1.17826045|2|17826045 +1.3.6.1.2.1.10.7.2.1.1.17826046|2|17826046 +1.3.6.1.2.1.10.7.2.1.1.17826047|2|17826047 +1.3.6.1.2.1.10.7.2.1.1.17826048|2|17826048 +1.3.6.1.2.1.10.7.2.1.1.17826049|2|17826049 +1.3.6.1.2.1.10.7.2.1.1.17826050|2|17826050 +1.3.6.1.2.1.10.7.2.1.1.34603009|2|34603009 +1.3.6.1.2.1.10.7.2.1.1.34603010|2|34603010 +1.3.6.1.2.1.10.7.2.1.1.34603011|2|34603011 +1.3.6.1.2.1.10.7.2.1.1.34603012|2|34603012 +1.3.6.1.2.1.10.7.2.1.1.34603013|2|34603013 +1.3.6.1.2.1.10.7.2.1.1.34603014|2|34603014 +1.3.6.1.2.1.10.7.2.1.1.34603015|2|34603015 +1.3.6.1.2.1.10.7.2.1.1.34603016|2|34603016 +1.3.6.1.2.1.10.7.2.1.1.34603017|2|34603017 +1.3.6.1.2.1.10.7.2.1.1.34603018|2|34603018 +1.3.6.1.2.1.10.7.2.1.1.34603019|2|34603019 +1.3.6.1.2.1.10.7.2.1.1.34603020|2|34603020 +1.3.6.1.2.1.10.7.2.1.1.34603021|2|34603021 +1.3.6.1.2.1.10.7.2.1.1.34603022|2|34603022 +1.3.6.1.2.1.10.7.2.1.1.34603023|2|34603023 +1.3.6.1.2.1.10.7.2.1.1.34603024|2|34603024 +1.3.6.1.2.1.10.7.2.1.1.34603025|2|34603025 +1.3.6.1.2.1.10.7.2.1.1.34603026|2|34603026 +1.3.6.1.2.1.10.7.2.1.1.34603027|2|34603027 +1.3.6.1.2.1.10.7.2.1.1.34603028|2|34603028 +1.3.6.1.2.1.10.7.2.1.1.34603029|2|34603029 +1.3.6.1.2.1.10.7.2.1.1.34603030|2|34603030 +1.3.6.1.2.1.10.7.2.1.1.34603031|2|34603031 +1.3.6.1.2.1.10.7.2.1.1.34603032|2|34603032 +1.3.6.1.2.1.10.7.2.1.1.34603033|2|34603033 +1.3.6.1.2.1.10.7.2.1.1.34603034|2|34603034 +1.3.6.1.2.1.10.7.2.1.1.34603035|2|34603035 +1.3.6.1.2.1.10.7.2.1.1.34603036|2|34603036 +1.3.6.1.2.1.10.7.2.1.1.34603037|2|34603037 +1.3.6.1.2.1.10.7.2.1.1.34603038|2|34603038 +1.3.6.1.2.1.10.7.2.1.1.34603039|2|34603039 +1.3.6.1.2.1.10.7.2.1.1.34603040|2|34603040 +1.3.6.1.2.1.10.7.2.1.1.34603041|2|34603041 +1.3.6.1.2.1.10.7.2.1.1.34603042|2|34603042 +1.3.6.1.2.1.10.7.2.1.1.34603043|2|34603043 +1.3.6.1.2.1.10.7.2.1.1.34603044|2|34603044 +1.3.6.1.2.1.10.7.2.1.1.34603045|2|34603045 +1.3.6.1.2.1.10.7.2.1.1.34603046|2|34603046 +1.3.6.1.2.1.10.7.2.1.1.34603047|2|34603047 +1.3.6.1.2.1.10.7.2.1.1.34603048|2|34603048 +1.3.6.1.2.1.10.7.2.1.1.34603049|2|34603049 +1.3.6.1.2.1.10.7.2.1.1.34603050|2|34603050 +1.3.6.1.2.1.10.7.2.1.1.34603051|2|34603051 +1.3.6.1.2.1.10.7.2.1.1.34603052|2|34603052 +1.3.6.1.2.1.10.7.2.1.1.34603053|2|34603053 +1.3.6.1.2.1.10.7.2.1.1.34603054|2|34603054 +1.3.6.1.2.1.10.7.2.1.1.34603055|2|34603055 +1.3.6.1.2.1.10.7.2.1.1.34603056|2|34603056 +1.3.6.1.2.1.10.7.2.1.1.34603057|2|34603057 +1.3.6.1.2.1.10.7.2.1.1.34603058|2|34603058 +1.3.6.1.2.1.10.7.2.1.1.34603059|2|34603059 +1.3.6.1.2.1.10.7.2.1.1.34603060|2|34603060 +1.3.6.1.2.1.10.7.2.1.1.34603061|2|34603061 +1.3.6.1.2.1.10.7.2.1.1.34603062|2|34603062 +1.3.6.1.2.1.10.7.2.1.1.34603063|2|34603063 +1.3.6.1.2.1.10.7.2.1.1.34603064|2|34603064 +1.3.6.1.2.1.10.7.2.1.1.34603065|2|34603065 +1.3.6.1.2.1.10.7.2.1.1.34603066|2|34603066 +1.3.6.1.2.1.10.7.2.1.1.34603067|2|34603067 +1.3.6.1.2.1.10.7.2.1.1.34603068|2|34603068 +1.3.6.1.2.1.10.7.2.1.1.34603069|2|34603069 +1.3.6.1.2.1.10.7.2.1.1.34603070|2|34603070 +1.3.6.1.2.1.10.7.2.1.1.34603071|2|34603071 +1.3.6.1.2.1.10.7.2.1.1.34603072|2|34603072 +1.3.6.1.2.1.10.7.2.1.1.34603073|2|34603073 +1.3.6.1.2.1.10.7.2.1.1.34603074|2|34603074 +1.3.6.1.2.1.10.7.2.1.1.34603075|2|34603075 +1.3.6.1.2.1.10.7.2.1.1.34603076|2|34603076 +1.3.6.1.2.1.10.7.2.1.1.34603077|2|34603077 +1.3.6.1.2.1.10.7.2.1.1.34603078|2|34603078 +1.3.6.1.2.1.10.7.2.1.1.34603079|2|34603079 +1.3.6.1.2.1.10.7.2.1.1.34603080|2|34603080 +1.3.6.1.2.1.10.7.2.1.1.34603081|2|34603081 +1.3.6.1.2.1.10.7.2.1.1.34603082|2|34603082 +1.3.6.1.2.1.10.7.2.1.1.34603083|2|34603083 +1.3.6.1.2.1.10.7.2.1.1.34603084|2|34603084 +1.3.6.1.2.1.10.7.2.1.1.34603085|2|34603085 +1.3.6.1.2.1.10.7.2.1.1.34603086|2|34603086 +1.3.6.1.2.1.10.7.2.1.1.34603087|2|34603087 +1.3.6.1.2.1.10.7.2.1.1.34603088|2|34603088 +1.3.6.1.2.1.10.7.2.1.1.34603089|2|34603089 +1.3.6.1.2.1.10.7.2.1.1.34603090|2|34603090 +1.3.6.1.2.1.10.7.2.1.1.34603091|2|34603091 +1.3.6.1.2.1.10.7.2.1.1.34603092|2|34603092 +1.3.6.1.2.1.10.7.2.1.1.34603093|2|34603093 +1.3.6.1.2.1.10.7.2.1.1.34603094|2|34603094 +1.3.6.1.2.1.10.7.2.1.1.34603095|2|34603095 +1.3.6.1.2.1.10.7.2.1.1.34603096|2|34603096 +1.3.6.1.2.1.10.7.2.1.1.34603097|2|34603097 +1.3.6.1.2.1.10.7.2.1.1.34603098|2|34603098 +1.3.6.1.2.1.10.7.2.1.1.34603099|2|34603099 +1.3.6.1.2.1.10.7.2.1.1.34603100|2|34603100 +1.3.6.1.2.1.10.7.2.1.1.34603101|2|34603101 +1.3.6.1.2.1.10.7.2.1.1.34603102|2|34603102 +1.3.6.1.2.1.10.7.2.1.1.34603103|2|34603103 +1.3.6.1.2.1.10.7.2.1.1.34603104|2|34603104 +1.3.6.1.2.1.10.7.2.1.1.34603105|2|34603105 +1.3.6.1.2.1.10.7.2.1.1.34603106|2|34603106 +1.3.6.1.2.1.10.7.2.1.1.34603107|2|34603107 +1.3.6.1.2.1.10.7.2.1.1.34603108|2|34603108 +1.3.6.1.2.1.10.7.2.1.1.34603109|2|34603109 +1.3.6.1.2.1.10.7.2.1.1.34603110|2|34603110 +1.3.6.1.2.1.10.7.2.1.1.34603111|2|34603111 +1.3.6.1.2.1.10.7.2.1.1.34603112|2|34603112 +1.3.6.1.2.1.10.7.2.1.1.34603113|2|34603113 +1.3.6.1.2.1.10.7.2.1.1.34603114|2|34603114 +1.3.6.1.2.1.10.7.2.1.1.34603115|2|34603115 +1.3.6.1.2.1.10.7.2.1.1.34603116|2|34603116 +1.3.6.1.2.1.10.7.2.1.1.34603117|2|34603117 +1.3.6.1.2.1.10.7.2.1.1.34603118|2|34603118 +1.3.6.1.2.1.10.7.2.1.1.34603119|2|34603119 +1.3.6.1.2.1.10.7.2.1.1.34603120|2|34603120 +1.3.6.1.2.1.10.7.2.1.1.51380225|2|51380225 +1.3.6.1.2.1.10.7.2.1.1.51380226|2|51380226 +1.3.6.1.2.1.10.7.2.1.19.1|2|1 +1.3.6.1.2.1.10.7.2.1.19.2|2|1 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +1.3.6.1.2.1.10.7.2.1.19.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.5|2|1 +1.3.6.1.2.1.10.7.2.1.19.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.7|2|1 +1.3.6.1.2.1.10.7.2.1.19.8|2|1 +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|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.10.7.2.1.19.12|2|1 +1.3.6.1.2.1.10.7.2.1.19.13|2|1 +1.3.6.1.2.1.10.7.2.1.19.14|2|1 +1.3.6.1.2.1.10.7.2.1.19.15|2|1 +1.3.6.1.2.1.10.7.2.1.19.16|2|1 +1.3.6.1.2.1.10.7.2.1.19.17|2|1 +1.3.6.1.2.1.10.7.2.1.19.18|2|3 +1.3.6.1.2.1.10.7.2.1.19.19|2|1 +1.3.6.1.2.1.10.7.2.1.19.20|2|1 +1.3.6.1.2.1.10.7.2.1.19.21|2|1 +1.3.6.1.2.1.10.7.2.1.19.22|2|1 +1.3.6.1.2.1.10.7.2.1.19.23|2|1 +1.3.6.1.2.1.10.7.2.1.19.24|2|1 +1.3.6.1.2.1.10.7.2.1.19.25|2|1 +1.3.6.1.2.1.10.7.2.1.19.26|2|1 +1.3.6.1.2.1.10.7.2.1.19.27|2|1 +1.3.6.1.2.1.10.7.2.1.19.28|2|3 +1.3.6.1.2.1.10.7.2.1.19.29|2|1 +1.3.6.1.2.1.10.7.2.1.19.30|2|1 +1.3.6.1.2.1.10.7.2.1.19.31|2|1 +1.3.6.1.2.1.10.7.2.1.19.32|2|1 +1.3.6.1.2.1.10.7.2.1.19.33|2|3 +1.3.6.1.2.1.10.7.2.1.19.34|2|1 +1.3.6.1.2.1.10.7.2.1.19.35|2|1 +1.3.6.1.2.1.10.7.2.1.19.36|2|1 +1.3.6.1.2.1.10.7.2.1.19.37|2|1 +1.3.6.1.2.1.10.7.2.1.19.38|2|1 +1.3.6.1.2.1.10.7.2.1.19.39|2|1 +1.3.6.1.2.1.10.7.2.1.19.40|2|1 +1.3.6.1.2.1.10.7.2.1.19.41|2|1 +1.3.6.1.2.1.10.7.2.1.19.42|2|1 +1.3.6.1.2.1.10.7.2.1.19.43|2|1 +1.3.6.1.2.1.10.7.2.1.19.44|2|1 +1.3.6.1.2.1.10.7.2.1.19.45|2|1 +1.3.6.1.2.1.10.7.2.1.19.46|2|3 +1.3.6.1.2.1.10.7.2.1.19.47|2|1 +1.3.6.1.2.1.10.7.2.1.19.48|2|1 +1.3.6.1.2.1.10.7.2.1.19.49|2|1 +1.3.6.1.2.1.10.7.2.1.19.50|2|1 +1.3.6.1.2.1.10.7.2.1.19.51|2|1 +1.3.6.1.2.1.10.7.2.1.19.52|2|1 +1.3.6.1.2.1.10.7.2.1.19.53|2|1 +1.3.6.1.2.1.10.7.2.1.19.54|2|1 +1.3.6.1.2.1.10.7.2.1.19.55|2|1 +1.3.6.1.2.1.10.7.2.1.19.56|2|3 +1.3.6.1.2.1.10.7.2.1.19.57|2|1 +1.3.6.1.2.1.10.7.2.1.19.58|2|1 +1.3.6.1.2.1.10.7.2.1.19.59|2|1 +1.3.6.1.2.1.10.7.2.1.19.60|2|1 +1.3.6.1.2.1.10.7.2.1.19.61|2|1 +1.3.6.1.2.1.10.7.2.1.19.62|2|1 +1.3.6.1.2.1.10.7.2.1.19.63|2|1 +1.3.6.1.2.1.10.7.2.1.19.64|2|1 +1.3.6.1.2.1.10.7.2.1.19.65|2|1 +1.3.6.1.2.1.10.7.2.1.19.66|2|1 +1.3.6.1.2.1.10.7.2.1.19.67|2|1 +1.3.6.1.2.1.10.7.2.1.19.68|2|1 +1.3.6.1.2.1.10.7.2.1.19.69|2|1 +1.3.6.1.2.1.10.7.2.1.19.70|2|1 +1.3.6.1.2.1.10.7.2.1.19.71|2|1 +1.3.6.1.2.1.10.7.2.1.19.72|2|1 +1.3.6.1.2.1.10.7.2.1.19.73|2|1 +1.3.6.1.2.1.10.7.2.1.19.74|2|1 +1.3.6.1.2.1.10.7.2.1.19.75|2|1 +1.3.6.1.2.1.10.7.2.1.19.76|2|1 +1.3.6.1.2.1.10.7.2.1.19.77|2|1 +1.3.6.1.2.1.10.7.2.1.19.78|2|1 +1.3.6.1.2.1.10.7.2.1.19.79|2|1 +1.3.6.1.2.1.10.7.2.1.19.80|2|1 +1.3.6.1.2.1.10.7.2.1.19.81|2|1 +1.3.6.1.2.1.10.7.2.1.19.82|2|1 +1.3.6.1.2.1.10.7.2.1.19.83|2|1 +1.3.6.1.2.1.10.7.2.1.19.84|2|1 +1.3.6.1.2.1.10.7.2.1.19.85|2|1 +1.3.6.1.2.1.10.7.2.1.19.86|2|1 +1.3.6.1.2.1.10.7.2.1.19.87|2|1 +1.3.6.1.2.1.10.7.2.1.19.88|2|1 +1.3.6.1.2.1.10.7.2.1.19.89|2|1 +1.3.6.1.2.1.10.7.2.1.19.90|2|1 +1.3.6.1.2.1.10.7.2.1.19.91|2|1 +1.3.6.1.2.1.10.7.2.1.19.92|2|1 +1.3.6.1.2.1.10.7.2.1.19.93|2|1 +1.3.6.1.2.1.10.7.2.1.19.94|2|1 +1.3.6.1.2.1.10.7.2.1.19.95|2|1 +1.3.6.1.2.1.10.7.2.1.19.96|2|1 +1.3.6.1.2.1.10.7.2.1.19.97|2|1 +1.3.6.1.2.1.10.7.2.1.19.98|2|1 +1.3.6.1.2.1.10.7.2.1.19.99|2|1 +1.3.6.1.2.1.10.7.2.1.19.100|2|1 +1.3.6.1.2.1.10.7.2.1.19.101|2|1 +1.3.6.1.2.1.10.7.2.1.19.102|2|1 +1.3.6.1.2.1.10.7.2.1.19.103|2|1 +1.3.6.1.2.1.10.7.2.1.19.104|2|1 +1.3.6.1.2.1.10.7.2.1.19.105|2|1 +1.3.6.1.2.1.10.7.2.1.19.106|2|1 +1.3.6.1.2.1.10.7.2.1.19.107|2|1 +1.3.6.1.2.1.10.7.2.1.19.108|2|1 +1.3.6.1.2.1.10.7.2.1.19.109|2|1 +1.3.6.1.2.1.10.7.2.1.19.110|2|1 +1.3.6.1.2.1.10.7.2.1.19.111|2|1 +1.3.6.1.2.1.10.7.2.1.19.112|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825793|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825794|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825795|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825796|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825797|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825798|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825799|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825800|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825801|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825802|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825803|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825804|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825805|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825806|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825807|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825808|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825809|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825810|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825811|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825812|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825813|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825814|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825815|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825816|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825817|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825818|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825819|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825820|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825821|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825822|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825823|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825824|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825825|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825826|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825827|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825828|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825829|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825830|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825831|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825832|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825833|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825834|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825835|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825836|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825837|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825838|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825839|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825840|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825841|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825842|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825843|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825844|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825845|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825846|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825847|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825848|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825849|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825850|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825851|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825852|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825853|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825854|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825855|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825856|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825857|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825858|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825859|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825860|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825861|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825862|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825863|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825864|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825865|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825866|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825867|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825868|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825869|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825870|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825871|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825872|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825873|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825874|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825875|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825876|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825877|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825878|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825879|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825880|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825881|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825882|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825883|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825884|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825885|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825886|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825887|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825888|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825889|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825890|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825891|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825892|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825893|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825894|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825895|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825896|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825897|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825898|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825899|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825900|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825901|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825902|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825903|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825904|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825905|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825906|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825907|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825908|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825909|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825910|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825911|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825912|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825913|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825914|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825915|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825916|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825917|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825918|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825919|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825920|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825921|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825922|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825923|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825924|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825925|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825926|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825927|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825928|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825929|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825930|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825931|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825932|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825933|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825934|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825935|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825936|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825937|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825938|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825939|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825940|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825941|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825942|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825943|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825944|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825945|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825946|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825947|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825948|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825949|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825950|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825951|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825952|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825953|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825954|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825955|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825956|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825957|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825958|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825959|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825960|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825961|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825962|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825963|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825964|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825965|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825966|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825967|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825968|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825969|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825970|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825971|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825972|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825973|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825974|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825975|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825976|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825977|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825978|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825979|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825980|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825981|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825982|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825983|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825984|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825985|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825986|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825987|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825988|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825989|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825990|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825991|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825992|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825993|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825994|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825995|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825996|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825997|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825998|2|1 +1.3.6.1.2.1.10.7.2.1.19.17825999|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826000|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826001|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826002|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826003|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826004|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826005|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826006|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826007|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826008|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826009|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826010|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826011|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826012|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826013|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826014|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826015|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826016|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826017|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826018|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826019|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826020|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826021|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826022|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826023|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826024|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826025|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826026|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826027|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826028|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826029|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826030|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826031|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826032|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826033|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826034|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826035|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826036|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826037|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826038|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826039|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826040|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826041|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826042|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826043|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826044|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826045|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826046|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826047|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826048|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826049|2|1 +1.3.6.1.2.1.10.7.2.1.19.17826050|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603009|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603010|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603011|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603012|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603013|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603014|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603015|2|1 +1.3.6.1.2.1.10.7.2.1.19.34603016|2|1 +1.3.6.1.2.1.11.1.0|65|2795112 +1.3.6.1.2.1.11.2.0|65|2795111 +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|27069632 +1.3.6.1.2.1.11.14.0|65|5 +1.3.6.1.2.1.11.15.0|65|71248 +1.3.6.1.2.1.11.16.0|65|25948 +1.3.6.1.2.1.11.17.0|65|5 +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|3 +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|2795114 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.17.1.1.0|4x|000A5A64DEF2 +1.3.6.1.2.1.17.1.4.1.2.1|2|1 +1.3.6.1.2.1.17.1.4.1.2.2|2|2 +1.3.6.1.2.1.17.1.4.1.2.3|2|3 +1.3.6.1.2.1.17.1.4.1.2.4|2|4 +1.3.6.1.2.1.17.1.4.1.2.5|2|5 +1.3.6.1.2.1.17.1.4.1.2.6|2|6 +1.3.6.1.2.1.17.1.4.1.2.7|2|7 +1.3.6.1.2.1.17.1.4.1.2.8|2|8 +1.3.6.1.2.1.17.1.4.1.2.9|2|9 +1.3.6.1.2.1.17.1.4.1.2.10|2|10 +1.3.6.1.2.1.17.1.4.1.2.11|2|11 +1.3.6.1.2.1.17.1.4.1.2.12|2|12 +1.3.6.1.2.1.17.1.4.1.2.13|2|13 +1.3.6.1.2.1.17.1.4.1.2.14|2|14 +1.3.6.1.2.1.17.1.4.1.2.15|2|15 +1.3.6.1.2.1.17.1.4.1.2.16|2|16 +1.3.6.1.2.1.17.1.4.1.2.17|2|17 +1.3.6.1.2.1.17.1.4.1.2.18|2|18 +1.3.6.1.2.1.17.1.4.1.2.19|2|19 +1.3.6.1.2.1.17.1.4.1.2.20|2|20 +1.3.6.1.2.1.17.1.4.1.2.21|2|21 +1.3.6.1.2.1.17.1.4.1.2.22|2|22 +1.3.6.1.2.1.17.1.4.1.2.23|2|23 +1.3.6.1.2.1.17.1.4.1.2.24|2|24 +1.3.6.1.2.1.17.1.4.1.2.25|2|25 +1.3.6.1.2.1.17.1.4.1.2.26|2|26 +1.3.6.1.2.1.17.1.4.1.2.27|2|27 +1.3.6.1.2.1.17.1.4.1.2.28|2|28 +1.3.6.1.2.1.17.1.4.1.2.29|2|29 +1.3.6.1.2.1.17.1.4.1.2.30|2|30 +1.3.6.1.2.1.17.1.4.1.2.31|2|31 +1.3.6.1.2.1.17.1.4.1.2.32|2|32 +1.3.6.1.2.1.17.1.4.1.2.33|2|33 +1.3.6.1.2.1.17.1.4.1.2.34|2|34 +1.3.6.1.2.1.17.1.4.1.2.35|2|35 +1.3.6.1.2.1.17.1.4.1.2.36|2|36 +1.3.6.1.2.1.17.1.4.1.2.37|2|37 +1.3.6.1.2.1.17.1.4.1.2.38|2|38 +1.3.6.1.2.1.17.1.4.1.2.39|2|39 +1.3.6.1.2.1.17.1.4.1.2.40|2|40 +1.3.6.1.2.1.17.1.4.1.2.41|2|41 +1.3.6.1.2.1.17.1.4.1.2.42|2|42 +1.3.6.1.2.1.17.1.4.1.2.43|2|43 +1.3.6.1.2.1.17.1.4.1.2.44|2|44 +1.3.6.1.2.1.17.1.4.1.2.45|2|45 +1.3.6.1.2.1.17.1.4.1.2.46|2|46 +1.3.6.1.2.1.17.1.4.1.2.47|2|47 +1.3.6.1.2.1.17.1.4.1.2.48|2|48 +1.3.6.1.2.1.17.1.4.1.2.49|2|49 +1.3.6.1.2.1.17.1.4.1.2.50|2|50 +1.3.6.1.2.1.17.1.4.1.2.51|2|51 +1.3.6.1.2.1.17.1.4.1.2.52|2|52 +1.3.6.1.2.1.17.1.4.1.2.53|2|53 +1.3.6.1.2.1.17.1.4.1.2.54|2|54 +1.3.6.1.2.1.17.1.4.1.2.55|2|55 +1.3.6.1.2.1.17.1.4.1.2.56|2|56 +1.3.6.1.2.1.17.1.4.1.2.57|2|57 +1.3.6.1.2.1.17.1.4.1.2.58|2|58 +1.3.6.1.2.1.17.1.4.1.2.59|2|59 +1.3.6.1.2.1.17.1.4.1.2.60|2|60 +1.3.6.1.2.1.17.1.4.1.2.61|2|61 +1.3.6.1.2.1.17.1.4.1.2.62|2|62 +1.3.6.1.2.1.17.1.4.1.2.63|2|63 +1.3.6.1.2.1.17.1.4.1.2.64|2|64 +1.3.6.1.2.1.17.1.4.1.2.65|2|65 +1.3.6.1.2.1.17.1.4.1.2.66|2|66 +1.3.6.1.2.1.17.1.4.1.2.67|2|67 +1.3.6.1.2.1.17.1.4.1.2.68|2|68 +1.3.6.1.2.1.17.1.4.1.2.69|2|69 +1.3.6.1.2.1.17.1.4.1.2.70|2|70 +1.3.6.1.2.1.17.1.4.1.2.71|2|71 +1.3.6.1.2.1.17.1.4.1.2.72|2|72 +1.3.6.1.2.1.17.1.4.1.2.73|2|73 +1.3.6.1.2.1.17.1.4.1.2.74|2|74 +1.3.6.1.2.1.17.1.4.1.2.75|2|75 +1.3.6.1.2.1.17.1.4.1.2.76|2|76 +1.3.6.1.2.1.17.1.4.1.2.77|2|77 +1.3.6.1.2.1.17.1.4.1.2.78|2|78 +1.3.6.1.2.1.17.1.4.1.2.79|2|79 +1.3.6.1.2.1.17.1.4.1.2.80|2|80 +1.3.6.1.2.1.17.1.4.1.2.81|2|81 +1.3.6.1.2.1.17.1.4.1.2.82|2|82 +1.3.6.1.2.1.17.1.4.1.2.83|2|83 +1.3.6.1.2.1.17.1.4.1.2.84|2|84 +1.3.6.1.2.1.17.1.4.1.2.85|2|85 +1.3.6.1.2.1.17.1.4.1.2.86|2|86 +1.3.6.1.2.1.17.1.4.1.2.87|2|87 +1.3.6.1.2.1.17.1.4.1.2.88|2|88 +1.3.6.1.2.1.17.1.4.1.2.89|2|89 +1.3.6.1.2.1.17.1.4.1.2.90|2|90 +1.3.6.1.2.1.17.1.4.1.2.91|2|91 +1.3.6.1.2.1.17.1.4.1.2.92|2|92 +1.3.6.1.2.1.17.1.4.1.2.93|2|93 +1.3.6.1.2.1.17.1.4.1.2.94|2|94 +1.3.6.1.2.1.17.1.4.1.2.95|2|95 +1.3.6.1.2.1.17.1.4.1.2.96|2|96 +1.3.6.1.2.1.17.1.4.1.2.97|2|97 +1.3.6.1.2.1.17.1.4.1.2.98|2|98 +1.3.6.1.2.1.17.1.4.1.2.99|2|99 +1.3.6.1.2.1.17.1.4.1.2.100|2|100 +1.3.6.1.2.1.17.1.4.1.2.101|2|101 +1.3.6.1.2.1.17.1.4.1.2.102|2|102 +1.3.6.1.2.1.17.1.4.1.2.103|2|103 +1.3.6.1.2.1.17.1.4.1.2.104|2|104 +1.3.6.1.2.1.17.1.4.1.2.105|2|105 +1.3.6.1.2.1.17.1.4.1.2.106|2|106 +1.3.6.1.2.1.17.1.4.1.2.107|2|107 +1.3.6.1.2.1.17.1.4.1.2.108|2|108 +1.3.6.1.2.1.17.1.4.1.2.109|2|109 +1.3.6.1.2.1.17.1.4.1.2.110|2|110 +1.3.6.1.2.1.17.1.4.1.2.111|2|111 +1.3.6.1.2.1.17.1.4.1.2.112|2|112 +1.3.6.1.2.1.17.2.1.0|2|3 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.3.0|67|0 +1.3.6.1.2.1.17.2.4.0|65|0 +1.3.6.1.2.1.17.2.5.0|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.6.0|2|0 +1.3.6.1.2.1.17.2.7.0|2|0 +1.3.6.1.2.1.17.2.8.0|2|2000 +1.3.6.1.2.1.17.2.9.0|2|200 +1.3.6.1.2.1.17.2.10.0|2|100 +1.3.6.1.2.1.17.2.11.0|2|1500 +1.3.6.1.2.1.17.2.12.0|2|2000 +1.3.6.1.2.1.17.2.13.0|2|200 +1.3.6.1.2.1.17.2.14.0|2|1500 +1.3.6.1.2.1.17.2.15.1.1.1|2|1 +1.3.6.1.2.1.17.2.15.1.1.2|2|2 +1.3.6.1.2.1.17.2.15.1.1.3|2|3 +1.3.6.1.2.1.17.2.15.1.1.4|2|4 +1.3.6.1.2.1.17.2.15.1.1.5|2|5 +1.3.6.1.2.1.17.2.15.1.1.6|2|6 +1.3.6.1.2.1.17.2.15.1.1.7|2|7 +1.3.6.1.2.1.17.2.15.1.1.8|2|8 +1.3.6.1.2.1.17.2.15.1.1.9|2|9 +1.3.6.1.2.1.17.2.15.1.1.10|2|10 +1.3.6.1.2.1.17.2.15.1.1.11|2|11 +1.3.6.1.2.1.17.2.15.1.1.12|2|12 +1.3.6.1.2.1.17.2.15.1.1.13|2|13 +1.3.6.1.2.1.17.2.15.1.1.14|2|14 +1.3.6.1.2.1.17.2.15.1.1.15|2|15 +1.3.6.1.2.1.17.2.15.1.1.16|2|16 +1.3.6.1.2.1.17.2.15.1.1.17|2|17 +1.3.6.1.2.1.17.2.15.1.1.18|2|18 +1.3.6.1.2.1.17.2.15.1.1.19|2|19 +1.3.6.1.2.1.17.2.15.1.1.20|2|20 +1.3.6.1.2.1.17.2.15.1.1.21|2|21 +1.3.6.1.2.1.17.2.15.1.1.22|2|22 +1.3.6.1.2.1.17.2.15.1.1.23|2|23 +1.3.6.1.2.1.17.2.15.1.1.24|2|24 +1.3.6.1.2.1.17.2.15.1.1.25|2|25 +1.3.6.1.2.1.17.2.15.1.1.26|2|26 +1.3.6.1.2.1.17.2.15.1.1.27|2|27 +1.3.6.1.2.1.17.2.15.1.1.28|2|28 +1.3.6.1.2.1.17.2.15.1.1.29|2|29 +1.3.6.1.2.1.17.2.15.1.1.30|2|30 +1.3.6.1.2.1.17.2.15.1.1.31|2|31 +1.3.6.1.2.1.17.2.15.1.1.32|2|32 +1.3.6.1.2.1.17.2.15.1.1.33|2|33 +1.3.6.1.2.1.17.2.15.1.1.34|2|34 +1.3.6.1.2.1.17.2.15.1.1.35|2|35 +1.3.6.1.2.1.17.2.15.1.1.36|2|36 +1.3.6.1.2.1.17.2.15.1.1.37|2|37 +1.3.6.1.2.1.17.2.15.1.1.38|2|38 +1.3.6.1.2.1.17.2.15.1.1.39|2|39 +1.3.6.1.2.1.17.2.15.1.1.40|2|40 +1.3.6.1.2.1.17.2.15.1.1.41|2|41 +1.3.6.1.2.1.17.2.15.1.1.42|2|42 +1.3.6.1.2.1.17.2.15.1.1.43|2|43 +1.3.6.1.2.1.17.2.15.1.1.44|2|44 +1.3.6.1.2.1.17.2.15.1.1.45|2|45 +1.3.6.1.2.1.17.2.15.1.1.46|2|46 +1.3.6.1.2.1.17.2.15.1.1.47|2|47 +1.3.6.1.2.1.17.2.15.1.1.48|2|48 +1.3.6.1.2.1.17.2.15.1.1.49|2|49 +1.3.6.1.2.1.17.2.15.1.1.50|2|50 +1.3.6.1.2.1.17.2.15.1.1.51|2|51 +1.3.6.1.2.1.17.2.15.1.1.52|2|52 +1.3.6.1.2.1.17.2.15.1.1.53|2|53 +1.3.6.1.2.1.17.2.15.1.1.54|2|54 +1.3.6.1.2.1.17.2.15.1.1.55|2|55 +1.3.6.1.2.1.17.2.15.1.1.56|2|56 +1.3.6.1.2.1.17.2.15.1.1.57|2|57 +1.3.6.1.2.1.17.2.15.1.1.58|2|58 +1.3.6.1.2.1.17.2.15.1.1.59|2|59 +1.3.6.1.2.1.17.2.15.1.1.60|2|60 +1.3.6.1.2.1.17.2.15.1.1.61|2|61 +1.3.6.1.2.1.17.2.15.1.1.62|2|62 +1.3.6.1.2.1.17.2.15.1.1.63|2|63 +1.3.6.1.2.1.17.2.15.1.1.64|2|64 +1.3.6.1.2.1.17.2.15.1.1.65|2|65 +1.3.6.1.2.1.17.2.15.1.1.66|2|66 +1.3.6.1.2.1.17.2.15.1.1.67|2|67 +1.3.6.1.2.1.17.2.15.1.1.68|2|68 +1.3.6.1.2.1.17.2.15.1.1.69|2|69 +1.3.6.1.2.1.17.2.15.1.1.70|2|70 +1.3.6.1.2.1.17.2.15.1.1.71|2|71 +1.3.6.1.2.1.17.2.15.1.1.72|2|72 +1.3.6.1.2.1.17.2.15.1.1.73|2|73 +1.3.6.1.2.1.17.2.15.1.1.74|2|74 +1.3.6.1.2.1.17.2.15.1.1.75|2|75 +1.3.6.1.2.1.17.2.15.1.1.76|2|76 +1.3.6.1.2.1.17.2.15.1.1.77|2|77 +1.3.6.1.2.1.17.2.15.1.1.78|2|78 +1.3.6.1.2.1.17.2.15.1.1.79|2|79 +1.3.6.1.2.1.17.2.15.1.1.80|2|80 +1.3.6.1.2.1.17.2.15.1.1.81|2|81 +1.3.6.1.2.1.17.2.15.1.1.82|2|82 +1.3.6.1.2.1.17.2.15.1.1.83|2|83 +1.3.6.1.2.1.17.2.15.1.1.84|2|84 +1.3.6.1.2.1.17.2.15.1.1.85|2|85 +1.3.6.1.2.1.17.2.15.1.1.86|2|86 +1.3.6.1.2.1.17.2.15.1.1.87|2|87 +1.3.6.1.2.1.17.2.15.1.1.88|2|88 +1.3.6.1.2.1.17.2.15.1.1.89|2|89 +1.3.6.1.2.1.17.2.15.1.1.90|2|90 +1.3.6.1.2.1.17.2.15.1.1.91|2|91 +1.3.6.1.2.1.17.2.15.1.1.92|2|92 +1.3.6.1.2.1.17.2.15.1.1.93|2|93 +1.3.6.1.2.1.17.2.15.1.1.94|2|94 +1.3.6.1.2.1.17.2.15.1.1.95|2|95 +1.3.6.1.2.1.17.2.15.1.1.96|2|96 +1.3.6.1.2.1.17.2.15.1.1.97|2|97 +1.3.6.1.2.1.17.2.15.1.1.98|2|98 +1.3.6.1.2.1.17.2.15.1.1.99|2|99 +1.3.6.1.2.1.17.2.15.1.1.100|2|100 +1.3.6.1.2.1.17.2.15.1.1.101|2|101 +1.3.6.1.2.1.17.2.15.1.1.102|2|102 +1.3.6.1.2.1.17.2.15.1.1.103|2|103 +1.3.6.1.2.1.17.2.15.1.1.104|2|104 +1.3.6.1.2.1.17.2.15.1.1.105|2|105 +1.3.6.1.2.1.17.2.15.1.1.106|2|106 +1.3.6.1.2.1.17.2.15.1.1.107|2|107 +1.3.6.1.2.1.17.2.15.1.1.108|2|108 +1.3.6.1.2.1.17.2.15.1.1.109|2|109 +1.3.6.1.2.1.17.2.15.1.1.110|2|110 +1.3.6.1.2.1.17.2.15.1.1.111|2|111 +1.3.6.1.2.1.17.2.15.1.1.112|2|112 +1.3.6.1.2.1.17.2.15.1.2.1|2|128 +1.3.6.1.2.1.17.2.15.1.2.2|2|128 +1.3.6.1.2.1.17.2.15.1.2.3|2|128 +1.3.6.1.2.1.17.2.15.1.2.4|2|128 +1.3.6.1.2.1.17.2.15.1.2.5|2|128 +1.3.6.1.2.1.17.2.15.1.2.6|2|128 +1.3.6.1.2.1.17.2.15.1.2.7|2|128 +1.3.6.1.2.1.17.2.15.1.2.8|2|128 +1.3.6.1.2.1.17.2.15.1.2.9|2|128 +1.3.6.1.2.1.17.2.15.1.2.10|2|128 +1.3.6.1.2.1.17.2.15.1.2.11|2|128 +1.3.6.1.2.1.17.2.15.1.2.12|2|128 +1.3.6.1.2.1.17.2.15.1.2.13|2|128 +1.3.6.1.2.1.17.2.15.1.2.14|2|128 +1.3.6.1.2.1.17.2.15.1.2.15|2|128 +1.3.6.1.2.1.17.2.15.1.2.16|2|128 +1.3.6.1.2.1.17.2.15.1.2.17|2|128 +1.3.6.1.2.1.17.2.15.1.2.18|2|128 +1.3.6.1.2.1.17.2.15.1.2.19|2|128 +1.3.6.1.2.1.17.2.15.1.2.20|2|128 +1.3.6.1.2.1.17.2.15.1.2.21|2|128 +1.3.6.1.2.1.17.2.15.1.2.22|2|128 +1.3.6.1.2.1.17.2.15.1.2.23|2|128 +1.3.6.1.2.1.17.2.15.1.2.24|2|128 +1.3.6.1.2.1.17.2.15.1.2.25|2|128 +1.3.6.1.2.1.17.2.15.1.2.26|2|128 +1.3.6.1.2.1.17.2.15.1.2.27|2|128 +1.3.6.1.2.1.17.2.15.1.2.28|2|128 +1.3.6.1.2.1.17.2.15.1.2.29|2|128 +1.3.6.1.2.1.17.2.15.1.2.30|2|128 +1.3.6.1.2.1.17.2.15.1.2.31|2|128 +1.3.6.1.2.1.17.2.15.1.2.32|2|128 +1.3.6.1.2.1.17.2.15.1.2.33|2|128 +1.3.6.1.2.1.17.2.15.1.2.34|2|128 +1.3.6.1.2.1.17.2.15.1.2.35|2|128 +1.3.6.1.2.1.17.2.15.1.2.36|2|128 +1.3.6.1.2.1.17.2.15.1.2.37|2|128 +1.3.6.1.2.1.17.2.15.1.2.38|2|128 +1.3.6.1.2.1.17.2.15.1.2.39|2|128 +1.3.6.1.2.1.17.2.15.1.2.40|2|128 +1.3.6.1.2.1.17.2.15.1.2.41|2|128 +1.3.6.1.2.1.17.2.15.1.2.42|2|128 +1.3.6.1.2.1.17.2.15.1.2.43|2|128 +1.3.6.1.2.1.17.2.15.1.2.44|2|128 +1.3.6.1.2.1.17.2.15.1.2.45|2|128 +1.3.6.1.2.1.17.2.15.1.2.46|2|128 +1.3.6.1.2.1.17.2.15.1.2.47|2|128 +1.3.6.1.2.1.17.2.15.1.2.48|2|128 +1.3.6.1.2.1.17.2.15.1.2.49|2|128 +1.3.6.1.2.1.17.2.15.1.2.50|2|128 +1.3.6.1.2.1.17.2.15.1.2.51|2|128 +1.3.6.1.2.1.17.2.15.1.2.52|2|128 +1.3.6.1.2.1.17.2.15.1.2.53|2|128 +1.3.6.1.2.1.17.2.15.1.2.54|2|128 +1.3.6.1.2.1.17.2.15.1.2.55|2|128 +1.3.6.1.2.1.17.2.15.1.2.56|2|128 +1.3.6.1.2.1.17.2.15.1.2.57|2|128 +1.3.6.1.2.1.17.2.15.1.2.58|2|128 +1.3.6.1.2.1.17.2.15.1.2.59|2|128 +1.3.6.1.2.1.17.2.15.1.2.60|2|128 +1.3.6.1.2.1.17.2.15.1.2.61|2|128 +1.3.6.1.2.1.17.2.15.1.2.62|2|128 +1.3.6.1.2.1.17.2.15.1.2.63|2|128 +1.3.6.1.2.1.17.2.15.1.2.64|2|128 +1.3.6.1.2.1.17.2.15.1.2.65|2|128 +1.3.6.1.2.1.17.2.15.1.2.66|2|128 +1.3.6.1.2.1.17.2.15.1.2.67|2|128 +1.3.6.1.2.1.17.2.15.1.2.68|2|128 +1.3.6.1.2.1.17.2.15.1.2.69|2|128 +1.3.6.1.2.1.17.2.15.1.2.70|2|128 +1.3.6.1.2.1.17.2.15.1.2.71|2|128 +1.3.6.1.2.1.17.2.15.1.2.72|2|128 +1.3.6.1.2.1.17.2.15.1.2.73|2|128 +1.3.6.1.2.1.17.2.15.1.2.74|2|128 +1.3.6.1.2.1.17.2.15.1.2.75|2|128 +1.3.6.1.2.1.17.2.15.1.2.76|2|128 +1.3.6.1.2.1.17.2.15.1.2.77|2|128 +1.3.6.1.2.1.17.2.15.1.2.78|2|128 +1.3.6.1.2.1.17.2.15.1.2.79|2|128 +1.3.6.1.2.1.17.2.15.1.2.80|2|128 +1.3.6.1.2.1.17.2.15.1.2.81|2|128 +1.3.6.1.2.1.17.2.15.1.2.82|2|128 +1.3.6.1.2.1.17.2.15.1.2.83|2|128 +1.3.6.1.2.1.17.2.15.1.2.84|2|128 +1.3.6.1.2.1.17.2.15.1.2.85|2|128 +1.3.6.1.2.1.17.2.15.1.2.86|2|128 +1.3.6.1.2.1.17.2.15.1.2.87|2|128 +1.3.6.1.2.1.17.2.15.1.2.88|2|128 +1.3.6.1.2.1.17.2.15.1.2.89|2|128 +1.3.6.1.2.1.17.2.15.1.2.90|2|128 +1.3.6.1.2.1.17.2.15.1.2.91|2|128 +1.3.6.1.2.1.17.2.15.1.2.92|2|128 +1.3.6.1.2.1.17.2.15.1.2.93|2|128 +1.3.6.1.2.1.17.2.15.1.2.94|2|128 +1.3.6.1.2.1.17.2.15.1.2.95|2|128 +1.3.6.1.2.1.17.2.15.1.2.96|2|128 +1.3.6.1.2.1.17.2.15.1.2.97|2|128 +1.3.6.1.2.1.17.2.15.1.2.98|2|128 +1.3.6.1.2.1.17.2.15.1.2.99|2|128 +1.3.6.1.2.1.17.2.15.1.2.100|2|128 +1.3.6.1.2.1.17.2.15.1.2.101|2|128 +1.3.6.1.2.1.17.2.15.1.2.102|2|128 +1.3.6.1.2.1.17.2.15.1.2.103|2|128 +1.3.6.1.2.1.17.2.15.1.2.104|2|128 +1.3.6.1.2.1.17.2.15.1.2.105|2|128 +1.3.6.1.2.1.17.2.15.1.2.106|2|128 +1.3.6.1.2.1.17.2.15.1.2.107|2|128 +1.3.6.1.2.1.17.2.15.1.2.108|2|128 +1.3.6.1.2.1.17.2.15.1.2.109|2|128 +1.3.6.1.2.1.17.2.15.1.2.110|2|128 +1.3.6.1.2.1.17.2.15.1.2.111|2|128 +1.3.6.1.2.1.17.2.15.1.2.112|2|128 +1.3.6.1.2.1.17.2.15.1.3.1|2|1 +1.3.6.1.2.1.17.2.15.1.3.2|2|1 +1.3.6.1.2.1.17.2.15.1.3.3|2|1 +1.3.6.1.2.1.17.2.15.1.3.4|2|1 +1.3.6.1.2.1.17.2.15.1.3.5|2|1 +1.3.6.1.2.1.17.2.15.1.3.6|2|1 +1.3.6.1.2.1.17.2.15.1.3.7|2|1 +1.3.6.1.2.1.17.2.15.1.3.8|2|1 +1.3.6.1.2.1.17.2.15.1.3.9|2|5 +1.3.6.1.2.1.17.2.15.1.3.10|2|1 +1.3.6.1.2.1.17.2.15.1.3.11|2|1 +1.3.6.1.2.1.17.2.15.1.3.12|2|1 +1.3.6.1.2.1.17.2.15.1.3.13|2|1 +1.3.6.1.2.1.17.2.15.1.3.14|2|1 +1.3.6.1.2.1.17.2.15.1.3.15|2|1 +1.3.6.1.2.1.17.2.15.1.3.16|2|1 +1.3.6.1.2.1.17.2.15.1.3.17|2|1 +1.3.6.1.2.1.17.2.15.1.3.18|2|5 +1.3.6.1.2.1.17.2.15.1.3.19|2|1 +1.3.6.1.2.1.17.2.15.1.3.20|2|1 +1.3.6.1.2.1.17.2.15.1.3.21|2|1 +1.3.6.1.2.1.17.2.15.1.3.22|2|1 +1.3.6.1.2.1.17.2.15.1.3.23|2|1 +1.3.6.1.2.1.17.2.15.1.3.24|2|1 +1.3.6.1.2.1.17.2.15.1.3.25|2|1 +1.3.6.1.2.1.17.2.15.1.3.26|2|1 +1.3.6.1.2.1.17.2.15.1.3.27|2|1 +1.3.6.1.2.1.17.2.15.1.3.28|2|5 +1.3.6.1.2.1.17.2.15.1.3.29|2|1 +1.3.6.1.2.1.17.2.15.1.3.30|2|1 +1.3.6.1.2.1.17.2.15.1.3.31|2|1 +1.3.6.1.2.1.17.2.15.1.3.32|2|1 +1.3.6.1.2.1.17.2.15.1.3.33|2|5 +1.3.6.1.2.1.17.2.15.1.3.34|2|1 +1.3.6.1.2.1.17.2.15.1.3.35|2|1 +1.3.6.1.2.1.17.2.15.1.3.36|2|1 +1.3.6.1.2.1.17.2.15.1.3.37|2|1 +1.3.6.1.2.1.17.2.15.1.3.38|2|1 +1.3.6.1.2.1.17.2.15.1.3.39|2|1 +1.3.6.1.2.1.17.2.15.1.3.40|2|1 +1.3.6.1.2.1.17.2.15.1.3.41|2|1 +1.3.6.1.2.1.17.2.15.1.3.42|2|1 +1.3.6.1.2.1.17.2.15.1.3.43|2|1 +1.3.6.1.2.1.17.2.15.1.3.44|2|1 +1.3.6.1.2.1.17.2.15.1.3.45|2|1 +1.3.6.1.2.1.17.2.15.1.3.46|2|5 +1.3.6.1.2.1.17.2.15.1.3.47|2|1 +1.3.6.1.2.1.17.2.15.1.3.48|2|1 +1.3.6.1.2.1.17.2.15.1.3.49|2|1 +1.3.6.1.2.1.17.2.15.1.3.50|2|1 +1.3.6.1.2.1.17.2.15.1.3.51|2|1 +1.3.6.1.2.1.17.2.15.1.3.52|2|1 +1.3.6.1.2.1.17.2.15.1.3.53|2|1 +1.3.6.1.2.1.17.2.15.1.3.54|2|1 +1.3.6.1.2.1.17.2.15.1.3.55|2|1 +1.3.6.1.2.1.17.2.15.1.3.56|2|1 +1.3.6.1.2.1.17.2.15.1.3.57|2|1 +1.3.6.1.2.1.17.2.15.1.3.58|2|1 +1.3.6.1.2.1.17.2.15.1.3.59|2|1 +1.3.6.1.2.1.17.2.15.1.3.60|2|1 +1.3.6.1.2.1.17.2.15.1.3.61|2|1 +1.3.6.1.2.1.17.2.15.1.3.62|2|1 +1.3.6.1.2.1.17.2.15.1.3.63|2|1 +1.3.6.1.2.1.17.2.15.1.3.64|2|1 +1.3.6.1.2.1.17.2.15.1.3.65|2|1 +1.3.6.1.2.1.17.2.15.1.3.66|2|1 +1.3.6.1.2.1.17.2.15.1.3.67|2|1 +1.3.6.1.2.1.17.2.15.1.3.68|2|1 +1.3.6.1.2.1.17.2.15.1.3.69|2|1 +1.3.6.1.2.1.17.2.15.1.3.70|2|1 +1.3.6.1.2.1.17.2.15.1.3.71|2|1 +1.3.6.1.2.1.17.2.15.1.3.72|2|1 +1.3.6.1.2.1.17.2.15.1.3.73|2|1 +1.3.6.1.2.1.17.2.15.1.3.74|2|1 +1.3.6.1.2.1.17.2.15.1.3.75|2|1 +1.3.6.1.2.1.17.2.15.1.3.76|2|1 +1.3.6.1.2.1.17.2.15.1.3.77|2|1 +1.3.6.1.2.1.17.2.15.1.3.78|2|1 +1.3.6.1.2.1.17.2.15.1.3.79|2|1 +1.3.6.1.2.1.17.2.15.1.3.80|2|1 +1.3.6.1.2.1.17.2.15.1.3.81|2|1 +1.3.6.1.2.1.17.2.15.1.3.82|2|1 +1.3.6.1.2.1.17.2.15.1.3.83|2|1 +1.3.6.1.2.1.17.2.15.1.3.84|2|1 +1.3.6.1.2.1.17.2.15.1.3.85|2|1 +1.3.6.1.2.1.17.2.15.1.3.86|2|1 +1.3.6.1.2.1.17.2.15.1.3.87|2|1 +1.3.6.1.2.1.17.2.15.1.3.88|2|1 +1.3.6.1.2.1.17.2.15.1.3.89|2|1 +1.3.6.1.2.1.17.2.15.1.3.90|2|1 +1.3.6.1.2.1.17.2.15.1.3.91|2|1 +1.3.6.1.2.1.17.2.15.1.3.92|2|1 +1.3.6.1.2.1.17.2.15.1.3.93|2|1 +1.3.6.1.2.1.17.2.15.1.3.94|2|1 +1.3.6.1.2.1.17.2.15.1.3.95|2|1 +1.3.6.1.2.1.17.2.15.1.3.96|2|1 +1.3.6.1.2.1.17.2.15.1.3.97|2|1 +1.3.6.1.2.1.17.2.15.1.3.98|2|1 +1.3.6.1.2.1.17.2.15.1.3.99|2|1 +1.3.6.1.2.1.17.2.15.1.3.100|2|1 +1.3.6.1.2.1.17.2.15.1.3.101|2|1 +1.3.6.1.2.1.17.2.15.1.3.102|2|1 +1.3.6.1.2.1.17.2.15.1.3.103|2|1 +1.3.6.1.2.1.17.2.15.1.3.104|2|1 +1.3.6.1.2.1.17.2.15.1.3.105|2|1 +1.3.6.1.2.1.17.2.15.1.3.106|2|1 +1.3.6.1.2.1.17.2.15.1.3.107|2|1 +1.3.6.1.2.1.17.2.15.1.3.108|2|1 +1.3.6.1.2.1.17.2.15.1.3.109|2|1 +1.3.6.1.2.1.17.2.15.1.3.110|2|1 +1.3.6.1.2.1.17.2.15.1.3.111|2|1 +1.3.6.1.2.1.17.2.15.1.3.112|2|1 +1.3.6.1.2.1.17.2.15.1.4.1|2|1 +1.3.6.1.2.1.17.2.15.1.4.2|2|1 +1.3.6.1.2.1.17.2.15.1.4.3|2|1 +1.3.6.1.2.1.17.2.15.1.4.4|2|1 +1.3.6.1.2.1.17.2.15.1.4.5|2|1 +1.3.6.1.2.1.17.2.15.1.4.6|2|1 +1.3.6.1.2.1.17.2.15.1.4.7|2|1 +1.3.6.1.2.1.17.2.15.1.4.8|2|1 +1.3.6.1.2.1.17.2.15.1.4.9|2|1 +1.3.6.1.2.1.17.2.15.1.4.10|2|1 +1.3.6.1.2.1.17.2.15.1.4.11|2|1 +1.3.6.1.2.1.17.2.15.1.4.12|2|1 +1.3.6.1.2.1.17.2.15.1.4.13|2|1 +1.3.6.1.2.1.17.2.15.1.4.14|2|1 +1.3.6.1.2.1.17.2.15.1.4.15|2|1 +1.3.6.1.2.1.17.2.15.1.4.16|2|1 +1.3.6.1.2.1.17.2.15.1.4.17|2|1 +1.3.6.1.2.1.17.2.15.1.4.18|2|1 +1.3.6.1.2.1.17.2.15.1.4.19|2|1 +1.3.6.1.2.1.17.2.15.1.4.20|2|1 +1.3.6.1.2.1.17.2.15.1.4.21|2|1 +1.3.6.1.2.1.17.2.15.1.4.22|2|1 +1.3.6.1.2.1.17.2.15.1.4.23|2|1 +1.3.6.1.2.1.17.2.15.1.4.24|2|1 +1.3.6.1.2.1.17.2.15.1.4.25|2|1 +1.3.6.1.2.1.17.2.15.1.4.26|2|1 +1.3.6.1.2.1.17.2.15.1.4.27|2|1 +1.3.6.1.2.1.17.2.15.1.4.28|2|2 +1.3.6.1.2.1.17.2.15.1.4.29|2|1 +1.3.6.1.2.1.17.2.15.1.4.30|2|1 +1.3.6.1.2.1.17.2.15.1.4.31|2|1 +1.3.6.1.2.1.17.2.15.1.4.32|2|1 +1.3.6.1.2.1.17.2.15.1.4.33|2|1 +1.3.6.1.2.1.17.2.15.1.4.34|2|1 +1.3.6.1.2.1.17.2.15.1.4.35|2|1 +1.3.6.1.2.1.17.2.15.1.4.36|2|1 +1.3.6.1.2.1.17.2.15.1.4.37|2|1 +1.3.6.1.2.1.17.2.15.1.4.38|2|1 +1.3.6.1.2.1.17.2.15.1.4.39|2|1 +1.3.6.1.2.1.17.2.15.1.4.40|2|1 +1.3.6.1.2.1.17.2.15.1.4.41|2|1 +1.3.6.1.2.1.17.2.15.1.4.42|2|1 +1.3.6.1.2.1.17.2.15.1.4.43|2|1 +1.3.6.1.2.1.17.2.15.1.4.44|2|1 +1.3.6.1.2.1.17.2.15.1.4.45|2|1 +1.3.6.1.2.1.17.2.15.1.4.46|2|1 +1.3.6.1.2.1.17.2.15.1.4.47|2|1 +1.3.6.1.2.1.17.2.15.1.4.48|2|1 +1.3.6.1.2.1.17.2.15.1.4.49|2|1 +1.3.6.1.2.1.17.2.15.1.4.50|2|1 +1.3.6.1.2.1.17.2.15.1.4.51|2|1 +1.3.6.1.2.1.17.2.15.1.4.52|2|1 +1.3.6.1.2.1.17.2.15.1.4.53|2|1 +1.3.6.1.2.1.17.2.15.1.4.54|2|1 +1.3.6.1.2.1.17.2.15.1.4.55|2|1 +1.3.6.1.2.1.17.2.15.1.4.56|2|2 +1.3.6.1.2.1.17.2.15.1.4.57|2|1 +1.3.6.1.2.1.17.2.15.1.4.58|2|1 +1.3.6.1.2.1.17.2.15.1.4.59|2|1 +1.3.6.1.2.1.17.2.15.1.4.60|2|1 +1.3.6.1.2.1.17.2.15.1.4.61|2|1 +1.3.6.1.2.1.17.2.15.1.4.62|2|1 +1.3.6.1.2.1.17.2.15.1.4.63|2|1 +1.3.6.1.2.1.17.2.15.1.4.64|2|1 +1.3.6.1.2.1.17.2.15.1.4.65|2|1 +1.3.6.1.2.1.17.2.15.1.4.66|2|1 +1.3.6.1.2.1.17.2.15.1.4.67|2|1 +1.3.6.1.2.1.17.2.15.1.4.68|2|1 +1.3.6.1.2.1.17.2.15.1.4.69|2|1 +1.3.6.1.2.1.17.2.15.1.4.70|2|1 +1.3.6.1.2.1.17.2.15.1.4.71|2|1 +1.3.6.1.2.1.17.2.15.1.4.72|2|1 +1.3.6.1.2.1.17.2.15.1.4.73|2|1 +1.3.6.1.2.1.17.2.15.1.4.74|2|1 +1.3.6.1.2.1.17.2.15.1.4.75|2|1 +1.3.6.1.2.1.17.2.15.1.4.76|2|1 +1.3.6.1.2.1.17.2.15.1.4.77|2|1 +1.3.6.1.2.1.17.2.15.1.4.78|2|1 +1.3.6.1.2.1.17.2.15.1.4.79|2|1 +1.3.6.1.2.1.17.2.15.1.4.80|2|1 +1.3.6.1.2.1.17.2.15.1.4.81|2|1 +1.3.6.1.2.1.17.2.15.1.4.82|2|1 +1.3.6.1.2.1.17.2.15.1.4.83|2|1 +1.3.6.1.2.1.17.2.15.1.4.84|2|1 +1.3.6.1.2.1.17.2.15.1.4.85|2|1 +1.3.6.1.2.1.17.2.15.1.4.86|2|1 +1.3.6.1.2.1.17.2.15.1.4.87|2|1 +1.3.6.1.2.1.17.2.15.1.4.88|2|1 +1.3.6.1.2.1.17.2.15.1.4.89|2|1 +1.3.6.1.2.1.17.2.15.1.4.90|2|1 +1.3.6.1.2.1.17.2.15.1.4.91|2|1 +1.3.6.1.2.1.17.2.15.1.4.92|2|1 +1.3.6.1.2.1.17.2.15.1.4.93|2|1 +1.3.6.1.2.1.17.2.15.1.4.94|2|1 +1.3.6.1.2.1.17.2.15.1.4.95|2|1 +1.3.6.1.2.1.17.2.15.1.4.96|2|1 +1.3.6.1.2.1.17.2.15.1.4.97|2|1 +1.3.6.1.2.1.17.2.15.1.4.98|2|1 +1.3.6.1.2.1.17.2.15.1.4.99|2|1 +1.3.6.1.2.1.17.2.15.1.4.100|2|1 +1.3.6.1.2.1.17.2.15.1.4.101|2|1 +1.3.6.1.2.1.17.2.15.1.4.102|2|1 +1.3.6.1.2.1.17.2.15.1.4.103|2|1 +1.3.6.1.2.1.17.2.15.1.4.104|2|1 +1.3.6.1.2.1.17.2.15.1.4.105|2|1 +1.3.6.1.2.1.17.2.15.1.4.106|2|1 +1.3.6.1.2.1.17.2.15.1.4.107|2|1 +1.3.6.1.2.1.17.2.15.1.4.108|2|1 +1.3.6.1.2.1.17.2.15.1.4.109|2|1 +1.3.6.1.2.1.17.2.15.1.4.110|2|1 +1.3.6.1.2.1.17.2.15.1.4.111|2|1 +1.3.6.1.2.1.17.2.15.1.4.112|2|1 +1.3.6.1.2.1.17.2.15.1.5.1|2|200000 +1.3.6.1.2.1.17.2.15.1.5.2|2|200000 +1.3.6.1.2.1.17.2.15.1.5.3|2|200000 +1.3.6.1.2.1.17.2.15.1.5.4|2|200000 +1.3.6.1.2.1.17.2.15.1.5.5|2|200000 +1.3.6.1.2.1.17.2.15.1.5.6|2|200000 +1.3.6.1.2.1.17.2.15.1.5.7|2|200000 +1.3.6.1.2.1.17.2.15.1.5.8|2|200000 +1.3.6.1.2.1.17.2.15.1.5.9|2|20000 +1.3.6.1.2.1.17.2.15.1.5.10|2|200000 +1.3.6.1.2.1.17.2.15.1.5.11|2|200000 +1.3.6.1.2.1.17.2.15.1.5.12|2|200000 +1.3.6.1.2.1.17.2.15.1.5.13|2|200000 +1.3.6.1.2.1.17.2.15.1.5.14|2|200000 +1.3.6.1.2.1.17.2.15.1.5.15|2|200000 +1.3.6.1.2.1.17.2.15.1.5.16|2|200000 +1.3.6.1.2.1.17.2.15.1.5.17|2|200000 +1.3.6.1.2.1.17.2.15.1.5.18|2|20000 +1.3.6.1.2.1.17.2.15.1.5.19|2|200000 +1.3.6.1.2.1.17.2.15.1.5.20|2|200000 +1.3.6.1.2.1.17.2.15.1.5.21|2|200000 +1.3.6.1.2.1.17.2.15.1.5.22|2|200000 +1.3.6.1.2.1.17.2.15.1.5.23|2|200000 +1.3.6.1.2.1.17.2.15.1.5.24|2|200000 +1.3.6.1.2.1.17.2.15.1.5.25|2|200000 +1.3.6.1.2.1.17.2.15.1.5.26|2|200000 +1.3.6.1.2.1.17.2.15.1.5.27|2|2000 +1.3.6.1.2.1.17.2.15.1.5.28|2|2000 +1.3.6.1.2.1.17.2.15.1.5.29|2|200000 +1.3.6.1.2.1.17.2.15.1.5.30|2|200000 +1.3.6.1.2.1.17.2.15.1.5.31|2|200000 +1.3.6.1.2.1.17.2.15.1.5.32|2|200000 +1.3.6.1.2.1.17.2.15.1.5.33|2|20000 +1.3.6.1.2.1.17.2.15.1.5.34|2|200000 +1.3.6.1.2.1.17.2.15.1.5.35|2|200000 +1.3.6.1.2.1.17.2.15.1.5.36|2|200000 +1.3.6.1.2.1.17.2.15.1.5.37|2|200000 +1.3.6.1.2.1.17.2.15.1.5.38|2|200000 +1.3.6.1.2.1.17.2.15.1.5.39|2|200000 +1.3.6.1.2.1.17.2.15.1.5.40|2|200000 +1.3.6.1.2.1.17.2.15.1.5.41|2|200000 +1.3.6.1.2.1.17.2.15.1.5.42|2|200000 +1.3.6.1.2.1.17.2.15.1.5.43|2|200000 +1.3.6.1.2.1.17.2.15.1.5.44|2|200000 +1.3.6.1.2.1.17.2.15.1.5.45|2|200000 +1.3.6.1.2.1.17.2.15.1.5.46|2|20000 +1.3.6.1.2.1.17.2.15.1.5.47|2|200000 +1.3.6.1.2.1.17.2.15.1.5.48|2|200000 +1.3.6.1.2.1.17.2.15.1.5.49|2|200000 +1.3.6.1.2.1.17.2.15.1.5.50|2|200000 +1.3.6.1.2.1.17.2.15.1.5.51|2|200000 +1.3.6.1.2.1.17.2.15.1.5.52|2|200000 +1.3.6.1.2.1.17.2.15.1.5.53|2|2000 +1.3.6.1.2.1.17.2.15.1.5.54|2|2000 +1.3.6.1.2.1.17.2.15.1.5.55|2|2000 +1.3.6.1.2.1.17.2.15.1.5.56|2|2000 +1.3.6.1.2.1.17.2.15.1.5.57|2|200000 +1.3.6.1.2.1.17.2.15.1.5.58|2|200000 +1.3.6.1.2.1.17.2.15.1.5.59|2|200000 +1.3.6.1.2.1.17.2.15.1.5.60|2|200000 +1.3.6.1.2.1.17.2.15.1.5.61|2|200000 +1.3.6.1.2.1.17.2.15.1.5.62|2|200000 +1.3.6.1.2.1.17.2.15.1.5.63|2|200000 +1.3.6.1.2.1.17.2.15.1.5.64|2|200000 +1.3.6.1.2.1.17.2.15.1.5.65|2|200000 +1.3.6.1.2.1.17.2.15.1.5.66|2|200000 +1.3.6.1.2.1.17.2.15.1.5.67|2|200000 +1.3.6.1.2.1.17.2.15.1.5.68|2|200000 +1.3.6.1.2.1.17.2.15.1.5.69|2|200000 +1.3.6.1.2.1.17.2.15.1.5.70|2|200000 +1.3.6.1.2.1.17.2.15.1.5.71|2|200000 +1.3.6.1.2.1.17.2.15.1.5.72|2|200000 +1.3.6.1.2.1.17.2.15.1.5.73|2|200000 +1.3.6.1.2.1.17.2.15.1.5.74|2|200000 +1.3.6.1.2.1.17.2.15.1.5.75|2|200000 +1.3.6.1.2.1.17.2.15.1.5.76|2|200000 +1.3.6.1.2.1.17.2.15.1.5.77|2|200000 +1.3.6.1.2.1.17.2.15.1.5.78|2|200000 +1.3.6.1.2.1.17.2.15.1.5.79|2|200000 +1.3.6.1.2.1.17.2.15.1.5.80|2|200000 +1.3.6.1.2.1.17.2.15.1.5.81|2|2000 +1.3.6.1.2.1.17.2.15.1.5.82|2|2000 +1.3.6.1.2.1.17.2.15.1.5.83|2|2000 +1.3.6.1.2.1.17.2.15.1.5.84|2|2000 +1.3.6.1.2.1.17.2.15.1.5.85|2|200000 +1.3.6.1.2.1.17.2.15.1.5.86|2|200000 +1.3.6.1.2.1.17.2.15.1.5.87|2|200000 +1.3.6.1.2.1.17.2.15.1.5.88|2|200000 +1.3.6.1.2.1.17.2.15.1.5.89|2|200000 +1.3.6.1.2.1.17.2.15.1.5.90|2|200000 +1.3.6.1.2.1.17.2.15.1.5.91|2|200000 +1.3.6.1.2.1.17.2.15.1.5.92|2|200000 +1.3.6.1.2.1.17.2.15.1.5.93|2|200000 +1.3.6.1.2.1.17.2.15.1.5.94|2|200000 +1.3.6.1.2.1.17.2.15.1.5.95|2|200000 +1.3.6.1.2.1.17.2.15.1.5.96|2|200000 +1.3.6.1.2.1.17.2.15.1.5.97|2|200000 +1.3.6.1.2.1.17.2.15.1.5.98|2|200000 +1.3.6.1.2.1.17.2.15.1.5.99|2|200000 +1.3.6.1.2.1.17.2.15.1.5.100|2|200000 +1.3.6.1.2.1.17.2.15.1.5.101|2|200000 +1.3.6.1.2.1.17.2.15.1.5.102|2|200000 +1.3.6.1.2.1.17.2.15.1.5.103|2|200000 +1.3.6.1.2.1.17.2.15.1.5.104|2|200000 +1.3.6.1.2.1.17.2.15.1.5.105|2|200000 +1.3.6.1.2.1.17.2.15.1.5.106|2|200000 +1.3.6.1.2.1.17.2.15.1.5.107|2|200000 +1.3.6.1.2.1.17.2.15.1.5.108|2|200000 +1.3.6.1.2.1.17.2.15.1.5.109|2|2000 +1.3.6.1.2.1.17.2.15.1.5.110|2|2000 +1.3.6.1.2.1.17.2.15.1.5.111|2|2000 +1.3.6.1.2.1.17.2.15.1.5.112|2|2000 +1.3.6.1.2.1.17.2.15.1.6.1|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.2|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.3|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.4|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.5|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.6|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.7|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.8|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.9|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.10|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.11|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.12|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.13|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.14|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.15|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.16|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.17|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.18|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.19|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.20|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.21|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.22|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.23|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.24|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.25|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.26|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.27|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.28|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.29|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.30|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.31|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.32|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.33|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.34|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.35|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.36|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.37|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.38|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.39|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.40|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.41|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.42|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.43|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.44|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.45|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.46|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.47|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.48|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.49|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.50|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.51|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.52|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.53|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.54|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.55|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.56|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.57|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.58|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.59|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.60|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.61|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.62|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.63|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.64|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.65|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.66|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.67|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.68|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.69|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.70|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.71|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.72|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.73|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.74|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.75|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.76|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.77|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.78|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.79|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.80|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.81|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.82|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.83|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.84|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.85|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.86|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.87|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.88|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.89|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.90|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.91|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.92|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.93|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.94|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.95|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.96|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.97|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.98|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.99|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.100|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.101|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.102|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.103|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.104|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.105|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.106|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.107|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.108|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.109|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.110|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.111|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.6.112|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.7.1|2|0 +1.3.6.1.2.1.17.2.15.1.7.2|2|0 +1.3.6.1.2.1.17.2.15.1.7.3|2|0 +1.3.6.1.2.1.17.2.15.1.7.4|2|0 +1.3.6.1.2.1.17.2.15.1.7.5|2|0 +1.3.6.1.2.1.17.2.15.1.7.6|2|0 +1.3.6.1.2.1.17.2.15.1.7.7|2|0 +1.3.6.1.2.1.17.2.15.1.7.8|2|0 +1.3.6.1.2.1.17.2.15.1.7.9|2|0 +1.3.6.1.2.1.17.2.15.1.7.10|2|0 +1.3.6.1.2.1.17.2.15.1.7.11|2|0 +1.3.6.1.2.1.17.2.15.1.7.12|2|0 +1.3.6.1.2.1.17.2.15.1.7.13|2|0 +1.3.6.1.2.1.17.2.15.1.7.14|2|0 +1.3.6.1.2.1.17.2.15.1.7.15|2|0 +1.3.6.1.2.1.17.2.15.1.7.16|2|0 +1.3.6.1.2.1.17.2.15.1.7.17|2|0 +1.3.6.1.2.1.17.2.15.1.7.18|2|0 +1.3.6.1.2.1.17.2.15.1.7.19|2|0 +1.3.6.1.2.1.17.2.15.1.7.20|2|0 +1.3.6.1.2.1.17.2.15.1.7.21|2|0 +1.3.6.1.2.1.17.2.15.1.7.22|2|0 +1.3.6.1.2.1.17.2.15.1.7.23|2|0 +1.3.6.1.2.1.17.2.15.1.7.24|2|0 +1.3.6.1.2.1.17.2.15.1.7.25|2|0 +1.3.6.1.2.1.17.2.15.1.7.26|2|0 +1.3.6.1.2.1.17.2.15.1.7.27|2|0 +1.3.6.1.2.1.17.2.15.1.7.28|2|0 +1.3.6.1.2.1.17.2.15.1.7.29|2|0 +1.3.6.1.2.1.17.2.15.1.7.30|2|0 +1.3.6.1.2.1.17.2.15.1.7.31|2|0 +1.3.6.1.2.1.17.2.15.1.7.32|2|0 +1.3.6.1.2.1.17.2.15.1.7.33|2|0 +1.3.6.1.2.1.17.2.15.1.7.34|2|0 +1.3.6.1.2.1.17.2.15.1.7.35|2|0 +1.3.6.1.2.1.17.2.15.1.7.36|2|0 +1.3.6.1.2.1.17.2.15.1.7.37|2|0 +1.3.6.1.2.1.17.2.15.1.7.38|2|0 +1.3.6.1.2.1.17.2.15.1.7.39|2|0 +1.3.6.1.2.1.17.2.15.1.7.40|2|0 +1.3.6.1.2.1.17.2.15.1.7.41|2|0 +1.3.6.1.2.1.17.2.15.1.7.42|2|0 +1.3.6.1.2.1.17.2.15.1.7.43|2|0 +1.3.6.1.2.1.17.2.15.1.7.44|2|0 +1.3.6.1.2.1.17.2.15.1.7.45|2|0 +1.3.6.1.2.1.17.2.15.1.7.46|2|0 +1.3.6.1.2.1.17.2.15.1.7.47|2|0 +1.3.6.1.2.1.17.2.15.1.7.48|2|0 +1.3.6.1.2.1.17.2.15.1.7.49|2|0 +1.3.6.1.2.1.17.2.15.1.7.50|2|0 +1.3.6.1.2.1.17.2.15.1.7.51|2|0 +1.3.6.1.2.1.17.2.15.1.7.52|2|0 +1.3.6.1.2.1.17.2.15.1.7.53|2|0 +1.3.6.1.2.1.17.2.15.1.7.54|2|0 +1.3.6.1.2.1.17.2.15.1.7.55|2|0 +1.3.6.1.2.1.17.2.15.1.7.56|2|0 +1.3.6.1.2.1.17.2.15.1.7.57|2|0 +1.3.6.1.2.1.17.2.15.1.7.58|2|0 +1.3.6.1.2.1.17.2.15.1.7.59|2|0 +1.3.6.1.2.1.17.2.15.1.7.60|2|0 +1.3.6.1.2.1.17.2.15.1.7.61|2|0 +1.3.6.1.2.1.17.2.15.1.7.62|2|0 +1.3.6.1.2.1.17.2.15.1.7.63|2|0 +1.3.6.1.2.1.17.2.15.1.7.64|2|0 +1.3.6.1.2.1.17.2.15.1.7.65|2|0 +1.3.6.1.2.1.17.2.15.1.7.66|2|0 +1.3.6.1.2.1.17.2.15.1.7.67|2|0 +1.3.6.1.2.1.17.2.15.1.7.68|2|0 +1.3.6.1.2.1.17.2.15.1.7.69|2|0 +1.3.6.1.2.1.17.2.15.1.7.70|2|0 +1.3.6.1.2.1.17.2.15.1.7.71|2|0 +1.3.6.1.2.1.17.2.15.1.7.72|2|0 +1.3.6.1.2.1.17.2.15.1.7.73|2|0 +1.3.6.1.2.1.17.2.15.1.7.74|2|0 +1.3.6.1.2.1.17.2.15.1.7.75|2|0 +1.3.6.1.2.1.17.2.15.1.7.76|2|0 +1.3.6.1.2.1.17.2.15.1.7.77|2|0 +1.3.6.1.2.1.17.2.15.1.7.78|2|0 +1.3.6.1.2.1.17.2.15.1.7.79|2|0 +1.3.6.1.2.1.17.2.15.1.7.80|2|0 +1.3.6.1.2.1.17.2.15.1.7.81|2|0 +1.3.6.1.2.1.17.2.15.1.7.82|2|0 +1.3.6.1.2.1.17.2.15.1.7.83|2|0 +1.3.6.1.2.1.17.2.15.1.7.84|2|0 +1.3.6.1.2.1.17.2.15.1.7.85|2|0 +1.3.6.1.2.1.17.2.15.1.7.86|2|0 +1.3.6.1.2.1.17.2.15.1.7.87|2|0 +1.3.6.1.2.1.17.2.15.1.7.88|2|0 +1.3.6.1.2.1.17.2.15.1.7.89|2|0 +1.3.6.1.2.1.17.2.15.1.7.90|2|0 +1.3.6.1.2.1.17.2.15.1.7.91|2|0 +1.3.6.1.2.1.17.2.15.1.7.92|2|0 +1.3.6.1.2.1.17.2.15.1.7.93|2|0 +1.3.6.1.2.1.17.2.15.1.7.94|2|0 +1.3.6.1.2.1.17.2.15.1.7.95|2|0 +1.3.6.1.2.1.17.2.15.1.7.96|2|0 +1.3.6.1.2.1.17.2.15.1.7.97|2|0 +1.3.6.1.2.1.17.2.15.1.7.98|2|0 +1.3.6.1.2.1.17.2.15.1.7.99|2|0 +1.3.6.1.2.1.17.2.15.1.7.100|2|0 +1.3.6.1.2.1.17.2.15.1.7.101|2|0 +1.3.6.1.2.1.17.2.15.1.7.102|2|0 +1.3.6.1.2.1.17.2.15.1.7.103|2|0 +1.3.6.1.2.1.17.2.15.1.7.104|2|0 +1.3.6.1.2.1.17.2.15.1.7.105|2|0 +1.3.6.1.2.1.17.2.15.1.7.106|2|0 +1.3.6.1.2.1.17.2.15.1.7.107|2|0 +1.3.6.1.2.1.17.2.15.1.7.108|2|0 +1.3.6.1.2.1.17.2.15.1.7.109|2|0 +1.3.6.1.2.1.17.2.15.1.7.110|2|0 +1.3.6.1.2.1.17.2.15.1.7.111|2|0 +1.3.6.1.2.1.17.2.15.1.7.112|2|0 +1.3.6.1.2.1.17.2.15.1.8.1|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.2|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.3|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.4|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.5|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.6|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.7|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.8|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.9|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.10|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.11|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.12|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.13|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.14|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.15|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.16|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.17|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.18|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.19|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.20|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.21|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.22|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.23|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.24|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.25|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.26|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.27|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.28|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.29|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.30|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.31|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.32|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.33|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.34|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.35|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.36|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.37|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.38|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.39|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.40|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.41|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.42|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.43|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.44|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.45|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.46|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.47|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.48|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.49|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.50|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.51|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.52|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.53|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.54|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.55|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.56|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.57|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.58|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.59|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.60|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.61|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.62|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.63|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.64|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.65|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.66|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.67|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.68|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.69|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.70|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.71|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.72|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.73|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.74|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.75|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.76|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.77|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.78|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.79|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.80|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.81|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.82|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.83|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.84|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.85|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.86|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.87|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.88|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.89|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.90|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.91|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.92|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.93|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.94|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.95|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.96|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.97|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.98|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.99|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.100|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.101|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.102|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.103|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.104|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.105|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.106|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.107|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.108|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.109|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.110|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.111|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.8.112|4x|0080000A5A64DEF2 +1.3.6.1.2.1.17.2.15.1.9.1|4x|0180 +1.3.6.1.2.1.17.2.15.1.9.2|4x|0280 +1.3.6.1.2.1.17.2.15.1.9.3|4x|0380 +1.3.6.1.2.1.17.2.15.1.9.4|4x|0480 +1.3.6.1.2.1.17.2.15.1.9.5|4x|0580 +1.3.6.1.2.1.17.2.15.1.9.6|4x|0680 +1.3.6.1.2.1.17.2.15.1.9.7|4x|0780 +1.3.6.1.2.1.17.2.15.1.9.8|4x|0880 +1.3.6.1.2.1.17.2.15.1.9.9|4x|0980 +1.3.6.1.2.1.17.2.15.1.9.10|4x|0A80 +1.3.6.1.2.1.17.2.15.1.9.11|4x|0B80 +1.3.6.1.2.1.17.2.15.1.9.12|4x|0C80 +1.3.6.1.2.1.17.2.15.1.9.13|4x|0D80 +1.3.6.1.2.1.17.2.15.1.9.14|4x|0E80 +1.3.6.1.2.1.17.2.15.1.9.15|4x|0F80 +1.3.6.1.2.1.17.2.15.1.9.16|4x|1080 +1.3.6.1.2.1.17.2.15.1.9.17|4x|1180 +1.3.6.1.2.1.17.2.15.1.9.18|4x|1280 +1.3.6.1.2.1.17.2.15.1.9.19|4x|1380 +1.3.6.1.2.1.17.2.15.1.9.20|4x|1480 +1.3.6.1.2.1.17.2.15.1.9.21|4x|1580 +1.3.6.1.2.1.17.2.15.1.9.22|4x|1680 +1.3.6.1.2.1.17.2.15.1.9.23|4x|1780 +1.3.6.1.2.1.17.2.15.1.9.24|4x|1880 +1.3.6.1.2.1.17.2.15.1.9.25|4x|1980 +1.3.6.1.2.1.17.2.15.1.9.26|4x|1A80 +1.3.6.1.2.1.17.2.15.1.9.27|4x|1B80 +1.3.6.1.2.1.17.2.15.1.9.28|4x|1C80 +1.3.6.1.2.1.17.2.15.1.9.29|4x|1D80 +1.3.6.1.2.1.17.2.15.1.9.30|4x|1E80 +1.3.6.1.2.1.17.2.15.1.9.31|4x|1F80 +1.3.6.1.2.1.17.2.15.1.9.32|4x|2080 +1.3.6.1.2.1.17.2.15.1.9.33|4x|2180 +1.3.6.1.2.1.17.2.15.1.9.34|4x|2280 +1.3.6.1.2.1.17.2.15.1.9.35|4x|2380 +1.3.6.1.2.1.17.2.15.1.9.36|4x|2480 +1.3.6.1.2.1.17.2.15.1.9.37|4x|2580 +1.3.6.1.2.1.17.2.15.1.9.38|4x|2680 +1.3.6.1.2.1.17.2.15.1.9.39|4x|2780 +1.3.6.1.2.1.17.2.15.1.9.40|4x|2880 +1.3.6.1.2.1.17.2.15.1.9.41|4x|2980 +1.3.6.1.2.1.17.2.15.1.9.42|4x|2A80 +1.3.6.1.2.1.17.2.15.1.9.43|4x|2B80 +1.3.6.1.2.1.17.2.15.1.9.44|4x|2C80 +1.3.6.1.2.1.17.2.15.1.9.45|4x|2D80 +1.3.6.1.2.1.17.2.15.1.9.46|4x|2E80 +1.3.6.1.2.1.17.2.15.1.9.47|4x|2F80 +1.3.6.1.2.1.17.2.15.1.9.48|4x|3080 +1.3.6.1.2.1.17.2.15.1.9.49|4x|3180 +1.3.6.1.2.1.17.2.15.1.9.50|4x|3280 +1.3.6.1.2.1.17.2.15.1.9.51|4x|3380 +1.3.6.1.2.1.17.2.15.1.9.52|4x|3480 +1.3.6.1.2.1.17.2.15.1.9.53|4x|3580 +1.3.6.1.2.1.17.2.15.1.9.54|4x|3680 +1.3.6.1.2.1.17.2.15.1.9.55|4x|3780 +1.3.6.1.2.1.17.2.15.1.9.56|4x|3880 +1.3.6.1.2.1.17.2.15.1.9.57|4x|3980 +1.3.6.1.2.1.17.2.15.1.9.58|4x|3A80 +1.3.6.1.2.1.17.2.15.1.9.59|4x|3B80 +1.3.6.1.2.1.17.2.15.1.9.60|4x|3C80 +1.3.6.1.2.1.17.2.15.1.9.61|4x|3D80 +1.3.6.1.2.1.17.2.15.1.9.62|4x|3E80 +1.3.6.1.2.1.17.2.15.1.9.63|4x|3F80 +1.3.6.1.2.1.17.2.15.1.9.64|4x|4080 +1.3.6.1.2.1.17.2.15.1.9.65|4x|4180 +1.3.6.1.2.1.17.2.15.1.9.66|4x|4280 +1.3.6.1.2.1.17.2.15.1.9.67|4x|4380 +1.3.6.1.2.1.17.2.15.1.9.68|4x|4480 +1.3.6.1.2.1.17.2.15.1.9.69|4x|4580 +1.3.6.1.2.1.17.2.15.1.9.70|4x|4680 +1.3.6.1.2.1.17.2.15.1.9.71|4x|4780 +1.3.6.1.2.1.17.2.15.1.9.72|4x|4880 +1.3.6.1.2.1.17.2.15.1.9.73|4x|4980 +1.3.6.1.2.1.17.2.15.1.9.74|4x|4A80 +1.3.6.1.2.1.17.2.15.1.9.75|4x|4B80 +1.3.6.1.2.1.17.2.15.1.9.76|4x|4C80 +1.3.6.1.2.1.17.2.15.1.9.77|4x|4D80 +1.3.6.1.2.1.17.2.15.1.9.78|4x|4E80 +1.3.6.1.2.1.17.2.15.1.9.79|4x|4F80 +1.3.6.1.2.1.17.2.15.1.9.80|4x|5080 +1.3.6.1.2.1.17.2.15.1.9.81|4x|5180 +1.3.6.1.2.1.17.2.15.1.9.82|4x|5280 +1.3.6.1.2.1.17.2.15.1.9.83|4x|5380 +1.3.6.1.2.1.17.2.15.1.9.84|4x|5480 +1.3.6.1.2.1.17.2.15.1.9.85|4x|5580 +1.3.6.1.2.1.17.2.15.1.9.86|4x|5680 +1.3.6.1.2.1.17.2.15.1.9.87|4x|5780 +1.3.6.1.2.1.17.2.15.1.9.88|4x|5880 +1.3.6.1.2.1.17.2.15.1.9.89|4x|5980 +1.3.6.1.2.1.17.2.15.1.9.90|4x|5A80 +1.3.6.1.2.1.17.2.15.1.9.91|4x|5B80 +1.3.6.1.2.1.17.2.15.1.9.92|4x|5C80 +1.3.6.1.2.1.17.2.15.1.9.93|4x|5D80 +1.3.6.1.2.1.17.2.15.1.9.94|4x|5E80 +1.3.6.1.2.1.17.2.15.1.9.95|4x|5F80 +1.3.6.1.2.1.17.2.15.1.9.96|4x|6080 +1.3.6.1.2.1.17.2.15.1.9.97|4x|6180 +1.3.6.1.2.1.17.2.15.1.9.98|4x|6280 +1.3.6.1.2.1.17.2.15.1.9.99|4x|6380 +1.3.6.1.2.1.17.2.15.1.9.100|4x|6480 +1.3.6.1.2.1.17.2.15.1.9.101|4x|6580 +1.3.6.1.2.1.17.2.15.1.9.102|4x|6680 +1.3.6.1.2.1.17.2.15.1.9.103|4x|6780 +1.3.6.1.2.1.17.2.15.1.9.104|4x|6880 +1.3.6.1.2.1.17.2.15.1.9.105|4x|6980 +1.3.6.1.2.1.17.2.15.1.9.106|4x|6A80 +1.3.6.1.2.1.17.2.15.1.9.107|4x|6B80 +1.3.6.1.2.1.17.2.15.1.9.108|4x|6C80 +1.3.6.1.2.1.17.2.15.1.9.109|4x|6D80 +1.3.6.1.2.1.17.2.15.1.9.110|4x|6E80 +1.3.6.1.2.1.17.2.15.1.9.111|4x|6F80 +1.3.6.1.2.1.17.2.15.1.9.112|4x|7080 +1.3.6.1.2.1.17.2.15.1.10.1|65|0 +1.3.6.1.2.1.17.2.15.1.10.2|65|0 +1.3.6.1.2.1.17.2.15.1.10.3|65|0 +1.3.6.1.2.1.17.2.15.1.10.4|65|0 +1.3.6.1.2.1.17.2.15.1.10.5|65|0 +1.3.6.1.2.1.17.2.15.1.10.6|65|0 +1.3.6.1.2.1.17.2.15.1.10.7|65|0 +1.3.6.1.2.1.17.2.15.1.10.8|65|0 +1.3.6.1.2.1.17.2.15.1.10.9|65|0 +1.3.6.1.2.1.17.2.15.1.10.10|65|0 +1.3.6.1.2.1.17.2.15.1.10.11|65|0 +1.3.6.1.2.1.17.2.15.1.10.12|65|0 +1.3.6.1.2.1.17.2.15.1.10.13|65|0 +1.3.6.1.2.1.17.2.15.1.10.14|65|0 +1.3.6.1.2.1.17.2.15.1.10.15|65|0 +1.3.6.1.2.1.17.2.15.1.10.16|65|0 +1.3.6.1.2.1.17.2.15.1.10.17|65|0 +1.3.6.1.2.1.17.2.15.1.10.18|65|0 +1.3.6.1.2.1.17.2.15.1.10.19|65|0 +1.3.6.1.2.1.17.2.15.1.10.20|65|0 +1.3.6.1.2.1.17.2.15.1.10.21|65|0 +1.3.6.1.2.1.17.2.15.1.10.22|65|0 +1.3.6.1.2.1.17.2.15.1.10.23|65|0 +1.3.6.1.2.1.17.2.15.1.10.24|65|0 +1.3.6.1.2.1.17.2.15.1.10.25|65|0 +1.3.6.1.2.1.17.2.15.1.10.26|65|0 +1.3.6.1.2.1.17.2.15.1.10.27|65|0 +1.3.6.1.2.1.17.2.15.1.10.28|65|0 +1.3.6.1.2.1.17.2.15.1.10.29|65|0 +1.3.6.1.2.1.17.2.15.1.10.30|65|0 +1.3.6.1.2.1.17.2.15.1.10.31|65|0 +1.3.6.1.2.1.17.2.15.1.10.32|65|0 +1.3.6.1.2.1.17.2.15.1.10.33|65|0 +1.3.6.1.2.1.17.2.15.1.10.34|65|0 +1.3.6.1.2.1.17.2.15.1.10.35|65|0 +1.3.6.1.2.1.17.2.15.1.10.36|65|0 +1.3.6.1.2.1.17.2.15.1.10.37|65|0 +1.3.6.1.2.1.17.2.15.1.10.38|65|0 +1.3.6.1.2.1.17.2.15.1.10.39|65|0 +1.3.6.1.2.1.17.2.15.1.10.40|65|0 +1.3.6.1.2.1.17.2.15.1.10.41|65|0 +1.3.6.1.2.1.17.2.15.1.10.42|65|0 +1.3.6.1.2.1.17.2.15.1.10.43|65|0 +1.3.6.1.2.1.17.2.15.1.10.44|65|0 +1.3.6.1.2.1.17.2.15.1.10.45|65|0 +1.3.6.1.2.1.17.2.15.1.10.46|65|0 +1.3.6.1.2.1.17.2.15.1.10.47|65|0 +1.3.6.1.2.1.17.2.15.1.10.48|65|0 +1.3.6.1.2.1.17.2.15.1.10.49|65|0 +1.3.6.1.2.1.17.2.15.1.10.50|65|0 +1.3.6.1.2.1.17.2.15.1.10.51|65|0 +1.3.6.1.2.1.17.2.15.1.10.52|65|0 +1.3.6.1.2.1.17.2.15.1.10.53|65|0 +1.3.6.1.2.1.17.2.15.1.10.54|65|0 +1.3.6.1.2.1.17.2.15.1.10.55|65|0 +1.3.6.1.2.1.17.2.15.1.10.56|65|0 +1.3.6.1.2.1.17.2.15.1.10.57|65|0 +1.3.6.1.2.1.17.2.15.1.10.58|65|0 +1.3.6.1.2.1.17.2.15.1.10.59|65|0 +1.3.6.1.2.1.17.2.15.1.10.60|65|0 +1.3.6.1.2.1.17.2.15.1.10.61|65|0 +1.3.6.1.2.1.17.2.15.1.10.62|65|0 +1.3.6.1.2.1.17.2.15.1.10.63|65|0 +1.3.6.1.2.1.17.2.15.1.10.64|65|0 +1.3.6.1.2.1.17.2.15.1.10.65|65|0 +1.3.6.1.2.1.17.2.15.1.10.66|65|0 +1.3.6.1.2.1.17.2.15.1.10.67|65|0 +1.3.6.1.2.1.17.2.15.1.10.68|65|0 +1.3.6.1.2.1.17.2.15.1.10.69|65|0 +1.3.6.1.2.1.17.2.15.1.10.70|65|0 +1.3.6.1.2.1.17.2.15.1.10.71|65|0 +1.3.6.1.2.1.17.2.15.1.10.72|65|0 +1.3.6.1.2.1.17.2.15.1.10.73|65|0 +1.3.6.1.2.1.17.2.15.1.10.74|65|0 +1.3.6.1.2.1.17.2.15.1.10.75|65|0 +1.3.6.1.2.1.17.2.15.1.10.76|65|0 +1.3.6.1.2.1.17.2.15.1.10.77|65|0 +1.3.6.1.2.1.17.2.15.1.10.78|65|0 +1.3.6.1.2.1.17.2.15.1.10.79|65|0 +1.3.6.1.2.1.17.2.15.1.10.80|65|0 +1.3.6.1.2.1.17.2.15.1.10.81|65|0 +1.3.6.1.2.1.17.2.15.1.10.82|65|0 +1.3.6.1.2.1.17.2.15.1.10.83|65|0 +1.3.6.1.2.1.17.2.15.1.10.84|65|0 +1.3.6.1.2.1.17.2.15.1.10.85|65|0 +1.3.6.1.2.1.17.2.15.1.10.86|65|0 +1.3.6.1.2.1.17.2.15.1.10.87|65|0 +1.3.6.1.2.1.17.2.15.1.10.88|65|0 +1.3.6.1.2.1.17.2.15.1.10.89|65|0 +1.3.6.1.2.1.17.2.15.1.10.90|65|0 +1.3.6.1.2.1.17.2.15.1.10.91|65|0 +1.3.6.1.2.1.17.2.15.1.10.92|65|0 +1.3.6.1.2.1.17.2.15.1.10.93|65|0 +1.3.6.1.2.1.17.2.15.1.10.94|65|0 +1.3.6.1.2.1.17.2.15.1.10.95|65|0 +1.3.6.1.2.1.17.2.15.1.10.96|65|0 +1.3.6.1.2.1.17.2.15.1.10.97|65|0 +1.3.6.1.2.1.17.2.15.1.10.98|65|0 +1.3.6.1.2.1.17.2.15.1.10.99|65|0 +1.3.6.1.2.1.17.2.15.1.10.100|65|0 +1.3.6.1.2.1.17.2.15.1.10.101|65|0 +1.3.6.1.2.1.17.2.15.1.10.102|65|0 +1.3.6.1.2.1.17.2.15.1.10.103|65|0 +1.3.6.1.2.1.17.2.15.1.10.104|65|0 +1.3.6.1.2.1.17.2.15.1.10.105|65|0 +1.3.6.1.2.1.17.2.15.1.10.106|65|0 +1.3.6.1.2.1.17.2.15.1.10.107|65|0 +1.3.6.1.2.1.17.2.15.1.10.108|65|0 +1.3.6.1.2.1.17.2.15.1.10.109|65|0 +1.3.6.1.2.1.17.2.15.1.10.110|65|0 +1.3.6.1.2.1.17.2.15.1.10.111|65|0 +1.3.6.1.2.1.17.2.15.1.10.112|65|0 +1.3.6.1.2.1.17.4.3.1.2.0.10.90.100.222.242|2|209 +1.3.6.1.2.1.17.4.3.1.2.0.22.166.31.184.4|2|46 +1.3.6.1.2.1.17.4.3.1.2.52.230.173.87.121.132|2|46 +1.3.6.1.2.1.17.4.3.1.2.124.37.134.221.79.172|2|28 +1.3.6.1.2.1.17.4.3.1.2.172.202.84.1.232.226|2|46 +1.3.6.1.2.1.17.4.3.1.2.172.202.84.2.1.72|2|46 +1.3.6.1.2.1.17.4.3.1.2.184.39.235.120.157.18|2|9 +1.3.6.1.2.1.17.4.3.1.2.204.178.85.177.197.158|2|46 +1.3.6.1.2.1.17.4.3.1.2.204.178.85.177.197.159|2|46 +1.3.6.1.2.1.17.4.3.1.2.220.159.219.26.41.245|2|33 +1.3.6.1.2.1.17.4.3.1.2.220.159.219.26.42.143|2|46 +1.3.6.1.2.1.17.4.3.1.2.244.76.112.5.185.196|2|18 +1.3.6.1.4.1.13464.1.2.1.1.2.2.0|4|S3800-24F4S V100R001B01D001P004SP3 +1.3.6.1.4.1.13464.1.2.1.1.2.5.0|4|ARM Cortex-A9, 400MHz +1.3.6.1.4.1.13464.1.2.1.1.2.11.0|2|95 +1.3.6.1.4.1.13464.1.2.1.1.2.12.0|2|512 +1.3.6.1.4.1.13464.1.2.1.1.2.13.0|2|288 +1.3.6.1.4.1.13464.1.2.1.1.2.15.0|4|S3800-24F4S Switch Product +1.3.6.1.4.1.13464.1.2.1.1.2.19.0|4|F170823DN051 diff --git a/tests/snmpsim/fs-switch_5800.snmprec b/tests/snmpsim/fs-switch_5800.snmprec new file mode 100644 index 0000000000..a1cfcb9695 --- /dev/null +++ b/tests/snmpsim/fs-switch_5800.snmprec @@ -0,0 +1,1101 @@ +1.3.6.1.2.1.1.1.0|4|FSOS software, S5800 software (S5800 8TF12S), Version 5.3.7 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.27975.99.263 +1.3.6.1.2.1.1.3.0|67|940280200 +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.1|4|eth-0-1 +1.3.6.1.2.1.2.2.1.2.2|4|eth-0-2 +1.3.6.1.2.1.2.2.1.2.3|4|eth-0-3 +1.3.6.1.2.1.2.2.1.2.4|4|eth-0-4 +1.3.6.1.2.1.2.2.1.2.5|4|eth-0-5 +1.3.6.1.2.1.2.2.1.2.6|4|eth-0-6 +1.3.6.1.2.1.2.2.1.2.7|4|eth-0-7 +1.3.6.1.2.1.2.2.1.2.8|4|eth-0-8 +1.3.6.1.2.1.2.2.1.2.9|4|eth-0-9 +1.3.6.1.2.1.2.2.1.2.10|4|eth-0-10 +1.3.6.1.2.1.2.2.1.2.11|4|eth-0-11 +1.3.6.1.2.1.2.2.1.2.12|4|eth-0-12 +1.3.6.1.2.1.2.2.1.2.13|4|eth-0-13 +1.3.6.1.2.1.2.2.1.2.14|4|eth-0-14 +1.3.6.1.2.1.2.2.1.2.15|4|eth-0-15 +1.3.6.1.2.1.2.2.1.2.16|4|eth-0-16 +1.3.6.1.2.1.2.2.1.2.17|4|eth-0-17 +1.3.6.1.2.1.2.2.1.2.18|4|eth-0-18 +1.3.6.1.2.1.2.2.1.2.19|4|eth-0-19 +1.3.6.1.2.1.2.2.1.2.20|4|eth-0-20 +1.3.6.1.2.1.2.2.1.2.2049|4|agg1 +1.3.6.1.2.1.2.2.1.2.4097|4|vlan1 +1.3.6.1.2.1.2.2.1.2.4893|4|vlan797 +1.3.6.1.2.1.2.2.1.2.4896|4|vlan800 +1.3.6.1.2.1.2.2.1.3.1|2|6 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|6 +1.3.6.1.2.1.2.2.1.3.9|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.12|2|6 +1.3.6.1.2.1.2.2.1.3.13|2|6 +1.3.6.1.2.1.2.2.1.3.14|2|6 +1.3.6.1.2.1.2.2.1.3.15|2|6 +1.3.6.1.2.1.2.2.1.3.16|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|6 +1.3.6.1.2.1.2.2.1.3.18|2|6 +1.3.6.1.2.1.2.2.1.3.19|2|6 +1.3.6.1.2.1.2.2.1.3.20|2|6 +1.3.6.1.2.1.2.2.1.3.2049|2|161 +1.3.6.1.2.1.2.2.1.3.4097|2|136 +1.3.6.1.2.1.2.2.1.3.4893|2|136 +1.3.6.1.2.1.2.2.1.3.4896|2|136 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.2049|2|1500 +1.3.6.1.2.1.2.2.1.4.4097|2|1500 +1.3.6.1.2.1.2.2.1.4.4893|2|1500 +1.3.6.1.2.1.2.2.1.4.4896|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|001E081042D3 +1.3.6.1.2.1.2.2.1.6.2|4x|001E081042D4 +1.3.6.1.2.1.2.2.1.6.3|4x|001E081042D5 +1.3.6.1.2.1.2.2.1.6.4|4x|001E081042D6 +1.3.6.1.2.1.2.2.1.6.5|4x|001E081042D7 +1.3.6.1.2.1.2.2.1.6.6|4x|001E081042D8 +1.3.6.1.2.1.2.2.1.6.7|4x|001E081042D9 +1.3.6.1.2.1.2.2.1.6.8|4x|001E081042DA +1.3.6.1.2.1.2.2.1.6.9|4x|001E081042DB +1.3.6.1.2.1.2.2.1.6.10|4x|001E081042DC +1.3.6.1.2.1.2.2.1.6.11|4x|001E081042DD +1.3.6.1.2.1.2.2.1.6.12|4x|001E081042DE +1.3.6.1.2.1.2.2.1.6.13|4x|001E081042DF +1.3.6.1.2.1.2.2.1.6.14|4x|001E081042E0 +1.3.6.1.2.1.2.2.1.6.15|4x|001E081042E1 +1.3.6.1.2.1.2.2.1.6.16|4x|001E081042E2 +1.3.6.1.2.1.2.2.1.6.17|4x|001E081042E3 +1.3.6.1.2.1.2.2.1.6.18|4x|001E081042E4 +1.3.6.1.2.1.2.2.1.6.19|4x|001E081042E5 +1.3.6.1.2.1.2.2.1.6.20|4x|001E081042E6 +1.3.6.1.2.1.2.2.1.6.2049|4x|001E081042D3 +1.3.6.1.2.1.2.2.1.6.4097|4x|001E081042D2 +1.3.6.1.2.1.2.2.1.6.4893|4x|001E081042D2 +1.3.6.1.2.1.2.2.1.6.4896|4x|001E081042D2 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +1.3.6.1.2.1.2.2.1.7.2049|2|1 +1.3.6.1.2.1.2.2.1.7.4097|2|1 +1.3.6.1.2.1.2.2.1.7.4893|2|1 +1.3.6.1.2.1.2.2.1.7.4896|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|2 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.2049|2|1 +1.3.6.1.2.1.2.2.1.8.4097|2|1 +1.3.6.1.2.1.2.2.1.8.4893|2|1 +1.3.6.1.2.1.2.2.1.8.4896|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|5800 +1.3.6.1.2.1.2.2.1.9.2|67|5800 +1.3.6.1.2.1.2.2.1.9.3|67|5800 +1.3.6.1.2.1.2.2.1.9.4|67|5800 +1.3.6.1.2.1.2.2.1.9.5|67|5800 +1.3.6.1.2.1.2.2.1.9.6|67|5800 +1.3.6.1.2.1.2.2.1.9.7|67|5800 +1.3.6.1.2.1.2.2.1.9.8|67|5800 +1.3.6.1.2.1.2.2.1.9.9|67|5800 +1.3.6.1.2.1.2.2.1.9.10|67|5800 +1.3.6.1.2.1.2.2.1.9.11|67|5800 +1.3.6.1.2.1.2.2.1.9.12|67|5800 +1.3.6.1.2.1.2.2.1.9.13|67|5800 +1.3.6.1.2.1.2.2.1.9.14|67|5800 +1.3.6.1.2.1.2.2.1.9.15|67|5800 +1.3.6.1.2.1.2.2.1.9.16|67|5800 +1.3.6.1.2.1.2.2.1.9.17|67|5800 +1.3.6.1.2.1.2.2.1.9.18|67|5800 +1.3.6.1.2.1.2.2.1.9.19|67|5800 +1.3.6.1.2.1.2.2.1.9.20|67|5800 +1.3.6.1.2.1.2.2.1.9.2049|67|6200 +1.3.6.1.2.1.2.2.1.9.4097|67|6200 +1.3.6.1.2.1.2.2.1.9.4893|67|6200 +1.3.6.1.2.1.2.2.1.9.4896|67|50791300 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.2049|65|0 +1.3.6.1.2.1.2.2.1.13.4097|65|0 +1.3.6.1.2.1.2.2.1.13.4893|65|0 +1.3.6.1.2.1.2.2.1.13.4896|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.2049|65|0 +1.3.6.1.2.1.2.2.1.14.4097|65|0 +1.3.6.1.2.1.2.2.1.14.4893|65|0 +1.3.6.1.2.1.2.2.1.14.4896|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.2049|65|0 +1.3.6.1.2.1.2.2.1.19.4097|65|0 +1.3.6.1.2.1.2.2.1.19.4893|65|0 +1.3.6.1.2.1.2.2.1.19.4896|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.2049|65|0 +1.3.6.1.2.1.2.2.1.20.4097|65|0 +1.3.6.1.2.1.2.2.1.20.4893|65|0 +1.3.6.1.2.1.2.2.1.20.4896|65|0 +1.3.6.1.2.1.4.20.1.2.10.255.254.2|2|4896 +1.3.6.1.2.1.4.20.1.2.10.255.255.10|2|4893 +1.3.6.1.2.1.4.20.1.2.192.168.0.100|2|4097 +1.3.6.1.2.1.4.20.1.3.10.255.254.2|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.255.255.10|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.192.168.0.100|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.4097.192.168.0.100|4x|001E081042D2 +1.3.6.1.2.1.4.22.1.2.4896.10.255.254.1|4x|8843E1A2CC40 +1.3.6.1.2.1.4.22.1.2.4896.10.255.254.2|4x|001E081042D2 +1.3.6.1.2.1.4.24.3.0|66|3 +1.3.6.1.2.1.4.35.1.4.4097.1.192.168.0.100|4x|001E081042D2 +1.3.6.1.2.1.4.35.1.4.4896.1.10.255.254.1|4x|8843E1A2CC40 +1.3.6.1.2.1.4.35.1.4.4896.1.10.255.254.2|4x|001E081042D2 +1.3.6.1.2.1.11.1.0|65|4253915 +1.3.6.1.2.1.11.2.0|65|4253914 +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|38343353 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|575939 +1.3.6.1.2.1.11.16.0|65|415 +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|4253917 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.15.2.0|2|201983 +1.3.6.1.2.1.17.1.1.0|4x|001E081042D2 +1.3.6.1.2.1.17.1.4.1.2.1|2|1 +1.3.6.1.2.1.17.1.4.1.2.2|2|2 +1.3.6.1.2.1.17.1.4.1.2.3|2|3 +1.3.6.1.2.1.17.1.4.1.2.4|2|4 +1.3.6.1.2.1.17.1.4.1.2.5|2|5 +1.3.6.1.2.1.17.1.4.1.2.6|2|6 +1.3.6.1.2.1.17.1.4.1.2.7|2|7 +1.3.6.1.2.1.17.1.4.1.2.8|2|8 +1.3.6.1.2.1.17.1.4.1.2.9|2|9 +1.3.6.1.2.1.17.1.4.1.2.10|2|10 +1.3.6.1.2.1.17.1.4.1.2.11|2|11 +1.3.6.1.2.1.17.1.4.1.2.12|2|12 +1.3.6.1.2.1.17.1.4.1.2.13|2|13 +1.3.6.1.2.1.17.1.4.1.2.14|2|14 +1.3.6.1.2.1.17.1.4.1.2.15|2|15 +1.3.6.1.2.1.17.1.4.1.2.16|2|16 +1.3.6.1.2.1.17.1.4.1.2.17|2|17 +1.3.6.1.2.1.17.1.4.1.2.18|2|18 +1.3.6.1.2.1.17.1.4.1.2.19|2|19 +1.3.6.1.2.1.17.1.4.1.2.20|2|20 +1.3.6.1.2.1.17.1.4.1.2.2049|2|2049 +1.3.6.1.2.1.17.2.1.0|2|3 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.3.0|67|9402757 +1.3.6.1.2.1.17.2.4.0|65|0 +1.3.6.1.2.1.17.2.5.0|4|8000001e081042d2 +1.3.6.1.2.1.17.2.6.0|2|0 +1.3.6.1.2.1.17.2.7.0|2|0 +1.3.6.1.2.1.17.2.8.0|2|2000 +1.3.6.1.2.1.17.2.9.0|2|200 +1.3.6.1.2.1.17.2.10.0|2|200 +1.3.6.1.2.1.17.2.11.0|2|1500 +1.3.6.1.2.1.17.2.12.0|2|2000 +1.3.6.1.2.1.17.2.13.0|2|200 +1.3.6.1.2.1.17.2.14.0|2|1500 +1.3.6.1.2.1.17.2.15.1.1.3|2|3 +1.3.6.1.2.1.17.2.15.1.1.4|2|4 +1.3.6.1.2.1.17.2.15.1.1.5|2|5 +1.3.6.1.2.1.17.2.15.1.1.6|2|6 +1.3.6.1.2.1.17.2.15.1.1.7|2|7 +1.3.6.1.2.1.17.2.15.1.1.8|2|8 +1.3.6.1.2.1.17.2.15.1.1.9|2|9 +1.3.6.1.2.1.17.2.15.1.1.10|2|10 +1.3.6.1.2.1.17.2.15.1.1.11|2|11 +1.3.6.1.2.1.17.2.15.1.1.12|2|12 +1.3.6.1.2.1.17.2.15.1.1.13|2|13 +1.3.6.1.2.1.17.2.15.1.1.14|2|14 +1.3.6.1.2.1.17.2.15.1.1.15|2|15 +1.3.6.1.2.1.17.2.15.1.1.16|2|16 +1.3.6.1.2.1.17.2.15.1.1.17|2|17 +1.3.6.1.2.1.17.2.15.1.1.18|2|18 +1.3.6.1.2.1.17.2.15.1.1.19|2|19 +1.3.6.1.2.1.17.2.15.1.1.20|2|20 +1.3.6.1.2.1.17.2.15.1.1.2049|2|2049 +1.3.6.1.2.1.17.2.15.1.2.3|2|128 +1.3.6.1.2.1.17.2.15.1.2.4|2|128 +1.3.6.1.2.1.17.2.15.1.2.5|2|128 +1.3.6.1.2.1.17.2.15.1.2.6|2|128 +1.3.6.1.2.1.17.2.15.1.2.7|2|128 +1.3.6.1.2.1.17.2.15.1.2.8|2|128 +1.3.6.1.2.1.17.2.15.1.2.9|2|128 +1.3.6.1.2.1.17.2.15.1.2.10|2|128 +1.3.6.1.2.1.17.2.15.1.2.11|2|128 +1.3.6.1.2.1.17.2.15.1.2.12|2|128 +1.3.6.1.2.1.17.2.15.1.2.13|2|128 +1.3.6.1.2.1.17.2.15.1.2.14|2|128 +1.3.6.1.2.1.17.2.15.1.2.15|2|128 +1.3.6.1.2.1.17.2.15.1.2.16|2|128 +1.3.6.1.2.1.17.2.15.1.2.17|2|128 +1.3.6.1.2.1.17.2.15.1.2.18|2|128 +1.3.6.1.2.1.17.2.15.1.2.19|2|128 +1.3.6.1.2.1.17.2.15.1.2.20|2|128 +1.3.6.1.2.1.17.2.15.1.2.2049|2|128 +1.3.6.1.2.1.17.2.15.1.3.3|2|1 +1.3.6.1.2.1.17.2.15.1.3.4|2|1 +1.3.6.1.2.1.17.2.15.1.3.5|2|1 +1.3.6.1.2.1.17.2.15.1.3.6|2|1 +1.3.6.1.2.1.17.2.15.1.3.7|2|1 +1.3.6.1.2.1.17.2.15.1.3.8|2|1 +1.3.6.1.2.1.17.2.15.1.3.9|2|1 +1.3.6.1.2.1.17.2.15.1.3.10|2|1 +1.3.6.1.2.1.17.2.15.1.3.11|2|1 +1.3.6.1.2.1.17.2.15.1.3.12|2|1 +1.3.6.1.2.1.17.2.15.1.3.13|2|1 +1.3.6.1.2.1.17.2.15.1.3.14|2|1 +1.3.6.1.2.1.17.2.15.1.3.15|2|1 +1.3.6.1.2.1.17.2.15.1.3.16|2|1 +1.3.6.1.2.1.17.2.15.1.3.17|2|1 +1.3.6.1.2.1.17.2.15.1.3.18|2|1 +1.3.6.1.2.1.17.2.15.1.3.19|2|1 +1.3.6.1.2.1.17.2.15.1.3.20|2|1 +1.3.6.1.2.1.17.2.15.1.3.2049|2|1 +1.3.6.1.2.1.17.2.15.1.4.3|2|1 +1.3.6.1.2.1.17.2.15.1.4.4|2|1 +1.3.6.1.2.1.17.2.15.1.4.5|2|1 +1.3.6.1.2.1.17.2.15.1.4.6|2|1 +1.3.6.1.2.1.17.2.15.1.4.7|2|1 +1.3.6.1.2.1.17.2.15.1.4.8|2|1 +1.3.6.1.2.1.17.2.15.1.4.9|2|1 +1.3.6.1.2.1.17.2.15.1.4.10|2|1 +1.3.6.1.2.1.17.2.15.1.4.11|2|1 +1.3.6.1.2.1.17.2.15.1.4.12|2|1 +1.3.6.1.2.1.17.2.15.1.4.13|2|1 +1.3.6.1.2.1.17.2.15.1.4.14|2|1 +1.3.6.1.2.1.17.2.15.1.4.15|2|1 +1.3.6.1.2.1.17.2.15.1.4.16|2|1 +1.3.6.1.2.1.17.2.15.1.4.17|2|1 +1.3.6.1.2.1.17.2.15.1.4.18|2|1 +1.3.6.1.2.1.17.2.15.1.4.19|2|1 +1.3.6.1.2.1.17.2.15.1.4.20|2|1 +1.3.6.1.2.1.17.2.15.1.4.2049|2|1 +1.3.6.1.2.1.17.2.15.1.5.3|2|20000 +1.3.6.1.2.1.17.2.15.1.5.4|2|20000 +1.3.6.1.2.1.17.2.15.1.5.5|2|20000 +1.3.6.1.2.1.17.2.15.1.5.6|2|20000 +1.3.6.1.2.1.17.2.15.1.5.7|2|20000 +1.3.6.1.2.1.17.2.15.1.5.8|2|20000 +1.3.6.1.2.1.17.2.15.1.5.9|2|20000 +1.3.6.1.2.1.17.2.15.1.5.10|2|20000 +1.3.6.1.2.1.17.2.15.1.5.11|2|20000 +1.3.6.1.2.1.17.2.15.1.5.12|2|20000 +1.3.6.1.2.1.17.2.15.1.5.13|2|20000 +1.3.6.1.2.1.17.2.15.1.5.14|2|20000 +1.3.6.1.2.1.17.2.15.1.5.15|2|20000 +1.3.6.1.2.1.17.2.15.1.5.16|2|20000 +1.3.6.1.2.1.17.2.15.1.5.17|2|20000 +1.3.6.1.2.1.17.2.15.1.5.18|2|20000 +1.3.6.1.2.1.17.2.15.1.5.19|2|20000 +1.3.6.1.2.1.17.2.15.1.5.20|2|20000 +1.3.6.1.2.1.17.2.15.1.5.2049|2|10000 +1.3.6.1.2.1.17.2.15.1.6.3|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.4|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.5|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.6|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.7|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.8|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.9|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.10|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.11|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.12|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.13|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.14|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.15|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.16|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.17|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.18|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.19|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.20|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.6.2049|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.7.3|2|0 +1.3.6.1.2.1.17.2.15.1.7.4|2|0 +1.3.6.1.2.1.17.2.15.1.7.5|2|0 +1.3.6.1.2.1.17.2.15.1.7.6|2|0 +1.3.6.1.2.1.17.2.15.1.7.7|2|0 +1.3.6.1.2.1.17.2.15.1.7.8|2|0 +1.3.6.1.2.1.17.2.15.1.7.9|2|0 +1.3.6.1.2.1.17.2.15.1.7.10|2|0 +1.3.6.1.2.1.17.2.15.1.7.11|2|0 +1.3.6.1.2.1.17.2.15.1.7.12|2|0 +1.3.6.1.2.1.17.2.15.1.7.13|2|0 +1.3.6.1.2.1.17.2.15.1.7.14|2|0 +1.3.6.1.2.1.17.2.15.1.7.15|2|0 +1.3.6.1.2.1.17.2.15.1.7.16|2|0 +1.3.6.1.2.1.17.2.15.1.7.17|2|0 +1.3.6.1.2.1.17.2.15.1.7.18|2|0 +1.3.6.1.2.1.17.2.15.1.7.19|2|0 +1.3.6.1.2.1.17.2.15.1.7.20|2|0 +1.3.6.1.2.1.17.2.15.1.7.2049|2|0 +1.3.6.1.2.1.17.2.15.1.8.3|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.4|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.5|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.6|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.7|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.8|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.9|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.10|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.11|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.12|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.13|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.14|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.15|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.16|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.17|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.18|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.19|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.20|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.8.2049|4|0000000000000000 +1.3.6.1.2.1.17.2.15.1.9.3|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.4|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.5|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.6|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.7|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.8|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.9|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.10|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.11|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.12|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.13|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.14|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.15|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.16|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.17|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.18|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.19|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.20|4x|0000 +1.3.6.1.2.1.17.2.15.1.9.2049|4x|0000 +1.3.6.1.2.1.17.2.15.1.10.3|65|0 +1.3.6.1.2.1.17.2.15.1.10.4|65|0 +1.3.6.1.2.1.17.2.15.1.10.5|65|0 +1.3.6.1.2.1.17.2.15.1.10.6|65|0 +1.3.6.1.2.1.17.2.15.1.10.7|65|0 +1.3.6.1.2.1.17.2.15.1.10.8|65|0 +1.3.6.1.2.1.17.2.15.1.10.9|65|0 +1.3.6.1.2.1.17.2.15.1.10.10|65|0 +1.3.6.1.2.1.17.2.15.1.10.11|65|0 +1.3.6.1.2.1.17.2.15.1.10.12|65|0 +1.3.6.1.2.1.17.2.15.1.10.13|65|0 +1.3.6.1.2.1.17.2.15.1.10.14|65|0 +1.3.6.1.2.1.17.2.15.1.10.15|65|0 +1.3.6.1.2.1.17.2.15.1.10.16|65|0 +1.3.6.1.2.1.17.2.15.1.10.17|65|0 +1.3.6.1.2.1.17.2.15.1.10.18|65|0 +1.3.6.1.2.1.17.2.15.1.10.19|65|0 +1.3.6.1.2.1.17.2.15.1.10.20|65|0 +1.3.6.1.2.1.17.2.15.1.10.2049|65|0 +1.3.6.1.2.1.17.2.15.1.11.3|2|20000 +1.3.6.1.2.1.17.2.15.1.11.4|2|20000 +1.3.6.1.2.1.17.2.15.1.11.5|2|20000 +1.3.6.1.2.1.17.2.15.1.11.6|2|20000 +1.3.6.1.2.1.17.2.15.1.11.7|2|20000 +1.3.6.1.2.1.17.2.15.1.11.8|2|20000 +1.3.6.1.2.1.17.2.15.1.11.9|2|20000 +1.3.6.1.2.1.17.2.15.1.11.10|2|20000 +1.3.6.1.2.1.17.2.15.1.11.11|2|20000 +1.3.6.1.2.1.17.2.15.1.11.12|2|20000 +1.3.6.1.2.1.17.2.15.1.11.13|2|20000 +1.3.6.1.2.1.17.2.15.1.11.14|2|20000 +1.3.6.1.2.1.17.2.15.1.11.15|2|20000 +1.3.6.1.2.1.17.2.15.1.11.16|2|20000 +1.3.6.1.2.1.17.2.15.1.11.17|2|20000 +1.3.6.1.2.1.17.2.15.1.11.18|2|20000 +1.3.6.1.2.1.17.2.15.1.11.19|2|20000 +1.3.6.1.2.1.17.2.15.1.11.20|2|20000 +1.3.6.1.2.1.17.2.15.1.11.2049|2|10000 +1.3.6.1.2.1.17.2.16.0|2|2 +1.3.6.1.2.1.17.2.17.0|2|6 +1.3.6.1.2.1.17.2.19.1.1.3|2|1 +1.3.6.1.2.1.17.2.19.1.1.4|2|1 +1.3.6.1.2.1.17.2.19.1.1.5|2|1 +1.3.6.1.2.1.17.2.19.1.1.6|2|1 +1.3.6.1.2.1.17.2.19.1.1.7|2|1 +1.3.6.1.2.1.17.2.19.1.1.8|2|1 +1.3.6.1.2.1.17.2.19.1.1.9|2|1 +1.3.6.1.2.1.17.2.19.1.1.10|2|1 +1.3.6.1.2.1.17.2.19.1.1.11|2|1 +1.3.6.1.2.1.17.2.19.1.1.12|2|1 +1.3.6.1.2.1.17.2.19.1.1.13|2|1 +1.3.6.1.2.1.17.2.19.1.1.14|2|1 +1.3.6.1.2.1.17.2.19.1.1.15|2|1 +1.3.6.1.2.1.17.2.19.1.1.16|2|1 +1.3.6.1.2.1.17.2.19.1.1.17|2|1 +1.3.6.1.2.1.17.2.19.1.1.18|2|1 +1.3.6.1.2.1.17.2.19.1.1.19|2|1 +1.3.6.1.2.1.17.2.19.1.1.20|2|1 +1.3.6.1.2.1.17.2.19.1.1.2049|2|1 +1.3.6.1.2.1.17.2.19.1.2.3|2|2 +1.3.6.1.2.1.17.2.19.1.2.4|2|2 +1.3.6.1.2.1.17.2.19.1.2.5|2|2 +1.3.6.1.2.1.17.2.19.1.2.6|2|2 +1.3.6.1.2.1.17.2.19.1.2.7|2|2 +1.3.6.1.2.1.17.2.19.1.2.8|2|2 +1.3.6.1.2.1.17.2.19.1.2.9|2|2 +1.3.6.1.2.1.17.2.19.1.2.10|2|2 +1.3.6.1.2.1.17.2.19.1.2.11|2|2 +1.3.6.1.2.1.17.2.19.1.2.12|2|2 +1.3.6.1.2.1.17.2.19.1.2.13|2|2 +1.3.6.1.2.1.17.2.19.1.2.14|2|2 +1.3.6.1.2.1.17.2.19.1.2.15|2|2 +1.3.6.1.2.1.17.2.19.1.2.16|2|2 +1.3.6.1.2.1.17.2.19.1.2.17|2|2 +1.3.6.1.2.1.17.2.19.1.2.18|2|2 +1.3.6.1.2.1.17.2.19.1.2.19|2|2 +1.3.6.1.2.1.17.2.19.1.2.20|2|2 +1.3.6.1.2.1.17.2.19.1.2.2049|2|2 +1.3.6.1.2.1.17.2.19.1.3.3|2|2 +1.3.6.1.2.1.17.2.19.1.3.4|2|2 +1.3.6.1.2.1.17.2.19.1.3.5|2|2 +1.3.6.1.2.1.17.2.19.1.3.6|2|2 +1.3.6.1.2.1.17.2.19.1.3.7|2|2 +1.3.6.1.2.1.17.2.19.1.3.8|2|2 +1.3.6.1.2.1.17.2.19.1.3.9|2|2 +1.3.6.1.2.1.17.2.19.1.3.10|2|2 +1.3.6.1.2.1.17.2.19.1.3.11|2|2 +1.3.6.1.2.1.17.2.19.1.3.12|2|2 +1.3.6.1.2.1.17.2.19.1.3.13|2|2 +1.3.6.1.2.1.17.2.19.1.3.14|2|2 +1.3.6.1.2.1.17.2.19.1.3.15|2|2 +1.3.6.1.2.1.17.2.19.1.3.16|2|2 +1.3.6.1.2.1.17.2.19.1.3.17|2|2 +1.3.6.1.2.1.17.2.19.1.3.18|2|2 +1.3.6.1.2.1.17.2.19.1.3.19|2|2 +1.3.6.1.2.1.17.2.19.1.3.20|2|2 +1.3.6.1.2.1.17.2.19.1.3.2049|2|2 +1.3.6.1.2.1.17.2.19.1.4.3|2|2 +1.3.6.1.2.1.17.2.19.1.4.4|2|2 +1.3.6.1.2.1.17.2.19.1.4.5|2|2 +1.3.6.1.2.1.17.2.19.1.4.6|2|2 +1.3.6.1.2.1.17.2.19.1.4.7|2|2 +1.3.6.1.2.1.17.2.19.1.4.8|2|2 +1.3.6.1.2.1.17.2.19.1.4.9|2|2 +1.3.6.1.2.1.17.2.19.1.4.10|2|2 +1.3.6.1.2.1.17.2.19.1.4.11|2|2 +1.3.6.1.2.1.17.2.19.1.4.12|2|2 +1.3.6.1.2.1.17.2.19.1.4.13|2|2 +1.3.6.1.2.1.17.2.19.1.4.14|2|2 +1.3.6.1.2.1.17.2.19.1.4.15|2|2 +1.3.6.1.2.1.17.2.19.1.4.16|2|2 +1.3.6.1.2.1.17.2.19.1.4.17|2|2 +1.3.6.1.2.1.17.2.19.1.4.18|2|2 +1.3.6.1.2.1.17.2.19.1.4.19|2|2 +1.3.6.1.2.1.17.2.19.1.4.20|2|2 +1.3.6.1.2.1.17.2.19.1.4.2049|2|2 +1.3.6.1.2.1.17.2.19.1.5.3|2|1 +1.3.6.1.2.1.17.2.19.1.5.4|2|1 +1.3.6.1.2.1.17.2.19.1.5.5|2|1 +1.3.6.1.2.1.17.2.19.1.5.6|2|1 +1.3.6.1.2.1.17.2.19.1.5.7|2|1 +1.3.6.1.2.1.17.2.19.1.5.8|2|1 +1.3.6.1.2.1.17.2.19.1.5.9|2|1 +1.3.6.1.2.1.17.2.19.1.5.10|2|1 +1.3.6.1.2.1.17.2.19.1.5.11|2|1 +1.3.6.1.2.1.17.2.19.1.5.12|2|1 +1.3.6.1.2.1.17.2.19.1.5.13|2|1 +1.3.6.1.2.1.17.2.19.1.5.14|2|1 +1.3.6.1.2.1.17.2.19.1.5.15|2|1 +1.3.6.1.2.1.17.2.19.1.5.16|2|1 +1.3.6.1.2.1.17.2.19.1.5.17|2|1 +1.3.6.1.2.1.17.2.19.1.5.18|2|1 +1.3.6.1.2.1.17.2.19.1.5.19|2|1 +1.3.6.1.2.1.17.2.19.1.5.20|2|1 +1.3.6.1.2.1.17.2.19.1.5.2049|2|1 +1.3.6.1.2.1.17.2.19.1.6.3|2|20000 +1.3.6.1.2.1.17.2.19.1.6.4|2|20000 +1.3.6.1.2.1.17.2.19.1.6.5|2|20000 +1.3.6.1.2.1.17.2.19.1.6.6|2|20000 +1.3.6.1.2.1.17.2.19.1.6.7|2|20000 +1.3.6.1.2.1.17.2.19.1.6.8|2|20000 +1.3.6.1.2.1.17.2.19.1.6.9|2|20000 +1.3.6.1.2.1.17.2.19.1.6.10|2|20000 +1.3.6.1.2.1.17.2.19.1.6.11|2|20000 +1.3.6.1.2.1.17.2.19.1.6.12|2|20000 +1.3.6.1.2.1.17.2.19.1.6.13|2|20000 +1.3.6.1.2.1.17.2.19.1.6.14|2|20000 +1.3.6.1.2.1.17.2.19.1.6.15|2|20000 +1.3.6.1.2.1.17.2.19.1.6.16|2|20000 +1.3.6.1.2.1.17.2.19.1.6.17|2|20000 +1.3.6.1.2.1.17.2.19.1.6.18|2|20000 +1.3.6.1.2.1.17.2.19.1.6.19|2|20000 +1.3.6.1.2.1.17.2.19.1.6.20|2|20000 +1.3.6.1.2.1.17.2.19.1.6.2049|2|10000 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.30.74.62.168.214|2|2049 +1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.30.74.62.168.215|2|2049 +1.3.6.1.2.1.17.7.1.2.2.1.2.797.0.30.74.62.168.214|2|2049 +1.3.6.1.2.1.17.7.1.2.2.1.2.797.136.67.225.162.204.64|2|2049 +1.3.6.1.2.1.17.7.1.2.2.1.2.800.0.30.74.62.168.214|2|2049 +1.3.6.1.2.1.17.7.1.2.2.1.2.800.136.67.225.162.204.64|2|2049 +1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|default +1.3.6.1.2.1.17.7.1.4.3.1.1.797|4|INT-Link-VXO-MLM +1.3.6.1.2.1.17.7.1.4.3.1.1.800|4|Link-VXO-MLM +1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.6|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.7|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.8|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.9|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.10|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.11|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.12|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.13|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.14|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.15|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.16|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.17|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.18|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.19|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.20|66|1 +1.3.6.1.2.1.17.7.1.4.5.1.1.2049|66|1 +1.3.6.1.2.1.31.1.1.1.1.1|4|eth-0-1 +1.3.6.1.2.1.31.1.1.1.1.2|4|eth-0-2 +1.3.6.1.2.1.31.1.1.1.1.3|4|eth-0-3 +1.3.6.1.2.1.31.1.1.1.1.4|4|eth-0-4 +1.3.6.1.2.1.31.1.1.1.1.5|4|eth-0-5 +1.3.6.1.2.1.31.1.1.1.1.6|4|eth-0-6 +1.3.6.1.2.1.31.1.1.1.1.7|4|eth-0-7 +1.3.6.1.2.1.31.1.1.1.1.8|4|eth-0-8 +1.3.6.1.2.1.31.1.1.1.1.9|4|eth-0-9 +1.3.6.1.2.1.31.1.1.1.1.10|4|eth-0-10 +1.3.6.1.2.1.31.1.1.1.1.11|4|eth-0-11 +1.3.6.1.2.1.31.1.1.1.1.12|4|eth-0-12 +1.3.6.1.2.1.31.1.1.1.1.13|4|eth-0-13 +1.3.6.1.2.1.31.1.1.1.1.14|4|eth-0-14 +1.3.6.1.2.1.31.1.1.1.1.15|4|eth-0-15 +1.3.6.1.2.1.31.1.1.1.1.16|4|eth-0-16 +1.3.6.1.2.1.31.1.1.1.1.17|4|eth-0-17 +1.3.6.1.2.1.31.1.1.1.1.18|4|eth-0-18 +1.3.6.1.2.1.31.1.1.1.1.19|4|eth-0-19 +1.3.6.1.2.1.31.1.1.1.1.20|4|eth-0-20 +1.3.6.1.2.1.31.1.1.1.1.2049|4|agg1 +1.3.6.1.2.1.31.1.1.1.1.4097|4|vlan1 +1.3.6.1.2.1.31.1.1.1.1.4893|4|vlan797 +1.3.6.1.2.1.31.1.1.1.1.4896|4|vlan800 +1.3.6.1.2.1.31.1.1.1.2.1|65|11579165 +1.3.6.1.2.1.31.1.1.1.2.2|65|658475 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.2049|65|12237627 +1.3.6.1.2.1.31.1.1.1.2.4097|65|0 +1.3.6.1.2.1.31.1.1.1.2.4893|65|0 +1.3.6.1.2.1.31.1.1.1.2.4896|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|4 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.2049|65|4 +1.3.6.1.2.1.31.1.1.1.3.4097|65|0 +1.3.6.1.2.1.31.1.1.1.3.4893|65|0 +1.3.6.1.2.1.31.1.1.1.3.4896|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|9395395 +1.3.6.1.2.1.31.1.1.1.4.2|65|10356782 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.2049|65|19752159 +1.3.6.1.2.1.31.1.1.1.4.4097|65|0 +1.3.6.1.2.1.31.1.1.1.4.4893|65|0 +1.3.6.1.2.1.31.1.1.1.4.4896|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|65 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.14|65|0 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|0 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.5.19|65|0 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.2049|65|65 +1.3.6.1.2.1.31.1.1.1.5.4097|65|0 +1.3.6.1.2.1.31.1.1.1.5.4893|65|0 +1.3.6.1.2.1.31.1.1.1.5.4896|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|1414521434 +1.3.6.1.2.1.31.1.1.1.6.2|70|132515542 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|0 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.2049|70|1547034889 +1.3.6.1.2.1.31.1.1.1.6.4097|70|0 +1.3.6.1.2.1.31.1.1.1.6.4893|70|0 +1.3.6.1.2.1.31.1.1.1.6.4896|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|4755088 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|0 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.2049|70|4755281 +1.3.6.1.2.1.31.1.1.1.7.4097|70|0 +1.3.6.1.2.1.31.1.1.1.7.4893|70|0 +1.3.6.1.2.1.31.1.1.1.7.4896|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|11579173 +1.3.6.1.2.1.31.1.1.1.8.2|70|658477 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.2049|70|12237637 +1.3.6.1.2.1.31.1.1.1.8.4097|70|0 +1.3.6.1.2.1.31.1.1.1.8.4893|70|0 +1.3.6.1.2.1.31.1.1.1.8.4896|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|4 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.2049|70|4 +1.3.6.1.2.1.31.1.1.1.9.4097|70|0 +1.3.6.1.2.1.31.1.1.1.9.4893|70|0 +1.3.6.1.2.1.31.1.1.1.9.4896|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|1202611200 +1.3.6.1.2.1.31.1.1.1.10.2|70|2421087797 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|0 +1.3.6.1.2.1.31.1.1.1.10.14|70|0 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|0 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.19|70|0 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.2049|70|3623696693 +1.3.6.1.2.1.31.1.1.1.10.4097|70|0 +1.3.6.1.2.1.31.1.1.1.10.4893|70|0 +1.3.6.1.2.1.31.1.1.1.10.4896|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|4780346 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|0 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.2049|70|4780346 +1.3.6.1.2.1.31.1.1.1.11.4097|70|0 +1.3.6.1.2.1.31.1.1.1.11.4893|70|0 +1.3.6.1.2.1.31.1.1.1.11.4896|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|9395400 +1.3.6.1.2.1.31.1.1.1.12.2|70|10356788 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.2049|70|19752170 +1.3.6.1.2.1.31.1.1.1.12.4097|70|0 +1.3.6.1.2.1.31.1.1.1.12.4893|70|0 +1.3.6.1.2.1.31.1.1.1.12.4896|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|65 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.14|70|0 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|0 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.13.19|70|0 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.2049|70|65 +1.3.6.1.2.1.31.1.1.1.13.4097|70|0 +1.3.6.1.2.1.31.1.1.1.13.4893|70|0 +1.3.6.1.2.1.31.1.1.1.13.4896|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|1 +1.3.6.1.2.1.31.1.1.1.14.5|2|1 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.2049|2|1 +1.3.6.1.2.1.31.1.1.1.14.4097|2|1 +1.3.6.1.2.1.31.1.1.1.14.4893|2|1 +1.3.6.1.2.1.31.1.1.1.14.4896|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|1000 +1.3.6.1.2.1.31.1.1.1.15.2|66|1000 +1.3.6.1.2.1.31.1.1.1.15.3|66|10 +1.3.6.1.2.1.31.1.1.1.15.4|66|10 +1.3.6.1.2.1.31.1.1.1.15.5|66|10 +1.3.6.1.2.1.31.1.1.1.15.6|66|10 +1.3.6.1.2.1.31.1.1.1.15.7|66|10 +1.3.6.1.2.1.31.1.1.1.15.8|66|10 +1.3.6.1.2.1.31.1.1.1.15.9|66|10 +1.3.6.1.2.1.31.1.1.1.15.10|66|10 +1.3.6.1.2.1.31.1.1.1.15.11|66|10 +1.3.6.1.2.1.31.1.1.1.15.12|66|10 +1.3.6.1.2.1.31.1.1.1.15.13|66|10 +1.3.6.1.2.1.31.1.1.1.15.14|66|10 +1.3.6.1.2.1.31.1.1.1.15.15|66|10 +1.3.6.1.2.1.31.1.1.1.15.16|66|10 +1.3.6.1.2.1.31.1.1.1.15.17|66|10 +1.3.6.1.2.1.31.1.1.1.15.18|66|10 +1.3.6.1.2.1.31.1.1.1.15.19|66|10 +1.3.6.1.2.1.31.1.1.1.15.20|66|10 +1.3.6.1.2.1.31.1.1.1.15.2049|66|2000 +1.3.6.1.2.1.31.1.1.1.15.4097|66|1000 +1.3.6.1.2.1.31.1.1.1.15.4893|66|1000 +1.3.6.1.2.1.31.1.1.1.15.4896|66|1000 +1.3.6.1.2.1.31.1.1.1.18.1|4|Core: cr1-mlm-cr1-vxo port 1 +1.3.6.1.2.1.31.1.1.1.18.2|4|Core: cr1-mlm-cr1-vxo port 2 +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.2.1.31.1.1.1.18.18|4| +1.3.6.1.2.1.31.1.1.1.18.19|4| +1.3.6.1.2.1.31.1.1.1.18.20|4| +1.3.6.1.2.1.31.1.1.1.18.2049|4|description Core: cr1-mlm-vg4 to cr1-vxo +1.3.6.1.2.1.31.1.1.1.18.4097|4| +1.3.6.1.2.1.31.1.1.1.18.4893|4| +1.3.6.1.2.1.31.1.1.1.18.4896|4| +1.3.6.1.4.1.2021.10.1.5.1|2|135 +1.3.6.1.4.1.2021.10.1.5.2|2|107 +1.3.6.1.4.1.2021.10.1.5.3|2|80 +1.3.6.1.4.1.27975.1.1.5.0|2|922452 +1.3.6.1.4.1.27975.1.1.11.0|2|730272 +1.3.6.1.4.1.27975.1.1.12.0|2|192180 +1.3.6.1.4.1.27975.1.2.11.0|2|94 +1.3.6.1.4.1.27975.1.3.5.0|4|FSOS Software, Version 5.3.7 +1.3.6.1.4.1.27975.37.1.5.1.4.1.1|4|8TF12S +1.3.6.1.4.1.27975.37.1.5.1.10.1.1|4|CG1805255992N013 +1.3.6.1.6.3.10.2.1.3.0|2|9402781